@sheinx/theme 3.9.9-beta.5 → 3.9.9-beta.7
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/button/button.js +2 -2
- package/cjs/button/token.js +2 -2
- package/cjs/button/type.d.ts +2 -2
- package/cjs/switch/switch.js +1 -1
- package/cjs/switch/token.js +1 -1
- package/cjs/switch/type.d.ts +1 -1
- package/cjs/upload/token.js +2 -2
- package/cjs/upload/type.d.ts +2 -2
- package/cjs/upload/upload.js +2 -2
- package/esm/button/button.js +2 -2
- package/esm/button/token.js +2 -2
- package/esm/button/type.d.ts +2 -2
- package/esm/switch/switch.js +1 -1
- package/esm/switch/token.js +1 -1
- package/esm/switch/type.d.ts +1 -1
- package/esm/upload/token.js +2 -2
- package/esm/upload/type.d.ts +2 -2
- package/esm/upload/upload.js +2 -2
- package/package.json +1 -1
package/cjs/button/button.js
CHANGED
|
@@ -65,8 +65,8 @@ var buttonTokens = {
|
|
|
65
65
|
buttonSecondaryHoverBackgroundColor: 'Neutral-fill-3',
|
|
66
66
|
buttonSecondaryHoverBorderColor: 'Neutral-fill-3',
|
|
67
67
|
buttonSecondaryActiveFontColor: 'Neutral-text-5',
|
|
68
|
-
buttonSecondaryActiveBackgroundColor: 'Neutral-fill-
|
|
69
|
-
buttonSecondaryActiveBorderColor: 'Neutral-fill-
|
|
68
|
+
buttonSecondaryActiveBackgroundColor: 'Neutral-fill-4',
|
|
69
|
+
buttonSecondaryActiveBorderColor: 'Neutral-fill-4',
|
|
70
70
|
buttonSecondaryFocusFontColor: 'Neutral-text-5',
|
|
71
71
|
buttonSecondaryFocusBackgroundColor: 'Neutral-fill-4',
|
|
72
72
|
buttonSecondaryFocusBorderColor: 'Neutral-fill-4',
|
package/cjs/button/token.js
CHANGED
package/cjs/button/type.d.ts
CHANGED
|
@@ -343,13 +343,13 @@ export interface ButtonTokens {
|
|
|
343
343
|
buttonSecondaryActiveFontColor: string;
|
|
344
344
|
/**
|
|
345
345
|
* @type {string}
|
|
346
|
-
* @token Neutral-fill-
|
|
346
|
+
* @token Neutral-fill-4
|
|
347
347
|
* @description 按钮次要色鼠标点击时的背景颜色
|
|
348
348
|
*/
|
|
349
349
|
buttonSecondaryActiveBackgroundColor: string;
|
|
350
350
|
/**
|
|
351
351
|
* @type {string}
|
|
352
|
-
* @token Neutral-fill-
|
|
352
|
+
* @token Neutral-fill-4
|
|
353
353
|
* @description 按钮次要色鼠标点击时的边框颜色
|
|
354
354
|
*/
|
|
355
355
|
buttonSecondaryActiveBorderColor: string;
|
package/cjs/switch/switch.js
CHANGED
|
@@ -16,7 +16,7 @@ var switchTokens = {
|
|
|
16
16
|
switchCircleFill: 'Neutral-text-1',
|
|
17
17
|
switchCircleShadow: 'Shadow-3',
|
|
18
18
|
switchWidth: 'Size-21',
|
|
19
|
-
switchTextPaddingLeft: 'Spacing-
|
|
19
|
+
switchTextPaddingLeft: 'Spacing-6',
|
|
20
20
|
switchTextPaddingRight: 'Spacing-4',
|
|
21
21
|
switchSmallFontSize: 'Font-12',
|
|
22
22
|
switchSmallPaddingX: 'Spacing-2',
|
package/cjs/switch/token.js
CHANGED
package/cjs/switch/type.d.ts
CHANGED
package/cjs/upload/token.js
CHANGED
package/cjs/upload/type.d.ts
CHANGED
|
@@ -133,13 +133,13 @@ export interface UploadTokens {
|
|
|
133
133
|
uploadImageHandlerFontColor: string;
|
|
134
134
|
/**
|
|
135
135
|
* @type {string}
|
|
136
|
-
* @token Brand-
|
|
136
|
+
* @token Brand-5
|
|
137
137
|
* @description 上传图片操作区鼠标移入时的边框颜色
|
|
138
138
|
*/
|
|
139
139
|
uploadImageHandlerHoverBorderColor: string;
|
|
140
140
|
/**
|
|
141
141
|
* @type {string}
|
|
142
|
-
* @token Brand-
|
|
142
|
+
* @token Brand-5
|
|
143
143
|
* @description 上传图片操作区鼠标移入时的字体颜色
|
|
144
144
|
*/
|
|
145
145
|
uploadImageHandlerHoverFontColor: string;
|
package/cjs/upload/upload.js
CHANGED
|
@@ -30,8 +30,8 @@ var uploadTokens = {
|
|
|
30
30
|
uploadImageHandlerBorderColor: 'Neutral-border-2',
|
|
31
31
|
uploadImageHandlerBackgroundColor: 'Neutral-fill-1',
|
|
32
32
|
uploadImageHandlerFontColor: 'Neutral-text-4',
|
|
33
|
-
uploadImageHandlerHoverBorderColor: 'Brand-
|
|
34
|
-
uploadImageHandlerHoverFontColor: 'Brand-
|
|
33
|
+
uploadImageHandlerHoverBorderColor: 'Brand-5',
|
|
34
|
+
uploadImageHandlerHoverFontColor: 'Brand-5',
|
|
35
35
|
uploadImageHandlerActiveBorderColor: 'Brand-7',
|
|
36
36
|
uploadImageHandlerActiveFontColor: 'Brand-7',
|
|
37
37
|
uploadImageHandlerErrorBorderColor: 'Danger-6',
|
package/esm/button/button.js
CHANGED
|
@@ -59,8 +59,8 @@ var buttonTokens = {
|
|
|
59
59
|
buttonSecondaryHoverBackgroundColor: 'Neutral-fill-3',
|
|
60
60
|
buttonSecondaryHoverBorderColor: 'Neutral-fill-3',
|
|
61
61
|
buttonSecondaryActiveFontColor: 'Neutral-text-5',
|
|
62
|
-
buttonSecondaryActiveBackgroundColor: 'Neutral-fill-
|
|
63
|
-
buttonSecondaryActiveBorderColor: 'Neutral-fill-
|
|
62
|
+
buttonSecondaryActiveBackgroundColor: 'Neutral-fill-4',
|
|
63
|
+
buttonSecondaryActiveBorderColor: 'Neutral-fill-4',
|
|
64
64
|
buttonSecondaryFocusFontColor: 'Neutral-text-5',
|
|
65
65
|
buttonSecondaryFocusBackgroundColor: 'Neutral-fill-4',
|
|
66
66
|
buttonSecondaryFocusBorderColor: 'Neutral-fill-4',
|
package/esm/button/token.js
CHANGED
package/esm/button/type.d.ts
CHANGED
|
@@ -343,13 +343,13 @@ export interface ButtonTokens {
|
|
|
343
343
|
buttonSecondaryActiveFontColor: string;
|
|
344
344
|
/**
|
|
345
345
|
* @type {string}
|
|
346
|
-
* @token Neutral-fill-
|
|
346
|
+
* @token Neutral-fill-4
|
|
347
347
|
* @description 按钮次要色鼠标点击时的背景颜色
|
|
348
348
|
*/
|
|
349
349
|
buttonSecondaryActiveBackgroundColor: string;
|
|
350
350
|
/**
|
|
351
351
|
* @type {string}
|
|
352
|
-
* @token Neutral-fill-
|
|
352
|
+
* @token Neutral-fill-4
|
|
353
353
|
* @description 按钮次要色鼠标点击时的边框颜色
|
|
354
354
|
*/
|
|
355
355
|
buttonSecondaryActiveBorderColor: string;
|
package/esm/switch/switch.js
CHANGED
|
@@ -10,7 +10,7 @@ var switchTokens = {
|
|
|
10
10
|
switchCircleFill: 'Neutral-text-1',
|
|
11
11
|
switchCircleShadow: 'Shadow-3',
|
|
12
12
|
switchWidth: 'Size-21',
|
|
13
|
-
switchTextPaddingLeft: 'Spacing-
|
|
13
|
+
switchTextPaddingLeft: 'Spacing-6',
|
|
14
14
|
switchTextPaddingRight: 'Spacing-4',
|
|
15
15
|
switchSmallFontSize: 'Font-12',
|
|
16
16
|
switchSmallPaddingX: 'Spacing-2',
|
package/esm/switch/token.js
CHANGED
package/esm/switch/type.d.ts
CHANGED
package/esm/upload/token.js
CHANGED
package/esm/upload/type.d.ts
CHANGED
|
@@ -133,13 +133,13 @@ export interface UploadTokens {
|
|
|
133
133
|
uploadImageHandlerFontColor: string;
|
|
134
134
|
/**
|
|
135
135
|
* @type {string}
|
|
136
|
-
* @token Brand-
|
|
136
|
+
* @token Brand-5
|
|
137
137
|
* @description 上传图片操作区鼠标移入时的边框颜色
|
|
138
138
|
*/
|
|
139
139
|
uploadImageHandlerHoverBorderColor: string;
|
|
140
140
|
/**
|
|
141
141
|
* @type {string}
|
|
142
|
-
* @token Brand-
|
|
142
|
+
* @token Brand-5
|
|
143
143
|
* @description 上传图片操作区鼠标移入时的字体颜色
|
|
144
144
|
*/
|
|
145
145
|
uploadImageHandlerHoverFontColor: string;
|
package/esm/upload/upload.js
CHANGED
|
@@ -24,8 +24,8 @@ var uploadTokens = {
|
|
|
24
24
|
uploadImageHandlerBorderColor: 'Neutral-border-2',
|
|
25
25
|
uploadImageHandlerBackgroundColor: 'Neutral-fill-1',
|
|
26
26
|
uploadImageHandlerFontColor: 'Neutral-text-4',
|
|
27
|
-
uploadImageHandlerHoverBorderColor: 'Brand-
|
|
28
|
-
uploadImageHandlerHoverFontColor: 'Brand-
|
|
27
|
+
uploadImageHandlerHoverBorderColor: 'Brand-5',
|
|
28
|
+
uploadImageHandlerHoverFontColor: 'Brand-5',
|
|
29
29
|
uploadImageHandlerActiveBorderColor: 'Brand-7',
|
|
30
30
|
uploadImageHandlerActiveFontColor: 'Brand-7',
|
|
31
31
|
uploadImageHandlerErrorBorderColor: 'Danger-6',
|