@sheinx/shineout-style 3.9.13-beta.3 → 3.9.13-beta.5
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/alert/alert.js +2 -2
- package/cjs/cascader/cascader.d.ts.map +1 -1
- package/cjs/cascader/cascader.js +18 -15
- package/cjs/checkbox/checkbox.js +6 -6
- package/cjs/date-picker/date-picker.d.ts.map +1 -1
- package/cjs/date-picker/date-picker.js +10 -9
- package/cjs/dropdown/dropdown.d.ts.map +1 -1
- package/cjs/dropdown/dropdown.js +10 -2
- package/cjs/editable-area/editable-area.js +2 -2
- package/cjs/form/form-item.d.ts.map +1 -1
- package/cjs/form/form-item.js +2 -3
- package/cjs/input/input.js +15 -15
- package/cjs/menu/menu.js +4 -4
- package/cjs/radio/radio.js +9 -9
- package/cjs/select/select.d.ts.map +1 -1
- package/cjs/select/select.js +14 -11
- package/cjs/tabs/tabs.js +4 -4
- package/cjs/textarea/textarea.js +9 -9
- package/cjs/tree/tree.js +2 -2
- package/cjs/tree-select/tree-select.d.ts.map +1 -1
- package/cjs/tree-select/tree-select.js +13 -10
- package/cjs/version.d.ts +1 -1
- package/cjs/version.js +1 -1
- package/esm/alert/alert.js +2 -2
- package/esm/cascader/cascader.d.ts.map +1 -1
- package/esm/cascader/cascader.js +18 -15
- package/esm/checkbox/checkbox.js +6 -6
- package/esm/date-picker/date-picker.d.ts.map +1 -1
- package/esm/date-picker/date-picker.js +10 -9
- package/esm/dropdown/dropdown.d.ts.map +1 -1
- package/esm/dropdown/dropdown.js +10 -2
- package/esm/editable-area/editable-area.js +2 -2
- package/esm/form/form-item.d.ts.map +1 -1
- package/esm/form/form-item.js +2 -3
- package/esm/input/input.js +15 -15
- package/esm/menu/menu.js +4 -4
- package/esm/radio/radio.js +9 -9
- package/esm/select/select.d.ts.map +1 -1
- package/esm/select/select.js +14 -11
- package/esm/tabs/tabs.js +4 -4
- package/esm/textarea/textarea.js +9 -9
- package/esm/tree/tree.js +2 -2
- package/esm/tree-select/tree-select.d.ts.map +1 -1
- package/esm/tree-select/tree-select.js +13 -10
- package/esm/version.d.ts +1 -1
- package/esm/version.js +1 -1
- package/package.json +3 -3
package/esm/textarea/textarea.js
CHANGED
|
@@ -156,15 +156,15 @@ var input = _objectSpread(_objectSpread(_objectSpread({
|
|
|
156
156
|
},
|
|
157
157
|
'& > svg': {
|
|
158
158
|
display: 'block',
|
|
159
|
-
width: token.
|
|
160
|
-
height: token.
|
|
159
|
+
width: token.textareaFontSize,
|
|
160
|
+
height: token.textareaFontSize,
|
|
161
161
|
'$wrapperSmall &': {
|
|
162
|
-
width: token.
|
|
163
|
-
height: token.
|
|
162
|
+
width: token.textareaSmallFontSize,
|
|
163
|
+
height: token.textareaSmallFontSize
|
|
164
164
|
},
|
|
165
165
|
'$wrapperLarge &': {
|
|
166
|
-
width: token.
|
|
167
|
-
height: token.
|
|
166
|
+
width: token.textareaLargeFontSize,
|
|
167
|
+
height: token.textareaLargeFontSize
|
|
168
168
|
}
|
|
169
169
|
},
|
|
170
170
|
'[dir="rtl"] &': {
|
|
@@ -174,13 +174,13 @@ var input = _objectSpread(_objectSpread(_objectSpread({
|
|
|
174
174
|
},
|
|
175
175
|
wrapperWithClear: {
|
|
176
176
|
'&& $textarea': {
|
|
177
|
-
paddingRight: "calc(".concat(token.textareaPaddingX, " + ").concat(token.
|
|
177
|
+
paddingRight: "calc(".concat(token.textareaPaddingX, " + ").concat(token.textareaFontSize, " + 12px)")
|
|
178
178
|
},
|
|
179
179
|
'&&$wrapperSmall > $textarea': {
|
|
180
|
-
paddingRight: "calc(".concat(token.textareaSmallPaddingX, " + ").concat(token.
|
|
180
|
+
paddingRight: "calc(".concat(token.textareaSmallPaddingX, " + ").concat(token.textareaSmallFontSize, " + 12px)")
|
|
181
181
|
},
|
|
182
182
|
'&&$wrapperLarge > $textarea': {
|
|
183
|
-
paddingRight: "calc(".concat(token.textareaLargePaddingX, " + ").concat(token.
|
|
183
|
+
paddingRight: "calc(".concat(token.textareaLargePaddingX, " + ").concat(token.textareaLargeFontSize, " + 12px)")
|
|
184
184
|
}
|
|
185
185
|
},
|
|
186
186
|
wrapperShowClear: {
|
package/esm/tree/tree.js
CHANGED
|
@@ -385,9 +385,9 @@ var treeStyle = {
|
|
|
385
385
|
background: Token.treeItemActiveBackgroundColor
|
|
386
386
|
},
|
|
387
387
|
'& svg': {
|
|
388
|
-
width: Token.
|
|
388
|
+
width: Token.treeFontSize,
|
|
389
389
|
'$sizeLarge &': {
|
|
390
|
-
width: "calc(".concat(Token.
|
|
390
|
+
width: "calc(".concat(Token.treeFontSize, " + 2px)")
|
|
391
391
|
}
|
|
392
392
|
}
|
|
393
393
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tree-select.d.ts","sourceRoot":"","sources":["tree-select.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEjD,MAAM,MAAM,mBAAmB,GAAG,MAAM,iBAAiB,CAAC;AAwD1D,QAAA,MAAM,eAAe,EAAE,QAAQ,CAAC,mBAAmB,
|
|
1
|
+
{"version":3,"file":"tree-select.d.ts","sourceRoot":"","sources":["tree-select.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEjD,MAAM,MAAM,mBAAmB,GAAG,MAAM,iBAAiB,CAAC;AAwD1D,QAAA,MAAM,eAAe,EAAE,QAAQ,CAAC,mBAAmB,CAugBlD,CAAC;AACF,eAAe,eAAe,CAAC"}
|
|
@@ -99,6 +99,9 @@ var treeSelectStyle = _objectSpread(_objectSpread({
|
|
|
99
99
|
},
|
|
100
100
|
'& $clearIcon': {
|
|
101
101
|
right: token.treeSelectSmallPaddingX
|
|
102
|
+
},
|
|
103
|
+
'& $arrowIcon': {
|
|
104
|
+
width: token.inputSmallFontSize
|
|
102
105
|
}
|
|
103
106
|
},
|
|
104
107
|
'&$wrapperLarge': {
|
|
@@ -114,7 +117,7 @@ var treeSelectStyle = _objectSpread(_objectSpread({
|
|
|
114
117
|
fontSize: token.treeSelectLargeFontSize
|
|
115
118
|
},
|
|
116
119
|
'& $arrowIcon': {
|
|
117
|
-
width: token.
|
|
120
|
+
width: token.inputLargeFontSize
|
|
118
121
|
},
|
|
119
122
|
'& $clearIcon': {
|
|
120
123
|
right: token.treeSelectLargePaddingX
|
|
@@ -183,7 +186,7 @@ var treeSelectStyle = _objectSpread(_objectSpread({
|
|
|
183
186
|
whiteSpace: 'nowrap',
|
|
184
187
|
textOverflow: 'ellipsis',
|
|
185
188
|
'&::placeholder': {
|
|
186
|
-
color: token.
|
|
189
|
+
color: token.inputPlaceholderColor
|
|
187
190
|
}
|
|
188
191
|
}
|
|
189
192
|
},
|
|
@@ -230,7 +233,7 @@ var treeSelectStyle = _objectSpread(_objectSpread({
|
|
|
230
233
|
backgroundColor: 'transparent',
|
|
231
234
|
width: '100%',
|
|
232
235
|
'&::placeholder': {
|
|
233
|
-
color: token.
|
|
236
|
+
color: token.inputPlaceholderColor
|
|
234
237
|
}
|
|
235
238
|
}
|
|
236
239
|
},
|
|
@@ -263,7 +266,7 @@ var treeSelectStyle = _objectSpread(_objectSpread({
|
|
|
263
266
|
}
|
|
264
267
|
},
|
|
265
268
|
placeholder: {
|
|
266
|
-
color: token.
|
|
269
|
+
color: token.inputPlaceholderColor,
|
|
267
270
|
lineHeight: token.lineHeightDynamic,
|
|
268
271
|
marginTop: token.treeSelectPlaceholderMarginY,
|
|
269
272
|
marginBottom: token.treeSelectPlaceholderMarginY
|
|
@@ -292,24 +295,24 @@ var treeSelectStyle = _objectSpread(_objectSpread({
|
|
|
292
295
|
clearable: {},
|
|
293
296
|
clearIcon: {
|
|
294
297
|
cursor: 'pointer',
|
|
295
|
-
width: token.
|
|
298
|
+
width: token.inputFontSize,
|
|
296
299
|
lineHeight: 0,
|
|
297
|
-
color: token.
|
|
300
|
+
color: token.inputClearColor,
|
|
298
301
|
verticalAlign: 'middle',
|
|
299
302
|
'&:hover svg': {
|
|
300
303
|
color: token.treeSelectClearHoverColor
|
|
301
304
|
},
|
|
302
305
|
'$wrapperSmall &': {
|
|
303
|
-
width: token.
|
|
306
|
+
width: token.inputSmallFontSize
|
|
304
307
|
},
|
|
305
308
|
'$wrapperLarge &': {
|
|
306
|
-
width: token.
|
|
309
|
+
width: token.inputLargeFontSize
|
|
307
310
|
}
|
|
308
311
|
},
|
|
309
312
|
arrowIcon: {
|
|
310
313
|
display: 'inline-block',
|
|
311
314
|
verticalAlign: 'middle',
|
|
312
|
-
width: token.
|
|
315
|
+
width: token.inputFontSize,
|
|
313
316
|
lineHeight: 0,
|
|
314
317
|
color: token.treeSelectIconColor,
|
|
315
318
|
transition: 'transform 0.3s',
|
|
@@ -546,7 +549,7 @@ var treeSelectStyle = _objectSpread(_objectSpread({
|
|
|
546
549
|
}
|
|
547
550
|
},
|
|
548
551
|
empty: {
|
|
549
|
-
color: token.
|
|
552
|
+
color: token.inputPlaceholderColor
|
|
550
553
|
}
|
|
551
554
|
});
|
|
552
555
|
export default treeSelectStyle;
|
package/esm/version.d.ts
CHANGED
package/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '3.9.13-beta.
|
|
1
|
+
export default '3.9.13-beta.5';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sheinx/shineout-style",
|
|
3
|
-
"version": "3.9.13-beta.
|
|
3
|
+
"version": "3.9.13-beta.5",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"jss": "10.9.2",
|
|
19
19
|
"react-jss": "10.9.2",
|
|
20
|
-
"@sheinx/theme": "3.9.13-beta.
|
|
21
|
-
"@sheinx/base": "3.9.13-beta.
|
|
20
|
+
"@sheinx/theme": "3.9.13-beta.5",
|
|
21
|
+
"@sheinx/base": "3.9.13-beta.5"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"core-js": ">=3"
|