@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
|
@@ -2494,19 +2494,19 @@
|
|
|
2494
2494
|
"createdAt": "2026-05-01T08:28:00.345Z",
|
|
2495
2495
|
"updatedAt": "2026-08-25T01:13:11.520Z",
|
|
2496
2496
|
"aliases": {
|
|
2497
|
-
"--badge-
|
|
2498
|
-
"--badge-
|
|
2499
|
-
"--badge-
|
|
2500
|
-
"--badge-
|
|
2501
|
-
"--badge-
|
|
2502
|
-
"--badge-
|
|
2503
|
-
"--badge-
|
|
2504
|
-
"--badge-
|
|
2505
|
-
"--badge-
|
|
2506
|
-
"--badge-
|
|
2507
|
-
"--badge-
|
|
2508
|
-
"--badge-
|
|
2509
|
-
"--badge-
|
|
2497
|
+
"--badge-brand-surface": "--surface-brand",
|
|
2498
|
+
"--badge-brand-text": "--text-brand",
|
|
2499
|
+
"--badge-brand-border": "--border-brand",
|
|
2500
|
+
"--badge-brand-text-font-family": "--font-sans",
|
|
2501
|
+
"--badge-brand-text-font-size": "--font-size-md",
|
|
2502
|
+
"--badge-brand-text-font-weight": "--font-weight-normal",
|
|
2503
|
+
"--badge-brand-text-line-height": "--line-height-none",
|
|
2504
|
+
"--badge-brand-border-width": "--border-width-1",
|
|
2505
|
+
"--badge-brand-radius": "--radius-none",
|
|
2506
|
+
"--badge-brand-padding": "--space-8",
|
|
2507
|
+
"--badge-brand-shadow": "--shadow-none",
|
|
2508
|
+
"--badge-brand-blur": "--blur-none",
|
|
2509
|
+
"--badge-brand-icon-size": "--icon-size-sm",
|
|
2510
2510
|
"--badge-accent-surface": "--surface-accent",
|
|
2511
2511
|
"--badge-accent-text": "--text-accent",
|
|
2512
2512
|
"--badge-accent-border": "--border-accent",
|
|
@@ -2754,7 +2754,7 @@
|
|
|
2754
2754
|
"--callout-info-surface": "--surface-info-lowest",
|
|
2755
2755
|
"--callout-info-border": "--border-info-medium",
|
|
2756
2756
|
"--callout-info-border-width": "--border-width-1",
|
|
2757
|
-
"--callout-info-
|
|
2757
|
+
"--callout-info-indicator-width": "--border-width-4",
|
|
2758
2758
|
"--callout-info-radius": "--radius-none",
|
|
2759
2759
|
"--callout-info-padding": "--space-16",
|
|
2760
2760
|
"--callout-info-label": "--text-primary",
|
|
@@ -2770,7 +2770,7 @@
|
|
|
2770
2770
|
"--callout-success-surface": "--surface-success-lowest",
|
|
2771
2771
|
"--callout-success-border": "--border-success-subtle",
|
|
2772
2772
|
"--callout-success-border-width": "--border-width-1",
|
|
2773
|
-
"--callout-success-
|
|
2773
|
+
"--callout-success-indicator-width": "--border-width-4",
|
|
2774
2774
|
"--callout-success-radius": "--radius-none",
|
|
2775
2775
|
"--callout-success-padding": "--space-16",
|
|
2776
2776
|
"--callout-success-label": "--text-primary",
|
|
@@ -2786,7 +2786,7 @@
|
|
|
2786
2786
|
"--callout-warning-surface": "--surface-warning-lowest",
|
|
2787
2787
|
"--callout-warning-border": "--border-warning-subtle",
|
|
2788
2788
|
"--callout-warning-border-width": "--border-width-1",
|
|
2789
|
-
"--callout-warning-
|
|
2789
|
+
"--callout-warning-indicator-width": "--border-width-4",
|
|
2790
2790
|
"--callout-warning-radius": "--radius-none",
|
|
2791
2791
|
"--callout-warning-padding": "--space-16",
|
|
2792
2792
|
"--callout-warning-label": "--text-primary",
|
|
@@ -2802,7 +2802,7 @@
|
|
|
2802
2802
|
"--callout-danger-surface": "--surface-danger-lowest",
|
|
2803
2803
|
"--callout-danger-border": "--border-danger-subtle",
|
|
2804
2804
|
"--callout-danger-border-width": "--border-width-1",
|
|
2805
|
-
"--callout-danger-
|
|
2805
|
+
"--callout-danger-indicator-width": "--border-width-4",
|
|
2806
2806
|
"--callout-danger-radius": "--radius-none",
|
|
2807
2807
|
"--callout-danger-padding": "--space-16",
|
|
2808
2808
|
"--callout-danger-label": "--text-primary",
|
|
@@ -2906,30 +2906,30 @@
|
|
|
2906
2906
|
"--collapsiblesection-chromeless-hover-label-line-height": "--line-height-normal",
|
|
2907
2907
|
"--collapsiblesection-chromeless-hover-icon": "--text-primary",
|
|
2908
2908
|
"--collapsiblesection-chromeless-hover-icon-size": "--icon-size-xs",
|
|
2909
|
-
"--collapsiblesection-chromeless-
|
|
2910
|
-
"--collapsiblesection-
|
|
2911
|
-
"--collapsiblesection-
|
|
2912
|
-
"--collapsiblesection-
|
|
2913
|
-
"--collapsiblesection-
|
|
2914
|
-
"--collapsiblesection-
|
|
2915
|
-
"--collapsiblesection-
|
|
2916
|
-
"--collapsiblesection-
|
|
2917
|
-
"--collapsiblesection-
|
|
2918
|
-
"--collapsiblesection-
|
|
2919
|
-
"--collapsiblesection-
|
|
2920
|
-
"--collapsiblesection-
|
|
2921
|
-
"--collapsiblesection-
|
|
2922
|
-
"--collapsiblesection-
|
|
2923
|
-
"--collapsiblesection-
|
|
2924
|
-
"--collapsiblesection-
|
|
2925
|
-
"--collapsiblesection-
|
|
2926
|
-
"--collapsiblesection-
|
|
2927
|
-
"--collapsiblesection-
|
|
2928
|
-
"--collapsiblesection-
|
|
2929
|
-
"--collapsiblesection-
|
|
2930
|
-
"--collapsiblesection-
|
|
2931
|
-
"--collapsiblesection-
|
|
2932
|
-
"--collapsiblesection-
|
|
2909
|
+
"--collapsiblesection-chromeless-open-padding": "--space-6",
|
|
2910
|
+
"--collapsiblesection-hairline-default-surface": "--color-transparent",
|
|
2911
|
+
"--collapsiblesection-hairline-default-hairline-color": "--border-brand",
|
|
2912
|
+
"--collapsiblesection-hairline-default-hairline-width": "--border-width-1",
|
|
2913
|
+
"--collapsiblesection-hairline-default-padding": "--space-6",
|
|
2914
|
+
"--collapsiblesection-hairline-default-label": "--text-primary",
|
|
2915
|
+
"--collapsiblesection-hairline-default-label-font-family": "--font-sans",
|
|
2916
|
+
"--collapsiblesection-hairline-default-label-font-size": "--font-size-md",
|
|
2917
|
+
"--collapsiblesection-hairline-default-label-font-weight": "--font-weight-normal",
|
|
2918
|
+
"--collapsiblesection-hairline-default-label-line-height": "--line-height-normal",
|
|
2919
|
+
"--collapsiblesection-hairline-default-icon": "--text-primary",
|
|
2920
|
+
"--collapsiblesection-hairline-default-icon-size": "--icon-size-xs",
|
|
2921
|
+
"--collapsiblesection-hairline-hover-surface": "--color-transparent",
|
|
2922
|
+
"--collapsiblesection-hairline-hover-hairline-color": "--border-neutral",
|
|
2923
|
+
"--collapsiblesection-hairline-hover-hairline-width": "--border-width-1",
|
|
2924
|
+
"--collapsiblesection-hairline-hover-padding": "--space-6",
|
|
2925
|
+
"--collapsiblesection-hairline-hover-label": "--text-primary",
|
|
2926
|
+
"--collapsiblesection-hairline-hover-label-font-family": "--font-sans",
|
|
2927
|
+
"--collapsiblesection-hairline-hover-label-font-size": "--font-size-md",
|
|
2928
|
+
"--collapsiblesection-hairline-hover-label-font-weight": "--font-weight-normal",
|
|
2929
|
+
"--collapsiblesection-hairline-hover-label-line-height": "--line-height-normal",
|
|
2930
|
+
"--collapsiblesection-hairline-hover-icon": "--text-primary",
|
|
2931
|
+
"--collapsiblesection-hairline-hover-icon-size": "--icon-size-xs",
|
|
2932
|
+
"--collapsiblesection-hairline-open-padding": "--space-6",
|
|
2933
2933
|
"--collapsiblesection-container-frame-border": "--border-neutral",
|
|
2934
2934
|
"--collapsiblesection-container-frame-border-width": "--border-width-1",
|
|
2935
2935
|
"--collapsiblesection-container-frame-radius": "--radius-none",
|
|
@@ -2951,8 +2951,8 @@
|
|
|
2951
2951
|
"--collapsiblesection-container-hover-label-line-height": "--line-height-normal",
|
|
2952
2952
|
"--collapsiblesection-container-hover-icon": "--text-primary",
|
|
2953
2953
|
"--collapsiblesection-container-hover-icon-size": "--icon-size-xs",
|
|
2954
|
-
"--collapsiblesection-container-
|
|
2955
|
-
"--collapsiblesection-container-
|
|
2954
|
+
"--collapsiblesection-container-open-surface": "--surface-neutral-higher",
|
|
2955
|
+
"--collapsiblesection-container-open-padding": "--space-6"
|
|
2956
2956
|
}
|
|
2957
2957
|
},
|
|
2958
2958
|
"cornerbadge": {
|
|
@@ -2961,46 +2961,46 @@
|
|
|
2961
2961
|
"createdAt": "2026-05-12T15:31:06.313Z",
|
|
2962
2962
|
"updatedAt": "2026-08-25T01:12:06.370Z",
|
|
2963
2963
|
"aliases": {
|
|
2964
|
-
"--
|
|
2965
|
-
"--
|
|
2966
|
-
"--
|
|
2967
|
-
"--
|
|
2968
|
-
"--
|
|
2969
|
-
"--
|
|
2970
|
-
"--
|
|
2971
|
-
"--
|
|
2972
|
-
"--
|
|
2973
|
-
"--
|
|
2974
|
-
"--
|
|
2975
|
-
"--
|
|
2976
|
-
"--
|
|
2977
|
-
"--
|
|
2978
|
-
"--
|
|
2979
|
-
"--
|
|
2980
|
-
"--
|
|
2981
|
-
"--
|
|
2982
|
-
"--
|
|
2983
|
-
"--
|
|
2984
|
-
"--
|
|
2985
|
-
"--
|
|
2986
|
-
"--
|
|
2987
|
-
"--
|
|
2988
|
-
"--
|
|
2989
|
-
"--
|
|
2990
|
-
"--
|
|
2991
|
-
"--
|
|
2992
|
-
"--
|
|
2993
|
-
"--
|
|
2994
|
-
"--
|
|
2995
|
-
"--
|
|
2996
|
-
"--
|
|
2997
|
-
"--
|
|
2998
|
-
"--
|
|
2999
|
-
"--
|
|
3000
|
-
"--
|
|
3001
|
-
"--
|
|
3002
|
-
"--
|
|
3003
|
-
"--
|
|
2964
|
+
"--cornerbadge-margin": "--space-2",
|
|
2965
|
+
"--cornerbadge-outer-radius": "--radius-none",
|
|
2966
|
+
"--cornerbadge-inner-radius": "--radius-none",
|
|
2967
|
+
"--cornerbadge-h-axis-radius": "--radius-none",
|
|
2968
|
+
"--cornerbadge-v-axis-radius": "--radius-none",
|
|
2969
|
+
"--cornerbadge-padding": "--space-8",
|
|
2970
|
+
"--cornerbadge-text-font-family": "--font-sans",
|
|
2971
|
+
"--cornerbadge-text-font-size": "--font-size-sm",
|
|
2972
|
+
"--cornerbadge-text-font-weight": "--font-weight-medium",
|
|
2973
|
+
"--cornerbadge-text-line-height": "--line-height-none",
|
|
2974
|
+
"--cornerbadge-brand-surface": "--surface-brand",
|
|
2975
|
+
"--cornerbadge-brand-border": "--border-brand",
|
|
2976
|
+
"--cornerbadge-brand-text": "--text-brand",
|
|
2977
|
+
"--cornerbadge-accent-surface": "--surface-accent",
|
|
2978
|
+
"--cornerbadge-accent-border": "--border-accent",
|
|
2979
|
+
"--cornerbadge-accent-text": "--text-accent",
|
|
2980
|
+
"--cornerbadge-neutral-surface": "--surface-neutral",
|
|
2981
|
+
"--cornerbadge-neutral-border": "--border-neutral",
|
|
2982
|
+
"--cornerbadge-neutral-text": "--text-primary",
|
|
2983
|
+
"--cornerbadge-alternate-surface": "--surface-alternate",
|
|
2984
|
+
"--cornerbadge-alternate-border": "--border-alternate",
|
|
2985
|
+
"--cornerbadge-alternate-text": "--text-alternate",
|
|
2986
|
+
"--cornerbadge-canvas-surface": "--surface-canvas",
|
|
2987
|
+
"--cornerbadge-canvas-border": "--border-canvas",
|
|
2988
|
+
"--cornerbadge-canvas-text": "--text-canvas",
|
|
2989
|
+
"--cornerbadge-special-surface": "--surface-special",
|
|
2990
|
+
"--cornerbadge-special-border": "--border-special",
|
|
2991
|
+
"--cornerbadge-special-text": "--text-special",
|
|
2992
|
+
"--cornerbadge-success-surface": "--surface-success",
|
|
2993
|
+
"--cornerbadge-success-border": "--border-success",
|
|
2994
|
+
"--cornerbadge-success-text": "--text-success",
|
|
2995
|
+
"--cornerbadge-warning-surface": "--surface-warning",
|
|
2996
|
+
"--cornerbadge-warning-border": "--border-warning",
|
|
2997
|
+
"--cornerbadge-warning-text": "--text-warning",
|
|
2998
|
+
"--cornerbadge-danger-surface": "--surface-danger",
|
|
2999
|
+
"--cornerbadge-danger-border": "--border-danger",
|
|
3000
|
+
"--cornerbadge-danger-text": "--text-danger",
|
|
3001
|
+
"--cornerbadge-info-surface": "--surface-info",
|
|
3002
|
+
"--cornerbadge-info-border": "--border-info",
|
|
3003
|
+
"--cornerbadge-info-text": "--text-info"
|
|
3004
3004
|
}
|
|
3005
3005
|
},
|
|
3006
3006
|
"dialog": {
|
|
@@ -3017,8 +3017,8 @@
|
|
|
3017
3017
|
"--dialog-shadow": "--shadow-2xl",
|
|
3018
3018
|
"--dialog-blur": "--blur-none",
|
|
3019
3019
|
"--dialog-header-surface": "--surface-neutral-lower",
|
|
3020
|
-
"--dialog-header-
|
|
3021
|
-
"--dialog-header-
|
|
3020
|
+
"--dialog-header-hairline-color": "--border-neutral-subtle",
|
|
3021
|
+
"--dialog-header-hairline-width": "--border-width-1",
|
|
3022
3022
|
"--dialog-header-padding": "--space-10",
|
|
3023
3023
|
"--dialog-title": "--text-primary",
|
|
3024
3024
|
"--dialog-title-font-family": "--font-sans",
|
|
@@ -3033,8 +3033,8 @@
|
|
|
3033
3033
|
"--dialog-body-font-size": "--font-size-md",
|
|
3034
3034
|
"--dialog-body-font-weight": "--font-weight-normal",
|
|
3035
3035
|
"--dialog-body-line-height": "--line-height-normal",
|
|
3036
|
-
"--dialog-footer-
|
|
3037
|
-
"--dialog-footer-
|
|
3036
|
+
"--dialog-footer-hairline-color": "--border-neutral-subtle",
|
|
3037
|
+
"--dialog-footer-hairline-width": "--border-width-1",
|
|
3038
3038
|
"--dialog-footer-padding": "--space-20"
|
|
3039
3039
|
}
|
|
3040
3040
|
},
|
|
@@ -3470,15 +3470,15 @@
|
|
|
3470
3470
|
"--radiobutton-hover-label-font-size": "--font-size-md",
|
|
3471
3471
|
"--radiobutton-hover-label-font-weight": "--font-weight-semibold",
|
|
3472
3472
|
"--radiobutton-hover-label-line-height": "--line-height-none",
|
|
3473
|
-
"--radiobutton-
|
|
3474
|
-
"--radiobutton-
|
|
3475
|
-
"--radiobutton-
|
|
3476
|
-
"--radiobutton-
|
|
3477
|
-
"--radiobutton-
|
|
3478
|
-
"--radiobutton-
|
|
3479
|
-
"--radiobutton-
|
|
3480
|
-
"--radiobutton-
|
|
3481
|
-
"--radiobutton-
|
|
3473
|
+
"--radiobutton-selected-dot-border-color": "--border-neutral",
|
|
3474
|
+
"--radiobutton-selected-dot-border-width": "--border-width-2",
|
|
3475
|
+
"--radiobutton-selected-dot-fill": "--text-secondary",
|
|
3476
|
+
"--radiobutton-selected-dot-size": "--dot-size-50",
|
|
3477
|
+
"--radiobutton-selected-label": "--text-primary",
|
|
3478
|
+
"--radiobutton-selected-label-font-family": "--font-sans",
|
|
3479
|
+
"--radiobutton-selected-label-font-size": "--font-size-md",
|
|
3480
|
+
"--radiobutton-selected-label-font-weight": "--font-weight-semibold",
|
|
3481
|
+
"--radiobutton-selected-label-line-height": "--line-height-none"
|
|
3482
3482
|
}
|
|
3483
3483
|
},
|
|
3484
3484
|
"sectiondivider": {
|
|
@@ -3507,8 +3507,8 @@
|
|
|
3507
3507
|
"--sectiondivider-lg-radius": "--radius-none",
|
|
3508
3508
|
"--sectiondivider-lg-border-width": "--border-width-1",
|
|
3509
3509
|
"--sectiondivider-lg-shadow": "--shadow-none",
|
|
3510
|
-
"--sectiondivider-lg-hairline-
|
|
3511
|
-
"--sectiondivider-lg-
|
|
3510
|
+
"--sectiondivider-lg-hairline-width": "--border-width-1",
|
|
3511
|
+
"--sectiondivider-lg-surface": "--color-transparent",
|
|
3512
3512
|
"--sectiondivider-lg-title": "--text-primary",
|
|
3513
3513
|
"--sectiondivider-lg-description": "--text-alternate",
|
|
3514
3514
|
"--sectiondivider-lg-eyebrow": "--text-brand",
|
|
@@ -3534,8 +3534,8 @@
|
|
|
3534
3534
|
"--sectiondivider-md-radius": "--radius-none",
|
|
3535
3535
|
"--sectiondivider-md-border-width": "--border-width-1",
|
|
3536
3536
|
"--sectiondivider-md-shadow": "--shadow-none",
|
|
3537
|
-
"--sectiondivider-md-hairline-
|
|
3538
|
-
"--sectiondivider-md-
|
|
3537
|
+
"--sectiondivider-md-hairline-width": "--border-width-1",
|
|
3538
|
+
"--sectiondivider-md-surface": "--color-transparent",
|
|
3539
3539
|
"--sectiondivider-md-title": "--text-primary",
|
|
3540
3540
|
"--sectiondivider-md-description": "--text-secondary",
|
|
3541
3541
|
"--sectiondivider-md-eyebrow": "--text-tertiary",
|
|
@@ -3561,8 +3561,8 @@
|
|
|
3561
3561
|
"--sectiondivider-sm-radius": "--radius-none",
|
|
3562
3562
|
"--sectiondivider-sm-border-width": "--border-width-1",
|
|
3563
3563
|
"--sectiondivider-sm-shadow": "--shadow-none",
|
|
3564
|
-
"--sectiondivider-sm-hairline-
|
|
3565
|
-
"--sectiondivider-sm-
|
|
3564
|
+
"--sectiondivider-sm-hairline-width": "--border-width-1",
|
|
3565
|
+
"--sectiondivider-sm-surface": "--color-transparent",
|
|
3566
3566
|
"--sectiondivider-sm-title": "--text-brand",
|
|
3567
3567
|
"--sectiondivider-sm-description": "--text-secondary",
|
|
3568
3568
|
"--sectiondivider-sm-eyebrow": "--text-tertiary",
|
|
@@ -3584,9 +3584,9 @@
|
|
|
3584
3584
|
"--segmentedcontrol-bar-radius": "--radius-none",
|
|
3585
3585
|
"--segmentedcontrol-bar-padding": "--space-6",
|
|
3586
3586
|
"--segmentedcontrol-bar-gap": "--space-12",
|
|
3587
|
-
"--segmentedcontrol-
|
|
3588
|
-
"--segmentedcontrol-
|
|
3589
|
-
"--segmentedcontrol-
|
|
3587
|
+
"--segmentedcontrol-hairline-color": "--border-neutral",
|
|
3588
|
+
"--segmentedcontrol-hairline-width": "--border-width-1",
|
|
3589
|
+
"--segmentedcontrol-hairline-inset": "--space-6",
|
|
3590
3590
|
"--segmentedcontrol-option-padding": "--space-10",
|
|
3591
3591
|
"--segmentedcontrol-option-gap": "--space-12",
|
|
3592
3592
|
"--segmentedcontrol-option-text": "--text-primary",
|
|
@@ -3622,8 +3622,8 @@
|
|
|
3622
3622
|
"--segmentedcontrol-disabled-icon": "--text-secondary",
|
|
3623
3623
|
"--segmentedcontrol-bar-small-padding": "--space-4",
|
|
3624
3624
|
"--segmentedcontrol-bar-small-radius": "--radius-none",
|
|
3625
|
-
"--segmentedcontrol-small-
|
|
3626
|
-
"--segmentedcontrol-small-
|
|
3625
|
+
"--segmentedcontrol-small-hairline-inset": "--space-4",
|
|
3626
|
+
"--segmentedcontrol-small-hairline-width": "--border-width-1",
|
|
3627
3627
|
"--segmentedcontrol-option-small-padding": "--space-8",
|
|
3628
3628
|
"--segmentedcontrol-option-small-gap": "--space-10",
|
|
3629
3629
|
"--segmentedcontrol-option-small-icon-size": "--icon-size-sm",
|
|
@@ -3662,8 +3662,8 @@
|
|
|
3662
3662
|
"--sidenavigation-title-default-border": "--border-canvas-faint",
|
|
3663
3663
|
"--sidenavigation-title-default-border-width": "--border-width-1",
|
|
3664
3664
|
"--sidenavigation-title-default-padding": "--space-16",
|
|
3665
|
-
"--sidenavigation-title-default-
|
|
3666
|
-
"--sidenavigation-title-default-
|
|
3665
|
+
"--sidenavigation-title-default-indicator": "--color-transparent",
|
|
3666
|
+
"--sidenavigation-title-default-indicator-width": "--border-width-3",
|
|
3667
3667
|
"--sidenavigation-title-default-label": "--text-primary",
|
|
3668
3668
|
"--sidenavigation-title-default-label-font-family": "--font-display",
|
|
3669
3669
|
"--sidenavigation-title-default-label-font-size": "--font-size-2xl",
|
|
@@ -3673,24 +3673,24 @@
|
|
|
3673
3673
|
"--sidenavigation-title-hover-border": "--border-canvas-faint",
|
|
3674
3674
|
"--sidenavigation-title-hover-border-width": "--border-width-1",
|
|
3675
3675
|
"--sidenavigation-title-hover-padding": "--space-16",
|
|
3676
|
-
"--sidenavigation-title-hover-
|
|
3677
|
-
"--sidenavigation-title-hover-
|
|
3676
|
+
"--sidenavigation-title-hover-indicator": "--color-transparent",
|
|
3677
|
+
"--sidenavigation-title-hover-indicator-width": "--border-width-3",
|
|
3678
3678
|
"--sidenavigation-title-hover-label": "--text-primary",
|
|
3679
3679
|
"--sidenavigation-title-hover-label-font-family": "--font-display",
|
|
3680
3680
|
"--sidenavigation-title-hover-label-font-size": "--font-size-2xl",
|
|
3681
3681
|
"--sidenavigation-title-hover-label-font-weight": "--font-weight-bold",
|
|
3682
3682
|
"--sidenavigation-title-hover-label-line-height": "--line-height-tighter",
|
|
3683
|
-
"--sidenavigation-title-
|
|
3684
|
-
"--sidenavigation-title-
|
|
3685
|
-
"--sidenavigation-title-
|
|
3686
|
-
"--sidenavigation-title-
|
|
3687
|
-
"--sidenavigation-title-
|
|
3688
|
-
"--sidenavigation-title-
|
|
3689
|
-
"--sidenavigation-title-
|
|
3690
|
-
"--sidenavigation-title-
|
|
3691
|
-
"--sidenavigation-title-
|
|
3692
|
-
"--sidenavigation-title-
|
|
3693
|
-
"--sidenavigation-title-
|
|
3683
|
+
"--sidenavigation-title-selected-surface": "--surface-canvas-low",
|
|
3684
|
+
"--sidenavigation-title-selected-border": "--border-canvas-faint",
|
|
3685
|
+
"--sidenavigation-title-selected-border-width": "--border-width-1",
|
|
3686
|
+
"--sidenavigation-title-selected-padding": "--space-16",
|
|
3687
|
+
"--sidenavigation-title-selected-indicator": "--border-brand-medium",
|
|
3688
|
+
"--sidenavigation-title-selected-indicator-width": "--border-width-3",
|
|
3689
|
+
"--sidenavigation-title-selected-label": "--text-primary",
|
|
3690
|
+
"--sidenavigation-title-selected-label-font-family": "--font-display",
|
|
3691
|
+
"--sidenavigation-title-selected-label-font-size": "--font-size-2xl",
|
|
3692
|
+
"--sidenavigation-title-selected-label-font-weight": "--font-weight-bold",
|
|
3693
|
+
"--sidenavigation-title-selected-label-line-height": "--line-height-tighter",
|
|
3694
3694
|
"--sidenavigation-toggle-default-surface": "--color-transparent",
|
|
3695
3695
|
"--sidenavigation-toggle-default-border": "--border-brand-medium",
|
|
3696
3696
|
"--sidenavigation-toggle-default-border-width": "--border-width-1",
|
|
@@ -3706,33 +3706,33 @@
|
|
|
3706
3706
|
"--sidenavigation-toggle-hover-icon": "--text-brand",
|
|
3707
3707
|
"--sidenavigation-toggle-hover-icon-size": "--icon-size-md",
|
|
3708
3708
|
"--sidenavigation-section-default-surface": "--color-transparent",
|
|
3709
|
-
"--sidenavigation-section-default-
|
|
3710
|
-
"--sidenavigation-section-default-
|
|
3709
|
+
"--sidenavigation-section-default-indicator": "--color-transparent",
|
|
3710
|
+
"--sidenavigation-section-default-indicator-width": "--border-width-3",
|
|
3711
3711
|
"--sidenavigation-section-default-text": "--text-primary",
|
|
3712
3712
|
"--sidenavigation-section-default-text-font-family": "--font-sans",
|
|
3713
3713
|
"--sidenavigation-section-default-text-font-size": "--font-size-lg",
|
|
3714
3714
|
"--sidenavigation-section-default-text-font-weight": "--font-weight-medium",
|
|
3715
3715
|
"--sidenavigation-section-default-text-line-height": "--line-height-normal",
|
|
3716
3716
|
"--sidenavigation-section-hover-surface": "--surface-canvas",
|
|
3717
|
-
"--sidenavigation-section-hover-
|
|
3718
|
-
"--sidenavigation-section-hover-
|
|
3717
|
+
"--sidenavigation-section-hover-indicator": "--color-transparent",
|
|
3718
|
+
"--sidenavigation-section-hover-indicator-width": "--border-width-3",
|
|
3719
3719
|
"--sidenavigation-section-hover-text": "--text-primary",
|
|
3720
3720
|
"--sidenavigation-section-hover-text-font-family": "--font-sans",
|
|
3721
3721
|
"--sidenavigation-section-hover-text-font-size": "--font-size-lg",
|
|
3722
3722
|
"--sidenavigation-section-hover-text-font-weight": "--font-weight-medium",
|
|
3723
3723
|
"--sidenavigation-section-hover-text-line-height": "--line-height-normal",
|
|
3724
|
-
"--sidenavigation-section-
|
|
3725
|
-
"--sidenavigation-section-
|
|
3726
|
-
"--sidenavigation-section-
|
|
3727
|
-
"--sidenavigation-section-
|
|
3728
|
-
"--sidenavigation-section-
|
|
3729
|
-
"--sidenavigation-section-
|
|
3730
|
-
"--sidenavigation-section-
|
|
3731
|
-
"--sidenavigation-section-
|
|
3724
|
+
"--sidenavigation-section-selected-surface": "--surface-canvas-low",
|
|
3725
|
+
"--sidenavigation-section-selected-indicator": "--border-brand-medium",
|
|
3726
|
+
"--sidenavigation-section-selected-indicator-width": "--border-width-3",
|
|
3727
|
+
"--sidenavigation-section-selected-text": "--text-primary",
|
|
3728
|
+
"--sidenavigation-section-selected-text-font-family": "--font-sans",
|
|
3729
|
+
"--sidenavigation-section-selected-text-font-size": "--font-size-lg",
|
|
3730
|
+
"--sidenavigation-section-selected-text-font-weight": "--font-weight-medium",
|
|
3731
|
+
"--sidenavigation-section-selected-text-line-height": "--line-height-normal",
|
|
3732
3732
|
"--sidenavigation-item-default-surface": "--color-transparent",
|
|
3733
3733
|
"--sidenavigation-item-default-padding": "--space-8",
|
|
3734
|
-
"--sidenavigation-item-default-
|
|
3735
|
-
"--sidenavigation-item-default-
|
|
3734
|
+
"--sidenavigation-item-default-indicator": "--color-transparent",
|
|
3735
|
+
"--sidenavigation-item-default-indicator-width": "--border-width-3",
|
|
3736
3736
|
"--sidenavigation-item-default-text": "--text-tertiary",
|
|
3737
3737
|
"--sidenavigation-item-default-text-font-family": "--font-sans",
|
|
3738
3738
|
"--sidenavigation-item-default-text-font-size": "--font-size-md",
|
|
@@ -3740,27 +3740,27 @@
|
|
|
3740
3740
|
"--sidenavigation-item-default-text-line-height": "--line-height-normal",
|
|
3741
3741
|
"--sidenavigation-item-hover-surface": "--surface-canvas",
|
|
3742
3742
|
"--sidenavigation-item-hover-padding": "--space-8",
|
|
3743
|
-
"--sidenavigation-item-hover-
|
|
3744
|
-
"--sidenavigation-item-hover-
|
|
3743
|
+
"--sidenavigation-item-hover-indicator": "--color-transparent",
|
|
3744
|
+
"--sidenavigation-item-hover-indicator-width": "--border-width-3",
|
|
3745
3745
|
"--sidenavigation-item-hover-text": "--text-secondary",
|
|
3746
3746
|
"--sidenavigation-item-hover-text-font-family": "--font-sans",
|
|
3747
3747
|
"--sidenavigation-item-hover-text-font-size": "--font-size-md",
|
|
3748
3748
|
"--sidenavigation-item-hover-text-font-weight": "--font-weight-light",
|
|
3749
3749
|
"--sidenavigation-item-hover-text-line-height": "--line-height-normal",
|
|
3750
|
-
"--sidenavigation-item-
|
|
3751
|
-
"--sidenavigation-item-
|
|
3752
|
-
"--sidenavigation-item-
|
|
3753
|
-
"--sidenavigation-item-
|
|
3754
|
-
"--sidenavigation-item-
|
|
3755
|
-
"--sidenavigation-item-
|
|
3756
|
-
"--sidenavigation-item-
|
|
3757
|
-
"--sidenavigation-item-
|
|
3758
|
-
"--sidenavigation-item-
|
|
3750
|
+
"--sidenavigation-item-selected-surface": "--surface-canvas-low",
|
|
3751
|
+
"--sidenavigation-item-selected-padding": "--space-8",
|
|
3752
|
+
"--sidenavigation-item-selected-indicator": "--border-brand-medium",
|
|
3753
|
+
"--sidenavigation-item-selected-indicator-width": "--border-width-3",
|
|
3754
|
+
"--sidenavigation-item-selected-text": "--text-primary",
|
|
3755
|
+
"--sidenavigation-item-selected-text-font-family": "--font-sans",
|
|
3756
|
+
"--sidenavigation-item-selected-text-font-size": "--font-size-md",
|
|
3757
|
+
"--sidenavigation-item-selected-text-font-weight": "--font-weight-normal",
|
|
3758
|
+
"--sidenavigation-item-selected-text-line-height": "--line-height-normal",
|
|
3759
3759
|
"--sidenavigation-footer-default-surface": "--color-transparent",
|
|
3760
3760
|
"--sidenavigation-footer-default-padding": "--space-10",
|
|
3761
3761
|
"--sidenavigation-footer-default-gap": "--space-12",
|
|
3762
|
-
"--sidenavigation-footer-default-
|
|
3763
|
-
"--sidenavigation-footer-default-
|
|
3762
|
+
"--sidenavigation-footer-default-indicator": "--color-transparent",
|
|
3763
|
+
"--sidenavigation-footer-default-indicator-width": "--border-width-3",
|
|
3764
3764
|
"--sidenavigation-footer-default-icon": "--text-muted",
|
|
3765
3765
|
"--sidenavigation-footer-default-icon-size": "--icon-size-xs",
|
|
3766
3766
|
"--sidenavigation-footer-default-text": "--text-tertiary",
|
|
@@ -3771,8 +3771,8 @@
|
|
|
3771
3771
|
"--sidenavigation-footer-hover-surface": "--surface-canvas",
|
|
3772
3772
|
"--sidenavigation-footer-hover-padding": "--space-10",
|
|
3773
3773
|
"--sidenavigation-footer-hover-gap": "--space-12",
|
|
3774
|
-
"--sidenavigation-footer-hover-
|
|
3775
|
-
"--sidenavigation-footer-hover-
|
|
3774
|
+
"--sidenavigation-footer-hover-indicator": "--color-transparent",
|
|
3775
|
+
"--sidenavigation-footer-hover-indicator-width": "--border-width-3",
|
|
3776
3776
|
"--sidenavigation-footer-hover-icon": "--text-secondary",
|
|
3777
3777
|
"--sidenavigation-footer-hover-icon-size": "--icon-size-xs",
|
|
3778
3778
|
"--sidenavigation-footer-hover-text": "--text-secondary",
|
|
@@ -3780,18 +3780,18 @@
|
|
|
3780
3780
|
"--sidenavigation-footer-hover-text-font-size": "--font-size-sm",
|
|
3781
3781
|
"--sidenavigation-footer-hover-text-font-weight": "--font-weight-light",
|
|
3782
3782
|
"--sidenavigation-footer-hover-text-line-height": "--line-height-normal",
|
|
3783
|
-
"--sidenavigation-footer-
|
|
3784
|
-
"--sidenavigation-footer-
|
|
3785
|
-
"--sidenavigation-footer-
|
|
3786
|
-
"--sidenavigation-footer-
|
|
3787
|
-
"--sidenavigation-footer-
|
|
3788
|
-
"--sidenavigation-footer-
|
|
3789
|
-
"--sidenavigation-footer-
|
|
3790
|
-
"--sidenavigation-footer-
|
|
3791
|
-
"--sidenavigation-footer-
|
|
3792
|
-
"--sidenavigation-footer-
|
|
3793
|
-
"--sidenavigation-footer-
|
|
3794
|
-
"--sidenavigation-footer-
|
|
3783
|
+
"--sidenavigation-footer-selected-surface": "--surface-canvas-low",
|
|
3784
|
+
"--sidenavigation-footer-selected-padding": "--space-10",
|
|
3785
|
+
"--sidenavigation-footer-selected-gap": "--space-12",
|
|
3786
|
+
"--sidenavigation-footer-selected-indicator": "--border-brand-medium",
|
|
3787
|
+
"--sidenavigation-footer-selected-indicator-width": "--border-width-3",
|
|
3788
|
+
"--sidenavigation-footer-selected-icon": "--text-primary",
|
|
3789
|
+
"--sidenavigation-footer-selected-icon-size": "--icon-size-xs",
|
|
3790
|
+
"--sidenavigation-footer-selected-text": "--text-primary",
|
|
3791
|
+
"--sidenavigation-footer-selected-text-font-family": "--font-sans",
|
|
3792
|
+
"--sidenavigation-footer-selected-text-font-size": "--font-size-sm",
|
|
3793
|
+
"--sidenavigation-footer-selected-text-font-weight": "--font-weight-normal",
|
|
3794
|
+
"--sidenavigation-footer-selected-text-line-height": "--line-height-normal"
|
|
3795
3795
|
}
|
|
3796
3796
|
},
|
|
3797
3797
|
"tabbar": {
|
|
@@ -3802,8 +3802,8 @@
|
|
|
3802
3802
|
"aliases": {
|
|
3803
3803
|
"--tabbar-hover-tint": "--tint",
|
|
3804
3804
|
"--tabbar-hover-tint-enabled": "--color-transparent",
|
|
3805
|
-
"--tabbar-bar-
|
|
3806
|
-
"--tabbar-bar-
|
|
3805
|
+
"--tabbar-bar-hairline-color": "--border-neutral-subtle",
|
|
3806
|
+
"--tabbar-bar-hairline-width": "--border-width-1",
|
|
3807
3807
|
"--tabbar-bar-top-margin": "--space-2",
|
|
3808
3808
|
"--tabbar-bar-bottom-padding": "--space-4",
|
|
3809
3809
|
"--tabbar-bar-bottom-margin": "--space-2",
|
|
@@ -3836,20 +3836,20 @@
|
|
|
3836
3836
|
"--tabbar-hover-tab-top-radius": "--radius-none",
|
|
3837
3837
|
"--tabbar-hover-tab-bottom-radius": "--radius-none",
|
|
3838
3838
|
"--tabbar-hover-indicator-width": "--border-width-2",
|
|
3839
|
-
"--tabbar-
|
|
3840
|
-
"--tabbar-
|
|
3841
|
-
"--tabbar-
|
|
3842
|
-
"--tabbar-
|
|
3843
|
-
"--tabbar-
|
|
3844
|
-
"--tabbar-
|
|
3845
|
-
"--tabbar-
|
|
3846
|
-
"--tabbar-
|
|
3847
|
-
"--tabbar-
|
|
3848
|
-
"--tabbar-
|
|
3849
|
-
"--tabbar-
|
|
3850
|
-
"--tabbar-
|
|
3851
|
-
"--tabbar-
|
|
3852
|
-
"--tabbar-
|
|
3839
|
+
"--tabbar-selected-text": "--text-primary",
|
|
3840
|
+
"--tabbar-selected-border": "--color-brand-500",
|
|
3841
|
+
"--tabbar-selected-surface": "--tint-low",
|
|
3842
|
+
"--tabbar-selected-text-font-family": "--font-sans",
|
|
3843
|
+
"--tabbar-selected-text-font-size": "--font-size-md",
|
|
3844
|
+
"--tabbar-selected-text-font-weight": "--font-weight-light",
|
|
3845
|
+
"--tabbar-selected-text-line-height": "--line-height-normal",
|
|
3846
|
+
"--tabbar-selected-icon-size": "--icon-size-md",
|
|
3847
|
+
"--tabbar-selected-padding": "--space-10",
|
|
3848
|
+
"--tabbar-selected-tab-border-color": "--color-transparent",
|
|
3849
|
+
"--tabbar-selected-tab-border-width": "--border-width-1",
|
|
3850
|
+
"--tabbar-selected-tab-top-radius": "--radius-none",
|
|
3851
|
+
"--tabbar-selected-tab-bottom-radius": "--radius-none",
|
|
3852
|
+
"--tabbar-selected-indicator-width": "--border-width-2",
|
|
3853
3853
|
"--tabbar-disabled-text": "--text-disabled",
|
|
3854
3854
|
"--tabbar-disabled-text-font-family": "--font-sans",
|
|
3855
3855
|
"--tabbar-disabled-text-font-size": "--font-size-md",
|
|
@@ -3884,8 +3884,8 @@
|
|
|
3884
3884
|
"--table-default-header-font-weight": "--font-weight-semibold",
|
|
3885
3885
|
"--table-default-header-line-height": "--line-height-none",
|
|
3886
3886
|
"--table-default-header-padding": "--space-16",
|
|
3887
|
-
"--table-default-header-
|
|
3888
|
-
"--table-default-header-
|
|
3887
|
+
"--table-default-header-hairline-color": "--border-neutral",
|
|
3888
|
+
"--table-default-header-hairline-width": "--border-width-1",
|
|
3889
3889
|
"--table-default-cell-text": "--text-secondary",
|
|
3890
3890
|
"--table-default-cell-font-family": "--font-sans",
|
|
3891
3891
|
"--table-default-cell-font-size": "--font-size-md",
|
|
@@ -3893,11 +3893,11 @@
|
|
|
3893
3893
|
"--table-default-cell-line-height": "--line-height-normal",
|
|
3894
3894
|
"--table-default-cell-padding": "--space-10",
|
|
3895
3895
|
"--table-default-row-surface": "--color-transparent",
|
|
3896
|
-
"--table-default-row-
|
|
3897
|
-
"--table-default-row-
|
|
3896
|
+
"--table-default-row-hairline-color": "--border-neutral-subtle",
|
|
3897
|
+
"--table-default-row-hairline-width": "--border-width-1",
|
|
3898
3898
|
"--table-default-row-stripe-surface": "--color-transparent",
|
|
3899
|
-
"--table-default-column-
|
|
3900
|
-
"--table-default-column-
|
|
3899
|
+
"--table-default-column-hairline-color": "--border-neutral-faint",
|
|
3900
|
+
"--table-default-column-hairline-width": "--border-width-1"
|
|
3901
3901
|
}
|
|
3902
3902
|
},
|
|
3903
3903
|
"toggle": {
|
|
@@ -3914,7 +3914,7 @@
|
|
|
3914
3914
|
"--toggle-thumb-surface": "--surface-neutral-highest",
|
|
3915
3915
|
"--toggle-thumb-border": "--border-neutral-strong",
|
|
3916
3916
|
"--toggle-thumb-size": "--font-size-md",
|
|
3917
|
-
"--toggle-label
|
|
3917
|
+
"--toggle-label": "--text-primary",
|
|
3918
3918
|
"--toggle-label-font-family": "--font-sans",
|
|
3919
3919
|
"--toggle-label-font-size": "--font-size-sm",
|
|
3920
3920
|
"--toggle-label-font-weight": "--font-weight-normal",
|
|
@@ -3929,7 +3929,7 @@
|
|
|
3929
3929
|
"--toggle-on-hover-thumb-surface": "--text-primary",
|
|
3930
3930
|
"--toggle-disabled-track-surface": "--surface-neutral-lower",
|
|
3931
3931
|
"--toggle-disabled-thumb-surface": "--surface-neutral",
|
|
3932
|
-
"--toggle-disabled-label
|
|
3932
|
+
"--toggle-disabled-label": "--text-disabled"
|
|
3933
3933
|
}
|
|
3934
3934
|
},
|
|
3935
3935
|
"tooltip": {
|
|
@@ -4007,5 +4007,5 @@
|
|
|
4007
4007
|
}
|
|
4008
4008
|
}
|
|
4009
4009
|
},
|
|
4010
|
-
"componentSchemaVersion":
|
|
4010
|
+
"componentSchemaVersion": 35
|
|
4011
4011
|
}
|