@teamix-evo/tokens 0.4.0 → 0.5.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/README.md +1 -1
- package/package.json +1 -1
- package/variants/opentrek/base.tokens.json +806 -351
- package/variants/opentrek/theme.css +71 -7
- package/variants/uni-manager/base.tokens.json +186 -37
- package/variants/uni-manager/theme.css +272 -105
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
* @import "tailwindcss";
|
|
10
10
|
* @import "@teamix-evo/tokens/variants/opentrek/theme.css";
|
|
11
11
|
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
12
|
+
* 可交互元素的 `cursor: pointer` 由 @teamix-evo/ui 各组件源码内显式声明,
|
|
13
|
+
* 不再有全局 preferences.css(见 ADR 0023)。
|
|
14
14
|
*/
|
|
15
15
|
|
|
16
16
|
@theme {
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
--color-chart-3: hsl(197 37% 24%);
|
|
53
53
|
--color-chart-4: hsl(43 74% 66%);
|
|
54
54
|
--color-chart-5: hsl(27 87% 67%);
|
|
55
|
-
--color-sidebar
|
|
55
|
+
--color-sidebar: hsl(0 0% 98%);
|
|
56
56
|
--color-sidebar-foreground: hsl(240 5.3% 26.1%);
|
|
57
57
|
--color-sidebar-primary: hsl(240 5.9% 10%);
|
|
58
58
|
--color-sidebar-primary-foreground: hsl(0 0% 98%);
|
|
@@ -66,6 +66,10 @@
|
|
|
66
66
|
--layout-dialog-md: 600px;
|
|
67
67
|
--layout-dialog-lg: 720px;
|
|
68
68
|
--layout-dialog-xl: 800px;
|
|
69
|
+
--layout-drawer-sm: 400px;
|
|
70
|
+
--layout-drawer-md: 600px;
|
|
71
|
+
--layout-drawer-lg: 800px;
|
|
72
|
+
--layout-drawer-xl: 1200px;
|
|
69
73
|
--layout-panel-sm: 200px;
|
|
70
74
|
--layout-panel-md: 240px;
|
|
71
75
|
--layout-submenu: 160px;
|
|
@@ -79,16 +83,76 @@
|
|
|
79
83
|
--layout-image-preview-max-w: 90vw;
|
|
80
84
|
--layout-image-preview-max-h: 85vh;
|
|
81
85
|
|
|
82
|
-
/* ───
|
|
83
|
-
--
|
|
86
|
+
/* ─── Form 间距精确刻度 ─────────────────────────────────── */
|
|
87
|
+
--spacing-form-label-to-input: 0.25rem; /* 4px */
|
|
88
|
+
--spacing-form-error-to-input: 0; /* 0px */
|
|
89
|
+
--spacing-form-help-to-input: 0.25rem; /* 4px */
|
|
90
|
+
--spacing-form-item-gap: 1.25rem; /* 20px */
|
|
91
|
+
--spacing-form-section-gap: 2rem; /* 32px */
|
|
92
|
+
--spacing-form-section-title-gap: 1.25rem; /* 20px */
|
|
93
|
+
|
|
94
|
+
/* ─── Input 宽度 5 档 ───────────────────────────────────── */
|
|
95
|
+
--input-width-xs: 104px;
|
|
96
|
+
--input-width-s: 216px;
|
|
97
|
+
--input-width-m: 328px;
|
|
98
|
+
--input-width-l: 440px;
|
|
99
|
+
--input-width-xl: 552px;
|
|
100
|
+
|
|
101
|
+
/* ─── 响应式断点 5 档(对齐《Teamix UI 表单设计规范》§4.1)─────
|
|
102
|
+
* XS / S / M / L / XL 五档断点 ± 24×2 ≈ 容器留白。
|
|
103
|
+
* 用于 FilterBar 多栏响应、Field 单栏 < 432 自动改上下等场景。
|
|
104
|
+
* JS 侧通过 useBreakpoint hook 读取 matchMedia,CSS 侧可在 @media (min-width: var(--bp-m)) 引用。
|
|
105
|
+
*/
|
|
106
|
+
--bp-xs: 432px;
|
|
107
|
+
--bp-s: 672px;
|
|
108
|
+
--bp-m: 944px;
|
|
109
|
+
--bp-l: 1200px;
|
|
110
|
+
--bp-xl: 1600px;
|
|
111
|
+
|
|
112
|
+
/* ─── Typography 字号语义(OpenTrek 设计规则)──────────────────────────
|
|
113
|
+
*
|
|
114
|
+
* OpenTrek 用 base/lg/xl/2xl 命名口径,与 Tailwind v4 默认 text-* 数值等价,
|
|
115
|
+
* 业务代码直接用 Tailwind utility 即可,不需要再声明 --font-size-* token。
|
|
116
|
+
*
|
|
117
|
+
* OpenTrek 命名 │ Tailwind utility │ px │ 用途
|
|
118
|
+
* ──────────────┼──────────────────┼─────┼────────────────────────────────
|
|
119
|
+
* base │ text-xs │ 12 │ 正文 / 标签 / 脚注 / 输入框 /
|
|
120
|
+
* │ │ │ 表格 / Badge / 分页 / 副标题
|
|
121
|
+
* lg │ text-sm │ 14 │ 强调正文 / 弹窗标题 /
|
|
122
|
+
* │ │ │ 抽屉标题 / Tab
|
|
123
|
+
* xl │ text-base │ 16 │ 小标题 / 卡片标题 / 区块标题
|
|
124
|
+
* 2xl │ text-lg │ 18 │ 页面主标题
|
|
125
|
+
*
|
|
126
|
+
* 字重:仅使用 font-normal(400,正文/Tab 常态/表格)与 font-medium(500,
|
|
127
|
+
* 标签/导航/Tab 激活/弹窗标题/按钮)。**不使用** font-semibold / bold 等其他档位。
|
|
128
|
+
* ─────────────────────────────────────────────────────────────────────── */
|
|
129
|
+
|
|
130
|
+
/* 显式覆盖 Tailwind text-3xl 默认 30px → 28px,对齐 cd Pixel 设计体系
|
|
131
|
+
font-size-display-2 (28px) / 数据指标-大;两个变体保持一致。 */
|
|
132
|
+
--text-3xl: 1.75rem; /* 28px — Pixel display-2 / 数据指标-大 */
|
|
133
|
+
|
|
134
|
+
/* 辅助 Typography(默认 Tailwind 之外的特殊小字号 / 大字号) */
|
|
135
|
+
--text-xxs: 0.625rem; /* 10px */
|
|
84
136
|
--text-xs-cal: 0.8rem;
|
|
137
|
+
--text-display-3: 2rem; /* 32px — Pixel display-3 / 运营标题(超 Tailwind 4xl=36 一档) */
|
|
85
138
|
|
|
86
139
|
/* ─── Overlay ───────────────────────────────────────────── */
|
|
87
140
|
--overlay-scrim: rgba(0, 0, 0, 0.5);
|
|
88
141
|
--overlay-watermark: rgba(0, 0, 0, 0.15);
|
|
89
142
|
|
|
90
143
|
/* ─── Border Radius ─────────────────────────────────────── */
|
|
91
|
-
|
|
144
|
+
/* OpenTrek 走现代 SaaS 圆润风格,base = 8px。
|
|
145
|
+
显式声明全部档位,禁止依赖 Tailwind 隐式默认(见 ADR 0027)。 */
|
|
146
|
+
--radius: 0.5rem; /* 8px — base,rounded-* 派生基准 */
|
|
147
|
+
--radius-sm: 4px; /* 小圆角(次要装饰、checkbox、复选框) */
|
|
148
|
+
--radius-md: 6px; /* 表单控件 / 按钮 / Tag 容器 默认档 */
|
|
149
|
+
--radius-lg: 8px; /* 卡片 / 弹层 / 大容器 */
|
|
150
|
+
--radius-xl: 12px; /* 大尺寸卡片 / 强调容器 */
|
|
151
|
+
--radius-2xl: 16px; /* 超大圆角 / 装饰性容器 */
|
|
152
|
+
|
|
153
|
+
/* Component Radius (组件级圆角,供下游组件消费) */
|
|
154
|
+
--radius-dialog: 16px;
|
|
155
|
+
--radius-tag: 4px;
|
|
92
156
|
|
|
93
157
|
/* ─── Font Family ───────────────────────────────────────── */
|
|
94
158
|
--font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, Segoe UI,
|
|
@@ -138,7 +202,7 @@
|
|
|
138
202
|
--color-chart-3: hsl(30 80% 55%);
|
|
139
203
|
--color-chart-4: hsl(280 65% 60%);
|
|
140
204
|
--color-chart-5: hsl(340 75% 55%);
|
|
141
|
-
--color-sidebar
|
|
205
|
+
--color-sidebar: hsl(240 5.9% 10%);
|
|
142
206
|
--color-sidebar-foreground: hsl(240 4.8% 95.9%);
|
|
143
207
|
--color-sidebar-primary: hsl(224.3 76.3% 48%);
|
|
144
208
|
--color-sidebar-primary-foreground: hsl(0 0% 100%);
|
|
@@ -366,12 +366,12 @@
|
|
|
366
366
|
"ring": {
|
|
367
367
|
"$type": "color",
|
|
368
368
|
"light": {
|
|
369
|
-
"$value": "
|
|
370
|
-
"$description": "Focus
|
|
369
|
+
"$value": "transparent",
|
|
370
|
+
"$description": "Focus 环颜色 — transparent(cd hybridcloud 走 border 深化,不显示品牌色 halo ring)"
|
|
371
371
|
},
|
|
372
372
|
"dark": {
|
|
373
|
-
"$value": "
|
|
374
|
-
"$description": "暗色 Focus 环"
|
|
373
|
+
"$value": "transparent",
|
|
374
|
+
"$description": "暗色 Focus 环 — 同 light,焦点态走 border 深化"
|
|
375
375
|
}
|
|
376
376
|
},
|
|
377
377
|
|
|
@@ -413,12 +413,18 @@
|
|
|
413
413
|
},
|
|
414
414
|
"foreground": {
|
|
415
415
|
"$type": "color",
|
|
416
|
-
"light": {
|
|
416
|
+
"light": {
|
|
417
|
+
"$value": "#696969",
|
|
418
|
+
"$description": "侧边栏文字 — color.text1.2"
|
|
419
|
+
},
|
|
417
420
|
"dark": { "$value": "#8C8C8C", "$description": "暗色侧边栏文字" }
|
|
418
421
|
},
|
|
419
422
|
"primary": {
|
|
420
423
|
"$type": "color",
|
|
421
|
-
"light": {
|
|
424
|
+
"light": {
|
|
425
|
+
"$value": "#0064C8",
|
|
426
|
+
"$description": "选中态文字色(品牌蓝)"
|
|
427
|
+
},
|
|
422
428
|
"dark": { "$value": "#2789F2", "$description": "暗色选中态文字" }
|
|
423
429
|
},
|
|
424
430
|
"primary-foreground": {
|
|
@@ -428,8 +434,14 @@
|
|
|
428
434
|
},
|
|
429
435
|
"accent": {
|
|
430
436
|
"$type": "color",
|
|
431
|
-
"light": {
|
|
432
|
-
|
|
437
|
+
"light": {
|
|
438
|
+
"$value": "#F0F7FF",
|
|
439
|
+
"$description": "选中态背景 — color.brand1.1"
|
|
440
|
+
},
|
|
441
|
+
"dark": {
|
|
442
|
+
"$value": "#1C1C1C",
|
|
443
|
+
"$description": "暗色选中态背景 — color.fill1.4"
|
|
444
|
+
}
|
|
433
445
|
},
|
|
434
446
|
"accent-foreground": {
|
|
435
447
|
"$type": "color",
|
|
@@ -438,7 +450,10 @@
|
|
|
438
450
|
},
|
|
439
451
|
"border": {
|
|
440
452
|
"$type": "color",
|
|
441
|
-
"light": {
|
|
453
|
+
"light": {
|
|
454
|
+
"$value": "#D9D9D9",
|
|
455
|
+
"$description": "侧边栏边框 — color.line1.2"
|
|
456
|
+
},
|
|
442
457
|
"dark": { "$value": "#1C1C1C", "$description": "暗色侧边栏边框" }
|
|
443
458
|
},
|
|
444
459
|
"ring": {
|
|
@@ -557,12 +572,36 @@
|
|
|
557
572
|
}
|
|
558
573
|
},
|
|
559
574
|
"line-height": {
|
|
560
|
-
"none": {
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
"
|
|
575
|
+
"none": {
|
|
576
|
+
"$type": "number",
|
|
577
|
+
"$value": 1,
|
|
578
|
+
"$description": "leading-none"
|
|
579
|
+
},
|
|
580
|
+
"tight": {
|
|
581
|
+
"$type": "number",
|
|
582
|
+
"$value": 1.25,
|
|
583
|
+
"$description": "leading-tight — 大号标题"
|
|
584
|
+
},
|
|
585
|
+
"snug": {
|
|
586
|
+
"$type": "number",
|
|
587
|
+
"$value": 1.375,
|
|
588
|
+
"$description": "leading-snug"
|
|
589
|
+
},
|
|
590
|
+
"normal": {
|
|
591
|
+
"$type": "number",
|
|
592
|
+
"$value": 1.5,
|
|
593
|
+
"$description": "leading-normal — 正文(cd font.lineheight.* 一致)"
|
|
594
|
+
},
|
|
595
|
+
"relaxed": {
|
|
596
|
+
"$type": "number",
|
|
597
|
+
"$value": 1.625,
|
|
598
|
+
"$description": "leading-relaxed"
|
|
599
|
+
},
|
|
600
|
+
"loose": {
|
|
601
|
+
"$type": "number",
|
|
602
|
+
"$value": 2,
|
|
603
|
+
"$description": "leading-loose"
|
|
604
|
+
}
|
|
566
605
|
},
|
|
567
606
|
"letter-spacing": {
|
|
568
607
|
"tighter": { "$type": "dimension", "$value": "-0.05em" },
|
|
@@ -639,6 +678,21 @@
|
|
|
639
678
|
"$type": "dimension",
|
|
640
679
|
"$value": "9999px",
|
|
641
680
|
"$description": "完全圆形 — 头像 / 药丸(hybridcloud corner.semicircle)"
|
|
681
|
+
},
|
|
682
|
+
"button": {
|
|
683
|
+
"$type": "dimension",
|
|
684
|
+
"$value": "8px",
|
|
685
|
+
"$description": "8px — --radius-button — Button 圆角(组件级,对齐 corner.3)"
|
|
686
|
+
},
|
|
687
|
+
"dialog": {
|
|
688
|
+
"$type": "dimension",
|
|
689
|
+
"$value": "16px",
|
|
690
|
+
"$description": "16px — --radius-dialog — Dialog / Sheet 圆角(组件级)"
|
|
691
|
+
},
|
|
692
|
+
"tag": {
|
|
693
|
+
"$type": "dimension",
|
|
694
|
+
"$value": "4px",
|
|
695
|
+
"$description": "4px — --radius-tag — Tag 圆角(组件级,对齐 corner.2)"
|
|
642
696
|
}
|
|
643
697
|
},
|
|
644
698
|
|
|
@@ -698,19 +752,51 @@
|
|
|
698
752
|
"drawer-sm": { "$value": "400px", "$description": "Drawer / Sheet 小宽度" },
|
|
699
753
|
"drawer-md": { "$value": "600px", "$description": "Drawer / Sheet 中宽度" },
|
|
700
754
|
"drawer-lg": { "$value": "800px", "$description": "Drawer / Sheet 大宽度" },
|
|
701
|
-
"drawer-xl": {
|
|
755
|
+
"drawer-xl": {
|
|
756
|
+
"$value": "1200px",
|
|
757
|
+
"$description": "Drawer / Sheet 超大宽度"
|
|
758
|
+
},
|
|
702
759
|
"panel-sm": { "$value": "200px", "$description": "侧边面板小尺寸" },
|
|
703
760
|
"panel-md": { "$value": "240px", "$description": "侧边面板默认尺寸" },
|
|
704
761
|
"submenu": { "$value": "160px", "$description": "子菜单宽度" },
|
|
705
762
|
"menu-min": { "$value": "8rem", "$description": "Menu 最小宽度" },
|
|
706
763
|
"menu-md": { "$value": "12rem", "$description": "Menu 默认宽度" },
|
|
707
764
|
"popover-max": { "$value": "24rem", "$description": "Popover 最大宽度" },
|
|
708
|
-
"listbox-max": {
|
|
765
|
+
"listbox-max": {
|
|
766
|
+
"$value": "300px",
|
|
767
|
+
"$description": "Select / Listbox 最大高度"
|
|
768
|
+
},
|
|
709
769
|
"counter": { "$value": "1.25rem", "$description": "Badge 数字徽标尺寸" },
|
|
710
|
-
"notification": {
|
|
770
|
+
"notification": {
|
|
771
|
+
"$value": "360px",
|
|
772
|
+
"$description": "Notification 卡片宽度"
|
|
773
|
+
},
|
|
711
774
|
"textarea-min": { "$value": "80px", "$description": "Textarea 最小高度" },
|
|
712
|
-
"image-preview-max-w": {
|
|
713
|
-
|
|
775
|
+
"image-preview-max-w": {
|
|
776
|
+
"$value": "90vw",
|
|
777
|
+
"$description": "Image 预览最大宽度"
|
|
778
|
+
},
|
|
779
|
+
"image-preview-max-h": {
|
|
780
|
+
"$value": "85vh",
|
|
781
|
+
"$description": "Image 预览最大高度"
|
|
782
|
+
}
|
|
783
|
+
},
|
|
784
|
+
|
|
785
|
+
"height": {
|
|
786
|
+
"$type": "dimension",
|
|
787
|
+
"$description": "组件级高度 Token — 供下游组件(cva 配置)消费;对齐 cd 业务侧 small/medium/large 档",
|
|
788
|
+
"button-sm": {
|
|
789
|
+
"$value": "24px",
|
|
790
|
+
"$description": "24px — --height-button-sm — Button size=sm(cd small,对齐旧库紧凑形态)"
|
|
791
|
+
},
|
|
792
|
+
"button-md": {
|
|
793
|
+
"$value": "32px",
|
|
794
|
+
"$description": "32px — --height-button-md — Button size=md / default(cd medium)"
|
|
795
|
+
},
|
|
796
|
+
"button-lg": {
|
|
797
|
+
"$value": "36px",
|
|
798
|
+
"$description": "36px — --height-button-lg — Button size=lg(cd large)"
|
|
799
|
+
}
|
|
714
800
|
},
|
|
715
801
|
|
|
716
802
|
"text-aux": {
|
|
@@ -742,18 +828,46 @@
|
|
|
742
828
|
"animation": {
|
|
743
829
|
"$description": "动画 Token — 时长、缓动函数、关键帧",
|
|
744
830
|
"duration": {
|
|
745
|
-
"fast": {
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
831
|
+
"fast": {
|
|
832
|
+
"$type": "duration",
|
|
833
|
+
"$value": "150ms",
|
|
834
|
+
"$description": "微交互(hover、focus)"
|
|
835
|
+
},
|
|
836
|
+
"normal": {
|
|
837
|
+
"$type": "duration",
|
|
838
|
+
"$value": "200ms",
|
|
839
|
+
"$description": "常规过渡"
|
|
840
|
+
},
|
|
841
|
+
"slow": {
|
|
842
|
+
"$type": "duration",
|
|
843
|
+
"$value": "300ms",
|
|
844
|
+
"$description": "面板滑入"
|
|
845
|
+
},
|
|
846
|
+
"slower": {
|
|
847
|
+
"$type": "duration",
|
|
848
|
+
"$value": "500ms",
|
|
849
|
+
"$description": "大型展开动画"
|
|
850
|
+
}
|
|
749
851
|
},
|
|
750
852
|
"easing": {
|
|
751
853
|
"linear": { "$type": "cubicBezier", "$value": [0, 0, 1, 1] },
|
|
752
854
|
"ease": { "$type": "cubicBezier", "$value": [0.25, 0.1, 0.25, 1] },
|
|
753
|
-
"ease-in": {
|
|
754
|
-
|
|
855
|
+
"ease-in": {
|
|
856
|
+
"$type": "cubicBezier",
|
|
857
|
+
"$value": [0.4, 0, 1, 1],
|
|
858
|
+
"$description": "元素退出"
|
|
859
|
+
},
|
|
860
|
+
"ease-out": {
|
|
861
|
+
"$type": "cubicBezier",
|
|
862
|
+
"$value": [0, 0, 0.2, 1],
|
|
863
|
+
"$description": "元素进入"
|
|
864
|
+
},
|
|
755
865
|
"ease-in-out": { "$type": "cubicBezier", "$value": [0.4, 0, 0.2, 1] },
|
|
756
|
-
"spring": {
|
|
866
|
+
"spring": {
|
|
867
|
+
"$type": "cubicBezier",
|
|
868
|
+
"$value": [0.34, 1.56, 0.64, 1],
|
|
869
|
+
"$description": "弹性进入"
|
|
870
|
+
}
|
|
757
871
|
},
|
|
758
872
|
"keyframes": {
|
|
759
873
|
"accordion-down": {
|
|
@@ -768,13 +882,34 @@
|
|
|
768
882
|
},
|
|
769
883
|
"fade-in": { "from": { "opacity": "0" }, "to": { "opacity": "1" } },
|
|
770
884
|
"fade-out": { "from": { "opacity": "1" }, "to": { "opacity": "0" } },
|
|
771
|
-
"slide-in-from-top": {
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
"
|
|
776
|
-
|
|
777
|
-
|
|
885
|
+
"slide-in-from-top": {
|
|
886
|
+
"from": { "transform": "translateY(-100%)" },
|
|
887
|
+
"to": { "transform": "translateY(0)" }
|
|
888
|
+
},
|
|
889
|
+
"slide-in-from-bottom": {
|
|
890
|
+
"from": { "transform": "translateY(100%)" },
|
|
891
|
+
"to": { "transform": "translateY(0)" }
|
|
892
|
+
},
|
|
893
|
+
"slide-in-from-left": {
|
|
894
|
+
"from": { "transform": "translateX(-100%)" },
|
|
895
|
+
"to": { "transform": "translateX(0)" }
|
|
896
|
+
},
|
|
897
|
+
"slide-in-from-right": {
|
|
898
|
+
"from": { "transform": "translateX(100%)" },
|
|
899
|
+
"to": { "transform": "translateX(0)" }
|
|
900
|
+
},
|
|
901
|
+
"zoom-in-95": {
|
|
902
|
+
"from": { "opacity": "0", "transform": "scale(0.95)" },
|
|
903
|
+
"to": { "opacity": "1", "transform": "scale(1)" }
|
|
904
|
+
},
|
|
905
|
+
"zoom-out-95": {
|
|
906
|
+
"from": { "opacity": "1", "transform": "scale(1)" },
|
|
907
|
+
"to": { "opacity": "0", "transform": "scale(0.95)" }
|
|
908
|
+
},
|
|
909
|
+
"spin": {
|
|
910
|
+
"from": { "transform": "rotate(0deg)" },
|
|
911
|
+
"to": { "transform": "rotate(360deg)" }
|
|
912
|
+
},
|
|
778
913
|
"pulse": { "0%, 100%": { "opacity": "1" }, "50%": { "opacity": "0.5" } }
|
|
779
914
|
}
|
|
780
915
|
},
|
|
@@ -783,7 +918,10 @@
|
|
|
783
918
|
"$type": "number",
|
|
784
919
|
"$description": "层级规范 — shadcn/ui 各组件叠层顺序",
|
|
785
920
|
"base": { "$value": 0 },
|
|
786
|
-
"dropdown": {
|
|
921
|
+
"dropdown": {
|
|
922
|
+
"$value": 50,
|
|
923
|
+
"$description": "DropdownMenu / Select / Popover / Tooltip"
|
|
924
|
+
},
|
|
787
925
|
"sticky": { "$value": 100, "$description": "粘性导航 / 固定表头" },
|
|
788
926
|
"overlay": { "$value": 200, "$description": "Dialog / Sheet 遮罩" },
|
|
789
927
|
"modal": { "$value": 300, "$description": "Dialog / Sheet 内容" },
|
|
@@ -795,8 +933,19 @@
|
|
|
795
933
|
"$description": "样式来源记录 — 当前从 hybridcloud.tokens.json 投影",
|
|
796
934
|
"current-source": "hybridcloud.tokens.json (W3C-format projection of cloud-design fusion-theme + teamix-material)",
|
|
797
935
|
"target-source": "Same — uni-manager design system based on cloud-design hybridcloud variant",
|
|
798
|
-
"replacement-scope": [
|
|
799
|
-
|
|
936
|
+
"replacement-scope": [
|
|
937
|
+
"color",
|
|
938
|
+
"radius",
|
|
939
|
+
"shadow",
|
|
940
|
+
"typography.font-family",
|
|
941
|
+
"layout"
|
|
942
|
+
],
|
|
943
|
+
"theme-customizable": [
|
|
944
|
+
"color.primary",
|
|
945
|
+
"color.ring",
|
|
946
|
+
"radius.base",
|
|
947
|
+
"typography.font-family.sans"
|
|
948
|
+
],
|
|
800
949
|
"status": "active",
|
|
801
950
|
"$notes": [
|
|
802
951
|
"组件级 token (button.height / dialog.padding 等) 已下沉到 ui 包内的 cva 配置,本文件不再维护 component.* 段落",
|