@sheinx/theme 3.9.0-beta.2 → 3.9.0-beta.21
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/cjs/tabs/tabs.d.ts.map +1 -1
- package/cjs/tabs/tabs.js +4 -2
- package/cjs/tabs/token.js +8 -2
- package/cjs/tabs/type.d.ts +14 -2
- package/cjs/tabs/type.d.ts.map +1 -1
- package/cjs/tag/tag.d.ts.map +1 -1
- package/cjs/tag/tag.js +68 -65
- package/cjs/tag/token.js +11 -2
- package/cjs/tag/type.d.ts +397 -379
- package/cjs/tag/type.d.ts.map +1 -1
- package/cjs/utils/token-setter.d.ts.map +1 -1
- package/cjs/utils/token-setter.js +9 -3
- package/esm/tabs/tabs.d.ts.map +1 -1
- package/esm/tabs/tabs.js +4 -2
- package/esm/tabs/token.js +8 -2
- package/esm/tabs/type.d.ts +14 -2
- package/esm/tabs/type.d.ts.map +1 -1
- package/esm/tag/tag.d.ts.map +1 -1
- package/esm/tag/tag.js +68 -65
- package/esm/tag/token.js +11 -2
- package/esm/tag/type.d.ts +397 -379
- package/esm/tag/type.d.ts.map +1 -1
- package/esm/utils/token-setter.d.ts.map +1 -1
- package/esm/utils/token-setter.js +9 -3
- package/package.json +1 -1
package/cjs/tag/type.d.ts
CHANGED
|
@@ -71,6 +71,24 @@ export interface TagTokens {
|
|
|
71
71
|
* @description 标签提示色线框风格禁用状态的边框颜色
|
|
72
72
|
*/
|
|
73
73
|
tagInfoOutlineDisabledBorderColor: string;
|
|
74
|
+
/**
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @token Brand-3
|
|
77
|
+
* @description 标签提示色线框风格图标禁用状态的字体颜色
|
|
78
|
+
*/
|
|
79
|
+
tagInfoOutlineIconDisabledFontColor: string;
|
|
80
|
+
/**
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @token Brand-1
|
|
83
|
+
* @description 标签提示色线框风格图标鼠标移入时的背景颜色
|
|
84
|
+
*/
|
|
85
|
+
tagInfoOutlineIconHoverBackgroundColor: string;
|
|
86
|
+
/**
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @token Brand-6
|
|
89
|
+
* @description 标签提示色线框风格图标鼠标移入时的字体颜色
|
|
90
|
+
*/
|
|
91
|
+
tagInfoOutlineIconHoverFontColor: string;
|
|
74
92
|
/**
|
|
75
93
|
* @type {string}
|
|
76
94
|
* @token Neutral-text-1
|
|
@@ -107,6 +125,36 @@ export interface TagTokens {
|
|
|
107
125
|
* @description 标签提示色填充风格禁用状态的边框颜色
|
|
108
126
|
*/
|
|
109
127
|
tagInfoFillDisabledBorderColor: string;
|
|
128
|
+
/**
|
|
129
|
+
* @type {string}
|
|
130
|
+
* @token Brand-5
|
|
131
|
+
* @description 标签提示色填充风格图标鼠标移入时的背景颜色
|
|
132
|
+
*/
|
|
133
|
+
tagInfoFillIconHoverBackgroundColor: string;
|
|
134
|
+
/**
|
|
135
|
+
* @type {string}
|
|
136
|
+
* @token Brand-6
|
|
137
|
+
* @description 标签提示色图标字体颜色
|
|
138
|
+
*/
|
|
139
|
+
tagInfoIconFontColor: string;
|
|
140
|
+
/**
|
|
141
|
+
* @type {string}
|
|
142
|
+
* @token Brand-3
|
|
143
|
+
* @description 标签提示色图标禁用状态的字体颜色
|
|
144
|
+
*/
|
|
145
|
+
tagInfoIconDisabledFontColor: string;
|
|
146
|
+
/**
|
|
147
|
+
* @type {string}
|
|
148
|
+
* @token Brand-2
|
|
149
|
+
* @description 标签提示色图标鼠标移入时的背景颜色
|
|
150
|
+
*/
|
|
151
|
+
tagInfoIconHoverBackgroundColor: string;
|
|
152
|
+
/**
|
|
153
|
+
* @type {string}
|
|
154
|
+
* @token Line-height-dynamic
|
|
155
|
+
* @description 标签默认尺寸行高度
|
|
156
|
+
*/
|
|
157
|
+
tagDefaultLineHeight: string;
|
|
110
158
|
/**
|
|
111
159
|
* @type {string}
|
|
112
160
|
* @token Neutral-text-5
|
|
@@ -215,6 +263,36 @@ export interface TagTokens {
|
|
|
215
263
|
* @description 标签默认尺寸填充风格禁用状态的边框颜色
|
|
216
264
|
*/
|
|
217
265
|
tagDefaultFillDisabledBorderColor: string;
|
|
266
|
+
/**
|
|
267
|
+
* @type {string}
|
|
268
|
+
* @token Neutral-fill-4
|
|
269
|
+
* @description 标签默认尺寸填充风格图标鼠标移入时的背景颜色
|
|
270
|
+
*/
|
|
271
|
+
tagDefaultFillIconHoverBackgroundColor: string;
|
|
272
|
+
/**
|
|
273
|
+
* @type {string}
|
|
274
|
+
* @token Neutral-text-4
|
|
275
|
+
* @description 标签默认尺寸图标字体颜色
|
|
276
|
+
*/
|
|
277
|
+
tagDefaultIconFontColor: string;
|
|
278
|
+
/**
|
|
279
|
+
* @type {string}
|
|
280
|
+
* @token Neutral-text-2
|
|
281
|
+
* @description 标签默认尺寸图标禁用状态的字体颜色
|
|
282
|
+
*/
|
|
283
|
+
tagDefaultIconDisabledFontColor: string;
|
|
284
|
+
/**
|
|
285
|
+
* @type {string}
|
|
286
|
+
* @token Neutral-fill-3
|
|
287
|
+
* @description 标签默认尺寸图标鼠标移入时的背景颜色
|
|
288
|
+
*/
|
|
289
|
+
tagDefaultIconHoverBackgroundColor: string;
|
|
290
|
+
/**
|
|
291
|
+
* @type {string}
|
|
292
|
+
* @token Neutral-text-5
|
|
293
|
+
* @description 标签默认尺寸图标鼠标移入时的字体颜色
|
|
294
|
+
*/
|
|
295
|
+
tagDefaultIconHoverFontColor: string;
|
|
218
296
|
/**
|
|
219
297
|
* @type {string}
|
|
220
298
|
* @token Success-6
|
|
@@ -287,6 +365,18 @@ export interface TagTokens {
|
|
|
287
365
|
* @description 标签成功色线框风格禁用状态的边框颜色
|
|
288
366
|
*/
|
|
289
367
|
tagSuccessOutlineDisabledBorderColor: string;
|
|
368
|
+
/**
|
|
369
|
+
* @type {string}
|
|
370
|
+
* @token Success-3
|
|
371
|
+
* @description 标签成功色线框风格图标禁用状态的字体颜色
|
|
372
|
+
*/
|
|
373
|
+
tagSuccessOutlineIconDisabledFontColor: string;
|
|
374
|
+
/**
|
|
375
|
+
* @type {string}
|
|
376
|
+
* @token Success-2
|
|
377
|
+
* @description 标签成功色线框风格图标鼠标移入时的背景颜色
|
|
378
|
+
*/
|
|
379
|
+
tagSuccessOutlineIconHoverBackgroundColor: string;
|
|
290
380
|
/**
|
|
291
381
|
* @type {string}
|
|
292
382
|
* @token Neutral-text-1
|
|
@@ -323,6 +413,30 @@ export interface TagTokens {
|
|
|
323
413
|
* @description 标签成功色填充风格禁用状态的边框颜色
|
|
324
414
|
*/
|
|
325
415
|
tagSuccessFillDisabledBorderColor: string;
|
|
416
|
+
/**
|
|
417
|
+
* @type {string}
|
|
418
|
+
* @token Success-5
|
|
419
|
+
* @description 标签成功色填充风格图标鼠标移入时的背景颜色
|
|
420
|
+
*/
|
|
421
|
+
tagSuccessFillIconHoverBackgroundColor: string;
|
|
422
|
+
/**
|
|
423
|
+
* @type {string}
|
|
424
|
+
* @token Success-6
|
|
425
|
+
* @description 标签成功色图标字体颜色
|
|
426
|
+
*/
|
|
427
|
+
tagSuccessIconFontColor: string;
|
|
428
|
+
/**
|
|
429
|
+
* @type {string}
|
|
430
|
+
* @token Success-3
|
|
431
|
+
* @description 标签成功色图标禁用状态的字体颜色
|
|
432
|
+
*/
|
|
433
|
+
tagSuccessIconDisabledFontColor: string;
|
|
434
|
+
/**
|
|
435
|
+
* @type {string}
|
|
436
|
+
* @token Success-2
|
|
437
|
+
* @description 标签成功色图标鼠标移入时的背景颜色
|
|
438
|
+
*/
|
|
439
|
+
tagSuccessIconHoverBackgroundColor: string;
|
|
326
440
|
/**
|
|
327
441
|
* @type {string}
|
|
328
442
|
* @token Warning-6
|
|
@@ -431,6 +545,30 @@ export interface TagTokens {
|
|
|
431
545
|
* @description 标签警告色填充风格禁用状态的边框颜色
|
|
432
546
|
*/
|
|
433
547
|
tagWarningFillDisabledBorderColor: string;
|
|
548
|
+
/**
|
|
549
|
+
* @type {string}
|
|
550
|
+
* @token Warning-6
|
|
551
|
+
* @description 标签警告色填充风格图标字体颜色
|
|
552
|
+
*/
|
|
553
|
+
tagWarningFillIconFontColor: string;
|
|
554
|
+
/**
|
|
555
|
+
* @type {string}
|
|
556
|
+
* @token Warning-5
|
|
557
|
+
* @description 标签警告色填充风格图标鼠标移入时的背景颜色
|
|
558
|
+
*/
|
|
559
|
+
tagWarningFillIconHoverBackgroundColor: string;
|
|
560
|
+
/**
|
|
561
|
+
* @type {string}
|
|
562
|
+
* @token Warning-3
|
|
563
|
+
* @description 标签警告色图标禁用状态的字体颜色
|
|
564
|
+
*/
|
|
565
|
+
tagWarningIconDisabledFontColor: string;
|
|
566
|
+
/**
|
|
567
|
+
* @type {string}
|
|
568
|
+
* @token Warning-2
|
|
569
|
+
* @description 标签警告色图标鼠标移入时的背景颜色
|
|
570
|
+
*/
|
|
571
|
+
tagWarningIconHoverBackgroundColor: string;
|
|
434
572
|
/**
|
|
435
573
|
* @type {string}
|
|
436
574
|
* @token Danger-6
|
|
@@ -539,6 +677,30 @@ export interface TagTokens {
|
|
|
539
677
|
* @description 标签危险色填充风格禁用状态的边框颜色
|
|
540
678
|
*/
|
|
541
679
|
tagDangerFillDisabledBorderColor: string;
|
|
680
|
+
/**
|
|
681
|
+
* @type {string}
|
|
682
|
+
* @token Danger-5
|
|
683
|
+
* @description 标签危险色填充风格图标鼠标移入时的背景颜色
|
|
684
|
+
*/
|
|
685
|
+
tagDangerFillIconHoverBackgroundColor: string;
|
|
686
|
+
/**
|
|
687
|
+
* @type {string}
|
|
688
|
+
* @token Danger-6
|
|
689
|
+
* @description 标签危险色图标字体颜色
|
|
690
|
+
*/
|
|
691
|
+
tagDangerIconFontColor: string;
|
|
692
|
+
/**
|
|
693
|
+
* @type {string}
|
|
694
|
+
* @token Danger-3
|
|
695
|
+
* @description 标签危险色图标禁用状态的字体颜色
|
|
696
|
+
*/
|
|
697
|
+
tagDangerIconDisabledFontColor: string;
|
|
698
|
+
/**
|
|
699
|
+
* @type {string}
|
|
700
|
+
* @token Danger-2
|
|
701
|
+
* @description 标签危险色图标鼠标移入时的背景颜色
|
|
702
|
+
*/
|
|
703
|
+
tagDangerIconHoverBackgroundColor: string;
|
|
542
704
|
/**
|
|
543
705
|
* @type {string}
|
|
544
706
|
* @token Magenta-6
|
|
@@ -647,6 +809,30 @@ export interface TagTokens {
|
|
|
647
809
|
* @description 标签洋红色填充风格禁用状态的边框颜色
|
|
648
810
|
*/
|
|
649
811
|
tagMagentaFillDisabledBorderColor: string;
|
|
812
|
+
/**
|
|
813
|
+
* @type {string}
|
|
814
|
+
* @token Magenta-5
|
|
815
|
+
* @description 标签洋红色填充风格图标鼠标移入时的背景颜色
|
|
816
|
+
*/
|
|
817
|
+
tagMagentaFillIconHoverBackgroundColor: string;
|
|
818
|
+
/**
|
|
819
|
+
* @type {string}
|
|
820
|
+
* @token Magenta-6
|
|
821
|
+
* @description 标签洋红色图标字体颜色
|
|
822
|
+
*/
|
|
823
|
+
tagMagentaIconFontColor: string;
|
|
824
|
+
/**
|
|
825
|
+
* @type {string}
|
|
826
|
+
* @token Magenta-3
|
|
827
|
+
* @description 标签洋红色图标禁用状态的字体颜色
|
|
828
|
+
*/
|
|
829
|
+
tagMagentaIconDisabledFontColor: string;
|
|
830
|
+
/**
|
|
831
|
+
* @type {string}
|
|
832
|
+
* @token Magenta-2
|
|
833
|
+
* @description 标签洋红色图标鼠标移入时的背景颜色
|
|
834
|
+
*/
|
|
835
|
+
tagMagentaIconHoverBackgroundColor: string;
|
|
650
836
|
/**
|
|
651
837
|
* @type {string}
|
|
652
838
|
* @token Brown-6
|
|
@@ -755,6 +941,30 @@ export interface TagTokens {
|
|
|
755
941
|
* @description 标签明黄色填充风格禁用状态的边框颜色
|
|
756
942
|
*/
|
|
757
943
|
tagBrownFillDisabledBorderColor: string;
|
|
944
|
+
/**
|
|
945
|
+
* @type {string}
|
|
946
|
+
* @token Brown-5
|
|
947
|
+
* @description 标签明黄色填充风格图标鼠标移入时的背景颜色
|
|
948
|
+
*/
|
|
949
|
+
tagBrownFillIconHoverBackgroundColor: string;
|
|
950
|
+
/**
|
|
951
|
+
* @type {string}
|
|
952
|
+
* @token Brown-6
|
|
953
|
+
* @description 标签明黄色图标字体颜色
|
|
954
|
+
*/
|
|
955
|
+
tagBrownIconFontColor: string;
|
|
956
|
+
/**
|
|
957
|
+
* @type {string}
|
|
958
|
+
* @token Brown-3
|
|
959
|
+
* @description 标签明黄色图标禁用状态的字体颜色
|
|
960
|
+
*/
|
|
961
|
+
tagBrownIconDisabledFontColor: string;
|
|
962
|
+
/**
|
|
963
|
+
* @type {string}
|
|
964
|
+
* @token Brown-2
|
|
965
|
+
* @description 标签明黄色图标鼠标移入时的背景颜色
|
|
966
|
+
*/
|
|
967
|
+
tagBrownIconHoverBackgroundColor: string;
|
|
758
968
|
/**
|
|
759
969
|
* @type {string}
|
|
760
970
|
* @token Purple-6
|
|
@@ -863,6 +1073,30 @@ export interface TagTokens {
|
|
|
863
1073
|
* @description 标签紫色填充风格禁用状态的边框颜色
|
|
864
1074
|
*/
|
|
865
1075
|
tagPurpleFillDisabledBorderColor: string;
|
|
1076
|
+
/**
|
|
1077
|
+
* @type {string}
|
|
1078
|
+
* @token Purple-5
|
|
1079
|
+
* @description 标签紫色填充风格图标鼠标移入时的背景颜色
|
|
1080
|
+
*/
|
|
1081
|
+
tagPurpleFillIconHoverBackgroundColor: string;
|
|
1082
|
+
/**
|
|
1083
|
+
* @type {string}
|
|
1084
|
+
* @token Purple-6
|
|
1085
|
+
* @description 标签紫色图标字体颜色
|
|
1086
|
+
*/
|
|
1087
|
+
tagPurpleIconFontColor: string;
|
|
1088
|
+
/**
|
|
1089
|
+
* @type {string}
|
|
1090
|
+
* @token Purple-3
|
|
1091
|
+
* @description 标签紫色图标禁用状态的字体颜色
|
|
1092
|
+
*/
|
|
1093
|
+
tagPurpleIconDisabledFontColor: string;
|
|
1094
|
+
/**
|
|
1095
|
+
* @type {string}
|
|
1096
|
+
* @token Purple-2
|
|
1097
|
+
* @description 标签紫色图标鼠标移入时的背景颜色
|
|
1098
|
+
*/
|
|
1099
|
+
tagPurpleIconHoverBackgroundColor: string;
|
|
866
1100
|
/**
|
|
867
1101
|
* @type {string}
|
|
868
1102
|
* @token Indigo-6
|
|
@@ -971,6 +1205,30 @@ export interface TagTokens {
|
|
|
971
1205
|
* @description 标签靛蓝色填充风格禁用状态的边框颜色
|
|
972
1206
|
*/
|
|
973
1207
|
tagIndigoFillDisabledBorderColor: string;
|
|
1208
|
+
/**
|
|
1209
|
+
* @type {string}
|
|
1210
|
+
* @token Indigo-5
|
|
1211
|
+
* @description 标签靛蓝色填充风格图标鼠标移入时的背景颜色
|
|
1212
|
+
*/
|
|
1213
|
+
tagIndigoFillIconHoverBackgroundColor: string;
|
|
1214
|
+
/**
|
|
1215
|
+
* @type {string}
|
|
1216
|
+
* @token Indigo-6
|
|
1217
|
+
* @description 标签靛蓝色图标字体颜色
|
|
1218
|
+
*/
|
|
1219
|
+
tagIndigoIconFontColor: string;
|
|
1220
|
+
/**
|
|
1221
|
+
* @type {string}
|
|
1222
|
+
* @token Indigo-3
|
|
1223
|
+
* @description 标签靛蓝色图标禁用状态的字体颜色
|
|
1224
|
+
*/
|
|
1225
|
+
tagIndigoIconDisabledFontColor: string;
|
|
1226
|
+
/**
|
|
1227
|
+
* @type {string}
|
|
1228
|
+
* @token Indigo-2
|
|
1229
|
+
* @description 标签靛蓝色图标鼠标移入时的背景颜色
|
|
1230
|
+
*/
|
|
1231
|
+
tagIndigoIconHoverBackgroundColor: string;
|
|
974
1232
|
/**
|
|
975
1233
|
* @type {string}
|
|
976
1234
|
* @token Cyan-6
|
|
@@ -1081,7 +1339,31 @@ export interface TagTokens {
|
|
|
1081
1339
|
tagCyanFillDisabledBorderColor: string;
|
|
1082
1340
|
/**
|
|
1083
1341
|
* @type {string}
|
|
1084
|
-
* @token
|
|
1342
|
+
* @token Cyan-5
|
|
1343
|
+
* @description 标签青色填充风格图标鼠标移入时的背景颜色
|
|
1344
|
+
*/
|
|
1345
|
+
tagCyanFillIconHoverBackgroundColor: string;
|
|
1346
|
+
/**
|
|
1347
|
+
* @type {string}
|
|
1348
|
+
* @token Cyan-6
|
|
1349
|
+
* @description 标签青色图标字体颜色
|
|
1350
|
+
*/
|
|
1351
|
+
tagCyanIconFontColor: string;
|
|
1352
|
+
/**
|
|
1353
|
+
* @type {string}
|
|
1354
|
+
* @token Cyan-3
|
|
1355
|
+
* @description 标签青色图标禁用状态的字体颜色
|
|
1356
|
+
*/
|
|
1357
|
+
tagCyanIconDisabledFontColor: string;
|
|
1358
|
+
/**
|
|
1359
|
+
* @type {string}
|
|
1360
|
+
* @token Cyan-2
|
|
1361
|
+
* @description 标签青色图标鼠标移入时的背景颜色
|
|
1362
|
+
*/
|
|
1363
|
+
tagCyanIconHoverBackgroundColor: string;
|
|
1364
|
+
/**
|
|
1365
|
+
* @type {string}
|
|
1366
|
+
* @token Neon-6
|
|
1085
1367
|
* @description 标签荧光色字体颜色
|
|
1086
1368
|
*/
|
|
1087
1369
|
tagNeonFontColor: string;
|
|
@@ -1187,6 +1469,30 @@ export interface TagTokens {
|
|
|
1187
1469
|
* @description 标签荧光色填充风格禁用状态的边框颜色
|
|
1188
1470
|
*/
|
|
1189
1471
|
tagNeonFillDisabledBorderColor: string;
|
|
1472
|
+
/**
|
|
1473
|
+
* @type {string}
|
|
1474
|
+
* @token Neon-5
|
|
1475
|
+
* @description 标签荧光色填充风格图标鼠标移入时的背景颜色
|
|
1476
|
+
*/
|
|
1477
|
+
tagNeonFillIconHoverBackgroundColor: string;
|
|
1478
|
+
/**
|
|
1479
|
+
* @type {string}
|
|
1480
|
+
* @token Neon-6
|
|
1481
|
+
* @description 标签荧光色图标字体颜色
|
|
1482
|
+
*/
|
|
1483
|
+
tagNeonIconFontColor: string;
|
|
1484
|
+
/**
|
|
1485
|
+
* @type {string}
|
|
1486
|
+
* @token Neon-3
|
|
1487
|
+
* @description 标签荧光色图标禁用状态的字体颜色
|
|
1488
|
+
*/
|
|
1489
|
+
tagNeonIconDisabledFontColor: string;
|
|
1490
|
+
/**
|
|
1491
|
+
* @type {string}
|
|
1492
|
+
* @token Neon-2
|
|
1493
|
+
* @description 标签荧光色图标鼠标移入时的背景颜色
|
|
1494
|
+
*/
|
|
1495
|
+
tagNeonIconHoverBackgroundColor: string;
|
|
1190
1496
|
/**
|
|
1191
1497
|
* @type {string}
|
|
1192
1498
|
* @token Lemon-6
|
|
@@ -1295,6 +1601,30 @@ export interface TagTokens {
|
|
|
1295
1601
|
* @description 标签柠檬色填充风格禁用状态的边框颜色
|
|
1296
1602
|
*/
|
|
1297
1603
|
tagLemonFillDisabledBorderColor: string;
|
|
1604
|
+
/**
|
|
1605
|
+
* @type {string}
|
|
1606
|
+
* @token Lemon-5
|
|
1607
|
+
* @description 标签柠檬色填充风格图标鼠标移入时的背景颜色
|
|
1608
|
+
*/
|
|
1609
|
+
tagLemonFillIconHoverBackgroundColor: string;
|
|
1610
|
+
/**
|
|
1611
|
+
* @type {string}
|
|
1612
|
+
* @token Lemon-6
|
|
1613
|
+
* @description 标签柠檬色图标字体颜色
|
|
1614
|
+
*/
|
|
1615
|
+
tagLemonIconFontColor: string;
|
|
1616
|
+
/**
|
|
1617
|
+
* @type {string}
|
|
1618
|
+
* @token Lemon-3
|
|
1619
|
+
* @description 标签柠檬色图标禁用状态的字体颜色
|
|
1620
|
+
*/
|
|
1621
|
+
tagLemonIconDisabledFontColor: string;
|
|
1622
|
+
/**
|
|
1623
|
+
* @type {string}
|
|
1624
|
+
* @token Lemon-2
|
|
1625
|
+
* @description 标签柠檬色图标鼠标移入时的背景颜色
|
|
1626
|
+
*/
|
|
1627
|
+
tagLemonIconHoverBackgroundColor: string;
|
|
1298
1628
|
/**
|
|
1299
1629
|
* @type {string}
|
|
1300
1630
|
* @token Tangerine-6
|
|
@@ -1403,12 +1733,42 @@ export interface TagTokens {
|
|
|
1403
1733
|
* @description 标签橘红色填充风格禁用状态的边框颜色
|
|
1404
1734
|
*/
|
|
1405
1735
|
tagTangerineFillDisabledBorderColor: string;
|
|
1736
|
+
/**
|
|
1737
|
+
* @type {string}
|
|
1738
|
+
* @token Tangerine-5
|
|
1739
|
+
* @description 标签橘红色填充风格图标鼠标移入时的背景颜色
|
|
1740
|
+
*/
|
|
1741
|
+
tagTangerineFillIconHoverBackgroundColor: string;
|
|
1742
|
+
/**
|
|
1743
|
+
* @type {string}
|
|
1744
|
+
* @token Tangerine-6
|
|
1745
|
+
* @description 标签橘红色图标字体颜色
|
|
1746
|
+
*/
|
|
1747
|
+
tagTangerineIconFontColor: string;
|
|
1748
|
+
/**
|
|
1749
|
+
* @type {string}
|
|
1750
|
+
* @token Tangerine-3
|
|
1751
|
+
* @description 标签橘红色图标禁用状态的字体颜色
|
|
1752
|
+
*/
|
|
1753
|
+
tagTangerineIconDisabledFontColor: string;
|
|
1754
|
+
/**
|
|
1755
|
+
* @type {string}
|
|
1756
|
+
* @token Tangerine-2
|
|
1757
|
+
* @description 标签橘红色图标鼠标移入时的背景颜色
|
|
1758
|
+
*/
|
|
1759
|
+
tagTangerineIconHoverBackgroundColor: string;
|
|
1406
1760
|
/**
|
|
1407
1761
|
* @type {string}
|
|
1408
1762
|
* @token Font-12
|
|
1409
1763
|
* @description 标签字体字号
|
|
1410
1764
|
*/
|
|
1411
1765
|
tagFontSize: string;
|
|
1766
|
+
/**
|
|
1767
|
+
* @type {string}
|
|
1768
|
+
* @token Weight-regular
|
|
1769
|
+
* @description 标签字体字重
|
|
1770
|
+
*/
|
|
1771
|
+
tagFontWeight: string;
|
|
1412
1772
|
/**
|
|
1413
1773
|
* @type {string}
|
|
1414
1774
|
* @token Radius-small
|
|
@@ -1433,18 +1793,18 @@ export interface TagTokens {
|
|
|
1433
1793
|
* @description 标签高度
|
|
1434
1794
|
*/
|
|
1435
1795
|
tagHeight: string;
|
|
1436
|
-
/**
|
|
1437
|
-
* @type {string}
|
|
1438
|
-
* @token Weight-regular
|
|
1439
|
-
* @description 标签字体字重
|
|
1440
|
-
*/
|
|
1441
|
-
tagFontWeight: string;
|
|
1442
1796
|
/**
|
|
1443
1797
|
* @type {string}
|
|
1444
1798
|
* @token Font-12
|
|
1445
1799
|
* @description 标签小尺寸字体字号
|
|
1446
1800
|
*/
|
|
1447
1801
|
tagSmallFontSize: string;
|
|
1802
|
+
/**
|
|
1803
|
+
* @type {string}
|
|
1804
|
+
* @token Weight-regular
|
|
1805
|
+
* @description 标签小尺寸字体字重
|
|
1806
|
+
*/
|
|
1807
|
+
tagSmallFontWeight: string;
|
|
1448
1808
|
/**
|
|
1449
1809
|
* @type {string}
|
|
1450
1810
|
* @token Radius-small
|
|
@@ -1465,16 +1825,34 @@ export interface TagTokens {
|
|
|
1465
1825
|
tagSmallHeight: string;
|
|
1466
1826
|
/**
|
|
1467
1827
|
* @type {string}
|
|
1468
|
-
* @token
|
|
1469
|
-
* @description
|
|
1828
|
+
* @token Spacing-4
|
|
1829
|
+
* @description 标签小尺寸输入框内边距(水平方向)
|
|
1470
1830
|
*/
|
|
1471
|
-
|
|
1831
|
+
tagSmallInputPaddingX: string;
|
|
1832
|
+
/**
|
|
1833
|
+
* @type {string}
|
|
1834
|
+
* @token Font-12
|
|
1835
|
+
* @description 标签小尺寸输入框字体字号
|
|
1836
|
+
*/
|
|
1837
|
+
tagSmallInputFontSize: string;
|
|
1838
|
+
/**
|
|
1839
|
+
* @type {string}
|
|
1840
|
+
* @token Line-height-dynamic
|
|
1841
|
+
* @description 标签小尺寸行高度
|
|
1842
|
+
*/
|
|
1843
|
+
tagSmallLineHeight: string;
|
|
1472
1844
|
/**
|
|
1473
1845
|
* @type {string}
|
|
1474
1846
|
* @token Font-14
|
|
1475
1847
|
* @description 标签大尺寸字体字号
|
|
1476
1848
|
*/
|
|
1477
1849
|
tagLargeFontSize: string;
|
|
1850
|
+
/**
|
|
1851
|
+
* @type {string}
|
|
1852
|
+
* @token Weight-regular
|
|
1853
|
+
* @description 标签大尺寸字体字重
|
|
1854
|
+
*/
|
|
1855
|
+
tagLargeFontWeight: string;
|
|
1478
1856
|
/**
|
|
1479
1857
|
* @type {string}
|
|
1480
1858
|
* @token Radius-default
|
|
@@ -1499,36 +1877,6 @@ export interface TagTokens {
|
|
|
1499
1877
|
* @description 标签大尺寸高度
|
|
1500
1878
|
*/
|
|
1501
1879
|
tagLargeHeight: string;
|
|
1502
|
-
/**
|
|
1503
|
-
* @type {string}
|
|
1504
|
-
* @token Weight-regular
|
|
1505
|
-
* @description 标签大尺寸字体字重
|
|
1506
|
-
*/
|
|
1507
|
-
tagLargeFontWeight: string;
|
|
1508
|
-
/**
|
|
1509
|
-
* @type {string}
|
|
1510
|
-
* @token Spacing-4
|
|
1511
|
-
* @description 标签输入框内边距(水平方向)
|
|
1512
|
-
*/
|
|
1513
|
-
tagInputPaddingX: string;
|
|
1514
|
-
/**
|
|
1515
|
-
* @type {string}
|
|
1516
|
-
* @token Font-12
|
|
1517
|
-
* @description 标签输入框字体字号
|
|
1518
|
-
*/
|
|
1519
|
-
tagInputFontSize: string;
|
|
1520
|
-
/**
|
|
1521
|
-
* @type {string}
|
|
1522
|
-
* @token Spacing-4
|
|
1523
|
-
* @description 标签小尺寸输入框内边距(水平方向)
|
|
1524
|
-
*/
|
|
1525
|
-
tagSmallInputPaddingX: string;
|
|
1526
|
-
/**
|
|
1527
|
-
* @type {string}
|
|
1528
|
-
* @token Font-12
|
|
1529
|
-
* @description 标签小尺寸输入框字体字号
|
|
1530
|
-
*/
|
|
1531
|
-
tagSmallInputFontSize: string;
|
|
1532
1880
|
/**
|
|
1533
1881
|
* @type {string}
|
|
1534
1882
|
* @token Spacing-4
|
|
@@ -1543,351 +1891,21 @@ export interface TagTokens {
|
|
|
1543
1891
|
tagLargeInputFontSize: string;
|
|
1544
1892
|
/**
|
|
1545
1893
|
* @type {string}
|
|
1546
|
-
* @token
|
|
1547
|
-
* @description
|
|
1548
|
-
*/
|
|
1549
|
-
tagInfoIconFontColor: string;
|
|
1550
|
-
/**
|
|
1551
|
-
* @type {string}
|
|
1552
|
-
* @token Brand-3
|
|
1553
|
-
* @description 标签提示色图标禁用状态的字体颜色
|
|
1554
|
-
*/
|
|
1555
|
-
tagInfoIconDisabledFontColor: string;
|
|
1556
|
-
/**
|
|
1557
|
-
* @type {string}
|
|
1558
|
-
* @token Brand-2
|
|
1559
|
-
* @description 标签提示色图标鼠标移入时的背景颜色
|
|
1560
|
-
*/
|
|
1561
|
-
tagInfoIconHoverBackgroundColor: string;
|
|
1562
|
-
/**
|
|
1563
|
-
* @type {string}
|
|
1564
|
-
* @token Brand-3
|
|
1565
|
-
* @description 标签提示色线框风格图标禁用状态的字体颜色
|
|
1566
|
-
*/
|
|
1567
|
-
tagInfoOutlineIconDisabledFontColor: string;
|
|
1568
|
-
/**
|
|
1569
|
-
* @type {string}
|
|
1570
|
-
* @token Brand-1
|
|
1571
|
-
* @description 标签提示色线框风格图标鼠标移入时的背景颜色
|
|
1572
|
-
*/
|
|
1573
|
-
tagInfoOutlineIconHoverBackgroundColor: string;
|
|
1574
|
-
/**
|
|
1575
|
-
* @type {string}
|
|
1576
|
-
* @token Brand-6
|
|
1577
|
-
* @description 标签提示色线框风格图标鼠标移入时的字体颜色
|
|
1578
|
-
*/
|
|
1579
|
-
tagInfoOutlineIconHoverFontColor: string;
|
|
1580
|
-
/**
|
|
1581
|
-
* @type {string}
|
|
1582
|
-
* @token Brand-5
|
|
1583
|
-
* @description 标签提示色填充风格图标鼠标移入时的背景颜色
|
|
1584
|
-
*/
|
|
1585
|
-
tagInfoFillIconHoverBackgroundColor: string;
|
|
1586
|
-
/**
|
|
1587
|
-
* @type {string}
|
|
1588
|
-
* @token Neutral-text-4
|
|
1589
|
-
* @description 标签默认尺寸图标字体颜色
|
|
1590
|
-
*/
|
|
1591
|
-
tagDefaultIconFontColor: string;
|
|
1592
|
-
/**
|
|
1593
|
-
* @type {string}
|
|
1594
|
-
* @token Neutral-text-2
|
|
1595
|
-
* @description 标签默认尺寸图标禁用状态的字体颜色
|
|
1596
|
-
*/
|
|
1597
|
-
tagDefaultIconDisabledFontColor: string;
|
|
1598
|
-
/**
|
|
1599
|
-
* @type {string}
|
|
1600
|
-
* @token Neutral-fill-3
|
|
1601
|
-
* @description 标签默认尺寸图标鼠标移入时的背景颜色
|
|
1602
|
-
*/
|
|
1603
|
-
tagDefaultIconHoverBackgroundColor: string;
|
|
1604
|
-
/**
|
|
1605
|
-
* @type {string}
|
|
1606
|
-
* @token Neutral-text-5
|
|
1607
|
-
* @description 标签默认尺寸图标鼠标移入时的字体颜色
|
|
1608
|
-
*/
|
|
1609
|
-
tagDefaultIconHoverFontColor: string;
|
|
1610
|
-
/**
|
|
1611
|
-
* @type {string}
|
|
1612
|
-
* @token Neutral-fill-4
|
|
1613
|
-
* @description 标签默认尺寸填充风格图标鼠标移入时的背景颜色
|
|
1614
|
-
*/
|
|
1615
|
-
tagDefaultFillIconHoverBackgroundColor: string;
|
|
1616
|
-
/**
|
|
1617
|
-
* @type {string}
|
|
1618
|
-
* @token Success-6
|
|
1619
|
-
* @description 标签成功色图标字体颜色
|
|
1620
|
-
*/
|
|
1621
|
-
tagSuccessIconFontColor: string;
|
|
1622
|
-
/**
|
|
1623
|
-
* @type {string}
|
|
1624
|
-
* @token Success-3
|
|
1625
|
-
* @description 标签成功色图标禁用状态的字体颜色
|
|
1626
|
-
*/
|
|
1627
|
-
tagSuccessIconDisabledFontColor: string;
|
|
1628
|
-
/**
|
|
1629
|
-
* @type {string}
|
|
1630
|
-
* @token Success-2
|
|
1631
|
-
* @description 标签成功色图标鼠标移入时的背景颜色
|
|
1894
|
+
* @token Line-height-dynamic
|
|
1895
|
+
* @description 标签大尺寸行高度
|
|
1632
1896
|
*/
|
|
1633
|
-
|
|
1897
|
+
tagLargeLineHeight: string;
|
|
1634
1898
|
/**
|
|
1635
1899
|
* @type {string}
|
|
1636
|
-
* @token
|
|
1637
|
-
* @description
|
|
1638
|
-
*/
|
|
1639
|
-
tagSuccessOutlineIconDisabledFontColor: string;
|
|
1640
|
-
/**
|
|
1641
|
-
* @type {string}
|
|
1642
|
-
* @token Success-2
|
|
1643
|
-
* @description 标签成功色线框风格图标鼠标移入时的背景颜色
|
|
1644
|
-
*/
|
|
1645
|
-
tagSuccessOutlineIconHoverBackgroundColor: string;
|
|
1646
|
-
/**
|
|
1647
|
-
* @type {string}
|
|
1648
|
-
* @token Success-5
|
|
1649
|
-
* @description 标签成功色填充风格图标鼠标移入时的背景颜色
|
|
1650
|
-
*/
|
|
1651
|
-
tagSuccessFillIconHoverBackgroundColor: string;
|
|
1652
|
-
/**
|
|
1653
|
-
* @type {string}
|
|
1654
|
-
* @token Warning-3
|
|
1655
|
-
* @description 标签警告色图标禁用状态的字体颜色
|
|
1656
|
-
*/
|
|
1657
|
-
tagWarningIconDisabledFontColor: string;
|
|
1658
|
-
/**
|
|
1659
|
-
* @type {string}
|
|
1660
|
-
* @token Warning-2
|
|
1661
|
-
* @description 标签警告色图标鼠标移入时的背景颜色
|
|
1662
|
-
*/
|
|
1663
|
-
tagWarningIconHoverBackgroundColor: string;
|
|
1664
|
-
/**
|
|
1665
|
-
* @type {string}
|
|
1666
|
-
* @token Warning-6
|
|
1667
|
-
* @description 标签警告色填充风格图标字体颜色
|
|
1668
|
-
*/
|
|
1669
|
-
tagWarningFillIconFontColor: string;
|
|
1670
|
-
/**
|
|
1671
|
-
* @type {string}
|
|
1672
|
-
* @token Warning-5
|
|
1673
|
-
* @description 标签警告色填充风格图标鼠标移入时的背景颜色
|
|
1674
|
-
*/
|
|
1675
|
-
tagWarningFillIconHoverBackgroundColor: string;
|
|
1676
|
-
/**
|
|
1677
|
-
* @type {string}
|
|
1678
|
-
* @token Danger-6
|
|
1679
|
-
* @description 标签危险色图标字体颜色
|
|
1680
|
-
*/
|
|
1681
|
-
tagDangerIconFontColor: string;
|
|
1682
|
-
/**
|
|
1683
|
-
* @type {string}
|
|
1684
|
-
* @token Danger-3
|
|
1685
|
-
* @description 标签危险色图标禁用状态的字体颜色
|
|
1686
|
-
*/
|
|
1687
|
-
tagDangerIconDisabledFontColor: string;
|
|
1688
|
-
/**
|
|
1689
|
-
* @type {string}
|
|
1690
|
-
* @token Danger-2
|
|
1691
|
-
* @description 标签危险色图标鼠标移入时的背景颜色
|
|
1692
|
-
*/
|
|
1693
|
-
tagDangerIconHoverBackgroundColor: string;
|
|
1694
|
-
/**
|
|
1695
|
-
* @type {string}
|
|
1696
|
-
* @token Danger-5
|
|
1697
|
-
* @description 标签危险色填充风格图标鼠标移入时的背景颜色
|
|
1698
|
-
*/
|
|
1699
|
-
tagDangerFillIconHoverBackgroundColor: string;
|
|
1700
|
-
/**
|
|
1701
|
-
* @type {string}
|
|
1702
|
-
* @token Magenta-6
|
|
1703
|
-
* @description 标签洋红色图标字体颜色
|
|
1704
|
-
*/
|
|
1705
|
-
tagMagentaIconFontColor: string;
|
|
1706
|
-
/**
|
|
1707
|
-
* @type {string}
|
|
1708
|
-
* @token Magenta-3
|
|
1709
|
-
* @description 标签洋红色图标禁用状态的字体颜色
|
|
1710
|
-
*/
|
|
1711
|
-
tagMagentaIconDisabledFontColor: string;
|
|
1712
|
-
/**
|
|
1713
|
-
* @type {string}
|
|
1714
|
-
* @token Magenta-2
|
|
1715
|
-
* @description 标签洋红色图标鼠标移入时的背景颜色
|
|
1716
|
-
*/
|
|
1717
|
-
tagMagentaIconHoverBackgroundColor: string;
|
|
1718
|
-
/**
|
|
1719
|
-
* @type {string}
|
|
1720
|
-
* @token Magenta-5
|
|
1721
|
-
* @description 标签洋红色填充风格图标鼠标移入时的背景颜色
|
|
1722
|
-
*/
|
|
1723
|
-
tagMagentaFillIconHoverBackgroundColor: string;
|
|
1724
|
-
/**
|
|
1725
|
-
* @type {string}
|
|
1726
|
-
* @token Brown-6
|
|
1727
|
-
* @description 标签明黄色图标字体颜色
|
|
1728
|
-
*/
|
|
1729
|
-
tagBrownIconFontColor: string;
|
|
1730
|
-
/**
|
|
1731
|
-
* @type {string}
|
|
1732
|
-
* @token Brown-3
|
|
1733
|
-
* @description 标签明黄色图标禁用状态的字体颜色
|
|
1734
|
-
*/
|
|
1735
|
-
tagBrownIconDisabledFontColor: string;
|
|
1736
|
-
/**
|
|
1737
|
-
* @type {string}
|
|
1738
|
-
* @token Brown-2
|
|
1739
|
-
* @description 标签明黄色图标鼠标移入时的背景颜色
|
|
1740
|
-
*/
|
|
1741
|
-
tagBrownIconHoverBackgroundColor: string;
|
|
1742
|
-
/**
|
|
1743
|
-
* @type {string}
|
|
1744
|
-
* @token Brown-5
|
|
1745
|
-
* @description 标签明黄色填充风格图标鼠标移入时的背景颜色
|
|
1746
|
-
*/
|
|
1747
|
-
tagBrownFillIconHoverBackgroundColor: string;
|
|
1748
|
-
/**
|
|
1749
|
-
* @type {string}
|
|
1750
|
-
* @token Purple-6
|
|
1751
|
-
* @description 标签紫色图标字体颜色
|
|
1752
|
-
*/
|
|
1753
|
-
tagPurpleIconFontColor: string;
|
|
1754
|
-
/**
|
|
1755
|
-
* @type {string}
|
|
1756
|
-
* @token Purple-3
|
|
1757
|
-
* @description 标签紫色图标禁用状态的字体颜色
|
|
1758
|
-
*/
|
|
1759
|
-
tagPurpleIconDisabledFontColor: string;
|
|
1760
|
-
/**
|
|
1761
|
-
* @type {string}
|
|
1762
|
-
* @token Purple-2
|
|
1763
|
-
* @description 标签紫色图标鼠标移入时的背景颜色
|
|
1764
|
-
*/
|
|
1765
|
-
tagPurpleIconHoverBackgroundColor: string;
|
|
1766
|
-
/**
|
|
1767
|
-
* @type {string}
|
|
1768
|
-
* @token Purple-5
|
|
1769
|
-
* @description 标签紫色填充风格图标鼠标移入时的背景颜色
|
|
1770
|
-
*/
|
|
1771
|
-
tagPurpleFillIconHoverBackgroundColor: string;
|
|
1772
|
-
/**
|
|
1773
|
-
* @type {string}
|
|
1774
|
-
* @token Indigo-6
|
|
1775
|
-
* @description 标签靛蓝色图标字体颜色
|
|
1776
|
-
*/
|
|
1777
|
-
tagIndigoIconFontColor: string;
|
|
1778
|
-
/**
|
|
1779
|
-
* @type {string}
|
|
1780
|
-
* @token Indigo-3
|
|
1781
|
-
* @description 标签靛蓝色图标禁用状态的字体颜色
|
|
1782
|
-
*/
|
|
1783
|
-
tagIndigoIconDisabledFontColor: string;
|
|
1784
|
-
/**
|
|
1785
|
-
* @type {string}
|
|
1786
|
-
* @token Indigo-2
|
|
1787
|
-
* @description 标签靛蓝色图标鼠标移入时的背景颜色
|
|
1788
|
-
*/
|
|
1789
|
-
tagIndigoIconHoverBackgroundColor: string;
|
|
1790
|
-
/**
|
|
1791
|
-
* @type {string}
|
|
1792
|
-
* @token Indigo-5
|
|
1793
|
-
* @description 标签靛蓝色填充风格图标鼠标移入时的背景颜色
|
|
1794
|
-
*/
|
|
1795
|
-
tagIndigoFillIconHoverBackgroundColor: string;
|
|
1796
|
-
/**
|
|
1797
|
-
* @type {string}
|
|
1798
|
-
* @token Cyan-6
|
|
1799
|
-
* @description 标签青色图标字体颜色
|
|
1800
|
-
*/
|
|
1801
|
-
tagCyanIconFontColor: string;
|
|
1802
|
-
/**
|
|
1803
|
-
* @type {string}
|
|
1804
|
-
* @token Cyan-3
|
|
1805
|
-
* @description 标签青色图标禁用状态的字体颜色
|
|
1806
|
-
*/
|
|
1807
|
-
tagCyanIconDisabledFontColor: string;
|
|
1808
|
-
/**
|
|
1809
|
-
* @type {string}
|
|
1810
|
-
* @token Cyan-2
|
|
1811
|
-
* @description 标签青色图标鼠标移入时的背景颜色
|
|
1812
|
-
*/
|
|
1813
|
-
tagCyanIconHoverBackgroundColor: string;
|
|
1814
|
-
/**
|
|
1815
|
-
* @type {string}
|
|
1816
|
-
* @token Cyan-5
|
|
1817
|
-
* @description 标签青色填充风格图标鼠标移入时的背景颜色
|
|
1818
|
-
*/
|
|
1819
|
-
tagCyanFillIconHoverBackgroundColor: string;
|
|
1820
|
-
/**
|
|
1821
|
-
* @type {string}
|
|
1822
|
-
* @token Neon-6
|
|
1823
|
-
* @description 标签荧光色图标字体颜色
|
|
1824
|
-
*/
|
|
1825
|
-
tagNeonIconFontColor: string;
|
|
1826
|
-
/**
|
|
1827
|
-
* @type {string}
|
|
1828
|
-
* @token Neon-3
|
|
1829
|
-
* @description 标签荧光色图标禁用状态的字体颜色
|
|
1830
|
-
*/
|
|
1831
|
-
tagNeonIconDisabledFontColor: string;
|
|
1832
|
-
/**
|
|
1833
|
-
* @type {string}
|
|
1834
|
-
* @token Neon-2
|
|
1835
|
-
* @description 标签荧光色图标鼠标移入时的背景颜色
|
|
1836
|
-
*/
|
|
1837
|
-
tagNeonIconHoverBackgroundColor: string;
|
|
1838
|
-
/**
|
|
1839
|
-
* @type {string}
|
|
1840
|
-
* @token Neon-5
|
|
1841
|
-
* @description 标签荧光色填充风格图标鼠标移入时的背景颜色
|
|
1842
|
-
*/
|
|
1843
|
-
tagNeonFillIconHoverBackgroundColor: string;
|
|
1844
|
-
/**
|
|
1845
|
-
* @type {string}
|
|
1846
|
-
* @token Lemon-6
|
|
1847
|
-
* @description 标签柠檬色图标字体颜色
|
|
1848
|
-
*/
|
|
1849
|
-
tagLemonIconFontColor: string;
|
|
1850
|
-
/**
|
|
1851
|
-
* @type {string}
|
|
1852
|
-
* @token Lemon-3
|
|
1853
|
-
* @description 标签柠檬色图标禁用状态的字体颜色
|
|
1854
|
-
*/
|
|
1855
|
-
tagLemonIconDisabledFontColor: string;
|
|
1856
|
-
/**
|
|
1857
|
-
* @type {string}
|
|
1858
|
-
* @token Lemon-2
|
|
1859
|
-
* @description 标签柠檬色图标鼠标移入时的背景颜色
|
|
1860
|
-
*/
|
|
1861
|
-
tagLemonIconHoverBackgroundColor: string;
|
|
1862
|
-
/**
|
|
1863
|
-
* @type {string}
|
|
1864
|
-
* @token Lemon-5
|
|
1865
|
-
* @description 标签柠檬色填充风格图标鼠标移入时的背景颜色
|
|
1866
|
-
*/
|
|
1867
|
-
tagLemonFillIconHoverBackgroundColor: string;
|
|
1868
|
-
/**
|
|
1869
|
-
* @type {string}
|
|
1870
|
-
* @token Tangerine-6
|
|
1871
|
-
* @description 标签橘红色图标字体颜色
|
|
1872
|
-
*/
|
|
1873
|
-
tagTangerineIconFontColor: string;
|
|
1874
|
-
/**
|
|
1875
|
-
* @type {string}
|
|
1876
|
-
* @token Tangerine-3
|
|
1877
|
-
* @description 标签橘红色图标禁用状态的字体颜色
|
|
1878
|
-
*/
|
|
1879
|
-
tagTangerineIconDisabledFontColor: string;
|
|
1880
|
-
/**
|
|
1881
|
-
* @type {string}
|
|
1882
|
-
* @token Tangerine-2
|
|
1883
|
-
* @description 标签橘红色图标鼠标移入时的背景颜色
|
|
1900
|
+
* @token Spacing-4
|
|
1901
|
+
* @description 标签输入框内边距(水平方向)
|
|
1884
1902
|
*/
|
|
1885
|
-
|
|
1903
|
+
tagInputPaddingX: string;
|
|
1886
1904
|
/**
|
|
1887
1905
|
* @type {string}
|
|
1888
|
-
* @token
|
|
1889
|
-
* @description
|
|
1906
|
+
* @token Font-12
|
|
1907
|
+
* @description 标签输入框字体字号
|
|
1890
1908
|
*/
|
|
1891
|
-
|
|
1909
|
+
tagInputFontSize: string;
|
|
1892
1910
|
}
|
|
1893
1911
|
//# sourceMappingURL=type.d.ts.map
|