@motion-proto/live-tokens 0.78.0 → 0.80.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/skills/live-tokens-check-compliance/SKILL.md +49 -38
- package/.claude/skills/live-tokens-create-component/SKILL.md +23 -28
- package/.claude/skills/live-tokens-create-component/references/contract-tests.md +61 -0
- package/.claude/skills/live-tokens-create-component/references/sketch-mode.md +2 -2
- package/.claude/skills/live-tokens-create-component/references/token-naming.md +6 -15
- package/.claude/skills/live-tokens-create-page/SKILL.md +6 -4
- package/.claude/skills/live-tokens-create-theme/references/design-directions.md +1 -1
- package/.claude/skills/live-tokens-pick-component/SKILL.md +3 -3
- package/.claude/skills/live-tokens-set-colors/references/color-anchors.md +1 -1
- package/.claude/skills/live-tokens-set-geometry/SKILL.md +1 -1
- package/.claude/skills/live-tokens-set-geometry/references/geometry-anchors.md +1 -1
- package/CHANGELOG.md +271 -0
- package/README.md +10 -16
- package/bin/check-component.mjs +154 -551
- package/bin/check-page.mjs +57 -541
- package/bin/cli.mjs +93 -16
- package/bin/contractRunner.mjs +37 -91
- package/bin/lib/buildChecks.mjs +32 -0
- package/bin/lib/catalogue.mjs +161 -34
- package/bin/lib/componentSource.mjs +152 -0
- package/bin/lib/cssValues.mjs +9 -0
- package/bin/lib/dataDir.mjs +126 -0
- package/bin/lib/findings.mjs +103 -12
- package/bin/lib/fixers.mjs +64 -0
- package/bin/lib/geometry.mjs +92 -0
- package/bin/lib/pageSource.mjs +230 -0
- package/bin/lib/report.mjs +57 -59
- package/bin/lib/tokenVocabulary.mjs +104 -34
- package/bin/migrate-build-script.mjs +66 -0
- package/bin/migrate.mjs +5 -0
- package/bin/rules/componentStructure.mjs +344 -0
- package/bin/rules/componentUse.mjs +313 -0
- package/bin/rules/importsAndRoutes.mjs +136 -0
- package/bin/rules/testRuns.mjs +122 -0
- package/bin/rules/tokens.mjs +426 -0
- package/bin/setup-claude.mjs +1 -2
- package/dist-plugin/{chunk-PDNL4NC5.js → chunk-D4WRIKEZ.js} +7 -2
- package/dist-plugin/{chunk-SWXRVZKT.js → chunk-REBHE3ZM.js} +414 -1
- package/dist-plugin/index.cjs +470 -19
- package/dist-plugin/index.d.cts +1 -0
- package/dist-plugin/index.d.ts +1 -0
- package/dist-plugin/index.js +87 -55
- package/dist-plugin/migrateData/index.cjs +422 -4
- package/dist-plugin/migrateData/index.js +2 -2
- package/dist-plugin/setColors/index.cjs +414 -1
- package/dist-plugin/setColors/index.d.cts +1 -1
- package/dist-plugin/setColors/index.d.ts +1 -1
- package/dist-plugin/setColors/index.js +1 -1
- package/dist-plugin/setGeometry/index.cjs +423 -13
- package/dist-plugin/setGeometry/index.d.cts +3 -3
- package/dist-plugin/setGeometry/index.d.ts +3 -3
- package/dist-plugin/setGeometry/index.js +10 -13
- package/dist-plugin/setType/index.d.cts +1 -1
- package/dist-plugin/setType/index.d.ts +1 -1
- package/dist-plugin/{themeTypes-BxRtuN5V.d.cts → themeTypes-B8_Idrp4.d.cts} +2 -2
- package/dist-plugin/{themeTypes-BxRtuN5V.d.ts → themeTypes-B8_Idrp4.d.ts} +2 -2
- package/package.json +2 -2
- package/src/editor/component-editor/CalloutEditor.svelte +2 -2
- package/src/editor/component-editor/CollapsibleSectionEditor.svelte +14 -15
- package/src/editor/component-editor/CornerBadgeEditor.svelte +14 -14
- package/src/editor/component-editor/DialogEditor.svelte +5 -5
- package/src/editor/component-editor/InlineEditActionsEditor.svelte +2 -2
- package/src/editor/component-editor/RadioButtonEditor.svelte +21 -21
- package/src/editor/component-editor/SectionDividerEditor.svelte +7 -7
- package/src/editor/component-editor/SegmentedControlEditor.svelte +5 -5
- package/src/editor/component-editor/SideNavigationEditor.svelte +25 -25
- package/src/editor/component-editor/TabBarEditor.svelte +6 -6
- package/src/editor/component-editor/TableEditor.svelte +6 -6
- package/src/editor/component-editor/ToggleEditor.svelte +2 -2
- package/src/editor/component-editor/index.ts +3 -0
- package/src/editor/component-editor/registry.ts +57 -1
- package/src/editor/component-editor/scaffolding/TokenLayout.svelte +14 -14
- package/src/editor/component-editor/scaffolding/VariantGroup.svelte +3 -0
- package/src/editor/component-editor/scaffolding/types.ts +15 -0
- package/src/editor/core/components/adjustAliases.ts +4 -4
- package/src/editor/core/components/aliasKinds.ts +20 -19
- package/src/editor/core/sketch/sketchLayer.ts +3 -3
- package/src/editor/core/themes/migrateComponentConfig.ts +14 -6
- package/src/editor/core/themes/migrations/2026-09-13-badge-brand.ts +42 -0
- package/src/editor/core/themes/migrations/2026-09-13-collapsiblesection-open.ts +33 -0
- package/src/editor/core/themes/migrations/2026-09-13-cornerbadge-prefix.ts +70 -0
- package/src/editor/core/themes/migrations/2026-09-13-hairline.ts +92 -0
- package/src/editor/core/themes/migrations/2026-09-13-indicator.ts +54 -0
- package/src/editor/core/themes/migrations/2026-09-13-sectiondivider-surface.ts +36 -0
- package/src/editor/core/themes/migrations/2026-09-13-selected-state.ts +124 -0
- package/src/editor/core/themes/migrations/2026-09-13-toggle-label.ts +31 -0
- package/src/editor/core/themes/migrations/index.ts +16 -0
- package/src/editor/core/themes/themeService.ts +3 -3
- package/src/editor/core/themes/themeTypes.ts +13 -15
- package/src/editor/docs/Docs.svelte +1 -1
- package/src/editor/docs/content/light-and-dark.md +3 -3
- package/src/editor/docs/content.generated.ts +1 -1
- package/src/editor/index.ts +1 -0
- package/src/editor/overlay/LiveEditorOverlay.svelte +15 -0
- package/src/editor/skill-atlas/SkillAtlas.svelte +4 -4
- package/src/editor/skill-atlas/TreeNodeCard.svelte +4 -4
- package/src/editor/skill-atlas/skillSources.generated.ts +11 -14
- package/src/editor/skill-atlas/skillTrees.ts +1 -3
- package/src/editor/skill-atlas/trees/check-compliance.ts +37 -149
- package/src/editor/skill-atlas/trees/create-component.ts +62 -64
- package/src/editor/skill-atlas/trees/create-page.ts +38 -17
- package/src/editor/skill-atlas/trees/pick-component.ts +3 -3
- package/src/editor/skill-atlas/trees/set-geometry.ts +1 -1
- package/src/editor/ui/UIPaletteSelector.svelte +11 -15
- package/src/editor/ui/variantScales.ts +8 -8
- package/src/live-tokens/data/themes/autumn.json +188 -188
- package/src/live-tokens/data/themes/halloween.json +188 -188
- package/src/live-tokens/data/themes/midnight-study.json +245 -245
- package/src/live-tokens/data/themes/ocean.json +188 -188
- package/src/live-tokens/data/themes/royal-velvet.json +188 -188
- package/src/live-tokens/data/themes/sketchy.json +188 -188
- package/src/live-tokens/data/themes/spring-meadow.json +188 -188
- package/src/live-tokens/data/themes/sunset.json +188 -188
- package/src/system/components/Badge.svelte +27 -23
- package/src/system/components/Button.svelte +13 -7
- package/src/system/components/Callout.svelte +16 -11
- package/src/system/components/Card.svelte +22 -15
- package/src/system/components/CodeSnippet.svelte +10 -6
- package/src/system/components/CollapsibleSection.svelte +81 -76
- package/src/system/components/CornerBadge.svelte +78 -72
- package/src/system/components/Dialog.svelte +21 -18
- package/src/system/components/IconButton.svelte +13 -9
- package/src/system/components/Image.svelte +14 -8
- package/src/system/components/ImageLightbox.svelte +10 -6
- package/src/system/components/InlineEditActions.svelte +17 -14
- package/src/system/components/Input.svelte +13 -7
- package/src/system/components/MenuSelect.svelte +13 -7
- package/src/system/components/Notification.svelte +17 -11
- package/src/system/components/Panel.svelte +13 -6
- package/src/system/components/ProgressBar.svelte +10 -5
- package/src/system/components/RadioButton.svelte +33 -30
- package/src/system/components/SectionDivider.svelte +28 -21
- package/src/system/components/SegmentedControl.svelte +27 -23
- package/src/system/components/SideNavigation.svelte +175 -171
- package/src/system/components/Slider.svelte +11 -7
- package/src/system/components/TabBar.svelte +53 -49
- package/src/system/components/Table.svelte +20 -15
- package/src/system/components/Toggle.svelte +14 -10
- package/src/system/components/Tooltip.svelte +10 -6
- package/src/system/styles/CONVENTIONS.md +3 -4
- package/src/testing-js/chunk-3UKGXCDL.js +48 -0
- package/src/testing-js/chunk-3UKGXCDL.js.map +1 -0
- package/src/testing-js/{chunk-FAFOAWYL.js → chunk-Q3YIAAG3.js} +17 -3
- package/src/testing-js/chunk-Q3YIAAG3.js.map +1 -0
- package/src/testing-js/{chunk-GNIUPIU2.js → chunk-U7OJE5DU.js} +18 -18
- package/src/testing-js/chunk-U7OJE5DU.js.map +1 -0
- package/src/testing-js/{chunk-4JQX6WWL.js → chunk-ZMZQZ33J.js} +474 -166
- package/src/testing-js/chunk-ZMZQZ33J.js.map +1 -0
- package/src/testing-js/component-behavior.contract.js +155 -0
- package/src/testing-js/component-behavior.contract.js.map +1 -0
- package/src/testing-js/component-editor.contract.js +6 -4
- package/src/testing-js/component-editor.contract.js.map +1 -1
- package/src/testing-js/component-render.contract.js +14 -10
- package/src/testing-js/component-render.contract.js.map +1 -1
- package/src/testing-js/index.d.ts +44 -4
- package/src/testing-js/index.js +13 -7
- package/src/testing-js/index.js.map +1 -1
- package/src/testing-js/page-compliance.contract.js +48 -10
- package/src/testing-js/page-compliance.contract.js.map +1 -1
- package/src/testing-js/registry.contract.js +5 -3
- package/src/testing-js/registry.contract.js.map +1 -1
- package/src/testing-js/{vitest-C-wNWcoA.d.ts → vitest-BMLIbDs2.d.ts} +8 -2
- package/src/testing-js/vitest.d.ts +1 -1
- package/src/testing-js/vitest.js +2 -1
- package/template/package.json +1 -2
- package/template/vite.config.ts +3 -2
- package/.claude/skills/live-tokens-create-component/SKILL copy.md +0 -196
- package/.claude/skills/live-tokens-fix-findings/SKILL.md +0 -105
- package/src/editor/skill-atlas/trees/fix-findings.ts +0 -504
- package/src/testing-js/chunk-4JQX6WWL.js.map +0 -1
- package/src/testing-js/chunk-FAFOAWYL.js.map +0 -1
- package/src/testing-js/chunk-GNIUPIU2.js.map +0 -1
|
@@ -2519,19 +2519,19 @@
|
|
|
2519
2519
|
"createdAt": "2026-05-01T08:28:00.345Z",
|
|
2520
2520
|
"updatedAt": "2026-08-19T22:39:32.785Z",
|
|
2521
2521
|
"aliases": {
|
|
2522
|
-
"--badge-
|
|
2523
|
-
"--badge-
|
|
2524
|
-
"--badge-
|
|
2525
|
-
"--badge-
|
|
2526
|
-
"--badge-
|
|
2527
|
-
"--badge-
|
|
2528
|
-
"--badge-
|
|
2529
|
-
"--badge-
|
|
2530
|
-
"--badge-
|
|
2531
|
-
"--badge-
|
|
2532
|
-
"--badge-
|
|
2533
|
-
"--badge-
|
|
2534
|
-
"--badge-
|
|
2522
|
+
"--badge-brand-surface": "--surface-brand",
|
|
2523
|
+
"--badge-brand-text": "--text-brand",
|
|
2524
|
+
"--badge-brand-border": "--border-brand",
|
|
2525
|
+
"--badge-brand-text-font-family": "--font-sans",
|
|
2526
|
+
"--badge-brand-text-font-size": "--font-size-md",
|
|
2527
|
+
"--badge-brand-text-font-weight": "--font-weight-normal",
|
|
2528
|
+
"--badge-brand-text-line-height": "--line-height-none",
|
|
2529
|
+
"--badge-brand-border-width": "--border-width-1",
|
|
2530
|
+
"--badge-brand-radius": "--radius-full",
|
|
2531
|
+
"--badge-brand-padding": "--space-8",
|
|
2532
|
+
"--badge-brand-shadow": "--shadow-none",
|
|
2533
|
+
"--badge-brand-blur": "--blur-none",
|
|
2534
|
+
"--badge-brand-icon-size": "--icon-size-sm",
|
|
2535
2535
|
"--badge-accent-surface": "--surface-accent",
|
|
2536
2536
|
"--badge-accent-text": "--text-accent",
|
|
2537
2537
|
"--badge-accent-border": "--border-accent",
|
|
@@ -2779,7 +2779,7 @@
|
|
|
2779
2779
|
"--callout-info-surface": "--surface-info-lowest",
|
|
2780
2780
|
"--callout-info-border": "--border-info-medium",
|
|
2781
2781
|
"--callout-info-border-width": "--border-width-1",
|
|
2782
|
-
"--callout-info-
|
|
2782
|
+
"--callout-info-indicator-width": "--border-width-4",
|
|
2783
2783
|
"--callout-info-radius": "--radius-xl",
|
|
2784
2784
|
"--callout-info-padding": "--space-16",
|
|
2785
2785
|
"--callout-info-label": "--text-primary",
|
|
@@ -2795,7 +2795,7 @@
|
|
|
2795
2795
|
"--callout-success-surface": "--surface-success-lowest",
|
|
2796
2796
|
"--callout-success-border": "--border-success-subtle",
|
|
2797
2797
|
"--callout-success-border-width": "--border-width-1",
|
|
2798
|
-
"--callout-success-
|
|
2798
|
+
"--callout-success-indicator-width": "--border-width-4",
|
|
2799
2799
|
"--callout-success-radius": "--radius-xl",
|
|
2800
2800
|
"--callout-success-padding": "--space-16",
|
|
2801
2801
|
"--callout-success-label": "--text-primary",
|
|
@@ -2811,7 +2811,7 @@
|
|
|
2811
2811
|
"--callout-warning-surface": "--surface-warning-lowest",
|
|
2812
2812
|
"--callout-warning-border": "--border-warning-subtle",
|
|
2813
2813
|
"--callout-warning-border-width": "--border-width-1",
|
|
2814
|
-
"--callout-warning-
|
|
2814
|
+
"--callout-warning-indicator-width": "--border-width-4",
|
|
2815
2815
|
"--callout-warning-radius": "--radius-xl",
|
|
2816
2816
|
"--callout-warning-padding": "--space-16",
|
|
2817
2817
|
"--callout-warning-label": "--text-primary",
|
|
@@ -2827,7 +2827,7 @@
|
|
|
2827
2827
|
"--callout-danger-surface": "--surface-danger-lowest",
|
|
2828
2828
|
"--callout-danger-border": "--border-danger-subtle",
|
|
2829
2829
|
"--callout-danger-border-width": "--border-width-1",
|
|
2830
|
-
"--callout-danger-
|
|
2830
|
+
"--callout-danger-indicator-width": "--border-width-4",
|
|
2831
2831
|
"--callout-danger-radius": "--radius-xl",
|
|
2832
2832
|
"--callout-danger-padding": "--space-16",
|
|
2833
2833
|
"--callout-danger-label": "--text-primary",
|
|
@@ -2931,30 +2931,30 @@
|
|
|
2931
2931
|
"--collapsiblesection-chromeless-hover-label-line-height": "--line-height-normal",
|
|
2932
2932
|
"--collapsiblesection-chromeless-hover-icon": "--text-primary",
|
|
2933
2933
|
"--collapsiblesection-chromeless-hover-icon-size": "--icon-size-xs",
|
|
2934
|
-
"--collapsiblesection-chromeless-
|
|
2935
|
-
"--collapsiblesection-
|
|
2936
|
-
"--collapsiblesection-
|
|
2937
|
-
"--collapsiblesection-
|
|
2938
|
-
"--collapsiblesection-
|
|
2939
|
-
"--collapsiblesection-
|
|
2940
|
-
"--collapsiblesection-
|
|
2941
|
-
"--collapsiblesection-
|
|
2942
|
-
"--collapsiblesection-
|
|
2943
|
-
"--collapsiblesection-
|
|
2944
|
-
"--collapsiblesection-
|
|
2945
|
-
"--collapsiblesection-
|
|
2946
|
-
"--collapsiblesection-
|
|
2947
|
-
"--collapsiblesection-
|
|
2948
|
-
"--collapsiblesection-
|
|
2949
|
-
"--collapsiblesection-
|
|
2950
|
-
"--collapsiblesection-
|
|
2951
|
-
"--collapsiblesection-
|
|
2952
|
-
"--collapsiblesection-
|
|
2953
|
-
"--collapsiblesection-
|
|
2954
|
-
"--collapsiblesection-
|
|
2955
|
-
"--collapsiblesection-
|
|
2956
|
-
"--collapsiblesection-
|
|
2957
|
-
"--collapsiblesection-
|
|
2934
|
+
"--collapsiblesection-chromeless-open-padding": "--space-6",
|
|
2935
|
+
"--collapsiblesection-hairline-default-surface": "--color-transparent",
|
|
2936
|
+
"--collapsiblesection-hairline-default-hairline-color": "--border-brand",
|
|
2937
|
+
"--collapsiblesection-hairline-default-hairline-width": "--border-width-1",
|
|
2938
|
+
"--collapsiblesection-hairline-default-padding": "--space-6",
|
|
2939
|
+
"--collapsiblesection-hairline-default-label": "--text-primary",
|
|
2940
|
+
"--collapsiblesection-hairline-default-label-font-family": "--font-sans",
|
|
2941
|
+
"--collapsiblesection-hairline-default-label-font-size": "--font-size-md",
|
|
2942
|
+
"--collapsiblesection-hairline-default-label-font-weight": "--font-weight-normal",
|
|
2943
|
+
"--collapsiblesection-hairline-default-label-line-height": "--line-height-normal",
|
|
2944
|
+
"--collapsiblesection-hairline-default-icon": "--text-primary",
|
|
2945
|
+
"--collapsiblesection-hairline-default-icon-size": "--icon-size-xs",
|
|
2946
|
+
"--collapsiblesection-hairline-hover-surface": "--color-transparent",
|
|
2947
|
+
"--collapsiblesection-hairline-hover-hairline-color": "--border-neutral",
|
|
2948
|
+
"--collapsiblesection-hairline-hover-hairline-width": "--border-width-1",
|
|
2949
|
+
"--collapsiblesection-hairline-hover-padding": "--space-6",
|
|
2950
|
+
"--collapsiblesection-hairline-hover-label": "--text-primary",
|
|
2951
|
+
"--collapsiblesection-hairline-hover-label-font-family": "--font-sans",
|
|
2952
|
+
"--collapsiblesection-hairline-hover-label-font-size": "--font-size-md",
|
|
2953
|
+
"--collapsiblesection-hairline-hover-label-font-weight": "--font-weight-normal",
|
|
2954
|
+
"--collapsiblesection-hairline-hover-label-line-height": "--line-height-normal",
|
|
2955
|
+
"--collapsiblesection-hairline-hover-icon": "--text-primary",
|
|
2956
|
+
"--collapsiblesection-hairline-hover-icon-size": "--icon-size-xs",
|
|
2957
|
+
"--collapsiblesection-hairline-open-padding": "--space-6",
|
|
2958
2958
|
"--collapsiblesection-container-frame-border": "--border-neutral",
|
|
2959
2959
|
"--collapsiblesection-container-frame-border-width": "--border-width-1",
|
|
2960
2960
|
"--collapsiblesection-container-frame-radius": "--radius-lg",
|
|
@@ -2976,8 +2976,8 @@
|
|
|
2976
2976
|
"--collapsiblesection-container-hover-label-line-height": "--line-height-normal",
|
|
2977
2977
|
"--collapsiblesection-container-hover-icon": "--text-primary",
|
|
2978
2978
|
"--collapsiblesection-container-hover-icon-size": "--icon-size-xs",
|
|
2979
|
-
"--collapsiblesection-container-
|
|
2980
|
-
"--collapsiblesection-container-
|
|
2979
|
+
"--collapsiblesection-container-open-surface": "--surface-neutral-higher",
|
|
2980
|
+
"--collapsiblesection-container-open-padding": "--space-6"
|
|
2981
2981
|
}
|
|
2982
2982
|
},
|
|
2983
2983
|
"cornerbadge": {
|
|
@@ -2986,46 +2986,46 @@
|
|
|
2986
2986
|
"createdAt": "2026-05-12T15:31:06.313Z",
|
|
2987
2987
|
"updatedAt": "2026-08-19T22:39:32.785Z",
|
|
2988
2988
|
"aliases": {
|
|
2989
|
-
"--
|
|
2990
|
-
"--
|
|
2991
|
-
"--
|
|
2992
|
-
"--
|
|
2993
|
-
"--
|
|
2994
|
-
"--
|
|
2995
|
-
"--
|
|
2996
|
-
"--
|
|
2997
|
-
"--
|
|
2998
|
-
"--
|
|
2999
|
-
"--
|
|
3000
|
-
"--
|
|
3001
|
-
"--
|
|
3002
|
-
"--
|
|
3003
|
-
"--
|
|
3004
|
-
"--
|
|
3005
|
-
"--
|
|
3006
|
-
"--
|
|
3007
|
-
"--
|
|
3008
|
-
"--
|
|
3009
|
-
"--
|
|
3010
|
-
"--
|
|
3011
|
-
"--
|
|
3012
|
-
"--
|
|
3013
|
-
"--
|
|
3014
|
-
"--
|
|
3015
|
-
"--
|
|
3016
|
-
"--
|
|
3017
|
-
"--
|
|
3018
|
-
"--
|
|
3019
|
-
"--
|
|
3020
|
-
"--
|
|
3021
|
-
"--
|
|
3022
|
-
"--
|
|
3023
|
-
"--
|
|
3024
|
-
"--
|
|
3025
|
-
"--
|
|
3026
|
-
"--
|
|
3027
|
-
"--
|
|
3028
|
-
"--
|
|
2989
|
+
"--cornerbadge-margin": "--space-2",
|
|
2990
|
+
"--cornerbadge-outer-radius": "--radius-sm",
|
|
2991
|
+
"--cornerbadge-inner-radius": "--radius-sm",
|
|
2992
|
+
"--cornerbadge-h-axis-radius": "--radius-sm",
|
|
2993
|
+
"--cornerbadge-v-axis-radius": "--radius-sm",
|
|
2994
|
+
"--cornerbadge-padding": "--space-8",
|
|
2995
|
+
"--cornerbadge-text-font-family": "--font-sans",
|
|
2996
|
+
"--cornerbadge-text-font-size": "--font-size-sm",
|
|
2997
|
+
"--cornerbadge-text-font-weight": "--font-weight-medium",
|
|
2998
|
+
"--cornerbadge-text-line-height": "--line-height-none",
|
|
2999
|
+
"--cornerbadge-brand-surface": "--surface-brand",
|
|
3000
|
+
"--cornerbadge-brand-border": "--border-brand",
|
|
3001
|
+
"--cornerbadge-brand-text": "--text-brand",
|
|
3002
|
+
"--cornerbadge-accent-surface": "--surface-accent",
|
|
3003
|
+
"--cornerbadge-accent-border": "--border-accent",
|
|
3004
|
+
"--cornerbadge-accent-text": "--text-accent",
|
|
3005
|
+
"--cornerbadge-neutral-surface": "--surface-neutral",
|
|
3006
|
+
"--cornerbadge-neutral-border": "--border-neutral",
|
|
3007
|
+
"--cornerbadge-neutral-text": "--text-primary",
|
|
3008
|
+
"--cornerbadge-alternate-surface": "--surface-alternate",
|
|
3009
|
+
"--cornerbadge-alternate-border": "--border-alternate",
|
|
3010
|
+
"--cornerbadge-alternate-text": "--text-alternate",
|
|
3011
|
+
"--cornerbadge-canvas-surface": "--surface-canvas",
|
|
3012
|
+
"--cornerbadge-canvas-border": "--border-canvas",
|
|
3013
|
+
"--cornerbadge-canvas-text": "--text-canvas",
|
|
3014
|
+
"--cornerbadge-special-surface": "--surface-special",
|
|
3015
|
+
"--cornerbadge-special-border": "--border-special",
|
|
3016
|
+
"--cornerbadge-special-text": "--text-special",
|
|
3017
|
+
"--cornerbadge-success-surface": "--surface-success",
|
|
3018
|
+
"--cornerbadge-success-border": "--border-success",
|
|
3019
|
+
"--cornerbadge-success-text": "--text-success",
|
|
3020
|
+
"--cornerbadge-warning-surface": "--surface-warning",
|
|
3021
|
+
"--cornerbadge-warning-border": "--border-warning",
|
|
3022
|
+
"--cornerbadge-warning-text": "--text-warning",
|
|
3023
|
+
"--cornerbadge-danger-surface": "--surface-danger",
|
|
3024
|
+
"--cornerbadge-danger-border": "--border-danger",
|
|
3025
|
+
"--cornerbadge-danger-text": "--text-danger",
|
|
3026
|
+
"--cornerbadge-info-surface": "--surface-info",
|
|
3027
|
+
"--cornerbadge-info-border": "--border-info",
|
|
3028
|
+
"--cornerbadge-info-text": "--text-info"
|
|
3029
3029
|
}
|
|
3030
3030
|
},
|
|
3031
3031
|
"dialog": {
|
|
@@ -3042,8 +3042,8 @@
|
|
|
3042
3042
|
"--dialog-shadow": "--shadow-2xl",
|
|
3043
3043
|
"--dialog-blur": "--blur-none",
|
|
3044
3044
|
"--dialog-header-surface": "--surface-neutral-lower",
|
|
3045
|
-
"--dialog-header-
|
|
3046
|
-
"--dialog-header-
|
|
3045
|
+
"--dialog-header-hairline-color": "--border-neutral-subtle",
|
|
3046
|
+
"--dialog-header-hairline-width": "--border-width-1",
|
|
3047
3047
|
"--dialog-header-padding": "--space-10",
|
|
3048
3048
|
"--dialog-title": "--text-primary",
|
|
3049
3049
|
"--dialog-title-font-family": "--font-sans",
|
|
@@ -3058,8 +3058,8 @@
|
|
|
3058
3058
|
"--dialog-body-font-size": "--font-size-md",
|
|
3059
3059
|
"--dialog-body-font-weight": "--font-weight-normal",
|
|
3060
3060
|
"--dialog-body-line-height": "--line-height-normal",
|
|
3061
|
-
"--dialog-footer-
|
|
3062
|
-
"--dialog-footer-
|
|
3061
|
+
"--dialog-footer-hairline-color": "--border-neutral-subtle",
|
|
3062
|
+
"--dialog-footer-hairline-width": "--border-width-1",
|
|
3063
3063
|
"--dialog-footer-padding": "--space-20"
|
|
3064
3064
|
}
|
|
3065
3065
|
},
|
|
@@ -3495,15 +3495,15 @@
|
|
|
3495
3495
|
"--radiobutton-hover-label-font-size": "--font-size-md",
|
|
3496
3496
|
"--radiobutton-hover-label-font-weight": "--font-weight-semibold",
|
|
3497
3497
|
"--radiobutton-hover-label-line-height": "--line-height-none",
|
|
3498
|
-
"--radiobutton-
|
|
3499
|
-
"--radiobutton-
|
|
3500
|
-
"--radiobutton-
|
|
3501
|
-
"--radiobutton-
|
|
3502
|
-
"--radiobutton-
|
|
3503
|
-
"--radiobutton-
|
|
3504
|
-
"--radiobutton-
|
|
3505
|
-
"--radiobutton-
|
|
3506
|
-
"--radiobutton-
|
|
3498
|
+
"--radiobutton-selected-dot-border-color": "--border-neutral",
|
|
3499
|
+
"--radiobutton-selected-dot-border-width": "--border-width-2",
|
|
3500
|
+
"--radiobutton-selected-dot-fill": "--text-secondary",
|
|
3501
|
+
"--radiobutton-selected-dot-size": "--dot-size-50",
|
|
3502
|
+
"--radiobutton-selected-label": "--text-primary",
|
|
3503
|
+
"--radiobutton-selected-label-font-family": "--font-sans",
|
|
3504
|
+
"--radiobutton-selected-label-font-size": "--font-size-md",
|
|
3505
|
+
"--radiobutton-selected-label-font-weight": "--font-weight-semibold",
|
|
3506
|
+
"--radiobutton-selected-label-line-height": "--line-height-none"
|
|
3507
3507
|
}
|
|
3508
3508
|
},
|
|
3509
3509
|
"sectiondivider": {
|
|
@@ -3532,8 +3532,8 @@
|
|
|
3532
3532
|
"--sectiondivider-lg-radius": "--radius-xl",
|
|
3533
3533
|
"--sectiondivider-lg-border-width": "--border-width-1",
|
|
3534
3534
|
"--sectiondivider-lg-shadow": "--shadow-none",
|
|
3535
|
-
"--sectiondivider-lg-hairline-
|
|
3536
|
-
"--sectiondivider-lg-
|
|
3535
|
+
"--sectiondivider-lg-hairline-width": "--border-width-1",
|
|
3536
|
+
"--sectiondivider-lg-surface": "--color-transparent",
|
|
3537
3537
|
"--sectiondivider-lg-title": "--text-primary",
|
|
3538
3538
|
"--sectiondivider-lg-description": "--text-alternate",
|
|
3539
3539
|
"--sectiondivider-lg-eyebrow": "--text-brand",
|
|
@@ -3559,8 +3559,8 @@
|
|
|
3559
3559
|
"--sectiondivider-md-radius": "--radius-xl",
|
|
3560
3560
|
"--sectiondivider-md-border-width": "--border-width-1",
|
|
3561
3561
|
"--sectiondivider-md-shadow": "--shadow-none",
|
|
3562
|
-
"--sectiondivider-md-hairline-
|
|
3563
|
-
"--sectiondivider-md-
|
|
3562
|
+
"--sectiondivider-md-hairline-width": "--border-width-1",
|
|
3563
|
+
"--sectiondivider-md-surface": "--color-transparent",
|
|
3564
3564
|
"--sectiondivider-md-title": "--text-primary",
|
|
3565
3565
|
"--sectiondivider-md-description": "--text-secondary",
|
|
3566
3566
|
"--sectiondivider-md-eyebrow": "--text-tertiary",
|
|
@@ -3586,8 +3586,8 @@
|
|
|
3586
3586
|
"--sectiondivider-sm-radius": "--radius-xl",
|
|
3587
3587
|
"--sectiondivider-sm-border-width": "--border-width-1",
|
|
3588
3588
|
"--sectiondivider-sm-shadow": "--shadow-none",
|
|
3589
|
-
"--sectiondivider-sm-hairline-
|
|
3590
|
-
"--sectiondivider-sm-
|
|
3589
|
+
"--sectiondivider-sm-hairline-width": "--border-width-1",
|
|
3590
|
+
"--sectiondivider-sm-surface": "--color-transparent",
|
|
3591
3591
|
"--sectiondivider-sm-title": "--text-brand",
|
|
3592
3592
|
"--sectiondivider-sm-description": "--text-secondary",
|
|
3593
3593
|
"--sectiondivider-sm-eyebrow": "--text-tertiary",
|
|
@@ -3609,9 +3609,9 @@
|
|
|
3609
3609
|
"--segmentedcontrol-bar-radius": "--radius-xl",
|
|
3610
3610
|
"--segmentedcontrol-bar-padding": "--space-6",
|
|
3611
3611
|
"--segmentedcontrol-bar-gap": "--space-8",
|
|
3612
|
-
"--segmentedcontrol-
|
|
3613
|
-
"--segmentedcontrol-
|
|
3614
|
-
"--segmentedcontrol-
|
|
3612
|
+
"--segmentedcontrol-hairline-color": "--border-neutral",
|
|
3613
|
+
"--segmentedcontrol-hairline-width": "--border-width-1",
|
|
3614
|
+
"--segmentedcontrol-hairline-inset": "--space-6",
|
|
3615
3615
|
"--segmentedcontrol-option-padding": "--space-10",
|
|
3616
3616
|
"--segmentedcontrol-option-gap": "--space-8",
|
|
3617
3617
|
"--segmentedcontrol-option-text": "--text-primary",
|
|
@@ -3647,8 +3647,8 @@
|
|
|
3647
3647
|
"--segmentedcontrol-disabled-icon": "--text-secondary",
|
|
3648
3648
|
"--segmentedcontrol-bar-small-padding": "--space-4",
|
|
3649
3649
|
"--segmentedcontrol-bar-small-radius": "--radius-lg",
|
|
3650
|
-
"--segmentedcontrol-small-
|
|
3651
|
-
"--segmentedcontrol-small-
|
|
3650
|
+
"--segmentedcontrol-small-hairline-inset": "--space-4",
|
|
3651
|
+
"--segmentedcontrol-small-hairline-width": "--border-width-1",
|
|
3652
3652
|
"--segmentedcontrol-option-small-padding": "--space-8",
|
|
3653
3653
|
"--segmentedcontrol-option-small-gap": "--space-6",
|
|
3654
3654
|
"--segmentedcontrol-option-small-icon-size": "--icon-size-sm",
|
|
@@ -3687,8 +3687,8 @@
|
|
|
3687
3687
|
"--sidenavigation-title-default-border": "--border-canvas-faint",
|
|
3688
3688
|
"--sidenavigation-title-default-border-width": "--border-width-1",
|
|
3689
3689
|
"--sidenavigation-title-default-padding": "--space-16",
|
|
3690
|
-
"--sidenavigation-title-default-
|
|
3691
|
-
"--sidenavigation-title-default-
|
|
3690
|
+
"--sidenavigation-title-default-indicator": "--color-transparent",
|
|
3691
|
+
"--sidenavigation-title-default-indicator-width": "--border-width-3",
|
|
3692
3692
|
"--sidenavigation-title-default-label": "--text-primary",
|
|
3693
3693
|
"--sidenavigation-title-default-label-font-family": "--font-display",
|
|
3694
3694
|
"--sidenavigation-title-default-label-font-size": "--font-size-2xl",
|
|
@@ -3698,24 +3698,24 @@
|
|
|
3698
3698
|
"--sidenavigation-title-hover-border": "--border-canvas-faint",
|
|
3699
3699
|
"--sidenavigation-title-hover-border-width": "--border-width-1",
|
|
3700
3700
|
"--sidenavigation-title-hover-padding": "--space-16",
|
|
3701
|
-
"--sidenavigation-title-hover-
|
|
3702
|
-
"--sidenavigation-title-hover-
|
|
3701
|
+
"--sidenavigation-title-hover-indicator": "--color-transparent",
|
|
3702
|
+
"--sidenavigation-title-hover-indicator-width": "--border-width-3",
|
|
3703
3703
|
"--sidenavigation-title-hover-label": "--text-primary",
|
|
3704
3704
|
"--sidenavigation-title-hover-label-font-family": "--font-display",
|
|
3705
3705
|
"--sidenavigation-title-hover-label-font-size": "--font-size-2xl",
|
|
3706
3706
|
"--sidenavigation-title-hover-label-font-weight": "--font-weight-bold",
|
|
3707
3707
|
"--sidenavigation-title-hover-label-line-height": "--line-height-tighter",
|
|
3708
|
-
"--sidenavigation-title-
|
|
3709
|
-
"--sidenavigation-title-
|
|
3710
|
-
"--sidenavigation-title-
|
|
3711
|
-
"--sidenavigation-title-
|
|
3712
|
-
"--sidenavigation-title-
|
|
3713
|
-
"--sidenavigation-title-
|
|
3714
|
-
"--sidenavigation-title-
|
|
3715
|
-
"--sidenavigation-title-
|
|
3716
|
-
"--sidenavigation-title-
|
|
3717
|
-
"--sidenavigation-title-
|
|
3718
|
-
"--sidenavigation-title-
|
|
3708
|
+
"--sidenavigation-title-selected-surface": "--surface-canvas-low",
|
|
3709
|
+
"--sidenavigation-title-selected-border": "--border-canvas-faint",
|
|
3710
|
+
"--sidenavigation-title-selected-border-width": "--border-width-1",
|
|
3711
|
+
"--sidenavigation-title-selected-padding": "--space-16",
|
|
3712
|
+
"--sidenavigation-title-selected-indicator": "--border-brand-medium",
|
|
3713
|
+
"--sidenavigation-title-selected-indicator-width": "--border-width-3",
|
|
3714
|
+
"--sidenavigation-title-selected-label": "--text-primary",
|
|
3715
|
+
"--sidenavigation-title-selected-label-font-family": "--font-display",
|
|
3716
|
+
"--sidenavigation-title-selected-label-font-size": "--font-size-2xl",
|
|
3717
|
+
"--sidenavigation-title-selected-label-font-weight": "--font-weight-bold",
|
|
3718
|
+
"--sidenavigation-title-selected-label-line-height": "--line-height-tighter",
|
|
3719
3719
|
"--sidenavigation-toggle-default-surface": "--color-transparent",
|
|
3720
3720
|
"--sidenavigation-toggle-default-border": "--border-brand-medium",
|
|
3721
3721
|
"--sidenavigation-toggle-default-border-width": "--border-width-1",
|
|
@@ -3731,33 +3731,33 @@
|
|
|
3731
3731
|
"--sidenavigation-toggle-hover-icon": "--text-brand",
|
|
3732
3732
|
"--sidenavigation-toggle-hover-icon-size": "--icon-size-md",
|
|
3733
3733
|
"--sidenavigation-section-default-surface": "--color-transparent",
|
|
3734
|
-
"--sidenavigation-section-default-
|
|
3735
|
-
"--sidenavigation-section-default-
|
|
3734
|
+
"--sidenavigation-section-default-indicator": "--color-transparent",
|
|
3735
|
+
"--sidenavigation-section-default-indicator-width": "--border-width-3",
|
|
3736
3736
|
"--sidenavigation-section-default-text": "--text-primary",
|
|
3737
3737
|
"--sidenavigation-section-default-text-font-family": "--font-sans",
|
|
3738
3738
|
"--sidenavigation-section-default-text-font-size": "--font-size-lg",
|
|
3739
3739
|
"--sidenavigation-section-default-text-font-weight": "--font-weight-medium",
|
|
3740
3740
|
"--sidenavigation-section-default-text-line-height": "--line-height-normal",
|
|
3741
3741
|
"--sidenavigation-section-hover-surface": "--surface-canvas",
|
|
3742
|
-
"--sidenavigation-section-hover-
|
|
3743
|
-
"--sidenavigation-section-hover-
|
|
3742
|
+
"--sidenavigation-section-hover-indicator": "--color-transparent",
|
|
3743
|
+
"--sidenavigation-section-hover-indicator-width": "--border-width-3",
|
|
3744
3744
|
"--sidenavigation-section-hover-text": "--text-primary",
|
|
3745
3745
|
"--sidenavigation-section-hover-text-font-family": "--font-sans",
|
|
3746
3746
|
"--sidenavigation-section-hover-text-font-size": "--font-size-lg",
|
|
3747
3747
|
"--sidenavigation-section-hover-text-font-weight": "--font-weight-medium",
|
|
3748
3748
|
"--sidenavigation-section-hover-text-line-height": "--line-height-normal",
|
|
3749
|
-
"--sidenavigation-section-
|
|
3750
|
-
"--sidenavigation-section-
|
|
3751
|
-
"--sidenavigation-section-
|
|
3752
|
-
"--sidenavigation-section-
|
|
3753
|
-
"--sidenavigation-section-
|
|
3754
|
-
"--sidenavigation-section-
|
|
3755
|
-
"--sidenavigation-section-
|
|
3756
|
-
"--sidenavigation-section-
|
|
3749
|
+
"--sidenavigation-section-selected-surface": "--surface-canvas-low",
|
|
3750
|
+
"--sidenavigation-section-selected-indicator": "--border-brand-medium",
|
|
3751
|
+
"--sidenavigation-section-selected-indicator-width": "--border-width-3",
|
|
3752
|
+
"--sidenavigation-section-selected-text": "--text-primary",
|
|
3753
|
+
"--sidenavigation-section-selected-text-font-family": "--font-sans",
|
|
3754
|
+
"--sidenavigation-section-selected-text-font-size": "--font-size-lg",
|
|
3755
|
+
"--sidenavigation-section-selected-text-font-weight": "--font-weight-medium",
|
|
3756
|
+
"--sidenavigation-section-selected-text-line-height": "--line-height-normal",
|
|
3757
3757
|
"--sidenavigation-item-default-surface": "--color-transparent",
|
|
3758
3758
|
"--sidenavigation-item-default-padding": "--space-8",
|
|
3759
|
-
"--sidenavigation-item-default-
|
|
3760
|
-
"--sidenavigation-item-default-
|
|
3759
|
+
"--sidenavigation-item-default-indicator": "--color-transparent",
|
|
3760
|
+
"--sidenavigation-item-default-indicator-width": "--border-width-3",
|
|
3761
3761
|
"--sidenavigation-item-default-text": "--text-tertiary",
|
|
3762
3762
|
"--sidenavigation-item-default-text-font-family": "--font-sans",
|
|
3763
3763
|
"--sidenavigation-item-default-text-font-size": "--font-size-md",
|
|
@@ -3765,27 +3765,27 @@
|
|
|
3765
3765
|
"--sidenavigation-item-default-text-line-height": "--line-height-normal",
|
|
3766
3766
|
"--sidenavigation-item-hover-surface": "--surface-canvas",
|
|
3767
3767
|
"--sidenavigation-item-hover-padding": "--space-8",
|
|
3768
|
-
"--sidenavigation-item-hover-
|
|
3769
|
-
"--sidenavigation-item-hover-
|
|
3768
|
+
"--sidenavigation-item-hover-indicator": "--color-transparent",
|
|
3769
|
+
"--sidenavigation-item-hover-indicator-width": "--border-width-3",
|
|
3770
3770
|
"--sidenavigation-item-hover-text": "--text-secondary",
|
|
3771
3771
|
"--sidenavigation-item-hover-text-font-family": "--font-sans",
|
|
3772
3772
|
"--sidenavigation-item-hover-text-font-size": "--font-size-md",
|
|
3773
3773
|
"--sidenavigation-item-hover-text-font-weight": "--font-weight-light",
|
|
3774
3774
|
"--sidenavigation-item-hover-text-line-height": "--line-height-normal",
|
|
3775
|
-
"--sidenavigation-item-
|
|
3776
|
-
"--sidenavigation-item-
|
|
3777
|
-
"--sidenavigation-item-
|
|
3778
|
-
"--sidenavigation-item-
|
|
3779
|
-
"--sidenavigation-item-
|
|
3780
|
-
"--sidenavigation-item-
|
|
3781
|
-
"--sidenavigation-item-
|
|
3782
|
-
"--sidenavigation-item-
|
|
3783
|
-
"--sidenavigation-item-
|
|
3775
|
+
"--sidenavigation-item-selected-surface": "--surface-canvas-low",
|
|
3776
|
+
"--sidenavigation-item-selected-padding": "--space-8",
|
|
3777
|
+
"--sidenavigation-item-selected-indicator": "--border-brand-medium",
|
|
3778
|
+
"--sidenavigation-item-selected-indicator-width": "--border-width-3",
|
|
3779
|
+
"--sidenavigation-item-selected-text": "--text-primary",
|
|
3780
|
+
"--sidenavigation-item-selected-text-font-family": "--font-sans",
|
|
3781
|
+
"--sidenavigation-item-selected-text-font-size": "--font-size-md",
|
|
3782
|
+
"--sidenavigation-item-selected-text-font-weight": "--font-weight-normal",
|
|
3783
|
+
"--sidenavigation-item-selected-text-line-height": "--line-height-normal",
|
|
3784
3784
|
"--sidenavigation-footer-default-surface": "--color-transparent",
|
|
3785
3785
|
"--sidenavigation-footer-default-padding": "--space-10",
|
|
3786
3786
|
"--sidenavigation-footer-default-gap": "--space-8",
|
|
3787
|
-
"--sidenavigation-footer-default-
|
|
3788
|
-
"--sidenavigation-footer-default-
|
|
3787
|
+
"--sidenavigation-footer-default-indicator": "--color-transparent",
|
|
3788
|
+
"--sidenavigation-footer-default-indicator-width": "--border-width-3",
|
|
3789
3789
|
"--sidenavigation-footer-default-icon": "--text-muted",
|
|
3790
3790
|
"--sidenavigation-footer-default-icon-size": "--icon-size-xs",
|
|
3791
3791
|
"--sidenavigation-footer-default-text": "--text-tertiary",
|
|
@@ -3796,8 +3796,8 @@
|
|
|
3796
3796
|
"--sidenavigation-footer-hover-surface": "--surface-canvas",
|
|
3797
3797
|
"--sidenavigation-footer-hover-padding": "--space-10",
|
|
3798
3798
|
"--sidenavigation-footer-hover-gap": "--space-8",
|
|
3799
|
-
"--sidenavigation-footer-hover-
|
|
3800
|
-
"--sidenavigation-footer-hover-
|
|
3799
|
+
"--sidenavigation-footer-hover-indicator": "--color-transparent",
|
|
3800
|
+
"--sidenavigation-footer-hover-indicator-width": "--border-width-3",
|
|
3801
3801
|
"--sidenavigation-footer-hover-icon": "--text-secondary",
|
|
3802
3802
|
"--sidenavigation-footer-hover-icon-size": "--icon-size-xs",
|
|
3803
3803
|
"--sidenavigation-footer-hover-text": "--text-secondary",
|
|
@@ -3805,18 +3805,18 @@
|
|
|
3805
3805
|
"--sidenavigation-footer-hover-text-font-size": "--font-size-sm",
|
|
3806
3806
|
"--sidenavigation-footer-hover-text-font-weight": "--font-weight-light",
|
|
3807
3807
|
"--sidenavigation-footer-hover-text-line-height": "--line-height-normal",
|
|
3808
|
-
"--sidenavigation-footer-
|
|
3809
|
-
"--sidenavigation-footer-
|
|
3810
|
-
"--sidenavigation-footer-
|
|
3811
|
-
"--sidenavigation-footer-
|
|
3812
|
-
"--sidenavigation-footer-
|
|
3813
|
-
"--sidenavigation-footer-
|
|
3814
|
-
"--sidenavigation-footer-
|
|
3815
|
-
"--sidenavigation-footer-
|
|
3816
|
-
"--sidenavigation-footer-
|
|
3817
|
-
"--sidenavigation-footer-
|
|
3818
|
-
"--sidenavigation-footer-
|
|
3819
|
-
"--sidenavigation-footer-
|
|
3808
|
+
"--sidenavigation-footer-selected-surface": "--surface-canvas-low",
|
|
3809
|
+
"--sidenavigation-footer-selected-padding": "--space-10",
|
|
3810
|
+
"--sidenavigation-footer-selected-gap": "--space-8",
|
|
3811
|
+
"--sidenavigation-footer-selected-indicator": "--border-brand-medium",
|
|
3812
|
+
"--sidenavigation-footer-selected-indicator-width": "--border-width-3",
|
|
3813
|
+
"--sidenavigation-footer-selected-icon": "--text-primary",
|
|
3814
|
+
"--sidenavigation-footer-selected-icon-size": "--icon-size-xs",
|
|
3815
|
+
"--sidenavigation-footer-selected-text": "--text-primary",
|
|
3816
|
+
"--sidenavigation-footer-selected-text-font-family": "--font-sans",
|
|
3817
|
+
"--sidenavigation-footer-selected-text-font-size": "--font-size-sm",
|
|
3818
|
+
"--sidenavigation-footer-selected-text-font-weight": "--font-weight-normal",
|
|
3819
|
+
"--sidenavigation-footer-selected-text-line-height": "--line-height-normal"
|
|
3820
3820
|
}
|
|
3821
3821
|
},
|
|
3822
3822
|
"tabbar": {
|
|
@@ -3827,8 +3827,8 @@
|
|
|
3827
3827
|
"aliases": {
|
|
3828
3828
|
"--tabbar-hover-tint": "--tint",
|
|
3829
3829
|
"--tabbar-hover-tint-enabled": "--color-transparent",
|
|
3830
|
-
"--tabbar-bar-
|
|
3831
|
-
"--tabbar-bar-
|
|
3830
|
+
"--tabbar-bar-hairline-color": "--border-neutral-subtle",
|
|
3831
|
+
"--tabbar-bar-hairline-width": "--border-width-1",
|
|
3832
3832
|
"--tabbar-bar-top-margin": "--space-2",
|
|
3833
3833
|
"--tabbar-bar-bottom-padding": "--space-4",
|
|
3834
3834
|
"--tabbar-bar-bottom-margin": "--space-2",
|
|
@@ -3861,20 +3861,20 @@
|
|
|
3861
3861
|
"--tabbar-hover-tab-top-radius": "--radius-sm",
|
|
3862
3862
|
"--tabbar-hover-tab-bottom-radius": "--radius-sm",
|
|
3863
3863
|
"--tabbar-hover-indicator-width": "--border-width-2",
|
|
3864
|
-
"--tabbar-
|
|
3865
|
-
"--tabbar-
|
|
3866
|
-
"--tabbar-
|
|
3867
|
-
"--tabbar-
|
|
3868
|
-
"--tabbar-
|
|
3869
|
-
"--tabbar-
|
|
3870
|
-
"--tabbar-
|
|
3871
|
-
"--tabbar-
|
|
3872
|
-
"--tabbar-
|
|
3873
|
-
"--tabbar-
|
|
3874
|
-
"--tabbar-
|
|
3875
|
-
"--tabbar-
|
|
3876
|
-
"--tabbar-
|
|
3877
|
-
"--tabbar-
|
|
3864
|
+
"--tabbar-selected-text": "--text-primary",
|
|
3865
|
+
"--tabbar-selected-border": "--color-brand-500",
|
|
3866
|
+
"--tabbar-selected-surface": "--tint-low",
|
|
3867
|
+
"--tabbar-selected-text-font-family": "--font-sans",
|
|
3868
|
+
"--tabbar-selected-text-font-size": "--font-size-md",
|
|
3869
|
+
"--tabbar-selected-text-font-weight": "--font-weight-light",
|
|
3870
|
+
"--tabbar-selected-text-line-height": "--line-height-normal",
|
|
3871
|
+
"--tabbar-selected-icon-size": "--icon-size-md",
|
|
3872
|
+
"--tabbar-selected-padding": "--space-10",
|
|
3873
|
+
"--tabbar-selected-tab-border-color": "--color-transparent",
|
|
3874
|
+
"--tabbar-selected-tab-border-width": "--border-width-0",
|
|
3875
|
+
"--tabbar-selected-tab-top-radius": "--radius-sm",
|
|
3876
|
+
"--tabbar-selected-tab-bottom-radius": "--radius-sm",
|
|
3877
|
+
"--tabbar-selected-indicator-width": "--border-width-2",
|
|
3878
3878
|
"--tabbar-disabled-text": "--text-disabled",
|
|
3879
3879
|
"--tabbar-disabled-text-font-family": "--font-sans",
|
|
3880
3880
|
"--tabbar-disabled-text-font-size": "--font-size-md",
|
|
@@ -3909,8 +3909,8 @@
|
|
|
3909
3909
|
"--table-default-header-font-weight": "--font-weight-semibold",
|
|
3910
3910
|
"--table-default-header-line-height": "--line-height-none",
|
|
3911
3911
|
"--table-default-header-padding": "--space-16",
|
|
3912
|
-
"--table-default-header-
|
|
3913
|
-
"--table-default-header-
|
|
3912
|
+
"--table-default-header-hairline-color": "--border-neutral",
|
|
3913
|
+
"--table-default-header-hairline-width": "--border-width-1",
|
|
3914
3914
|
"--table-default-cell-text": "--text-secondary",
|
|
3915
3915
|
"--table-default-cell-font-family": "--font-sans",
|
|
3916
3916
|
"--table-default-cell-font-size": "--font-size-md",
|
|
@@ -3918,11 +3918,11 @@
|
|
|
3918
3918
|
"--table-default-cell-line-height": "--line-height-normal",
|
|
3919
3919
|
"--table-default-cell-padding": "--space-10",
|
|
3920
3920
|
"--table-default-row-surface": "--color-transparent",
|
|
3921
|
-
"--table-default-row-
|
|
3922
|
-
"--table-default-row-
|
|
3921
|
+
"--table-default-row-hairline-color": "--border-neutral-subtle",
|
|
3922
|
+
"--table-default-row-hairline-width": "--border-width-1",
|
|
3923
3923
|
"--table-default-row-stripe-surface": "--color-transparent",
|
|
3924
|
-
"--table-default-column-
|
|
3925
|
-
"--table-default-column-
|
|
3924
|
+
"--table-default-column-hairline-color": "--border-neutral-faint",
|
|
3925
|
+
"--table-default-column-hairline-width": "--border-width-1"
|
|
3926
3926
|
}
|
|
3927
3927
|
},
|
|
3928
3928
|
"toggle": {
|
|
@@ -3939,7 +3939,7 @@
|
|
|
3939
3939
|
"--toggle-thumb-surface": "--surface-neutral-highest",
|
|
3940
3940
|
"--toggle-thumb-border": "--border-neutral-strong",
|
|
3941
3941
|
"--toggle-thumb-size": "--font-size-md",
|
|
3942
|
-
"--toggle-label
|
|
3942
|
+
"--toggle-label": "--text-primary",
|
|
3943
3943
|
"--toggle-label-font-family": "--font-sans",
|
|
3944
3944
|
"--toggle-label-font-size": "--font-size-sm",
|
|
3945
3945
|
"--toggle-label-font-weight": "--font-weight-normal",
|
|
@@ -3954,7 +3954,7 @@
|
|
|
3954
3954
|
"--toggle-on-hover-thumb-surface": "--text-primary",
|
|
3955
3955
|
"--toggle-disabled-track-surface": "--surface-neutral-lower",
|
|
3956
3956
|
"--toggle-disabled-thumb-surface": "--surface-neutral",
|
|
3957
|
-
"--toggle-disabled-label
|
|
3957
|
+
"--toggle-disabled-label": "--text-disabled"
|
|
3958
3958
|
}
|
|
3959
3959
|
},
|
|
3960
3960
|
"tooltip": {
|
|
@@ -4032,5 +4032,5 @@
|
|
|
4032
4032
|
}
|
|
4033
4033
|
}
|
|
4034
4034
|
},
|
|
4035
|
-
"componentSchemaVersion":
|
|
4035
|
+
"componentSchemaVersion": 35
|
|
4036
4036
|
}
|