@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
|
@@ -2467,19 +2467,19 @@
|
|
|
2467
2467
|
"createdAt": "2026-05-01T08:28:00.345Z",
|
|
2468
2468
|
"updatedAt": "2026-08-19T22:39:32.785Z",
|
|
2469
2469
|
"aliases": {
|
|
2470
|
-
"--badge-
|
|
2471
|
-
"--badge-
|
|
2472
|
-
"--badge-
|
|
2473
|
-
"--badge-
|
|
2474
|
-
"--badge-
|
|
2475
|
-
"--badge-
|
|
2476
|
-
"--badge-
|
|
2477
|
-
"--badge-
|
|
2478
|
-
"--badge-
|
|
2479
|
-
"--badge-
|
|
2480
|
-
"--badge-
|
|
2481
|
-
"--badge-
|
|
2482
|
-
"--badge-
|
|
2470
|
+
"--badge-brand-surface": "--surface-brand",
|
|
2471
|
+
"--badge-brand-text": "--text-brand",
|
|
2472
|
+
"--badge-brand-border": "--border-brand",
|
|
2473
|
+
"--badge-brand-text-font-family": "--font-sans",
|
|
2474
|
+
"--badge-brand-text-font-size": "--font-size-md",
|
|
2475
|
+
"--badge-brand-text-font-weight": "--font-weight-normal",
|
|
2476
|
+
"--badge-brand-text-line-height": "--line-height-none",
|
|
2477
|
+
"--badge-brand-border-width": "--border-width-1",
|
|
2478
|
+
"--badge-brand-radius": "--radius-full",
|
|
2479
|
+
"--badge-brand-padding": "--space-10",
|
|
2480
|
+
"--badge-brand-shadow": "--shadow-none",
|
|
2481
|
+
"--badge-brand-blur": "--blur-none",
|
|
2482
|
+
"--badge-brand-icon-size": "--icon-size-sm",
|
|
2483
2483
|
"--badge-accent-surface": "--surface-accent",
|
|
2484
2484
|
"--badge-accent-text": "--text-accent",
|
|
2485
2485
|
"--badge-accent-border": "--border-accent",
|
|
@@ -2727,7 +2727,7 @@
|
|
|
2727
2727
|
"--callout-info-surface": "--surface-info-lowest",
|
|
2728
2728
|
"--callout-info-border": "--border-info-medium",
|
|
2729
2729
|
"--callout-info-border-width": "--border-width-1",
|
|
2730
|
-
"--callout-info-
|
|
2730
|
+
"--callout-info-indicator-width": "--border-width-4",
|
|
2731
2731
|
"--callout-info-radius": "--radius-xl",
|
|
2732
2732
|
"--callout-info-padding": "--space-20",
|
|
2733
2733
|
"--callout-info-label": "--text-primary",
|
|
@@ -2743,7 +2743,7 @@
|
|
|
2743
2743
|
"--callout-success-surface": "--surface-success-lowest",
|
|
2744
2744
|
"--callout-success-border": "--border-success-subtle",
|
|
2745
2745
|
"--callout-success-border-width": "--border-width-1",
|
|
2746
|
-
"--callout-success-
|
|
2746
|
+
"--callout-success-indicator-width": "--border-width-4",
|
|
2747
2747
|
"--callout-success-radius": "--radius-xl",
|
|
2748
2748
|
"--callout-success-padding": "--space-20",
|
|
2749
2749
|
"--callout-success-label": "--text-primary",
|
|
@@ -2759,7 +2759,7 @@
|
|
|
2759
2759
|
"--callout-warning-surface": "--surface-warning-lowest",
|
|
2760
2760
|
"--callout-warning-border": "--border-warning-subtle",
|
|
2761
2761
|
"--callout-warning-border-width": "--border-width-1",
|
|
2762
|
-
"--callout-warning-
|
|
2762
|
+
"--callout-warning-indicator-width": "--border-width-4",
|
|
2763
2763
|
"--callout-warning-radius": "--radius-xl",
|
|
2764
2764
|
"--callout-warning-padding": "--space-20",
|
|
2765
2765
|
"--callout-warning-label": "--text-primary",
|
|
@@ -2775,7 +2775,7 @@
|
|
|
2775
2775
|
"--callout-danger-surface": "--surface-danger-lowest",
|
|
2776
2776
|
"--callout-danger-border": "--border-danger-subtle",
|
|
2777
2777
|
"--callout-danger-border-width": "--border-width-1",
|
|
2778
|
-
"--callout-danger-
|
|
2778
|
+
"--callout-danger-indicator-width": "--border-width-4",
|
|
2779
2779
|
"--callout-danger-radius": "--radius-xl",
|
|
2780
2780
|
"--callout-danger-padding": "--space-20",
|
|
2781
2781
|
"--callout-danger-label": "--text-primary",
|
|
@@ -2879,30 +2879,30 @@
|
|
|
2879
2879
|
"--collapsiblesection-chromeless-hover-label-line-height": "--line-height-normal",
|
|
2880
2880
|
"--collapsiblesection-chromeless-hover-icon": "--text-primary",
|
|
2881
2881
|
"--collapsiblesection-chromeless-hover-icon-size": "--icon-size-xs",
|
|
2882
|
-
"--collapsiblesection-chromeless-
|
|
2883
|
-
"--collapsiblesection-
|
|
2884
|
-
"--collapsiblesection-
|
|
2885
|
-
"--collapsiblesection-
|
|
2886
|
-
"--collapsiblesection-
|
|
2887
|
-
"--collapsiblesection-
|
|
2888
|
-
"--collapsiblesection-
|
|
2889
|
-
"--collapsiblesection-
|
|
2890
|
-
"--collapsiblesection-
|
|
2891
|
-
"--collapsiblesection-
|
|
2892
|
-
"--collapsiblesection-
|
|
2893
|
-
"--collapsiblesection-
|
|
2894
|
-
"--collapsiblesection-
|
|
2895
|
-
"--collapsiblesection-
|
|
2896
|
-
"--collapsiblesection-
|
|
2897
|
-
"--collapsiblesection-
|
|
2898
|
-
"--collapsiblesection-
|
|
2899
|
-
"--collapsiblesection-
|
|
2900
|
-
"--collapsiblesection-
|
|
2901
|
-
"--collapsiblesection-
|
|
2902
|
-
"--collapsiblesection-
|
|
2903
|
-
"--collapsiblesection-
|
|
2904
|
-
"--collapsiblesection-
|
|
2905
|
-
"--collapsiblesection-
|
|
2882
|
+
"--collapsiblesection-chromeless-open-padding": "--space-8",
|
|
2883
|
+
"--collapsiblesection-hairline-default-surface": "--color-transparent",
|
|
2884
|
+
"--collapsiblesection-hairline-default-hairline-color": "--border-brand",
|
|
2885
|
+
"--collapsiblesection-hairline-default-hairline-width": "--border-width-1",
|
|
2886
|
+
"--collapsiblesection-hairline-default-padding": "--space-8",
|
|
2887
|
+
"--collapsiblesection-hairline-default-label": "--text-primary",
|
|
2888
|
+
"--collapsiblesection-hairline-default-label-font-family": "--font-sans",
|
|
2889
|
+
"--collapsiblesection-hairline-default-label-font-size": "--font-size-md",
|
|
2890
|
+
"--collapsiblesection-hairline-default-label-font-weight": "--font-weight-normal",
|
|
2891
|
+
"--collapsiblesection-hairline-default-label-line-height": "--line-height-normal",
|
|
2892
|
+
"--collapsiblesection-hairline-default-icon": "--text-primary",
|
|
2893
|
+
"--collapsiblesection-hairline-default-icon-size": "--icon-size-xs",
|
|
2894
|
+
"--collapsiblesection-hairline-hover-surface": "--color-transparent",
|
|
2895
|
+
"--collapsiblesection-hairline-hover-hairline-color": "--border-neutral",
|
|
2896
|
+
"--collapsiblesection-hairline-hover-hairline-width": "--border-width-1",
|
|
2897
|
+
"--collapsiblesection-hairline-hover-padding": "--space-8",
|
|
2898
|
+
"--collapsiblesection-hairline-hover-label": "--text-primary",
|
|
2899
|
+
"--collapsiblesection-hairline-hover-label-font-family": "--font-sans",
|
|
2900
|
+
"--collapsiblesection-hairline-hover-label-font-size": "--font-size-md",
|
|
2901
|
+
"--collapsiblesection-hairline-hover-label-font-weight": "--font-weight-normal",
|
|
2902
|
+
"--collapsiblesection-hairline-hover-label-line-height": "--line-height-normal",
|
|
2903
|
+
"--collapsiblesection-hairline-hover-icon": "--text-primary",
|
|
2904
|
+
"--collapsiblesection-hairline-hover-icon-size": "--icon-size-xs",
|
|
2905
|
+
"--collapsiblesection-hairline-open-padding": "--space-8",
|
|
2906
2906
|
"--collapsiblesection-container-frame-border": "--border-neutral",
|
|
2907
2907
|
"--collapsiblesection-container-frame-border-width": "--border-width-1",
|
|
2908
2908
|
"--collapsiblesection-container-frame-radius": "--radius-lg",
|
|
@@ -2924,8 +2924,8 @@
|
|
|
2924
2924
|
"--collapsiblesection-container-hover-label-line-height": "--line-height-normal",
|
|
2925
2925
|
"--collapsiblesection-container-hover-icon": "--text-primary",
|
|
2926
2926
|
"--collapsiblesection-container-hover-icon-size": "--icon-size-xs",
|
|
2927
|
-
"--collapsiblesection-container-
|
|
2928
|
-
"--collapsiblesection-container-
|
|
2927
|
+
"--collapsiblesection-container-open-surface": "--surface-neutral-higher",
|
|
2928
|
+
"--collapsiblesection-container-open-padding": "--space-8"
|
|
2929
2929
|
}
|
|
2930
2930
|
},
|
|
2931
2931
|
"cornerbadge": {
|
|
@@ -2934,46 +2934,46 @@
|
|
|
2934
2934
|
"createdAt": "2026-05-12T15:31:06.313Z",
|
|
2935
2935
|
"updatedAt": "2026-08-19T22:39:32.785Z",
|
|
2936
2936
|
"aliases": {
|
|
2937
|
-
"--
|
|
2938
|
-
"--
|
|
2939
|
-
"--
|
|
2940
|
-
"--
|
|
2941
|
-
"--
|
|
2942
|
-
"--
|
|
2943
|
-
"--
|
|
2944
|
-
"--
|
|
2945
|
-
"--
|
|
2946
|
-
"--
|
|
2947
|
-
"--
|
|
2948
|
-
"--
|
|
2949
|
-
"--
|
|
2950
|
-
"--
|
|
2951
|
-
"--
|
|
2952
|
-
"--
|
|
2953
|
-
"--
|
|
2954
|
-
"--
|
|
2955
|
-
"--
|
|
2956
|
-
"--
|
|
2957
|
-
"--
|
|
2958
|
-
"--
|
|
2959
|
-
"--
|
|
2960
|
-
"--
|
|
2961
|
-
"--
|
|
2962
|
-
"--
|
|
2963
|
-
"--
|
|
2964
|
-
"--
|
|
2965
|
-
"--
|
|
2966
|
-
"--
|
|
2967
|
-
"--
|
|
2968
|
-
"--
|
|
2969
|
-
"--
|
|
2970
|
-
"--
|
|
2971
|
-
"--
|
|
2972
|
-
"--
|
|
2973
|
-
"--
|
|
2974
|
-
"--
|
|
2975
|
-
"--
|
|
2976
|
-
"--
|
|
2937
|
+
"--cornerbadge-margin": "--space-4",
|
|
2938
|
+
"--cornerbadge-outer-radius": "--radius-sm",
|
|
2939
|
+
"--cornerbadge-inner-radius": "--radius-sm",
|
|
2940
|
+
"--cornerbadge-h-axis-radius": "--radius-sm",
|
|
2941
|
+
"--cornerbadge-v-axis-radius": "--radius-sm",
|
|
2942
|
+
"--cornerbadge-padding": "--space-10",
|
|
2943
|
+
"--cornerbadge-text-font-family": "--font-sans",
|
|
2944
|
+
"--cornerbadge-text-font-size": "--font-size-sm",
|
|
2945
|
+
"--cornerbadge-text-font-weight": "--font-weight-medium",
|
|
2946
|
+
"--cornerbadge-text-line-height": "--line-height-none",
|
|
2947
|
+
"--cornerbadge-brand-surface": "--surface-brand",
|
|
2948
|
+
"--cornerbadge-brand-border": "--border-brand",
|
|
2949
|
+
"--cornerbadge-brand-text": "--text-brand",
|
|
2950
|
+
"--cornerbadge-accent-surface": "--surface-accent",
|
|
2951
|
+
"--cornerbadge-accent-border": "--border-accent",
|
|
2952
|
+
"--cornerbadge-accent-text": "--text-accent",
|
|
2953
|
+
"--cornerbadge-neutral-surface": "--surface-neutral",
|
|
2954
|
+
"--cornerbadge-neutral-border": "--border-neutral",
|
|
2955
|
+
"--cornerbadge-neutral-text": "--text-primary",
|
|
2956
|
+
"--cornerbadge-alternate-surface": "--surface-alternate",
|
|
2957
|
+
"--cornerbadge-alternate-border": "--border-alternate",
|
|
2958
|
+
"--cornerbadge-alternate-text": "--text-alternate",
|
|
2959
|
+
"--cornerbadge-canvas-surface": "--surface-canvas",
|
|
2960
|
+
"--cornerbadge-canvas-border": "--border-canvas",
|
|
2961
|
+
"--cornerbadge-canvas-text": "--text-canvas",
|
|
2962
|
+
"--cornerbadge-special-surface": "--surface-special",
|
|
2963
|
+
"--cornerbadge-special-border": "--border-special",
|
|
2964
|
+
"--cornerbadge-special-text": "--text-special",
|
|
2965
|
+
"--cornerbadge-success-surface": "--surface-success",
|
|
2966
|
+
"--cornerbadge-success-border": "--border-success",
|
|
2967
|
+
"--cornerbadge-success-text": "--text-success",
|
|
2968
|
+
"--cornerbadge-warning-surface": "--surface-warning",
|
|
2969
|
+
"--cornerbadge-warning-border": "--border-warning",
|
|
2970
|
+
"--cornerbadge-warning-text": "--text-warning",
|
|
2971
|
+
"--cornerbadge-danger-surface": "--surface-danger",
|
|
2972
|
+
"--cornerbadge-danger-border": "--border-danger",
|
|
2973
|
+
"--cornerbadge-danger-text": "--text-danger",
|
|
2974
|
+
"--cornerbadge-info-surface": "--surface-info",
|
|
2975
|
+
"--cornerbadge-info-border": "--border-info",
|
|
2976
|
+
"--cornerbadge-info-text": "--text-info"
|
|
2977
2977
|
}
|
|
2978
2978
|
},
|
|
2979
2979
|
"dialog": {
|
|
@@ -2990,8 +2990,8 @@
|
|
|
2990
2990
|
"--dialog-shadow": "--shadow-2xl",
|
|
2991
2991
|
"--dialog-blur": "--blur-none",
|
|
2992
2992
|
"--dialog-header-surface": "--surface-neutral-lower",
|
|
2993
|
-
"--dialog-header-
|
|
2994
|
-
"--dialog-header-
|
|
2993
|
+
"--dialog-header-hairline-color": "--border-neutral-subtle",
|
|
2994
|
+
"--dialog-header-hairline-width": "--border-width-1",
|
|
2995
2995
|
"--dialog-header-padding": "--space-12",
|
|
2996
2996
|
"--dialog-title": "--text-primary",
|
|
2997
2997
|
"--dialog-title-font-family": "--font-sans",
|
|
@@ -3006,8 +3006,8 @@
|
|
|
3006
3006
|
"--dialog-body-font-size": "--font-size-md",
|
|
3007
3007
|
"--dialog-body-font-weight": "--font-weight-normal",
|
|
3008
3008
|
"--dialog-body-line-height": "--line-height-normal",
|
|
3009
|
-
"--dialog-footer-
|
|
3010
|
-
"--dialog-footer-
|
|
3009
|
+
"--dialog-footer-hairline-color": "--border-neutral-subtle",
|
|
3010
|
+
"--dialog-footer-hairline-width": "--border-width-1",
|
|
3011
3011
|
"--dialog-footer-padding": "--space-24"
|
|
3012
3012
|
}
|
|
3013
3013
|
},
|
|
@@ -3443,15 +3443,15 @@
|
|
|
3443
3443
|
"--radiobutton-hover-label-font-size": "--font-size-md",
|
|
3444
3444
|
"--radiobutton-hover-label-font-weight": "--font-weight-semibold",
|
|
3445
3445
|
"--radiobutton-hover-label-line-height": "--line-height-none",
|
|
3446
|
-
"--radiobutton-
|
|
3447
|
-
"--radiobutton-
|
|
3448
|
-
"--radiobutton-
|
|
3449
|
-
"--radiobutton-
|
|
3450
|
-
"--radiobutton-
|
|
3451
|
-
"--radiobutton-
|
|
3452
|
-
"--radiobutton-
|
|
3453
|
-
"--radiobutton-
|
|
3454
|
-
"--radiobutton-
|
|
3446
|
+
"--radiobutton-selected-dot-border-color": "--border-neutral",
|
|
3447
|
+
"--radiobutton-selected-dot-border-width": "--border-width-2",
|
|
3448
|
+
"--radiobutton-selected-dot-fill": "--text-secondary",
|
|
3449
|
+
"--radiobutton-selected-dot-size": "--dot-size-50",
|
|
3450
|
+
"--radiobutton-selected-label": "--text-primary",
|
|
3451
|
+
"--radiobutton-selected-label-font-family": "--font-sans",
|
|
3452
|
+
"--radiobutton-selected-label-font-size": "--font-size-md",
|
|
3453
|
+
"--radiobutton-selected-label-font-weight": "--font-weight-semibold",
|
|
3454
|
+
"--radiobutton-selected-label-line-height": "--line-height-none"
|
|
3455
3455
|
}
|
|
3456
3456
|
},
|
|
3457
3457
|
"sectiondivider": {
|
|
@@ -3480,8 +3480,8 @@
|
|
|
3480
3480
|
"--sectiondivider-lg-radius": "--radius-xl",
|
|
3481
3481
|
"--sectiondivider-lg-border-width": "--border-width-1",
|
|
3482
3482
|
"--sectiondivider-lg-shadow": "--shadow-none",
|
|
3483
|
-
"--sectiondivider-lg-hairline-
|
|
3484
|
-
"--sectiondivider-lg-
|
|
3483
|
+
"--sectiondivider-lg-hairline-width": "--border-width-1",
|
|
3484
|
+
"--sectiondivider-lg-surface": "--color-transparent",
|
|
3485
3485
|
"--sectiondivider-lg-title": "--text-primary",
|
|
3486
3486
|
"--sectiondivider-lg-description": "--text-alternate",
|
|
3487
3487
|
"--sectiondivider-lg-eyebrow": "--text-brand",
|
|
@@ -3507,8 +3507,8 @@
|
|
|
3507
3507
|
"--sectiondivider-md-radius": "--radius-xl",
|
|
3508
3508
|
"--sectiondivider-md-border-width": "--border-width-1",
|
|
3509
3509
|
"--sectiondivider-md-shadow": "--shadow-none",
|
|
3510
|
-
"--sectiondivider-md-hairline-
|
|
3511
|
-
"--sectiondivider-md-
|
|
3510
|
+
"--sectiondivider-md-hairline-width": "--border-width-1",
|
|
3511
|
+
"--sectiondivider-md-surface": "--color-transparent",
|
|
3512
3512
|
"--sectiondivider-md-title": "--text-primary",
|
|
3513
3513
|
"--sectiondivider-md-description": "--text-secondary",
|
|
3514
3514
|
"--sectiondivider-md-eyebrow": "--text-tertiary",
|
|
@@ -3534,8 +3534,8 @@
|
|
|
3534
3534
|
"--sectiondivider-sm-radius": "--radius-xl",
|
|
3535
3535
|
"--sectiondivider-sm-border-width": "--border-width-1",
|
|
3536
3536
|
"--sectiondivider-sm-shadow": "--shadow-none",
|
|
3537
|
-
"--sectiondivider-sm-hairline-
|
|
3538
|
-
"--sectiondivider-sm-
|
|
3537
|
+
"--sectiondivider-sm-hairline-width": "--border-width-1",
|
|
3538
|
+
"--sectiondivider-sm-surface": "--color-transparent",
|
|
3539
3539
|
"--sectiondivider-sm-title": "--text-brand",
|
|
3540
3540
|
"--sectiondivider-sm-description": "--text-secondary",
|
|
3541
3541
|
"--sectiondivider-sm-eyebrow": "--text-tertiary",
|
|
@@ -3557,9 +3557,9 @@
|
|
|
3557
3557
|
"--segmentedcontrol-bar-radius": "--radius-xl",
|
|
3558
3558
|
"--segmentedcontrol-bar-padding": "--space-8",
|
|
3559
3559
|
"--segmentedcontrol-bar-gap": "--space-12",
|
|
3560
|
-
"--segmentedcontrol-
|
|
3561
|
-
"--segmentedcontrol-
|
|
3562
|
-
"--segmentedcontrol-
|
|
3560
|
+
"--segmentedcontrol-hairline-color": "--border-neutral",
|
|
3561
|
+
"--segmentedcontrol-hairline-width": "--border-width-1",
|
|
3562
|
+
"--segmentedcontrol-hairline-inset": "--space-6",
|
|
3563
3563
|
"--segmentedcontrol-option-padding": "--space-12",
|
|
3564
3564
|
"--segmentedcontrol-option-gap": "--space-12",
|
|
3565
3565
|
"--segmentedcontrol-option-text": "--text-primary",
|
|
@@ -3595,8 +3595,8 @@
|
|
|
3595
3595
|
"--segmentedcontrol-disabled-icon": "--text-secondary",
|
|
3596
3596
|
"--segmentedcontrol-bar-small-padding": "--space-6",
|
|
3597
3597
|
"--segmentedcontrol-bar-small-radius": "--radius-lg",
|
|
3598
|
-
"--segmentedcontrol-small-
|
|
3599
|
-
"--segmentedcontrol-small-
|
|
3598
|
+
"--segmentedcontrol-small-hairline-inset": "--space-4",
|
|
3599
|
+
"--segmentedcontrol-small-hairline-width": "--border-width-1",
|
|
3600
3600
|
"--segmentedcontrol-option-small-padding": "--space-10",
|
|
3601
3601
|
"--segmentedcontrol-option-small-gap": "--space-10",
|
|
3602
3602
|
"--segmentedcontrol-option-small-icon-size": "--icon-size-sm",
|
|
@@ -3635,8 +3635,8 @@
|
|
|
3635
3635
|
"--sidenavigation-title-default-border": "--border-canvas-faint",
|
|
3636
3636
|
"--sidenavigation-title-default-border-width": "--border-width-1",
|
|
3637
3637
|
"--sidenavigation-title-default-padding": "--space-20",
|
|
3638
|
-
"--sidenavigation-title-default-
|
|
3639
|
-
"--sidenavigation-title-default-
|
|
3638
|
+
"--sidenavigation-title-default-indicator": "--color-transparent",
|
|
3639
|
+
"--sidenavigation-title-default-indicator-width": "--border-width-3",
|
|
3640
3640
|
"--sidenavigation-title-default-label": "--text-primary",
|
|
3641
3641
|
"--sidenavigation-title-default-label-font-family": "--font-display",
|
|
3642
3642
|
"--sidenavigation-title-default-label-font-size": "--font-size-2xl",
|
|
@@ -3646,24 +3646,24 @@
|
|
|
3646
3646
|
"--sidenavigation-title-hover-border": "--border-canvas-faint",
|
|
3647
3647
|
"--sidenavigation-title-hover-border-width": "--border-width-1",
|
|
3648
3648
|
"--sidenavigation-title-hover-padding": "--space-20",
|
|
3649
|
-
"--sidenavigation-title-hover-
|
|
3650
|
-
"--sidenavigation-title-hover-
|
|
3649
|
+
"--sidenavigation-title-hover-indicator": "--color-transparent",
|
|
3650
|
+
"--sidenavigation-title-hover-indicator-width": "--border-width-3",
|
|
3651
3651
|
"--sidenavigation-title-hover-label": "--text-primary",
|
|
3652
3652
|
"--sidenavigation-title-hover-label-font-family": "--font-display",
|
|
3653
3653
|
"--sidenavigation-title-hover-label-font-size": "--font-size-2xl",
|
|
3654
3654
|
"--sidenavigation-title-hover-label-font-weight": "--font-weight-bold",
|
|
3655
3655
|
"--sidenavigation-title-hover-label-line-height": "--line-height-tighter",
|
|
3656
|
-
"--sidenavigation-title-
|
|
3657
|
-
"--sidenavigation-title-
|
|
3658
|
-
"--sidenavigation-title-
|
|
3659
|
-
"--sidenavigation-title-
|
|
3660
|
-
"--sidenavigation-title-
|
|
3661
|
-
"--sidenavigation-title-
|
|
3662
|
-
"--sidenavigation-title-
|
|
3663
|
-
"--sidenavigation-title-
|
|
3664
|
-
"--sidenavigation-title-
|
|
3665
|
-
"--sidenavigation-title-
|
|
3666
|
-
"--sidenavigation-title-
|
|
3656
|
+
"--sidenavigation-title-selected-surface": "--surface-canvas-low",
|
|
3657
|
+
"--sidenavigation-title-selected-border": "--border-canvas-faint",
|
|
3658
|
+
"--sidenavigation-title-selected-border-width": "--border-width-1",
|
|
3659
|
+
"--sidenavigation-title-selected-padding": "--space-20",
|
|
3660
|
+
"--sidenavigation-title-selected-indicator": "--border-brand-medium",
|
|
3661
|
+
"--sidenavigation-title-selected-indicator-width": "--border-width-3",
|
|
3662
|
+
"--sidenavigation-title-selected-label": "--text-primary",
|
|
3663
|
+
"--sidenavigation-title-selected-label-font-family": "--font-display",
|
|
3664
|
+
"--sidenavigation-title-selected-label-font-size": "--font-size-2xl",
|
|
3665
|
+
"--sidenavigation-title-selected-label-font-weight": "--font-weight-bold",
|
|
3666
|
+
"--sidenavigation-title-selected-label-line-height": "--line-height-tighter",
|
|
3667
3667
|
"--sidenavigation-toggle-default-surface": "--color-transparent",
|
|
3668
3668
|
"--sidenavigation-toggle-default-border": "--border-brand-medium",
|
|
3669
3669
|
"--sidenavigation-toggle-default-border-width": "--border-width-1",
|
|
@@ -3679,33 +3679,33 @@
|
|
|
3679
3679
|
"--sidenavigation-toggle-hover-icon": "--text-brand",
|
|
3680
3680
|
"--sidenavigation-toggle-hover-icon-size": "--icon-size-md",
|
|
3681
3681
|
"--sidenavigation-section-default-surface": "--color-transparent",
|
|
3682
|
-
"--sidenavigation-section-default-
|
|
3683
|
-
"--sidenavigation-section-default-
|
|
3682
|
+
"--sidenavigation-section-default-indicator": "--color-transparent",
|
|
3683
|
+
"--sidenavigation-section-default-indicator-width": "--border-width-3",
|
|
3684
3684
|
"--sidenavigation-section-default-text": "--text-primary",
|
|
3685
3685
|
"--sidenavigation-section-default-text-font-family": "--font-sans",
|
|
3686
3686
|
"--sidenavigation-section-default-text-font-size": "--font-size-lg",
|
|
3687
3687
|
"--sidenavigation-section-default-text-font-weight": "--font-weight-medium",
|
|
3688
3688
|
"--sidenavigation-section-default-text-line-height": "--line-height-normal",
|
|
3689
3689
|
"--sidenavigation-section-hover-surface": "--surface-canvas",
|
|
3690
|
-
"--sidenavigation-section-hover-
|
|
3691
|
-
"--sidenavigation-section-hover-
|
|
3690
|
+
"--sidenavigation-section-hover-indicator": "--color-transparent",
|
|
3691
|
+
"--sidenavigation-section-hover-indicator-width": "--border-width-3",
|
|
3692
3692
|
"--sidenavigation-section-hover-text": "--text-primary",
|
|
3693
3693
|
"--sidenavigation-section-hover-text-font-family": "--font-sans",
|
|
3694
3694
|
"--sidenavigation-section-hover-text-font-size": "--font-size-lg",
|
|
3695
3695
|
"--sidenavigation-section-hover-text-font-weight": "--font-weight-medium",
|
|
3696
3696
|
"--sidenavigation-section-hover-text-line-height": "--line-height-normal",
|
|
3697
|
-
"--sidenavigation-section-
|
|
3698
|
-
"--sidenavigation-section-
|
|
3699
|
-
"--sidenavigation-section-
|
|
3700
|
-
"--sidenavigation-section-
|
|
3701
|
-
"--sidenavigation-section-
|
|
3702
|
-
"--sidenavigation-section-
|
|
3703
|
-
"--sidenavigation-section-
|
|
3704
|
-
"--sidenavigation-section-
|
|
3697
|
+
"--sidenavigation-section-selected-surface": "--surface-canvas-low",
|
|
3698
|
+
"--sidenavigation-section-selected-indicator": "--border-brand-medium",
|
|
3699
|
+
"--sidenavigation-section-selected-indicator-width": "--border-width-3",
|
|
3700
|
+
"--sidenavigation-section-selected-text": "--text-primary",
|
|
3701
|
+
"--sidenavigation-section-selected-text-font-family": "--font-sans",
|
|
3702
|
+
"--sidenavigation-section-selected-text-font-size": "--font-size-lg",
|
|
3703
|
+
"--sidenavigation-section-selected-text-font-weight": "--font-weight-medium",
|
|
3704
|
+
"--sidenavigation-section-selected-text-line-height": "--line-height-normal",
|
|
3705
3705
|
"--sidenavigation-item-default-surface": "--color-transparent",
|
|
3706
3706
|
"--sidenavigation-item-default-padding": "--space-10",
|
|
3707
|
-
"--sidenavigation-item-default-
|
|
3708
|
-
"--sidenavigation-item-default-
|
|
3707
|
+
"--sidenavigation-item-default-indicator": "--color-transparent",
|
|
3708
|
+
"--sidenavigation-item-default-indicator-width": "--border-width-3",
|
|
3709
3709
|
"--sidenavigation-item-default-text": "--text-tertiary",
|
|
3710
3710
|
"--sidenavigation-item-default-text-font-family": "--font-sans",
|
|
3711
3711
|
"--sidenavigation-item-default-text-font-size": "--font-size-md",
|
|
@@ -3713,27 +3713,27 @@
|
|
|
3713
3713
|
"--sidenavigation-item-default-text-line-height": "--line-height-normal",
|
|
3714
3714
|
"--sidenavigation-item-hover-surface": "--surface-canvas",
|
|
3715
3715
|
"--sidenavigation-item-hover-padding": "--space-10",
|
|
3716
|
-
"--sidenavigation-item-hover-
|
|
3717
|
-
"--sidenavigation-item-hover-
|
|
3716
|
+
"--sidenavigation-item-hover-indicator": "--color-transparent",
|
|
3717
|
+
"--sidenavigation-item-hover-indicator-width": "--border-width-3",
|
|
3718
3718
|
"--sidenavigation-item-hover-text": "--text-secondary",
|
|
3719
3719
|
"--sidenavigation-item-hover-text-font-family": "--font-sans",
|
|
3720
3720
|
"--sidenavigation-item-hover-text-font-size": "--font-size-md",
|
|
3721
3721
|
"--sidenavigation-item-hover-text-font-weight": "--font-weight-light",
|
|
3722
3722
|
"--sidenavigation-item-hover-text-line-height": "--line-height-normal",
|
|
3723
|
-
"--sidenavigation-item-
|
|
3724
|
-
"--sidenavigation-item-
|
|
3725
|
-
"--sidenavigation-item-
|
|
3726
|
-
"--sidenavigation-item-
|
|
3727
|
-
"--sidenavigation-item-
|
|
3728
|
-
"--sidenavigation-item-
|
|
3729
|
-
"--sidenavigation-item-
|
|
3730
|
-
"--sidenavigation-item-
|
|
3731
|
-
"--sidenavigation-item-
|
|
3723
|
+
"--sidenavigation-item-selected-surface": "--surface-canvas-low",
|
|
3724
|
+
"--sidenavigation-item-selected-padding": "--space-10",
|
|
3725
|
+
"--sidenavigation-item-selected-indicator": "--border-brand-medium",
|
|
3726
|
+
"--sidenavigation-item-selected-indicator-width": "--border-width-3",
|
|
3727
|
+
"--sidenavigation-item-selected-text": "--text-primary",
|
|
3728
|
+
"--sidenavigation-item-selected-text-font-family": "--font-sans",
|
|
3729
|
+
"--sidenavigation-item-selected-text-font-size": "--font-size-md",
|
|
3730
|
+
"--sidenavigation-item-selected-text-font-weight": "--font-weight-normal",
|
|
3731
|
+
"--sidenavigation-item-selected-text-line-height": "--line-height-normal",
|
|
3732
3732
|
"--sidenavigation-footer-default-surface": "--color-transparent",
|
|
3733
3733
|
"--sidenavigation-footer-default-padding": "--space-12",
|
|
3734
3734
|
"--sidenavigation-footer-default-gap": "--space-12",
|
|
3735
|
-
"--sidenavigation-footer-default-
|
|
3736
|
-
"--sidenavigation-footer-default-
|
|
3735
|
+
"--sidenavigation-footer-default-indicator": "--color-transparent",
|
|
3736
|
+
"--sidenavigation-footer-default-indicator-width": "--border-width-3",
|
|
3737
3737
|
"--sidenavigation-footer-default-icon": "--text-muted",
|
|
3738
3738
|
"--sidenavigation-footer-default-icon-size": "--icon-size-xs",
|
|
3739
3739
|
"--sidenavigation-footer-default-text": "--text-tertiary",
|
|
@@ -3744,8 +3744,8 @@
|
|
|
3744
3744
|
"--sidenavigation-footer-hover-surface": "--surface-canvas",
|
|
3745
3745
|
"--sidenavigation-footer-hover-padding": "--space-12",
|
|
3746
3746
|
"--sidenavigation-footer-hover-gap": "--space-12",
|
|
3747
|
-
"--sidenavigation-footer-hover-
|
|
3748
|
-
"--sidenavigation-footer-hover-
|
|
3747
|
+
"--sidenavigation-footer-hover-indicator": "--color-transparent",
|
|
3748
|
+
"--sidenavigation-footer-hover-indicator-width": "--border-width-3",
|
|
3749
3749
|
"--sidenavigation-footer-hover-icon": "--text-secondary",
|
|
3750
3750
|
"--sidenavigation-footer-hover-icon-size": "--icon-size-xs",
|
|
3751
3751
|
"--sidenavigation-footer-hover-text": "--text-secondary",
|
|
@@ -3753,18 +3753,18 @@
|
|
|
3753
3753
|
"--sidenavigation-footer-hover-text-font-size": "--font-size-sm",
|
|
3754
3754
|
"--sidenavigation-footer-hover-text-font-weight": "--font-weight-light",
|
|
3755
3755
|
"--sidenavigation-footer-hover-text-line-height": "--line-height-normal",
|
|
3756
|
-
"--sidenavigation-footer-
|
|
3757
|
-
"--sidenavigation-footer-
|
|
3758
|
-
"--sidenavigation-footer-
|
|
3759
|
-
"--sidenavigation-footer-
|
|
3760
|
-
"--sidenavigation-footer-
|
|
3761
|
-
"--sidenavigation-footer-
|
|
3762
|
-
"--sidenavigation-footer-
|
|
3763
|
-
"--sidenavigation-footer-
|
|
3764
|
-
"--sidenavigation-footer-
|
|
3765
|
-
"--sidenavigation-footer-
|
|
3766
|
-
"--sidenavigation-footer-
|
|
3767
|
-
"--sidenavigation-footer-
|
|
3756
|
+
"--sidenavigation-footer-selected-surface": "--surface-canvas-low",
|
|
3757
|
+
"--sidenavigation-footer-selected-padding": "--space-12",
|
|
3758
|
+
"--sidenavigation-footer-selected-gap": "--space-12",
|
|
3759
|
+
"--sidenavigation-footer-selected-indicator": "--border-brand-medium",
|
|
3760
|
+
"--sidenavigation-footer-selected-indicator-width": "--border-width-3",
|
|
3761
|
+
"--sidenavigation-footer-selected-icon": "--text-primary",
|
|
3762
|
+
"--sidenavigation-footer-selected-icon-size": "--icon-size-xs",
|
|
3763
|
+
"--sidenavigation-footer-selected-text": "--text-primary",
|
|
3764
|
+
"--sidenavigation-footer-selected-text-font-family": "--font-sans",
|
|
3765
|
+
"--sidenavigation-footer-selected-text-font-size": "--font-size-sm",
|
|
3766
|
+
"--sidenavigation-footer-selected-text-font-weight": "--font-weight-normal",
|
|
3767
|
+
"--sidenavigation-footer-selected-text-line-height": "--line-height-normal"
|
|
3768
3768
|
}
|
|
3769
3769
|
},
|
|
3770
3770
|
"tabbar": {
|
|
@@ -3775,8 +3775,8 @@
|
|
|
3775
3775
|
"aliases": {
|
|
3776
3776
|
"--tabbar-hover-tint": "--tint",
|
|
3777
3777
|
"--tabbar-hover-tint-enabled": "--color-transparent",
|
|
3778
|
-
"--tabbar-bar-
|
|
3779
|
-
"--tabbar-bar-
|
|
3778
|
+
"--tabbar-bar-hairline-color": "--border-neutral-subtle",
|
|
3779
|
+
"--tabbar-bar-hairline-width": "--border-width-1",
|
|
3780
3780
|
"--tabbar-bar-top-margin": "--space-4",
|
|
3781
3781
|
"--tabbar-bar-bottom-padding": "--space-6",
|
|
3782
3782
|
"--tabbar-bar-bottom-margin": "--space-4",
|
|
@@ -3809,20 +3809,20 @@
|
|
|
3809
3809
|
"--tabbar-hover-tab-top-radius": "--radius-sm",
|
|
3810
3810
|
"--tabbar-hover-tab-bottom-radius": "--radius-sm",
|
|
3811
3811
|
"--tabbar-hover-indicator-width": "--border-width-2",
|
|
3812
|
-
"--tabbar-
|
|
3813
|
-
"--tabbar-
|
|
3814
|
-
"--tabbar-
|
|
3815
|
-
"--tabbar-
|
|
3816
|
-
"--tabbar-
|
|
3817
|
-
"--tabbar-
|
|
3818
|
-
"--tabbar-
|
|
3819
|
-
"--tabbar-
|
|
3820
|
-
"--tabbar-
|
|
3821
|
-
"--tabbar-
|
|
3822
|
-
"--tabbar-
|
|
3823
|
-
"--tabbar-
|
|
3824
|
-
"--tabbar-
|
|
3825
|
-
"--tabbar-
|
|
3812
|
+
"--tabbar-selected-text": "--text-primary",
|
|
3813
|
+
"--tabbar-selected-border": "--color-brand-500",
|
|
3814
|
+
"--tabbar-selected-surface": "--tint-low",
|
|
3815
|
+
"--tabbar-selected-text-font-family": "--font-sans",
|
|
3816
|
+
"--tabbar-selected-text-font-size": "--font-size-md",
|
|
3817
|
+
"--tabbar-selected-text-font-weight": "--font-weight-light",
|
|
3818
|
+
"--tabbar-selected-text-line-height": "--line-height-normal",
|
|
3819
|
+
"--tabbar-selected-icon-size": "--icon-size-md",
|
|
3820
|
+
"--tabbar-selected-padding": "--space-12",
|
|
3821
|
+
"--tabbar-selected-tab-border-color": "--color-transparent",
|
|
3822
|
+
"--tabbar-selected-tab-border-width": "--border-width-0",
|
|
3823
|
+
"--tabbar-selected-tab-top-radius": "--radius-sm",
|
|
3824
|
+
"--tabbar-selected-tab-bottom-radius": "--radius-sm",
|
|
3825
|
+
"--tabbar-selected-indicator-width": "--border-width-2",
|
|
3826
3826
|
"--tabbar-disabled-text": "--text-disabled",
|
|
3827
3827
|
"--tabbar-disabled-text-font-family": "--font-sans",
|
|
3828
3828
|
"--tabbar-disabled-text-font-size": "--font-size-md",
|
|
@@ -3857,8 +3857,8 @@
|
|
|
3857
3857
|
"--table-default-header-font-weight": "--font-weight-semibold",
|
|
3858
3858
|
"--table-default-header-line-height": "--line-height-none",
|
|
3859
3859
|
"--table-default-header-padding": "--space-20",
|
|
3860
|
-
"--table-default-header-
|
|
3861
|
-
"--table-default-header-
|
|
3860
|
+
"--table-default-header-hairline-color": "--border-neutral",
|
|
3861
|
+
"--table-default-header-hairline-width": "--border-width-1",
|
|
3862
3862
|
"--table-default-cell-text": "--text-secondary",
|
|
3863
3863
|
"--table-default-cell-font-family": "--font-sans",
|
|
3864
3864
|
"--table-default-cell-font-size": "--font-size-md",
|
|
@@ -3866,11 +3866,11 @@
|
|
|
3866
3866
|
"--table-default-cell-line-height": "--line-height-normal",
|
|
3867
3867
|
"--table-default-cell-padding": "--space-12",
|
|
3868
3868
|
"--table-default-row-surface": "--color-transparent",
|
|
3869
|
-
"--table-default-row-
|
|
3870
|
-
"--table-default-row-
|
|
3869
|
+
"--table-default-row-hairline-color": "--border-neutral-subtle",
|
|
3870
|
+
"--table-default-row-hairline-width": "--border-width-1",
|
|
3871
3871
|
"--table-default-row-stripe-surface": "--color-transparent",
|
|
3872
|
-
"--table-default-column-
|
|
3873
|
-
"--table-default-column-
|
|
3872
|
+
"--table-default-column-hairline-color": "--border-neutral-faint",
|
|
3873
|
+
"--table-default-column-hairline-width": "--border-width-1"
|
|
3874
3874
|
}
|
|
3875
3875
|
},
|
|
3876
3876
|
"toggle": {
|
|
@@ -3887,7 +3887,7 @@
|
|
|
3887
3887
|
"--toggle-thumb-surface": "--surface-neutral-highest",
|
|
3888
3888
|
"--toggle-thumb-border": "--border-neutral-strong",
|
|
3889
3889
|
"--toggle-thumb-size": "--font-size-md",
|
|
3890
|
-
"--toggle-label
|
|
3890
|
+
"--toggle-label": "--text-primary",
|
|
3891
3891
|
"--toggle-label-font-family": "--font-sans",
|
|
3892
3892
|
"--toggle-label-font-size": "--font-size-sm",
|
|
3893
3893
|
"--toggle-label-font-weight": "--font-weight-normal",
|
|
@@ -3902,7 +3902,7 @@
|
|
|
3902
3902
|
"--toggle-on-hover-thumb-surface": "--text-primary",
|
|
3903
3903
|
"--toggle-disabled-track-surface": "--surface-neutral-lower",
|
|
3904
3904
|
"--toggle-disabled-thumb-surface": "--surface-neutral",
|
|
3905
|
-
"--toggle-disabled-label
|
|
3905
|
+
"--toggle-disabled-label": "--text-disabled"
|
|
3906
3906
|
}
|
|
3907
3907
|
},
|
|
3908
3908
|
"tooltip": {
|
|
@@ -3980,5 +3980,5 @@
|
|
|
3980
3980
|
}
|
|
3981
3981
|
}
|
|
3982
3982
|
},
|
|
3983
|
-
"componentSchemaVersion":
|
|
3983
|
+
"componentSchemaVersion": 35
|
|
3984
3984
|
}
|