@sheinx/theme 3.9.12 → 3.9.13-beta.10
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/input/input.js +2 -2
- package/cjs/input/token.js +2 -2
- package/cjs/input/type.d.ts +2 -2
- package/cjs/modal/modal.d.ts.map +1 -1
- package/cjs/modal/modal.js +4 -0
- package/cjs/modal/token.js +10 -0
- package/cjs/modal/type.d.ts +24 -0
- package/cjs/modal/type.d.ts.map +1 -1
- package/cjs/progress/progress.d.ts.map +1 -1
- package/cjs/progress/progress.js +4 -0
- package/cjs/progress/token.js +12 -0
- package/cjs/progress/type.d.ts +24 -0
- package/cjs/progress/type.d.ts.map +1 -1
- package/cjs/tabs/tabs.js +2 -2
- package/cjs/tabs/token.js +6 -9
- package/cjs/tabs/type.d.ts +12 -12
- package/cjs/tabs/type.d.ts.map +1 -1
- package/cjs/tag/tag.js +41 -41
- package/cjs/tag/token.js +41 -41
- package/cjs/tag/type.d.ts +41 -41
- package/cjs/token/figma.js +26 -68
- package/cjs/token/token.d.ts.map +1 -1
- package/cjs/token/token.js +6 -13
- package/cjs/token/type.d.ts +30 -79
- package/cjs/token/type.d.ts.map +1 -1
- package/esm/input/input.js +2 -2
- package/esm/input/token.js +2 -2
- package/esm/input/type.d.ts +2 -2
- package/esm/modal/modal.d.ts.map +1 -1
- package/esm/modal/modal.js +4 -0
- package/esm/modal/token.js +10 -0
- package/esm/modal/type.d.ts +24 -0
- package/esm/modal/type.d.ts.map +1 -1
- package/esm/progress/progress.d.ts.map +1 -1
- package/esm/progress/progress.js +4 -0
- package/esm/progress/token.js +12 -0
- package/esm/progress/type.d.ts +24 -0
- package/esm/progress/type.d.ts.map +1 -1
- package/esm/tabs/tabs.js +2 -2
- package/esm/tabs/token.js +6 -9
- package/esm/tabs/type.d.ts +12 -12
- package/esm/tabs/type.d.ts.map +1 -1
- package/esm/tag/tag.js +41 -41
- package/esm/tag/token.js +41 -41
- package/esm/tag/type.d.ts +41 -41
- package/esm/token/figma.js +26 -68
- package/esm/token/token.d.ts.map +1 -1
- package/esm/token/token.js +6 -13
- package/esm/token/type.d.ts +30 -79
- package/esm/token/type.d.ts.map +1 -1
- package/package.json +1 -1
package/cjs/input/input.js
CHANGED
|
@@ -45,9 +45,9 @@ var inputTokens = {
|
|
|
45
45
|
inputDisabledBackgroundColor: 'Neutral-fill-2',
|
|
46
46
|
inputErrorBorderColor: 'Danger-6',
|
|
47
47
|
inputErrorBackgroundColor: 'Neutral-fill-1',
|
|
48
|
-
inputErrorHoverBorderColor: 'Danger-
|
|
48
|
+
inputErrorHoverBorderColor: 'Danger-5',
|
|
49
49
|
inputErrorHoverBackgroundColor: 'Neutral-fill-1',
|
|
50
|
-
inputErrorFocusBorderColor: 'Danger-
|
|
50
|
+
inputErrorFocusBorderColor: 'Danger-7',
|
|
51
51
|
inputErrorFocusBackgroundColor: 'Neutral-fill-1',
|
|
52
52
|
inputErrorFocusShadow: 'Danger-1',
|
|
53
53
|
inputGroupFontColor: 'Neutral-text-5',
|
package/cjs/input/token.js
CHANGED
|
@@ -243,7 +243,7 @@ var inputTokenExtraValue = {
|
|
|
243
243
|
color: ''
|
|
244
244
|
},
|
|
245
245
|
border: {
|
|
246
|
-
color: 'Danger-
|
|
246
|
+
color: 'Danger-5'
|
|
247
247
|
},
|
|
248
248
|
background: {
|
|
249
249
|
color: 'Neutral-fill-1'
|
|
@@ -267,7 +267,7 @@ var inputTokenExtraValue = {
|
|
|
267
267
|
color: ''
|
|
268
268
|
},
|
|
269
269
|
border: {
|
|
270
|
-
color: 'Danger-
|
|
270
|
+
color: 'Danger-7'
|
|
271
271
|
},
|
|
272
272
|
background: {
|
|
273
273
|
color: 'Neutral-fill-1'
|
package/cjs/input/type.d.ts
CHANGED
|
@@ -223,7 +223,7 @@ export interface InputTokens {
|
|
|
223
223
|
inputErrorBackgroundColor: string;
|
|
224
224
|
/**
|
|
225
225
|
* @type {string}
|
|
226
|
-
* @token Danger-
|
|
226
|
+
* @token Danger-5
|
|
227
227
|
* @description 输入框错误状态的鼠标移入时的边框颜色
|
|
228
228
|
*/
|
|
229
229
|
inputErrorHoverBorderColor: string;
|
|
@@ -235,7 +235,7 @@ export interface InputTokens {
|
|
|
235
235
|
inputErrorHoverBackgroundColor: string;
|
|
236
236
|
/**
|
|
237
237
|
* @type {string}
|
|
238
|
-
* @token Danger-
|
|
238
|
+
* @token Danger-7
|
|
239
239
|
* @description 输入框错误状态的鼠标聚焦时的边框颜色
|
|
240
240
|
*/
|
|
241
241
|
inputErrorFocusBorderColor: string;
|
package/cjs/modal/modal.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"modal.d.ts","sourceRoot":"","sources":["modal.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAC;AAErC,QAAA,MAAM,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"modal.d.ts","sourceRoot":"","sources":["modal.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAC;AAErC,QAAA,MAAM,WAAW,EAAE,WAsClB,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
package/cjs/modal/modal.js
CHANGED
|
@@ -35,8 +35,12 @@ var modalTokens = {
|
|
|
35
35
|
modalDrawerTitlePaddingY: 'Spacing-12',
|
|
36
36
|
modalDrawerTitlePaddingX: 'Spacing-16',
|
|
37
37
|
modalDrawerTitleBackgroundColor: 'Neutral-fill-2',
|
|
38
|
+
modalDrawerHeaderBorderColor: 'Neutral-border-1',
|
|
39
|
+
modalDrawerHeaderBorderWidth: 'Border-0',
|
|
38
40
|
modalDrawerBodyPaddingY: 'Spacing-16',
|
|
39
41
|
modalDrawerBodyPaddingX: 'Spacing-16',
|
|
42
|
+
modalDrawerFooterBorderColor: 'Neutral-border-1',
|
|
43
|
+
modalDrawerFooterBorderWidth: 'Border-0',
|
|
40
44
|
modalDrawerFooterPaddingY: 'Spacing-16',
|
|
41
45
|
modalDrawerFooterPaddingX: 'Spacing-16',
|
|
42
46
|
modalDrawerCloseBackgroundColor: 'Neutral-fill-3',
|
package/cjs/modal/token.js
CHANGED
|
@@ -103,6 +103,12 @@ var modalTokenExtraValue = {
|
|
|
103
103
|
color: 'Neutral-fill-2'
|
|
104
104
|
}
|
|
105
105
|
},
|
|
106
|
+
header: {
|
|
107
|
+
border: {
|
|
108
|
+
color: 'Neutral-border-1',
|
|
109
|
+
width: 'Border-0'
|
|
110
|
+
}
|
|
111
|
+
},
|
|
106
112
|
body: {
|
|
107
113
|
padding: {
|
|
108
114
|
y: 'Spacing-16',
|
|
@@ -110,6 +116,10 @@ var modalTokenExtraValue = {
|
|
|
110
116
|
}
|
|
111
117
|
},
|
|
112
118
|
footer: {
|
|
119
|
+
border: {
|
|
120
|
+
color: 'Neutral-border-1',
|
|
121
|
+
width: 'Border-0'
|
|
122
|
+
},
|
|
113
123
|
padding: {
|
|
114
124
|
y: 'Spacing-16',
|
|
115
125
|
x: 'Spacing-16'
|
package/cjs/modal/type.d.ts
CHANGED
|
@@ -161,6 +161,18 @@ export interface ModalTokens {
|
|
|
161
161
|
* @description 对话框抽屉模式标题的背景颜色
|
|
162
162
|
*/
|
|
163
163
|
modalDrawerTitleBackgroundColor: string;
|
|
164
|
+
/**
|
|
165
|
+
* @type {string}
|
|
166
|
+
* @token Neutral-border-1
|
|
167
|
+
* @description 对话框抽屉模式头部区域边框颜色
|
|
168
|
+
*/
|
|
169
|
+
modalDrawerHeaderBorderColor: string;
|
|
170
|
+
/**
|
|
171
|
+
* @type {string}
|
|
172
|
+
* @token Border-0
|
|
173
|
+
* @description 对话框抽屉模式头部区域边框宽度
|
|
174
|
+
*/
|
|
175
|
+
modalDrawerHeaderBorderWidth: string;
|
|
164
176
|
/**
|
|
165
177
|
* @type {string}
|
|
166
178
|
* @token Spacing-16
|
|
@@ -173,6 +185,18 @@ export interface ModalTokens {
|
|
|
173
185
|
* @description 对话框抽屉模式主区域内边距(水平方向)
|
|
174
186
|
*/
|
|
175
187
|
modalDrawerBodyPaddingX: string;
|
|
188
|
+
/**
|
|
189
|
+
* @type {string}
|
|
190
|
+
* @token Neutral-border-1
|
|
191
|
+
* @description 对话框抽屉模式底部区域边框颜色
|
|
192
|
+
*/
|
|
193
|
+
modalDrawerFooterBorderColor: string;
|
|
194
|
+
/**
|
|
195
|
+
* @type {string}
|
|
196
|
+
* @token Border-0
|
|
197
|
+
* @description 对话框抽屉模式底部区域边框宽度
|
|
198
|
+
*/
|
|
199
|
+
modalDrawerFooterBorderWidth: string;
|
|
176
200
|
/**
|
|
177
201
|
* @type {string}
|
|
178
202
|
* @token Spacing-16
|
package/cjs/modal/type.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,WAAW;IAC1B;;;;OAIG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,oBAAoB,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,4BAA4B,EAAE,MAAM,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,qBAAqB,EAAE,MAAM,CAAC;IAC9B;;;;OAIG;IACH,+BAA+B,EAAE,MAAM,CAAC;IACxC;;;;OAIG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,qBAAqB,EAAE,MAAM,CAAC;IAC9B;;;;OAIG;IACH,oBAAoB,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,+BAA+B,EAAE,MAAM,CAAC;IACxC;;;;OAIG;IACH,uBAAuB,EAAE,MAAM,CAAC;IAChC;;;;OAIG;IACH,uBAAuB,EAAE,MAAM,CAAC;IAChC;;;;OAIG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,+BAA+B,EAAE,MAAM,CAAC;IACxC;;;;OAIG;IACH,aAAa,EAAE,MAAM,CAAC;CACvB"}
|
|
1
|
+
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,WAAW;IAC1B;;;;OAIG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,oBAAoB,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,4BAA4B,EAAE,MAAM,CAAC;IACrC;;;;OAIG;IACH,oBAAoB,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,qBAAqB,EAAE,MAAM,CAAC;IAC9B;;;;OAIG;IACH,+BAA+B,EAAE,MAAM,CAAC;IACxC;;;;OAIG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,qBAAqB,EAAE,MAAM,CAAC;IAC9B;;;;OAIG;IACH,oBAAoB,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,+BAA+B,EAAE,MAAM,CAAC;IACxC;;;;OAIG;IACH,4BAA4B,EAAE,MAAM,CAAC;IACrC;;;;OAIG;IACH,4BAA4B,EAAE,MAAM,CAAC;IACrC;;;;OAIG;IACH,uBAAuB,EAAE,MAAM,CAAC;IAChC;;;;OAIG;IACH,uBAAuB,EAAE,MAAM,CAAC;IAChC;;;;OAIG;IACH,4BAA4B,EAAE,MAAM,CAAC;IACrC;;;;OAIG;IACH,4BAA4B,EAAE,MAAM,CAAC;IACrC;;;;OAIG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,+BAA+B,EAAE,MAAM,CAAC;IACxC;;;;OAIG;IACH,aAAa,EAAE,MAAM,CAAC;CACvB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"progress.d.ts","sourceRoot":"","sources":["progress.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AAExC,QAAA,MAAM,cAAc,EAAE,
|
|
1
|
+
{"version":3,"file":"progress.d.ts","sourceRoot":"","sources":["progress.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AAExC,QAAA,MAAM,cAAc,EAAE,cAqCrB,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
package/cjs/progress/progress.js
CHANGED
|
@@ -13,12 +13,16 @@ var progressTokens = {
|
|
|
13
13
|
progressBackground: 'Neutral-fill-3',
|
|
14
14
|
progressInfoFrontBackgroundColor: 'Brand-6',
|
|
15
15
|
progressInfoInnerFontColor: 'Neutral-text-1',
|
|
16
|
+
progressInfoBackgroundColor: 'Neutral-fill-3',
|
|
16
17
|
progressWarningFrontBackgroundColor: 'Warning-6',
|
|
17
18
|
progressWarningInnerFontColor: 'Neutral-text-1',
|
|
19
|
+
progressWarningBackgroundColor: 'Neutral-fill-3',
|
|
18
20
|
progressSuccessFrontBackgroundColor: 'Success-6',
|
|
19
21
|
progressSuccessInnerFontColor: 'Neutral-text-1',
|
|
22
|
+
progressSuccessBackgroundColor: 'Neutral-fill-3',
|
|
20
23
|
progressDangerFrontBackgroundColor: 'Danger-6',
|
|
21
24
|
progressDangerInnerFontColor: 'Neutral-text-1',
|
|
25
|
+
progressDangerBackgroundColor: 'Neutral-fill-3',
|
|
22
26
|
progressCircleInfoFontColor: 'Neutral-text-4',
|
|
23
27
|
progressCircleWarningFontColor: 'Warning-6',
|
|
24
28
|
progressCircleSuccessFontColor: 'success-6',
|
package/cjs/progress/token.js
CHANGED
|
@@ -41,6 +41,9 @@ var progressTokenExtraValue = {
|
|
|
41
41
|
font: {
|
|
42
42
|
color: 'Neutral-text-1'
|
|
43
43
|
}
|
|
44
|
+
},
|
|
45
|
+
background: {
|
|
46
|
+
color: 'Neutral-fill-3'
|
|
44
47
|
}
|
|
45
48
|
},
|
|
46
49
|
warning: {
|
|
@@ -53,6 +56,9 @@ var progressTokenExtraValue = {
|
|
|
53
56
|
font: {
|
|
54
57
|
color: 'Neutral-text-1'
|
|
55
58
|
}
|
|
59
|
+
},
|
|
60
|
+
background: {
|
|
61
|
+
color: 'Neutral-fill-3'
|
|
56
62
|
}
|
|
57
63
|
},
|
|
58
64
|
success: {
|
|
@@ -65,6 +71,9 @@ var progressTokenExtraValue = {
|
|
|
65
71
|
font: {
|
|
66
72
|
color: 'Neutral-text-1'
|
|
67
73
|
}
|
|
74
|
+
},
|
|
75
|
+
background: {
|
|
76
|
+
color: 'Neutral-fill-3'
|
|
68
77
|
}
|
|
69
78
|
},
|
|
70
79
|
danger: {
|
|
@@ -77,6 +86,9 @@ var progressTokenExtraValue = {
|
|
|
77
86
|
font: {
|
|
78
87
|
color: 'Neutral-text-1'
|
|
79
88
|
}
|
|
89
|
+
},
|
|
90
|
+
background: {
|
|
91
|
+
color: 'Neutral-fill-3'
|
|
80
92
|
}
|
|
81
93
|
},
|
|
82
94
|
circle: {
|
package/cjs/progress/type.d.ts
CHANGED
|
@@ -29,6 +29,12 @@ export interface ProgressTokens {
|
|
|
29
29
|
* @description 进度条基础色内嵌文案模式字体颜色
|
|
30
30
|
*/
|
|
31
31
|
progressInfoInnerFontColor: string;
|
|
32
|
+
/**
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @token Neutral-fill-3
|
|
35
|
+
* @description 进度条基础色背景颜色
|
|
36
|
+
*/
|
|
37
|
+
progressInfoBackgroundColor: string;
|
|
32
38
|
/**
|
|
33
39
|
* @type {string}
|
|
34
40
|
* @token Warning-6
|
|
@@ -41,6 +47,12 @@ export interface ProgressTokens {
|
|
|
41
47
|
* @description 进度条警告色内嵌文案模式字体颜色
|
|
42
48
|
*/
|
|
43
49
|
progressWarningInnerFontColor: string;
|
|
50
|
+
/**
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @token Neutral-fill-3
|
|
53
|
+
* @description 进度条警告色背景颜色
|
|
54
|
+
*/
|
|
55
|
+
progressWarningBackgroundColor: string;
|
|
44
56
|
/**
|
|
45
57
|
* @type {string}
|
|
46
58
|
* @token Success-6
|
|
@@ -53,6 +65,12 @@ export interface ProgressTokens {
|
|
|
53
65
|
* @description 进度条成功色内嵌文案模式字体颜色
|
|
54
66
|
*/
|
|
55
67
|
progressSuccessInnerFontColor: string;
|
|
68
|
+
/**
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @token Neutral-fill-3
|
|
71
|
+
* @description 进度条成功色背景颜色
|
|
72
|
+
*/
|
|
73
|
+
progressSuccessBackgroundColor: string;
|
|
56
74
|
/**
|
|
57
75
|
* @type {string}
|
|
58
76
|
* @token Danger-6
|
|
@@ -65,6 +83,12 @@ export interface ProgressTokens {
|
|
|
65
83
|
* @description 进度条危险色内嵌文案模式字体颜色
|
|
66
84
|
*/
|
|
67
85
|
progressDangerInnerFontColor: string;
|
|
86
|
+
/**
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @token Neutral-fill-3
|
|
89
|
+
* @description 进度条危险色背景颜色
|
|
90
|
+
*/
|
|
91
|
+
progressDangerBackgroundColor: string;
|
|
68
92
|
/**
|
|
69
93
|
* @type {string}
|
|
70
94
|
* @token Neutral-text-4
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,cAAc;IAC7B;;;;OAIG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,gCAAgC,EAAE,MAAM,CAAC;IACzC;;;;OAIG;IACH,0BAA0B,EAAE,MAAM,CAAC;IACnC;;;;OAIG;IACH,mCAAmC,EAAE,MAAM,CAAC;IAC5C;;;;OAIG;IACH,6BAA6B,EAAE,MAAM,CAAC;IACtC;;;;OAIG;IACH,mCAAmC,EAAE,MAAM,CAAC;IAC5C;;;;OAIG;IACH,6BAA6B,EAAE,MAAM,CAAC;IACtC;;;;OAIG;IACH,kCAAkC,EAAE,MAAM,CAAC;IAC3C;;;;OAIG;IACH,4BAA4B,EAAE,MAAM,CAAC;IACrC;;;;OAIG;IACH,2BAA2B,EAAE,MAAM,CAAC;IACpC;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,6BAA6B,EAAE,MAAM,CAAC;IACtC;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,uBAAuB,EAAE,MAAM,CAAC;IAChC;;;;OAIG;IACH,oBAAoB,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,0BAA0B,EAAE,MAAM,CAAC;IACnC;;;;OAIG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,+BAA+B,EAAE,MAAM,CAAC;IACxC;;;;OAIG;IACH,yCAAyC,EAAE,MAAM,CAAC;IAClD;;;;OAIG;IACH,4CAA4C,EAAE,MAAM,CAAC;IACrD;;;;OAIG;IACH,4CAA4C,EAAE,MAAM,CAAC;IACrD;;;;OAIG;IACH,2CAA2C,EAAE,MAAM,CAAC;IACpD;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,oBAAoB,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,2BAA2B,EAAE,MAAM,CAAC;IACpC;;;;OAIG;IACH,sBAAsB,EAAE,MAAM,CAAC;CAChC"}
|
|
1
|
+
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,cAAc;IAC7B;;;;OAIG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,gCAAgC,EAAE,MAAM,CAAC;IACzC;;;;OAIG;IACH,0BAA0B,EAAE,MAAM,CAAC;IACnC;;;;OAIG;IACH,2BAA2B,EAAE,MAAM,CAAC;IACpC;;;;OAIG;IACH,mCAAmC,EAAE,MAAM,CAAC;IAC5C;;;;OAIG;IACH,6BAA6B,EAAE,MAAM,CAAC;IACtC;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,mCAAmC,EAAE,MAAM,CAAC;IAC5C;;;;OAIG;IACH,6BAA6B,EAAE,MAAM,CAAC;IACtC;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,kCAAkC,EAAE,MAAM,CAAC;IAC3C;;;;OAIG;IACH,4BAA4B,EAAE,MAAM,CAAC;IACrC;;;;OAIG;IACH,6BAA6B,EAAE,MAAM,CAAC;IACtC;;;;OAIG;IACH,2BAA2B,EAAE,MAAM,CAAC;IACpC;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,6BAA6B,EAAE,MAAM,CAAC;IACtC;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,uBAAuB,EAAE,MAAM,CAAC;IAChC;;;;OAIG;IACH,oBAAoB,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,0BAA0B,EAAE,MAAM,CAAC;IACnC;;;;OAIG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,+BAA+B,EAAE,MAAM,CAAC;IACxC;;;;OAIG;IACH,yCAAyC,EAAE,MAAM,CAAC;IAClD;;;;OAIG;IACH,4CAA4C,EAAE,MAAM,CAAC;IACrD;;;;OAIG;IACH,4CAA4C,EAAE,MAAM,CAAC;IACrD;;;;OAIG;IACH,2CAA2C,EAAE,MAAM,CAAC;IACpD;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,oBAAoB,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,2BAA2B,EAAE,MAAM,CAAC;IACpC;;;;OAIG;IACH,sBAAsB,EAAE,MAAM,CAAC;CAChC"}
|
package/cjs/tabs/tabs.js
CHANGED
|
@@ -26,7 +26,6 @@ var tabsTokens = {
|
|
|
26
26
|
tabsLinePaddingTop: 'Spacing-6',
|
|
27
27
|
tabsLinePaddingBottom: 'Spacing-6',
|
|
28
28
|
tabsLineHrBackgroundColor: 'Neutral-border-1',
|
|
29
|
-
tabsLineAfterBackgroundColor: 'Brand-6',
|
|
30
29
|
tabsLineInnerPaddingX: 'Spacing-8',
|
|
31
30
|
tabsLineInnerPaddingY: 'Spacing-4',
|
|
32
31
|
tabsLineFontColor: 'Neutral-text-5',
|
|
@@ -38,6 +37,8 @@ var tabsTokens = {
|
|
|
38
37
|
tabsLineCheckedFontSize: 'Font-14',
|
|
39
38
|
tabsLineCheckedFontWeight: 'Weight-medium',
|
|
40
39
|
tabsLineCheckedBackgroundColor: 'transparent',
|
|
40
|
+
tabsLineCheckedInkColor: 'Brand-6',
|
|
41
|
+
tabsLineCheckedInkHeight: 'Spacing-2',
|
|
41
42
|
tabsLineHoverFontSize: 'Font-14',
|
|
42
43
|
tabsLineHoverBackgroundColor: 'Neutral-fill-2',
|
|
43
44
|
tabsLineDisabledFontColor: 'Neutral-text-2',
|
|
@@ -71,7 +72,6 @@ var tabsTokens = {
|
|
|
71
72
|
tabsCardActiveFontWeight: 'Weight-medium',
|
|
72
73
|
tabsCardActiveFontSize: 'Font-14',
|
|
73
74
|
tabsCardActiveBackgroundColor: 'Neutral-fill-4',
|
|
74
|
-
tabsCardBorderColor: 'Neutral-border-1',
|
|
75
75
|
tabsCardCheckedFontColor: 'Brand-6',
|
|
76
76
|
tabsCardCheckedFontSize: 'Font-14',
|
|
77
77
|
tabsCardCheckedFontWeight: 'Weight-medium',
|
package/cjs/tabs/token.js
CHANGED
|
@@ -25,7 +25,8 @@ var tabsTokenDescription = {
|
|
|
25
25
|
horizontal: '水平模式',
|
|
26
26
|
checked: '选中状态',
|
|
27
27
|
top: '上',
|
|
28
|
-
bottom: '下'
|
|
28
|
+
bottom: '下',
|
|
29
|
+
after: '下划线指示器'
|
|
29
30
|
};
|
|
30
31
|
|
|
31
32
|
/**
|
|
@@ -116,11 +117,6 @@ var tabsTokenExtraValue = {
|
|
|
116
117
|
color: 'Neutral-border-1'
|
|
117
118
|
}
|
|
118
119
|
},
|
|
119
|
-
after: {
|
|
120
|
-
background: {
|
|
121
|
-
color: 'Brand-6'
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
120
|
inner: {
|
|
125
121
|
padding: {
|
|
126
122
|
x: 'Spacing-8',
|
|
@@ -152,6 +148,10 @@ var tabsTokenExtraValue = {
|
|
|
152
148
|
},
|
|
153
149
|
background: {
|
|
154
150
|
color: 'transparent'
|
|
151
|
+
},
|
|
152
|
+
ink: {
|
|
153
|
+
color: 'Brand-6',
|
|
154
|
+
height: 'Spacing-2'
|
|
155
155
|
}
|
|
156
156
|
},
|
|
157
157
|
hover: {
|
|
@@ -293,9 +293,6 @@ var tabsTokenExtraValue = {
|
|
|
293
293
|
color: 'Neutral-fill-4'
|
|
294
294
|
}
|
|
295
295
|
},
|
|
296
|
-
border: {
|
|
297
|
-
color: 'Neutral-border-1'
|
|
298
|
-
},
|
|
299
296
|
checked: {
|
|
300
297
|
font: {
|
|
301
298
|
color: 'Brand-6',
|
package/cjs/tabs/type.d.ts
CHANGED
|
@@ -107,12 +107,6 @@ export interface TabsTokens {
|
|
|
107
107
|
* @description 标签页长线条模式undefined背景颜色
|
|
108
108
|
*/
|
|
109
109
|
tabsLineHrBackgroundColor: string;
|
|
110
|
-
/**
|
|
111
|
-
* @type {string}
|
|
112
|
-
* @token Brand-6
|
|
113
|
-
* @description 标签页长线条模式undefined背景颜色
|
|
114
|
-
*/
|
|
115
|
-
tabsLineAfterBackgroundColor: string;
|
|
116
110
|
/**
|
|
117
111
|
* @type {string}
|
|
118
112
|
* @token Spacing-8
|
|
@@ -179,6 +173,18 @@ export interface TabsTokens {
|
|
|
179
173
|
* @description 标签页长线条模式选中状态背景颜色
|
|
180
174
|
*/
|
|
181
175
|
tabsLineCheckedBackgroundColor: string;
|
|
176
|
+
/**
|
|
177
|
+
* @type {string}
|
|
178
|
+
* @token Brand-6
|
|
179
|
+
* @description 标签页长线条模式选中状态undefined颜色
|
|
180
|
+
*/
|
|
181
|
+
tabsLineCheckedInkColor: string;
|
|
182
|
+
/**
|
|
183
|
+
* @type {string}
|
|
184
|
+
* @token Spacing-2
|
|
185
|
+
* @description 标签页长线条模式选中状态undefined高度
|
|
186
|
+
*/
|
|
187
|
+
tabsLineCheckedInkHeight: string;
|
|
182
188
|
/**
|
|
183
189
|
* @type {string}
|
|
184
190
|
* @token Font-14
|
|
@@ -377,12 +383,6 @@ export interface TabsTokens {
|
|
|
377
383
|
* @description 标签页卡片模式鼠标点击时的背景颜色
|
|
378
384
|
*/
|
|
379
385
|
tabsCardActiveBackgroundColor: string;
|
|
380
|
-
/**
|
|
381
|
-
* @type {string}
|
|
382
|
-
* @token Neutral-border-1
|
|
383
|
-
* @description 标签页卡片模式边框颜色
|
|
384
|
-
*/
|
|
385
|
-
tabsCardBorderColor: string;
|
|
386
386
|
/**
|
|
387
387
|
* @type {string}
|
|
388
388
|
* @token Brand-6
|
package/cjs/tabs/type.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,UAAU;IACzB;;;;OAIG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,qBAAqB,EAAE,MAAM,CAAC;IAC9B;;;;OAIG;IACH,2BAA2B,EAAE,MAAM,CAAC;IACpC;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,qBAAqB,EAAE,MAAM,CAAC;IAC9B;;;;OAIG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,
|
|
1
|
+
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"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"}
|
package/cjs/tag/tag.js
CHANGED
|
@@ -15,10 +15,10 @@ var tagTokens = {
|
|
|
15
15
|
tagInfoDisabledBackgroundColor: 'Brand-1',
|
|
16
16
|
tagInfoDisabledBorderColor: 'Brand-1',
|
|
17
17
|
tagInfoOutlineFontColor: 'Brand-6',
|
|
18
|
-
tagInfoOutlineBackgroundColor: '
|
|
19
|
-
tagInfoOutlineBorderColor: 'Brand-
|
|
18
|
+
tagInfoOutlineBackgroundColor: 'Transparent',
|
|
19
|
+
tagInfoOutlineBorderColor: 'Brand-3',
|
|
20
20
|
tagInfoOutlineDisabledFontColor: 'Brand-3',
|
|
21
|
-
tagInfoOutlineDisabledBackgroundColor: '
|
|
21
|
+
tagInfoOutlineDisabledBackgroundColor: 'Transparent',
|
|
22
22
|
tagInfoOutlineDisabledBorderColor: 'Brand-3',
|
|
23
23
|
tagInfoOutlineIconDisabledFontColor: 'Brand-3',
|
|
24
24
|
tagInfoOutlineIconHoverBackgroundColor: 'Brand-1',
|
|
@@ -42,10 +42,10 @@ var tagTokens = {
|
|
|
42
42
|
tagDefaultDisabledBackgroundColor: 'Neutral-fill-2',
|
|
43
43
|
tagDefaultDisabledBorderColor: 'Neutral-fill-2',
|
|
44
44
|
tagDefaultOutlineFontColor: 'Neutral-text-5',
|
|
45
|
-
tagDefaultOutlineBackgroundColor: '
|
|
45
|
+
tagDefaultOutlineBackgroundColor: 'Transparent',
|
|
46
46
|
tagDefaultOutlineBorderColor: 'Neutral-border-2',
|
|
47
47
|
tagDefaultOutlineDisabledFontColor: 'Neutral-text-2',
|
|
48
|
-
tagDefaultOutlineDisabledBackgroundColor: '
|
|
48
|
+
tagDefaultOutlineDisabledBackgroundColor: 'Transparent',
|
|
49
49
|
tagDefaultOutlineDisabledBorderColor: 'Neutral-border-2',
|
|
50
50
|
tagDefaultFillFontColor: 'Neutral-text-5',
|
|
51
51
|
tagDefaultFillBackgroundColor: 'Neutral-fill-3',
|
|
@@ -65,10 +65,10 @@ var tagTokens = {
|
|
|
65
65
|
tagSuccessDisabledBackgroundColor: 'Success-1',
|
|
66
66
|
tagSuccessDisabledBorderColor: 'Success-1',
|
|
67
67
|
tagSuccessOutlineFontColor: 'Success-6',
|
|
68
|
-
tagSuccessOutlineBackgroundColor: '
|
|
69
|
-
tagSuccessOutlineBorderColor: 'Success-
|
|
68
|
+
tagSuccessOutlineBackgroundColor: 'Transparent',
|
|
69
|
+
tagSuccessOutlineBorderColor: 'Success-3',
|
|
70
70
|
tagSuccessOutlineDisabledFontColor: 'Success-3',
|
|
71
|
-
tagSuccessOutlineDisabledBackgroundColor: '
|
|
71
|
+
tagSuccessOutlineDisabledBackgroundColor: 'Transparent',
|
|
72
72
|
tagSuccessOutlineDisabledBorderColor: 'Success-3',
|
|
73
73
|
tagSuccessOutlineIconDisabledFontColor: 'Success-3',
|
|
74
74
|
tagSuccessOutlineIconHoverBackgroundColor: 'Success-2',
|
|
@@ -89,10 +89,10 @@ var tagTokens = {
|
|
|
89
89
|
tagWarningDisabledBackgroundColor: 'Warning-1',
|
|
90
90
|
tagWarningDisabledBorderColor: 'Warning-1',
|
|
91
91
|
tagWarningOutlineFontColor: 'Warning-6',
|
|
92
|
-
tagWarningOutlineBackgroundColor: '
|
|
93
|
-
tagWarningOutlineBorderColor: 'Warning-
|
|
92
|
+
tagWarningOutlineBackgroundColor: 'Transparent',
|
|
93
|
+
tagWarningOutlineBorderColor: 'Warning-3',
|
|
94
94
|
tagWarningOutlineDisabledFontColor: 'Warning-3',
|
|
95
|
-
tagWarningOutlineDisabledBackgroundColor: '
|
|
95
|
+
tagWarningOutlineDisabledBackgroundColor: 'Transparent',
|
|
96
96
|
tagWarningOutlineDisabledBorderColor: 'Warning-3',
|
|
97
97
|
tagWarningFillFontColor: 'Neutral-text-1',
|
|
98
98
|
tagWarningFillBackgroundColor: 'Warning-6',
|
|
@@ -111,10 +111,10 @@ var tagTokens = {
|
|
|
111
111
|
tagDangerDisabledBackgroundColor: 'Danger-1',
|
|
112
112
|
tagDangerDisabledBorderColor: 'Danger-1',
|
|
113
113
|
tagDangerOutlineFontColor: 'Danger-6',
|
|
114
|
-
tagDangerOutlineBackgroundColor: '
|
|
115
|
-
tagDangerOutlineBorderColor: 'Danger-
|
|
114
|
+
tagDangerOutlineBackgroundColor: 'Transparent',
|
|
115
|
+
tagDangerOutlineBorderColor: 'Danger-3',
|
|
116
116
|
tagDangerOutlineDisabledFontColor: 'Danger-3',
|
|
117
|
-
tagDangerOutlineDisabledBackgroundColor: '
|
|
117
|
+
tagDangerOutlineDisabledBackgroundColor: 'Transparent',
|
|
118
118
|
tagDangerOutlineDisabledBorderColor: 'Danger-3',
|
|
119
119
|
tagDangerFillFontColor: 'Neutral-text-1',
|
|
120
120
|
tagDangerFillBackgroundColor: 'Danger-6',
|
|
@@ -133,10 +133,10 @@ var tagTokens = {
|
|
|
133
133
|
tagMagentaDisabledBackgroundColor: 'Magenta-1',
|
|
134
134
|
tagMagentaDisabledBorderColor: 'Magenta-1',
|
|
135
135
|
tagMagentaOutlineFontColor: 'Magenta-6',
|
|
136
|
-
tagMagentaOutlineBackgroundColor: '
|
|
137
|
-
tagMagentaOutlineBorderColor: 'Magenta-
|
|
136
|
+
tagMagentaOutlineBackgroundColor: 'Transparent',
|
|
137
|
+
tagMagentaOutlineBorderColor: 'Magenta-3',
|
|
138
138
|
tagMagentaOutlineDisabledFontColor: 'Magenta-3',
|
|
139
|
-
tagMagentaOutlineDisabledBackgroundColor: '
|
|
139
|
+
tagMagentaOutlineDisabledBackgroundColor: 'Transparent',
|
|
140
140
|
tagMagentaOutlineDisabledBorderColor: 'Magenta-3',
|
|
141
141
|
tagMagentaFillFontColor: 'Neutral-text-1',
|
|
142
142
|
tagMagentaFillBackgroundColor: 'Magenta-6',
|
|
@@ -155,10 +155,10 @@ var tagTokens = {
|
|
|
155
155
|
tagBrownDisabledBackgroundColor: 'Brown-1',
|
|
156
156
|
tagBrownDisabledBorderColor: 'Brown-1',
|
|
157
157
|
tagBrownOutlineFontColor: 'Brown-6',
|
|
158
|
-
tagBrownOutlineBackgroundColor: '
|
|
159
|
-
tagBrownOutlineBorderColor: 'Brown-
|
|
158
|
+
tagBrownOutlineBackgroundColor: 'Transparent',
|
|
159
|
+
tagBrownOutlineBorderColor: 'Brown-3',
|
|
160
160
|
tagBrownOutlineDisabledFontColor: 'Brown-3',
|
|
161
|
-
tagBrownOutlineDisabledBackgroundColor: '
|
|
161
|
+
tagBrownOutlineDisabledBackgroundColor: 'Transparent',
|
|
162
162
|
tagBrownOutlineDisabledBorderColor: 'Brown-3',
|
|
163
163
|
tagBrownFillFontColor: 'Neutral-text-1',
|
|
164
164
|
tagBrownFillBackgroundColor: 'Brown-6',
|
|
@@ -177,10 +177,10 @@ var tagTokens = {
|
|
|
177
177
|
tagPurpleDisabledBackgroundColor: 'Purple-1',
|
|
178
178
|
tagPurpleDisabledBorderColor: 'Purple-1',
|
|
179
179
|
tagPurpleOutlineFontColor: 'Purple-6',
|
|
180
|
-
tagPurpleOutlineBackgroundColor: '
|
|
181
|
-
tagPurpleOutlineBorderColor: 'Purple-
|
|
180
|
+
tagPurpleOutlineBackgroundColor: 'Transparent',
|
|
181
|
+
tagPurpleOutlineBorderColor: 'Purple-3',
|
|
182
182
|
tagPurpleOutlineDisabledFontColor: 'Purple-3',
|
|
183
|
-
tagPurpleOutlineDisabledBackgroundColor: '
|
|
183
|
+
tagPurpleOutlineDisabledBackgroundColor: 'Transparent',
|
|
184
184
|
tagPurpleOutlineDisabledBorderColor: 'Purple-3',
|
|
185
185
|
tagPurpleFillFontColor: 'Neutral-text-1',
|
|
186
186
|
tagPurpleFillBackgroundColor: 'Purple-6',
|
|
@@ -199,10 +199,10 @@ var tagTokens = {
|
|
|
199
199
|
tagIndigoDisabledBackgroundColor: 'Indigo-1',
|
|
200
200
|
tagIndigoDisabledBorderColor: 'Indigo-1',
|
|
201
201
|
tagIndigoOutlineFontColor: 'Indigo-6',
|
|
202
|
-
tagIndigoOutlineBackgroundColor: '
|
|
203
|
-
tagIndigoOutlineBorderColor: 'Indigo-
|
|
202
|
+
tagIndigoOutlineBackgroundColor: 'Transparent',
|
|
203
|
+
tagIndigoOutlineBorderColor: 'Indigo-3',
|
|
204
204
|
tagIndigoOutlineDisabledFontColor: 'Indigo-3',
|
|
205
|
-
tagIndigoOutlineDisabledBackgroundColor: '
|
|
205
|
+
tagIndigoOutlineDisabledBackgroundColor: 'Transparent',
|
|
206
206
|
tagIndigoOutlineDisabledBorderColor: 'Indigo-3',
|
|
207
207
|
tagIndigoFillFontColor: 'Neutral-text-1',
|
|
208
208
|
tagIndigoFillBackgroundColor: 'Indigo-6',
|
|
@@ -221,10 +221,10 @@ var tagTokens = {
|
|
|
221
221
|
tagCyanDisabledBackgroundColor: 'Cyan-1',
|
|
222
222
|
tagCyanDisabledBorderColor: 'Cyan-1',
|
|
223
223
|
tagCyanOutlineFontColor: 'Cyan-6',
|
|
224
|
-
tagCyanOutlineBackgroundColor: '
|
|
225
|
-
tagCyanOutlineBorderColor: 'Cyan-
|
|
224
|
+
tagCyanOutlineBackgroundColor: 'Transparent',
|
|
225
|
+
tagCyanOutlineBorderColor: 'Cyan-3',
|
|
226
226
|
tagCyanOutlineDisabledFontColor: 'Cyan-3',
|
|
227
|
-
tagCyanOutlineDisabledBackgroundColor: '
|
|
227
|
+
tagCyanOutlineDisabledBackgroundColor: 'Transparent',
|
|
228
228
|
tagCyanOutlineDisabledBorderColor: 'Cyan-3',
|
|
229
229
|
tagCyanFillFontColor: 'Neutral-text-1',
|
|
230
230
|
tagCyanFillBackgroundColor: 'Cyan-6',
|
|
@@ -243,10 +243,10 @@ var tagTokens = {
|
|
|
243
243
|
tagNeonDisabledBackgroundColor: 'Neon-1',
|
|
244
244
|
tagNeonDisabledBorderColor: 'Neon-1',
|
|
245
245
|
tagNeonOutlineFontColor: 'Neon-6',
|
|
246
|
-
tagNeonOutlineBackgroundColor: '
|
|
247
|
-
tagNeonOutlineBorderColor: 'Neon-
|
|
246
|
+
tagNeonOutlineBackgroundColor: 'Transparent',
|
|
247
|
+
tagNeonOutlineBorderColor: 'Neon-3',
|
|
248
248
|
tagNeonOutlineDisabledFontColor: 'Neon-3',
|
|
249
|
-
tagNeonOutlineDisabledBackgroundColor: '
|
|
249
|
+
tagNeonOutlineDisabledBackgroundColor: 'Transparent',
|
|
250
250
|
tagNeonOutlineDisabledBorderColor: 'Neon-3',
|
|
251
251
|
tagNeonFillFontColor: 'Neutral-text-1',
|
|
252
252
|
tagNeonFillBackgroundColor: 'Neon-6',
|
|
@@ -265,10 +265,10 @@ var tagTokens = {
|
|
|
265
265
|
tagLemonDisabledBackgroundColor: 'Lemon-1',
|
|
266
266
|
tagLemonDisabledBorderColor: 'Lemon-1',
|
|
267
267
|
tagLemonOutlineFontColor: 'Lemon-6',
|
|
268
|
-
tagLemonOutlineBackgroundColor: '
|
|
269
|
-
tagLemonOutlineBorderColor: 'Lemon-
|
|
268
|
+
tagLemonOutlineBackgroundColor: 'Transparent',
|
|
269
|
+
tagLemonOutlineBorderColor: 'Lemon-3',
|
|
270
270
|
tagLemonOutlineDisabledFontColor: 'Lemon-3',
|
|
271
|
-
tagLemonOutlineDisabledBackgroundColor: '
|
|
271
|
+
tagLemonOutlineDisabledBackgroundColor: 'Transparent',
|
|
272
272
|
tagLemonOutlineDisabledBorderColor: 'Lemon-3',
|
|
273
273
|
tagLemonFillFontColor: 'Neutral-text-1',
|
|
274
274
|
tagLemonFillBackgroundColor: 'Lemon-6',
|
|
@@ -287,10 +287,10 @@ var tagTokens = {
|
|
|
287
287
|
tagOrangeDisabledBackgroundColor: 'Orange-1',
|
|
288
288
|
tagOrangeDisabledBorderColor: 'Orange-1',
|
|
289
289
|
tagOrangeOutlineFontColor: 'Orange-6',
|
|
290
|
-
tagOrangeOutlineBackgroundColor: '
|
|
291
|
-
tagOrangeOutlineBorderColor: 'Orange-
|
|
290
|
+
tagOrangeOutlineBackgroundColor: 'Transparent',
|
|
291
|
+
tagOrangeOutlineBorderColor: 'Orange-3',
|
|
292
292
|
tagOrangeOutlineDisabledFontColor: 'Orange-3',
|
|
293
|
-
tagOrangeOutlineDisabledBackgroundColor: '
|
|
293
|
+
tagOrangeOutlineDisabledBackgroundColor: 'Transparent',
|
|
294
294
|
tagOrangeOutlineDisabledBorderColor: 'Orange-3',
|
|
295
295
|
tagOrangeFillFontColor: 'Neutral-text-1',
|
|
296
296
|
tagOrangeFillBackgroundColor: 'Orange-6',
|
|
@@ -309,10 +309,10 @@ var tagTokens = {
|
|
|
309
309
|
tagTangerineDisabledBackgroundColor: 'Tangerine-1',
|
|
310
310
|
tagTangerineDisabledBorderColor: 'Tangerine-1',
|
|
311
311
|
tagTangerineOutlineFontColor: 'Tangerine-6',
|
|
312
|
-
tagTangerineOutlineBackgroundColor: '
|
|
313
|
-
tagTangerineOutlineBorderColor: 'Tangerine-
|
|
312
|
+
tagTangerineOutlineBackgroundColor: 'Transparent',
|
|
313
|
+
tagTangerineOutlineBorderColor: 'Tangerine-3',
|
|
314
314
|
tagTangerineOutlineDisabledFontColor: 'Tangerine-3',
|
|
315
|
-
tagTangerineOutlineDisabledBackgroundColor: '
|
|
315
|
+
tagTangerineOutlineDisabledBackgroundColor: 'Transparent',
|
|
316
316
|
tagTangerineOutlineDisabledBorderColor: 'Tangerine-3',
|
|
317
317
|
tagTangerineFillFontColor: 'Neutral-text-1',
|
|
318
318
|
tagTangerineFillBackgroundColor: 'Tangerine-6',
|