@sheinx/theme 3.9.13-beta.10 → 3.9.13-beta.12
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/cascader/cascader.d.ts.map +1 -1
- package/cjs/cascader/cascader.js +4 -1
- package/cjs/cascader/token.js +10 -1
- package/cjs/cascader/type.d.ts +19 -1
- package/cjs/cascader/type.d.ts.map +1 -1
- package/cjs/descriptions/descriptions.js +13 -13
- package/cjs/descriptions/token.js +22 -12
- package/cjs/descriptions/type.d.ts +62 -62
- package/cjs/descriptions/type.d.ts.map +1 -1
- package/esm/cascader/cascader.d.ts.map +1 -1
- package/esm/cascader/cascader.js +4 -1
- package/esm/cascader/token.js +10 -1
- package/esm/cascader/type.d.ts +19 -1
- package/esm/cascader/type.d.ts.map +1 -1
- package/esm/descriptions/descriptions.js +13 -13
- package/esm/descriptions/token.js +22 -12
- package/esm/descriptions/type.d.ts +62 -62
- package/esm/descriptions/type.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cascader.d.ts","sourceRoot":"","sources":["cascader.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AAExC,QAAA,MAAM,cAAc,EAAE,
|
|
1
|
+
{"version":3,"file":"cascader.d.ts","sourceRoot":"","sources":["cascader.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AAExC,QAAA,MAAM,cAAc,EAAE,cA4FrB,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
package/cjs/cascader/cascader.js
CHANGED
|
@@ -81,7 +81,10 @@ var cascaderTokens = {
|
|
|
81
81
|
cascaderOptionIconSize: 'Font-14',
|
|
82
82
|
cascaderOptionHoverBackgroundColor: 'Neutral-fill-2',
|
|
83
83
|
cascaderOptionHoverFontColor: 'Neutral-text-5',
|
|
84
|
+
cascaderOptionHoverIconColor: 'Neutral-text-4',
|
|
85
|
+
cascaderOptionFocusFontColor: 'Neutral-text-5',
|
|
84
86
|
cascaderOptionFocusBackgroundColor: 'Neutral-fill-3',
|
|
87
|
+
cascaderOptionFocusIconColor: 'Neutral-text-4',
|
|
85
88
|
cascaderOptionDisabledColor: 'Neutral-text-2',
|
|
86
89
|
cascaderOptionDisabledBackgroundColor: 'Neutral-fill-1',
|
|
87
90
|
cascaderMorePaddingX: 'Spacing-8',
|
|
@@ -95,6 +98,6 @@ var cascaderTokens = {
|
|
|
95
98
|
cascaderColumnPadding: 'Spacing-8',
|
|
96
99
|
cascaderColumnOptionMargin: 'Spacing-8',
|
|
97
100
|
cascaderListBorderColor: 'Neutral-border-1',
|
|
98
|
-
cascaderListPaddingY: 'Spacing-
|
|
101
|
+
cascaderListPaddingY: 'Spacing-4'
|
|
99
102
|
};
|
|
100
103
|
var _default = exports.default = cascaderTokens;
|
package/cjs/cascader/token.js
CHANGED
|
@@ -273,11 +273,20 @@ var cascaderTokenExtraValue = {
|
|
|
273
273
|
},
|
|
274
274
|
font: {
|
|
275
275
|
color: 'Neutral-text-5'
|
|
276
|
+
},
|
|
277
|
+
icon: {
|
|
278
|
+
color: 'Neutral-text-4'
|
|
276
279
|
}
|
|
277
280
|
},
|
|
278
281
|
focus: {
|
|
282
|
+
font: {
|
|
283
|
+
color: 'Neutral-text-5'
|
|
284
|
+
},
|
|
279
285
|
background: {
|
|
280
286
|
color: 'Neutral-fill-3'
|
|
287
|
+
},
|
|
288
|
+
icon: {
|
|
289
|
+
color: 'Neutral-text-4'
|
|
281
290
|
}
|
|
282
291
|
},
|
|
283
292
|
disabled: {
|
|
@@ -322,7 +331,7 @@ var cascaderTokenExtraValue = {
|
|
|
322
331
|
color: 'Neutral-border-1'
|
|
323
332
|
},
|
|
324
333
|
padding: {
|
|
325
|
-
y: 'Spacing-
|
|
334
|
+
y: 'Spacing-4'
|
|
326
335
|
}
|
|
327
336
|
}
|
|
328
337
|
};
|
package/cjs/cascader/type.d.ts
CHANGED
|
@@ -437,12 +437,30 @@ export interface CascaderTokens {
|
|
|
437
437
|
* @description 级联选择器选项鼠标移入时的字体颜色
|
|
438
438
|
*/
|
|
439
439
|
cascaderOptionHoverFontColor: string;
|
|
440
|
+
/**
|
|
441
|
+
* @type {string}
|
|
442
|
+
* @token Neutral-text-4
|
|
443
|
+
* @description 级联选择器选项鼠标移入时的图标颜色
|
|
444
|
+
*/
|
|
445
|
+
cascaderOptionHoverIconColor: string;
|
|
446
|
+
/**
|
|
447
|
+
* @type {string}
|
|
448
|
+
* @token Neutral-text-5
|
|
449
|
+
* @description 级联选择器选项鼠标聚焦时的字体颜色
|
|
450
|
+
*/
|
|
451
|
+
cascaderOptionFocusFontColor: string;
|
|
440
452
|
/**
|
|
441
453
|
* @type {string}
|
|
442
454
|
* @token Neutral-fill-3
|
|
443
455
|
* @description 级联选择器选项鼠标聚焦时的背景颜色
|
|
444
456
|
*/
|
|
445
457
|
cascaderOptionFocusBackgroundColor: string;
|
|
458
|
+
/**
|
|
459
|
+
* @type {string}
|
|
460
|
+
* @token Neutral-text-4
|
|
461
|
+
* @description 级联选择器选项鼠标聚焦时的图标颜色
|
|
462
|
+
*/
|
|
463
|
+
cascaderOptionFocusIconColor: string;
|
|
446
464
|
/**
|
|
447
465
|
* @type {string}
|
|
448
466
|
* @token Neutral-text-2
|
|
@@ -523,7 +541,7 @@ export interface CascaderTokens {
|
|
|
523
541
|
cascaderListBorderColor: string;
|
|
524
542
|
/**
|
|
525
543
|
* @type {string}
|
|
526
|
-
* @token Spacing-
|
|
544
|
+
* @token Spacing-4
|
|
527
545
|
* @description 级联选择器下拉列表的内边距(垂直方向)
|
|
528
546
|
*/
|
|
529
547
|
cascaderListPaddingY: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"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"}
|
|
@@ -9,29 +9,29 @@ exports.default = void 0;
|
|
|
9
9
|
|
|
10
10
|
var descriptionsTokens = {
|
|
11
11
|
descriptionsTitlePaddingBottom: 'Spacing-12',
|
|
12
|
+
descriptionsTitleSmallFontSize: 'Font-14',
|
|
13
|
+
descriptionsTitleDefaultFontSize: 'Font-16',
|
|
14
|
+
descriptionsTitleLargeFontSize: 'Font-18',
|
|
15
|
+
descriptionsTitleColor: 'Neutral-text-5',
|
|
16
|
+
descriptionsTitleFontWeight: 'Weight-medium',
|
|
17
|
+
descriptionsTitleGap: 'Size-2',
|
|
12
18
|
descriptionsLabelPaddingBottom: 'Spacing-12',
|
|
13
19
|
descriptionsLabelPaddingRight: 'Spacing-8',
|
|
14
|
-
descriptionsValuePaddingBottom: 'Spacing-12',
|
|
15
|
-
descriptionsTitleSmallSize: 'Font-14',
|
|
16
|
-
descriptionsTitleDefaultSize: 'Font-16',
|
|
17
|
-
descriptionsTitleLargeSize: 'Font-18',
|
|
18
|
-
descriptionsBorderDefaultSize: 'Border-1',
|
|
19
|
-
descriptionsFontSmallSize: 'Font-12',
|
|
20
|
-
descriptionsFontDefaultSize: 'Font-14',
|
|
21
|
-
descriptionsFontLargeSize: 'Font-16',
|
|
22
20
|
descriptionsLabelColor: 'Neutral-text-4',
|
|
21
|
+
descriptionsValuePaddingBottom: 'Spacing-12',
|
|
23
22
|
descriptionsValueColor: 'Neutral-text-5',
|
|
24
|
-
|
|
25
|
-
descriptionsBackgroundColor: 'Neutral-fill-2',
|
|
23
|
+
descriptionsBorderDefaultSize: 'Border-1',
|
|
26
24
|
descriptionsBorderColor: 'Neutral-border-1',
|
|
27
|
-
descriptionsTitleFontWeight: 'Weight-medium',
|
|
28
|
-
descriptionsTitleGap: 'Size-2',
|
|
29
|
-
descriptionsCellGap: 'Spacing-0',
|
|
30
25
|
descriptionsBorderRadius: 'Radius-lesser',
|
|
31
26
|
descriptionsBorderRightSize: '1px',
|
|
32
27
|
descriptionsBorderBottomSize: '1px',
|
|
33
28
|
descriptionsBorderPaddingX: 'Spacing-12',
|
|
34
29
|
descriptionsBorderPaddingY: 'Spacing-8',
|
|
30
|
+
descriptionsDefaultFontSize: 'Font-14',
|
|
31
|
+
descriptionsSmallFontSize: 'Font-12',
|
|
32
|
+
descriptionsLargeFontSize: 'Font-16',
|
|
33
|
+
descriptionsBackgroundColor: 'Neutral-fill-2',
|
|
34
|
+
descriptionsCellGap: 'Spacing-0',
|
|
35
35
|
descriptionsInlineBorderPaddingX: 'Spacing-8',
|
|
36
36
|
descriptionsInlineBorderPaddingY: 'Spacing-12',
|
|
37
37
|
descriptionsVerticalPaddingBottom: 'Spacing-2'
|
|
@@ -26,7 +26,8 @@ var descriptionsTokenDescription = {
|
|
|
26
26
|
* 该映射表将根据规则自动生成,并与公共 token 进行合并。若有相同 token,将覆盖公共 token。默认不包含公共 token,除非在映射表中添加覆盖。
|
|
27
27
|
* 注意,该映射表的内容不与 descriptionsRules 强关联,非 descriptionsRules 规则内的 token 需手动增加或删减。
|
|
28
28
|
*/
|
|
29
|
-
var descriptionsTokenValue = {
|
|
29
|
+
var descriptionsTokenValue = {};
|
|
30
|
+
var descriptionsTokenExtraValue = {
|
|
30
31
|
title: {
|
|
31
32
|
padding: {
|
|
32
33
|
top: '',
|
|
@@ -35,13 +36,19 @@ var descriptionsTokenValue = {
|
|
|
35
36
|
right: ''
|
|
36
37
|
},
|
|
37
38
|
small: {
|
|
38
|
-
|
|
39
|
+
font: {
|
|
40
|
+
size: 'Font-14'
|
|
41
|
+
}
|
|
39
42
|
},
|
|
40
43
|
default: {
|
|
41
|
-
|
|
44
|
+
font: {
|
|
45
|
+
size: 'Font-16'
|
|
46
|
+
}
|
|
42
47
|
},
|
|
43
48
|
large: {
|
|
44
|
-
|
|
49
|
+
font: {
|
|
50
|
+
size: 'Font-18'
|
|
51
|
+
}
|
|
45
52
|
},
|
|
46
53
|
color: 'Neutral-text-5',
|
|
47
54
|
font: {
|
|
@@ -95,14 +102,18 @@ var descriptionsTokenValue = {
|
|
|
95
102
|
y: 'Spacing-8'
|
|
96
103
|
}
|
|
97
104
|
},
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
size: 'Font-12'
|
|
101
|
-
},
|
|
102
|
-
default: {
|
|
105
|
+
default: {
|
|
106
|
+
font: {
|
|
103
107
|
size: 'Font-14'
|
|
104
|
-
}
|
|
105
|
-
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
small: {
|
|
111
|
+
font: {
|
|
112
|
+
size: 'Font-12'
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
large: {
|
|
116
|
+
font: {
|
|
106
117
|
size: 'Font-16'
|
|
107
118
|
}
|
|
108
119
|
},
|
|
@@ -129,7 +140,6 @@ var descriptionsTokenValue = {
|
|
|
129
140
|
}
|
|
130
141
|
}
|
|
131
142
|
};
|
|
132
|
-
var descriptionsTokenExtraValue = {};
|
|
133
143
|
module.exports = {
|
|
134
144
|
descriptionsTokenValue: descriptionsTokenValue,
|
|
135
145
|
descriptionsTokenExtraValue: descriptionsTokenExtraValue,
|
|
@@ -5,66 +5,54 @@ export interface DescriptionsTokens {
|
|
|
5
5
|
* @description 描述列表标题模式内边距底部
|
|
6
6
|
*/
|
|
7
7
|
descriptionsTitlePaddingBottom: string;
|
|
8
|
-
/**
|
|
9
|
-
* @type {string}
|
|
10
|
-
* @token Spacing-12
|
|
11
|
-
* @description 描述列表标签的内边距底部
|
|
12
|
-
*/
|
|
13
|
-
descriptionsLabelPaddingBottom: string;
|
|
14
|
-
/**
|
|
15
|
-
* @type {string}
|
|
16
|
-
* @token Spacing-8
|
|
17
|
-
* @description 描述列表标签的内边距右部
|
|
18
|
-
*/
|
|
19
|
-
descriptionsLabelPaddingRight: string;
|
|
20
|
-
/**
|
|
21
|
-
* @type {string}
|
|
22
|
-
* @token Spacing-12
|
|
23
|
-
* @description 描述列表值的内边距底部
|
|
24
|
-
*/
|
|
25
|
-
descriptionsValuePaddingBottom: string;
|
|
26
8
|
/**
|
|
27
9
|
* @type {string}
|
|
28
10
|
* @token Font-14
|
|
29
|
-
* @description
|
|
11
|
+
* @description 描述列表标题模式小尺寸字体字号
|
|
30
12
|
*/
|
|
31
|
-
|
|
13
|
+
descriptionsTitleSmallFontSize: string;
|
|
32
14
|
/**
|
|
33
15
|
* @type {string}
|
|
34
16
|
* @token Font-16
|
|
35
|
-
* @description
|
|
17
|
+
* @description 描述列表标题模式默认尺寸字体字号
|
|
36
18
|
*/
|
|
37
|
-
|
|
19
|
+
descriptionsTitleDefaultFontSize: string;
|
|
38
20
|
/**
|
|
39
21
|
* @type {string}
|
|
40
22
|
* @token Font-18
|
|
41
|
-
* @description
|
|
23
|
+
* @description 描述列表标题模式大尺寸字体字号
|
|
42
24
|
*/
|
|
43
|
-
|
|
25
|
+
descriptionsTitleLargeFontSize: string;
|
|
44
26
|
/**
|
|
45
27
|
* @type {string}
|
|
46
|
-
* @token
|
|
47
|
-
* @description
|
|
28
|
+
* @token Neutral-text-5
|
|
29
|
+
* @description 描述列表标题模式颜色
|
|
48
30
|
*/
|
|
49
|
-
|
|
31
|
+
descriptionsTitleColor: string;
|
|
50
32
|
/**
|
|
51
33
|
* @type {string}
|
|
52
|
-
* @token
|
|
53
|
-
* @description
|
|
34
|
+
* @token Weight-medium
|
|
35
|
+
* @description 描述列表标题模式字体字重
|
|
54
36
|
*/
|
|
55
|
-
|
|
37
|
+
descriptionsTitleFontWeight: string;
|
|
56
38
|
/**
|
|
57
39
|
* @type {string}
|
|
58
|
-
* @token
|
|
59
|
-
* @description
|
|
40
|
+
* @token Size-2
|
|
41
|
+
* @description 描述列表标题模式间距
|
|
60
42
|
*/
|
|
61
|
-
|
|
43
|
+
descriptionsTitleGap: string;
|
|
62
44
|
/**
|
|
63
45
|
* @type {string}
|
|
64
|
-
* @token
|
|
65
|
-
* @description
|
|
46
|
+
* @token Spacing-12
|
|
47
|
+
* @description 描述列表标签的内边距底部
|
|
66
48
|
*/
|
|
67
|
-
|
|
49
|
+
descriptionsLabelPaddingBottom: string;
|
|
50
|
+
/**
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @token Spacing-8
|
|
53
|
+
* @description 描述列表标签的内边距右部
|
|
54
|
+
*/
|
|
55
|
+
descriptionsLabelPaddingRight: string;
|
|
68
56
|
/**
|
|
69
57
|
* @type {string}
|
|
70
58
|
* @token Neutral-text-4
|
|
@@ -73,46 +61,28 @@ export interface DescriptionsTokens {
|
|
|
73
61
|
descriptionsLabelColor: string;
|
|
74
62
|
/**
|
|
75
63
|
* @type {string}
|
|
76
|
-
* @token
|
|
77
|
-
* @description
|
|
64
|
+
* @token Spacing-12
|
|
65
|
+
* @description 描述列表值的内边距底部
|
|
78
66
|
*/
|
|
79
|
-
|
|
67
|
+
descriptionsValuePaddingBottom: string;
|
|
80
68
|
/**
|
|
81
69
|
* @type {string}
|
|
82
70
|
* @token Neutral-text-5
|
|
83
|
-
* @description
|
|
71
|
+
* @description 描述列表值的颜色
|
|
84
72
|
*/
|
|
85
|
-
|
|
73
|
+
descriptionsValueColor: string;
|
|
86
74
|
/**
|
|
87
75
|
* @type {string}
|
|
88
|
-
* @token
|
|
89
|
-
* @description
|
|
76
|
+
* @token Border-1
|
|
77
|
+
* @description 描述列表边框默认尺寸字号
|
|
90
78
|
*/
|
|
91
|
-
|
|
79
|
+
descriptionsBorderDefaultSize: string;
|
|
92
80
|
/**
|
|
93
81
|
* @type {string}
|
|
94
82
|
* @token Neutral-border-1
|
|
95
83
|
* @description 描述列表边框颜色
|
|
96
84
|
*/
|
|
97
85
|
descriptionsBorderColor: string;
|
|
98
|
-
/**
|
|
99
|
-
* @type {string}
|
|
100
|
-
* @token Weight-medium
|
|
101
|
-
* @description 描述列表标题模式字体字重
|
|
102
|
-
*/
|
|
103
|
-
descriptionsTitleFontWeight: string;
|
|
104
|
-
/**
|
|
105
|
-
* @type {string}
|
|
106
|
-
* @token Size-2
|
|
107
|
-
* @description 描述列表标题模式间距
|
|
108
|
-
*/
|
|
109
|
-
descriptionsTitleGap: string;
|
|
110
|
-
/**
|
|
111
|
-
* @type {string}
|
|
112
|
-
* @token Spacing-0
|
|
113
|
-
* @description 描述列表undefined间距
|
|
114
|
-
*/
|
|
115
|
-
descriptionsCellGap: string;
|
|
116
86
|
/**
|
|
117
87
|
* @type {string}
|
|
118
88
|
* @token Radius-lesser
|
|
@@ -143,6 +113,36 @@ export interface DescriptionsTokens {
|
|
|
143
113
|
* @description 描述列表边框内边距(垂直方向)
|
|
144
114
|
*/
|
|
145
115
|
descriptionsBorderPaddingY: string;
|
|
116
|
+
/**
|
|
117
|
+
* @type {string}
|
|
118
|
+
* @token Font-14
|
|
119
|
+
* @description 描述列表默认尺寸字体字号
|
|
120
|
+
*/
|
|
121
|
+
descriptionsDefaultFontSize: string;
|
|
122
|
+
/**
|
|
123
|
+
* @type {string}
|
|
124
|
+
* @token Font-12
|
|
125
|
+
* @description 描述列表小尺寸字体字号
|
|
126
|
+
*/
|
|
127
|
+
descriptionsSmallFontSize: string;
|
|
128
|
+
/**
|
|
129
|
+
* @type {string}
|
|
130
|
+
* @token Font-16
|
|
131
|
+
* @description 描述列表大尺寸字体字号
|
|
132
|
+
*/
|
|
133
|
+
descriptionsLargeFontSize: string;
|
|
134
|
+
/**
|
|
135
|
+
* @type {string}
|
|
136
|
+
* @token Neutral-fill-2
|
|
137
|
+
* @description 描述列表背景颜色
|
|
138
|
+
*/
|
|
139
|
+
descriptionsBackgroundColor: string;
|
|
140
|
+
/**
|
|
141
|
+
* @type {string}
|
|
142
|
+
* @token Spacing-0
|
|
143
|
+
* @description 描述列表undefined间距
|
|
144
|
+
*/
|
|
145
|
+
descriptionsCellGap: string;
|
|
146
146
|
/**
|
|
147
147
|
* @type {string}
|
|
148
148
|
* @token Spacing-8
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,kBAAkB;IACjC;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,
|
|
1
|
+
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,kBAAkB;IACjC;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,gCAAgC,EAAE,MAAM,CAAC;IACzC;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,sBAAsB,EAAE,MAAM,CAAC;IAC/B;;;;OAIG;IACH,2BAA2B,EAAE,MAAM,CAAC;IACpC;;;;OAIG;IACH,oBAAoB,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,6BAA6B,EAAE,MAAM,CAAC;IACtC;;;;OAIG;IACH,sBAAsB,EAAE,MAAM,CAAC;IAC/B;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,sBAAsB,EAAE,MAAM,CAAC;IAC/B;;;;OAIG;IACH,6BAA6B,EAAE,MAAM,CAAC;IACtC;;;;OAIG;IACH,uBAAuB,EAAE,MAAM,CAAC;IAChC;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,2BAA2B,EAAE,MAAM,CAAC;IACpC;;;;OAIG;IACH,4BAA4B,EAAE,MAAM,CAAC;IACrC;;;;OAIG;IACH,0BAA0B,EAAE,MAAM,CAAC;IACnC;;;;OAIG;IACH,0BAA0B,EAAE,MAAM,CAAC;IACnC;;;;OAIG;IACH,2BAA2B,EAAE,MAAM,CAAC;IACpC;;;;OAIG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,2BAA2B,EAAE,MAAM,CAAC;IACpC;;;;OAIG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,gCAAgC,EAAE,MAAM,CAAC;IACzC;;;;OAIG;IACH,gCAAgC,EAAE,MAAM,CAAC;IACzC;;;;OAIG;IACH,iCAAiC,EAAE,MAAM,CAAC;CAC3C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cascader.d.ts","sourceRoot":"","sources":["cascader.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AAExC,QAAA,MAAM,cAAc,EAAE,
|
|
1
|
+
{"version":3,"file":"cascader.d.ts","sourceRoot":"","sources":["cascader.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AAExC,QAAA,MAAM,cAAc,EAAE,cA4FrB,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
package/esm/cascader/cascader.js
CHANGED
|
@@ -75,7 +75,10 @@ var cascaderTokens = {
|
|
|
75
75
|
cascaderOptionIconSize: 'Font-14',
|
|
76
76
|
cascaderOptionHoverBackgroundColor: 'Neutral-fill-2',
|
|
77
77
|
cascaderOptionHoverFontColor: 'Neutral-text-5',
|
|
78
|
+
cascaderOptionHoverIconColor: 'Neutral-text-4',
|
|
79
|
+
cascaderOptionFocusFontColor: 'Neutral-text-5',
|
|
78
80
|
cascaderOptionFocusBackgroundColor: 'Neutral-fill-3',
|
|
81
|
+
cascaderOptionFocusIconColor: 'Neutral-text-4',
|
|
79
82
|
cascaderOptionDisabledColor: 'Neutral-text-2',
|
|
80
83
|
cascaderOptionDisabledBackgroundColor: 'Neutral-fill-1',
|
|
81
84
|
cascaderMorePaddingX: 'Spacing-8',
|
|
@@ -89,6 +92,6 @@ var cascaderTokens = {
|
|
|
89
92
|
cascaderColumnPadding: 'Spacing-8',
|
|
90
93
|
cascaderColumnOptionMargin: 'Spacing-8',
|
|
91
94
|
cascaderListBorderColor: 'Neutral-border-1',
|
|
92
|
-
cascaderListPaddingY: 'Spacing-
|
|
95
|
+
cascaderListPaddingY: 'Spacing-4'
|
|
93
96
|
};
|
|
94
97
|
export default cascaderTokens;
|
package/esm/cascader/token.js
CHANGED
|
@@ -271,11 +271,20 @@ var cascaderTokenExtraValue = {
|
|
|
271
271
|
},
|
|
272
272
|
font: {
|
|
273
273
|
color: 'Neutral-text-5'
|
|
274
|
+
},
|
|
275
|
+
icon: {
|
|
276
|
+
color: 'Neutral-text-4'
|
|
274
277
|
}
|
|
275
278
|
},
|
|
276
279
|
focus: {
|
|
280
|
+
font: {
|
|
281
|
+
color: 'Neutral-text-5'
|
|
282
|
+
},
|
|
277
283
|
background: {
|
|
278
284
|
color: 'Neutral-fill-3'
|
|
285
|
+
},
|
|
286
|
+
icon: {
|
|
287
|
+
color: 'Neutral-text-4'
|
|
279
288
|
}
|
|
280
289
|
},
|
|
281
290
|
disabled: {
|
|
@@ -320,7 +329,7 @@ var cascaderTokenExtraValue = {
|
|
|
320
329
|
color: 'Neutral-border-1'
|
|
321
330
|
},
|
|
322
331
|
padding: {
|
|
323
|
-
y: 'Spacing-
|
|
332
|
+
y: 'Spacing-4'
|
|
324
333
|
}
|
|
325
334
|
}
|
|
326
335
|
};
|
package/esm/cascader/type.d.ts
CHANGED
|
@@ -437,12 +437,30 @@ export interface CascaderTokens {
|
|
|
437
437
|
* @description 级联选择器选项鼠标移入时的字体颜色
|
|
438
438
|
*/
|
|
439
439
|
cascaderOptionHoverFontColor: string;
|
|
440
|
+
/**
|
|
441
|
+
* @type {string}
|
|
442
|
+
* @token Neutral-text-4
|
|
443
|
+
* @description 级联选择器选项鼠标移入时的图标颜色
|
|
444
|
+
*/
|
|
445
|
+
cascaderOptionHoverIconColor: string;
|
|
446
|
+
/**
|
|
447
|
+
* @type {string}
|
|
448
|
+
* @token Neutral-text-5
|
|
449
|
+
* @description 级联选择器选项鼠标聚焦时的字体颜色
|
|
450
|
+
*/
|
|
451
|
+
cascaderOptionFocusFontColor: string;
|
|
440
452
|
/**
|
|
441
453
|
* @type {string}
|
|
442
454
|
* @token Neutral-fill-3
|
|
443
455
|
* @description 级联选择器选项鼠标聚焦时的背景颜色
|
|
444
456
|
*/
|
|
445
457
|
cascaderOptionFocusBackgroundColor: string;
|
|
458
|
+
/**
|
|
459
|
+
* @type {string}
|
|
460
|
+
* @token Neutral-text-4
|
|
461
|
+
* @description 级联选择器选项鼠标聚焦时的图标颜色
|
|
462
|
+
*/
|
|
463
|
+
cascaderOptionFocusIconColor: string;
|
|
446
464
|
/**
|
|
447
465
|
* @type {string}
|
|
448
466
|
* @token Neutral-text-2
|
|
@@ -523,7 +541,7 @@ export interface CascaderTokens {
|
|
|
523
541
|
cascaderListBorderColor: string;
|
|
524
542
|
/**
|
|
525
543
|
* @type {string}
|
|
526
|
-
* @token Spacing-
|
|
544
|
+
* @token Spacing-4
|
|
527
545
|
* @description 级联选择器下拉列表的内边距(垂直方向)
|
|
528
546
|
*/
|
|
529
547
|
cascaderListPaddingY: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,29 +3,29 @@
|
|
|
3
3
|
|
|
4
4
|
var descriptionsTokens = {
|
|
5
5
|
descriptionsTitlePaddingBottom: 'Spacing-12',
|
|
6
|
+
descriptionsTitleSmallFontSize: 'Font-14',
|
|
7
|
+
descriptionsTitleDefaultFontSize: 'Font-16',
|
|
8
|
+
descriptionsTitleLargeFontSize: 'Font-18',
|
|
9
|
+
descriptionsTitleColor: 'Neutral-text-5',
|
|
10
|
+
descriptionsTitleFontWeight: 'Weight-medium',
|
|
11
|
+
descriptionsTitleGap: 'Size-2',
|
|
6
12
|
descriptionsLabelPaddingBottom: 'Spacing-12',
|
|
7
13
|
descriptionsLabelPaddingRight: 'Spacing-8',
|
|
8
|
-
descriptionsValuePaddingBottom: 'Spacing-12',
|
|
9
|
-
descriptionsTitleSmallSize: 'Font-14',
|
|
10
|
-
descriptionsTitleDefaultSize: 'Font-16',
|
|
11
|
-
descriptionsTitleLargeSize: 'Font-18',
|
|
12
|
-
descriptionsBorderDefaultSize: 'Border-1',
|
|
13
|
-
descriptionsFontSmallSize: 'Font-12',
|
|
14
|
-
descriptionsFontDefaultSize: 'Font-14',
|
|
15
|
-
descriptionsFontLargeSize: 'Font-16',
|
|
16
14
|
descriptionsLabelColor: 'Neutral-text-4',
|
|
15
|
+
descriptionsValuePaddingBottom: 'Spacing-12',
|
|
17
16
|
descriptionsValueColor: 'Neutral-text-5',
|
|
18
|
-
|
|
19
|
-
descriptionsBackgroundColor: 'Neutral-fill-2',
|
|
17
|
+
descriptionsBorderDefaultSize: 'Border-1',
|
|
20
18
|
descriptionsBorderColor: 'Neutral-border-1',
|
|
21
|
-
descriptionsTitleFontWeight: 'Weight-medium',
|
|
22
|
-
descriptionsTitleGap: 'Size-2',
|
|
23
|
-
descriptionsCellGap: 'Spacing-0',
|
|
24
19
|
descriptionsBorderRadius: 'Radius-lesser',
|
|
25
20
|
descriptionsBorderRightSize: '1px',
|
|
26
21
|
descriptionsBorderBottomSize: '1px',
|
|
27
22
|
descriptionsBorderPaddingX: 'Spacing-12',
|
|
28
23
|
descriptionsBorderPaddingY: 'Spacing-8',
|
|
24
|
+
descriptionsDefaultFontSize: 'Font-14',
|
|
25
|
+
descriptionsSmallFontSize: 'Font-12',
|
|
26
|
+
descriptionsLargeFontSize: 'Font-16',
|
|
27
|
+
descriptionsBackgroundColor: 'Neutral-fill-2',
|
|
28
|
+
descriptionsCellGap: 'Spacing-0',
|
|
29
29
|
descriptionsInlineBorderPaddingX: 'Spacing-8',
|
|
30
30
|
descriptionsInlineBorderPaddingY: 'Spacing-12',
|
|
31
31
|
descriptionsVerticalPaddingBottom: 'Spacing-2'
|
|
@@ -24,7 +24,8 @@ var descriptionsTokenDescription = {
|
|
|
24
24
|
* 该映射表将根据规则自动生成,并与公共 token 进行合并。若有相同 token,将覆盖公共 token。默认不包含公共 token,除非在映射表中添加覆盖。
|
|
25
25
|
* 注意,该映射表的内容不与 descriptionsRules 强关联,非 descriptionsRules 规则内的 token 需手动增加或删减。
|
|
26
26
|
*/
|
|
27
|
-
var descriptionsTokenValue = {
|
|
27
|
+
var descriptionsTokenValue = {};
|
|
28
|
+
var descriptionsTokenExtraValue = {
|
|
28
29
|
title: {
|
|
29
30
|
padding: {
|
|
30
31
|
top: '',
|
|
@@ -33,13 +34,19 @@ var descriptionsTokenValue = {
|
|
|
33
34
|
right: ''
|
|
34
35
|
},
|
|
35
36
|
small: {
|
|
36
|
-
|
|
37
|
+
font: {
|
|
38
|
+
size: 'Font-14'
|
|
39
|
+
}
|
|
37
40
|
},
|
|
38
41
|
default: {
|
|
39
|
-
|
|
42
|
+
font: {
|
|
43
|
+
size: 'Font-16'
|
|
44
|
+
}
|
|
40
45
|
},
|
|
41
46
|
large: {
|
|
42
|
-
|
|
47
|
+
font: {
|
|
48
|
+
size: 'Font-18'
|
|
49
|
+
}
|
|
43
50
|
},
|
|
44
51
|
color: 'Neutral-text-5',
|
|
45
52
|
font: {
|
|
@@ -93,14 +100,18 @@ var descriptionsTokenValue = {
|
|
|
93
100
|
y: 'Spacing-8'
|
|
94
101
|
}
|
|
95
102
|
},
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
size: 'Font-12'
|
|
99
|
-
},
|
|
100
|
-
default: {
|
|
103
|
+
default: {
|
|
104
|
+
font: {
|
|
101
105
|
size: 'Font-14'
|
|
102
|
-
}
|
|
103
|
-
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
small: {
|
|
109
|
+
font: {
|
|
110
|
+
size: 'Font-12'
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
large: {
|
|
114
|
+
font: {
|
|
104
115
|
size: 'Font-16'
|
|
105
116
|
}
|
|
106
117
|
},
|
|
@@ -127,7 +138,6 @@ var descriptionsTokenValue = {
|
|
|
127
138
|
}
|
|
128
139
|
}
|
|
129
140
|
};
|
|
130
|
-
var descriptionsTokenExtraValue = {};
|
|
131
141
|
module.exports = {
|
|
132
142
|
descriptionsTokenValue: descriptionsTokenValue,
|
|
133
143
|
descriptionsTokenExtraValue: descriptionsTokenExtraValue,
|
|
@@ -5,66 +5,54 @@ export interface DescriptionsTokens {
|
|
|
5
5
|
* @description 描述列表标题模式内边距底部
|
|
6
6
|
*/
|
|
7
7
|
descriptionsTitlePaddingBottom: string;
|
|
8
|
-
/**
|
|
9
|
-
* @type {string}
|
|
10
|
-
* @token Spacing-12
|
|
11
|
-
* @description 描述列表标签的内边距底部
|
|
12
|
-
*/
|
|
13
|
-
descriptionsLabelPaddingBottom: string;
|
|
14
|
-
/**
|
|
15
|
-
* @type {string}
|
|
16
|
-
* @token Spacing-8
|
|
17
|
-
* @description 描述列表标签的内边距右部
|
|
18
|
-
*/
|
|
19
|
-
descriptionsLabelPaddingRight: string;
|
|
20
|
-
/**
|
|
21
|
-
* @type {string}
|
|
22
|
-
* @token Spacing-12
|
|
23
|
-
* @description 描述列表值的内边距底部
|
|
24
|
-
*/
|
|
25
|
-
descriptionsValuePaddingBottom: string;
|
|
26
8
|
/**
|
|
27
9
|
* @type {string}
|
|
28
10
|
* @token Font-14
|
|
29
|
-
* @description
|
|
11
|
+
* @description 描述列表标题模式小尺寸字体字号
|
|
30
12
|
*/
|
|
31
|
-
|
|
13
|
+
descriptionsTitleSmallFontSize: string;
|
|
32
14
|
/**
|
|
33
15
|
* @type {string}
|
|
34
16
|
* @token Font-16
|
|
35
|
-
* @description
|
|
17
|
+
* @description 描述列表标题模式默认尺寸字体字号
|
|
36
18
|
*/
|
|
37
|
-
|
|
19
|
+
descriptionsTitleDefaultFontSize: string;
|
|
38
20
|
/**
|
|
39
21
|
* @type {string}
|
|
40
22
|
* @token Font-18
|
|
41
|
-
* @description
|
|
23
|
+
* @description 描述列表标题模式大尺寸字体字号
|
|
42
24
|
*/
|
|
43
|
-
|
|
25
|
+
descriptionsTitleLargeFontSize: string;
|
|
44
26
|
/**
|
|
45
27
|
* @type {string}
|
|
46
|
-
* @token
|
|
47
|
-
* @description
|
|
28
|
+
* @token Neutral-text-5
|
|
29
|
+
* @description 描述列表标题模式颜色
|
|
48
30
|
*/
|
|
49
|
-
|
|
31
|
+
descriptionsTitleColor: string;
|
|
50
32
|
/**
|
|
51
33
|
* @type {string}
|
|
52
|
-
* @token
|
|
53
|
-
* @description
|
|
34
|
+
* @token Weight-medium
|
|
35
|
+
* @description 描述列表标题模式字体字重
|
|
54
36
|
*/
|
|
55
|
-
|
|
37
|
+
descriptionsTitleFontWeight: string;
|
|
56
38
|
/**
|
|
57
39
|
* @type {string}
|
|
58
|
-
* @token
|
|
59
|
-
* @description
|
|
40
|
+
* @token Size-2
|
|
41
|
+
* @description 描述列表标题模式间距
|
|
60
42
|
*/
|
|
61
|
-
|
|
43
|
+
descriptionsTitleGap: string;
|
|
62
44
|
/**
|
|
63
45
|
* @type {string}
|
|
64
|
-
* @token
|
|
65
|
-
* @description
|
|
46
|
+
* @token Spacing-12
|
|
47
|
+
* @description 描述列表标签的内边距底部
|
|
66
48
|
*/
|
|
67
|
-
|
|
49
|
+
descriptionsLabelPaddingBottom: string;
|
|
50
|
+
/**
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @token Spacing-8
|
|
53
|
+
* @description 描述列表标签的内边距右部
|
|
54
|
+
*/
|
|
55
|
+
descriptionsLabelPaddingRight: string;
|
|
68
56
|
/**
|
|
69
57
|
* @type {string}
|
|
70
58
|
* @token Neutral-text-4
|
|
@@ -73,46 +61,28 @@ export interface DescriptionsTokens {
|
|
|
73
61
|
descriptionsLabelColor: string;
|
|
74
62
|
/**
|
|
75
63
|
* @type {string}
|
|
76
|
-
* @token
|
|
77
|
-
* @description
|
|
64
|
+
* @token Spacing-12
|
|
65
|
+
* @description 描述列表值的内边距底部
|
|
78
66
|
*/
|
|
79
|
-
|
|
67
|
+
descriptionsValuePaddingBottom: string;
|
|
80
68
|
/**
|
|
81
69
|
* @type {string}
|
|
82
70
|
* @token Neutral-text-5
|
|
83
|
-
* @description
|
|
71
|
+
* @description 描述列表值的颜色
|
|
84
72
|
*/
|
|
85
|
-
|
|
73
|
+
descriptionsValueColor: string;
|
|
86
74
|
/**
|
|
87
75
|
* @type {string}
|
|
88
|
-
* @token
|
|
89
|
-
* @description
|
|
76
|
+
* @token Border-1
|
|
77
|
+
* @description 描述列表边框默认尺寸字号
|
|
90
78
|
*/
|
|
91
|
-
|
|
79
|
+
descriptionsBorderDefaultSize: string;
|
|
92
80
|
/**
|
|
93
81
|
* @type {string}
|
|
94
82
|
* @token Neutral-border-1
|
|
95
83
|
* @description 描述列表边框颜色
|
|
96
84
|
*/
|
|
97
85
|
descriptionsBorderColor: string;
|
|
98
|
-
/**
|
|
99
|
-
* @type {string}
|
|
100
|
-
* @token Weight-medium
|
|
101
|
-
* @description 描述列表标题模式字体字重
|
|
102
|
-
*/
|
|
103
|
-
descriptionsTitleFontWeight: string;
|
|
104
|
-
/**
|
|
105
|
-
* @type {string}
|
|
106
|
-
* @token Size-2
|
|
107
|
-
* @description 描述列表标题模式间距
|
|
108
|
-
*/
|
|
109
|
-
descriptionsTitleGap: string;
|
|
110
|
-
/**
|
|
111
|
-
* @type {string}
|
|
112
|
-
* @token Spacing-0
|
|
113
|
-
* @description 描述列表undefined间距
|
|
114
|
-
*/
|
|
115
|
-
descriptionsCellGap: string;
|
|
116
86
|
/**
|
|
117
87
|
* @type {string}
|
|
118
88
|
* @token Radius-lesser
|
|
@@ -143,6 +113,36 @@ export interface DescriptionsTokens {
|
|
|
143
113
|
* @description 描述列表边框内边距(垂直方向)
|
|
144
114
|
*/
|
|
145
115
|
descriptionsBorderPaddingY: string;
|
|
116
|
+
/**
|
|
117
|
+
* @type {string}
|
|
118
|
+
* @token Font-14
|
|
119
|
+
* @description 描述列表默认尺寸字体字号
|
|
120
|
+
*/
|
|
121
|
+
descriptionsDefaultFontSize: string;
|
|
122
|
+
/**
|
|
123
|
+
* @type {string}
|
|
124
|
+
* @token Font-12
|
|
125
|
+
* @description 描述列表小尺寸字体字号
|
|
126
|
+
*/
|
|
127
|
+
descriptionsSmallFontSize: string;
|
|
128
|
+
/**
|
|
129
|
+
* @type {string}
|
|
130
|
+
* @token Font-16
|
|
131
|
+
* @description 描述列表大尺寸字体字号
|
|
132
|
+
*/
|
|
133
|
+
descriptionsLargeFontSize: string;
|
|
134
|
+
/**
|
|
135
|
+
* @type {string}
|
|
136
|
+
* @token Neutral-fill-2
|
|
137
|
+
* @description 描述列表背景颜色
|
|
138
|
+
*/
|
|
139
|
+
descriptionsBackgroundColor: string;
|
|
140
|
+
/**
|
|
141
|
+
* @type {string}
|
|
142
|
+
* @token Spacing-0
|
|
143
|
+
* @description 描述列表undefined间距
|
|
144
|
+
*/
|
|
145
|
+
descriptionsCellGap: string;
|
|
146
146
|
/**
|
|
147
147
|
* @type {string}
|
|
148
148
|
* @token Spacing-8
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,kBAAkB;IACjC;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,
|
|
1
|
+
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,kBAAkB;IACjC;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,gCAAgC,EAAE,MAAM,CAAC;IACzC;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,sBAAsB,EAAE,MAAM,CAAC;IAC/B;;;;OAIG;IACH,2BAA2B,EAAE,MAAM,CAAC;IACpC;;;;OAIG;IACH,oBAAoB,EAAE,MAAM,CAAC;IAC7B;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,6BAA6B,EAAE,MAAM,CAAC;IACtC;;;;OAIG;IACH,sBAAsB,EAAE,MAAM,CAAC;IAC/B;;;;OAIG;IACH,8BAA8B,EAAE,MAAM,CAAC;IACvC;;;;OAIG;IACH,sBAAsB,EAAE,MAAM,CAAC;IAC/B;;;;OAIG;IACH,6BAA6B,EAAE,MAAM,CAAC;IACtC;;;;OAIG;IACH,uBAAuB,EAAE,MAAM,CAAC;IAChC;;;;OAIG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC;;;;OAIG;IACH,2BAA2B,EAAE,MAAM,CAAC;IACpC;;;;OAIG;IACH,4BAA4B,EAAE,MAAM,CAAC;IACrC;;;;OAIG;IACH,0BAA0B,EAAE,MAAM,CAAC;IACnC;;;;OAIG;IACH,0BAA0B,EAAE,MAAM,CAAC;IACnC;;;;OAIG;IACH,2BAA2B,EAAE,MAAM,CAAC;IACpC;;;;OAIG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,yBAAyB,EAAE,MAAM,CAAC;IAClC;;;;OAIG;IACH,2BAA2B,EAAE,MAAM,CAAC;IACpC;;;;OAIG;IACH,mBAAmB,EAAE,MAAM,CAAC;IAC5B;;;;OAIG;IACH,gCAAgC,EAAE,MAAM,CAAC;IACzC;;;;OAIG;IACH,gCAAgC,EAAE,MAAM,CAAC;IACzC;;;;OAIG;IACH,iCAAiC,EAAE,MAAM,CAAC;CAC3C"}
|