@sheinx/shineout-style 3.9.4-beta.1 → 3.9.4-beta.11
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.d.ts.map +1 -1
- package/cjs/alert/alert.js +6 -3
- package/cjs/cascader/cascader.d.ts.map +1 -1
- package/cjs/cascader/cascader.js +88 -86
- package/cjs/date-picker/date-picker.js +4 -5
- package/cjs/popover/popover.d.ts.map +1 -1
- package/cjs/popover/popover.js +2 -1
- package/cjs/radio/radio.d.ts.map +1 -1
- package/cjs/radio/radio.js +11 -1
- package/cjs/select/select.d.ts.map +1 -1
- package/cjs/select/select.js +55 -62
- package/cjs/tag/tag.d.ts.map +1 -1
- package/cjs/tag/tag.js +8 -11
- package/cjs/tree-select/tree-select.d.ts.map +1 -1
- package/cjs/tree-select/tree-select.js +73 -80
- package/cjs/version.d.ts +1 -1
- package/cjs/version.d.ts.map +1 -1
- package/cjs/version.js +1 -1
- package/esm/alert/alert.d.ts.map +1 -1
- package/esm/alert/alert.js +6 -3
- package/esm/cascader/cascader.d.ts.map +1 -1
- package/esm/cascader/cascader.js +88 -86
- package/esm/date-picker/date-picker.js +4 -5
- package/esm/popover/popover.d.ts.map +1 -1
- package/esm/popover/popover.js +2 -1
- package/esm/radio/radio.d.ts.map +1 -1
- package/esm/radio/radio.js +11 -1
- package/esm/select/select.d.ts.map +1 -1
- package/esm/select/select.js +55 -62
- package/esm/tag/tag.d.ts.map +1 -1
- package/esm/tag/tag.js +8 -11
- package/esm/tree-select/tree-select.d.ts.map +1 -1
- package/esm/tree-select/tree-select.js +73 -80
- package/esm/version.d.ts +1 -1
- package/esm/version.d.ts.map +1 -1
- package/esm/version.js +1 -1
- package/package.json +3 -3
package/esm/select/select.js
CHANGED
|
@@ -51,12 +51,6 @@ var inputBorder = border('wrapper', inputBorderToken);
|
|
|
51
51
|
var wrapper = inputBorder.wrapper,
|
|
52
52
|
wrapperDisabled = inputBorder.wrapperDisabled,
|
|
53
53
|
resetWrapper = _objectWithoutProperties(inputBorder, ["wrapper", "wrapperDisabled"]);
|
|
54
|
-
var selectTagHeightCssvar = "--select-tag-height";
|
|
55
|
-
var selectSmallTagHeightCssvar = "--select-small-tag-height";
|
|
56
|
-
var selectLargeTagHeightCssvar = "--select-large-tag-height";
|
|
57
|
-
var selectTagHeight = "var(".concat(selectTagHeightCssvar, ")");
|
|
58
|
-
var selectSmallTagHeight = "var(".concat(selectSmallTagHeightCssvar, ")");
|
|
59
|
-
var selectLargeTagHeight = "var(".concat(selectLargeTagHeightCssvar, ")");
|
|
60
54
|
var selectStyle = _objectSpread(_objectSpread({
|
|
61
55
|
rootClass: {},
|
|
62
56
|
wrapper: _objectSpread(_objectSpread({
|
|
@@ -65,70 +59,63 @@ var selectStyle = _objectSpread(_objectSpread({
|
|
|
65
59
|
width: '100%',
|
|
66
60
|
outline: 'none',
|
|
67
61
|
cursor: 'pointer'
|
|
68
|
-
}, wrapper), {},
|
|
69
|
-
'
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
62
|
+
}, wrapper), {}, {
|
|
63
|
+
'&$wrapperInnerTitle': {
|
|
64
|
+
'& $placeholder,$ellipsis,$space,input': {
|
|
65
|
+
marginTop: 0,
|
|
66
|
+
marginBottom: 0
|
|
67
|
+
},
|
|
68
|
+
'& $tag': {
|
|
69
|
+
marginTop: 0,
|
|
70
|
+
marginBottom: token.selectInnerTitleMarginY,
|
|
71
|
+
paddingTop: 0,
|
|
72
|
+
paddingBottom: 0,
|
|
73
|
+
border: 'none'
|
|
74
|
+
},
|
|
75
|
+
'&$wrapperSmall $tag': {
|
|
76
|
+
marginBottom: 2
|
|
77
|
+
},
|
|
78
|
+
'&$wrapperLarge $tag': {
|
|
79
|
+
marginBottom: 2
|
|
82
80
|
}
|
|
83
81
|
},
|
|
84
|
-
'&$wrapperSmall
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
82
|
+
'&$wrapperSmall': {
|
|
83
|
+
'& $tag': {
|
|
84
|
+
marginTop: 1,
|
|
85
|
+
marginBottom: 1,
|
|
86
|
+
border: 'none'
|
|
87
|
+
},
|
|
88
|
+
'& $placeholder,$ellipsis,$space,input': {
|
|
89
|
+
marginTop: 0,
|
|
90
|
+
marginBottom: 0
|
|
89
91
|
}
|
|
90
92
|
},
|
|
91
|
-
'&$wrapperLarge
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
93
|
+
'&$wrapperLarge': {
|
|
94
|
+
'& $placeholder,$ellipsis,$space,input': {
|
|
95
|
+
marginTop: token.selectLargePlaceholderMarginY,
|
|
96
|
+
marginBottom: token.selectLargePlaceholderMarginY
|
|
97
|
+
},
|
|
98
|
+
'& $arrowIcon': {
|
|
99
|
+
width: token.selectLargeFontSize
|
|
96
100
|
}
|
|
97
|
-
}
|
|
98
|
-
}), '&$wrapperSmall', {
|
|
99
|
-
'& $tag': {
|
|
100
|
-
height: selectSmallTagHeight,
|
|
101
|
-
lineHeight: '16px',
|
|
102
|
-
marginTop: 1,
|
|
103
|
-
marginBottom: 1
|
|
104
101
|
},
|
|
105
|
-
'
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
}), '&:hover', _objectSpread(_objectSpread({}, wrapper['&:hover']), {}, {
|
|
118
|
-
cursor: 'pointer',
|
|
119
|
-
'&$clearable:not($wrapperEmpty):not($wrapperDisabled)': {
|
|
102
|
+
'&:hover': _objectSpread(_objectSpread({}, wrapper['&:hover']), {}, {
|
|
103
|
+
cursor: 'pointer',
|
|
104
|
+
'&$clearable:not($wrapperEmpty):not($wrapperDisabled)': {
|
|
105
|
+
'& $clearIcon': {
|
|
106
|
+
display: 'block'
|
|
107
|
+
},
|
|
108
|
+
'& $arrowIcon': {
|
|
109
|
+
display: 'none'
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}),
|
|
113
|
+
'&:not($wrapperEmpty):not($wrapperOpen)': {
|
|
120
114
|
'& $clearIcon': {
|
|
121
|
-
display: 'block'
|
|
122
|
-
},
|
|
123
|
-
'& $arrowIcon': {
|
|
124
115
|
display: 'none'
|
|
125
116
|
}
|
|
126
117
|
}
|
|
127
|
-
})
|
|
128
|
-
'& $clearIcon': {
|
|
129
|
-
display: 'none'
|
|
130
|
-
}
|
|
131
|
-
})),
|
|
118
|
+
}),
|
|
132
119
|
wrapperEmpty: {},
|
|
133
120
|
wrapperOpen: {},
|
|
134
121
|
wrapperDisabled: _objectSpread(_objectSpread({}, wrapperDisabled), {}, {
|
|
@@ -313,7 +300,7 @@ var selectStyle = _objectSpread(_objectSpread({
|
|
|
313
300
|
fontSize: token.selectLargeFontSize
|
|
314
301
|
},
|
|
315
302
|
'& $optionGroupTitle': {
|
|
316
|
-
padding: "calc(".concat(token.selectFontSize, " + 2px) ").concat(token.
|
|
303
|
+
padding: "calc(".concat(token.selectFontSize, " + 2px) calc(").concat(token.selectOptionPaddingX, " + ").concat(token.selectLargeOptionInnerPaddingX, ") ").concat(token.selectGroupTitleLargeBottom, " calc(").concat(token.selectOptionPaddingX, " + ").concat(token.selectLargeOptionInnerPaddingX, ")")
|
|
317
304
|
}
|
|
318
305
|
},
|
|
319
306
|
iconWrapper: {
|
|
@@ -327,12 +314,18 @@ var selectStyle = _objectSpread(_objectSpread({
|
|
|
327
314
|
clearable: {},
|
|
328
315
|
clearIcon: {
|
|
329
316
|
cursor: 'pointer',
|
|
330
|
-
width: token.
|
|
317
|
+
width: token.selectClearIconSize,
|
|
331
318
|
lineHeight: 0,
|
|
332
319
|
color: token.selectClearColor,
|
|
333
320
|
verticalAlign: 'middle',
|
|
334
321
|
'&:hover': {
|
|
335
322
|
color: token.selectIconColor
|
|
323
|
+
},
|
|
324
|
+
'$wrapperSmall &': {
|
|
325
|
+
width: token.selectSmallClearIconSize
|
|
326
|
+
},
|
|
327
|
+
'$wrapperLarge &': {
|
|
328
|
+
width: token.selectLargeClearIconSize
|
|
336
329
|
}
|
|
337
330
|
},
|
|
338
331
|
arrowIcon: {
|
package/esm/tag/tag.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tag.d.ts","sourceRoot":"","sources":["tag.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAqJ1C,QAAA,MAAM,QAAQ,EAAE,QAAQ,CAAC,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"tag.d.ts","sourceRoot":"","sources":["tag.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAqJ1C,QAAA,MAAM,QAAQ,EAAE,QAAQ,CAAC,MAAM,UAAU,CAqNxC,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
package/esm/tag/tag.js
CHANGED
|
@@ -164,8 +164,8 @@ var TagStyle = {
|
|
|
164
164
|
padding: "".concat(Token.tagLargePaddingY, " ").concat(Token.tagLargePaddingX),
|
|
165
165
|
'& $closeIconWrapper': {
|
|
166
166
|
'& svg': {
|
|
167
|
-
width:
|
|
168
|
-
height:
|
|
167
|
+
width: Token.tagLargeFontSize,
|
|
168
|
+
height: Token.tagLargeFontSize
|
|
169
169
|
}
|
|
170
170
|
},
|
|
171
171
|
'& $wrapper': {
|
|
@@ -185,15 +185,12 @@ var TagStyle = {
|
|
|
185
185
|
lineHeight: "var(".concat(Token.tagSmallLineHeight, ", calc(").concat(Token.tagSmallFontSize, " + 6px))")
|
|
186
186
|
},
|
|
187
187
|
'& $closeIcon': {
|
|
188
|
-
height: "var(".concat(Token.tagSmallLineHeight, ", calc(").concat(Token.tagSmallFontSize, " +
|
|
188
|
+
height: "var(".concat(Token.tagSmallLineHeight, ", calc(").concat(Token.tagSmallFontSize, " + 4px))")
|
|
189
189
|
},
|
|
190
190
|
'& $closeIconWrapper': {
|
|
191
|
-
width: "calc(".concat(Token.tagSmallFontSize, " + 6px)"),
|
|
192
|
-
height: "calc(".concat(Token.tagSmallFontSize, " + 6px)"),
|
|
193
|
-
lineHeight: "calc(".concat(Token.tagSmallFontSize, " + 6px)"),
|
|
194
191
|
'& svg': {
|
|
195
|
-
width:
|
|
196
|
-
height:
|
|
192
|
+
width: Token.tagSmallFontSize,
|
|
193
|
+
height: Token.tagSmallFontSize
|
|
197
194
|
}
|
|
198
195
|
}
|
|
199
196
|
},
|
|
@@ -204,7 +201,7 @@ var TagStyle = {
|
|
|
204
201
|
}
|
|
205
202
|
},
|
|
206
203
|
closeIcon: {
|
|
207
|
-
marginLeft:
|
|
204
|
+
marginLeft: 2,
|
|
208
205
|
alignItems: 'center',
|
|
209
206
|
display: 'inline-flex',
|
|
210
207
|
cursor: 'pointer',
|
|
@@ -219,8 +216,8 @@ var TagStyle = {
|
|
|
219
216
|
width: "calc(1em + 4px)",
|
|
220
217
|
height: "calc(1em + 4px)",
|
|
221
218
|
'& svg': {
|
|
222
|
-
width:
|
|
223
|
-
height:
|
|
219
|
+
width: Token.tagFontSize,
|
|
220
|
+
height: Token.tagFontSize
|
|
224
221
|
}
|
|
225
222
|
},
|
|
226
223
|
info: _objectSpread({}, brightTag('info', 'Info')),
|
|
@@ -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;
|
|
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;AAuD1D,QAAA,MAAM,eAAe,EAAE,QAAQ,CAAC,mBAAmB,CAmgBlD,CAAC;AACF,eAAe,eAAe,CAAC"}
|
|
@@ -51,12 +51,6 @@ var inputBorder = border('wrapper', inputBorderToken);
|
|
|
51
51
|
var wrapper = inputBorder.wrapper,
|
|
52
52
|
wrapperDisabled = inputBorder.wrapperDisabled,
|
|
53
53
|
resetWrapper = _objectWithoutProperties(inputBorder, ["wrapper", "wrapperDisabled"]);
|
|
54
|
-
var selectTagHeightCssvar = "--select-tag-height";
|
|
55
|
-
var selectSmallTagHeightCssvar = "--select-small-tag-height";
|
|
56
|
-
var selectLargeTagHeightCssvar = "--select-large-tag-height";
|
|
57
|
-
var selectTagHeight = "var(".concat(selectTagHeightCssvar, ")");
|
|
58
|
-
var selectSmallTagHeight = "var(".concat(selectSmallTagHeightCssvar, ")");
|
|
59
|
-
var selectLargeTagHeight = "var(".concat(selectLargeTagHeightCssvar, ")");
|
|
60
54
|
var treeSelectStyle = _objectSpread(_objectSpread({
|
|
61
55
|
rootClass: {},
|
|
62
56
|
wrapper: _objectSpread(_objectSpread({
|
|
@@ -65,90 +59,83 @@ var treeSelectStyle = _objectSpread(_objectSpread({
|
|
|
65
59
|
width: '100%',
|
|
66
60
|
outline: 'none',
|
|
67
61
|
cursor: 'pointer'
|
|
68
|
-
}, wrapper), {},
|
|
69
|
-
'
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
62
|
+
}, wrapper), {}, {
|
|
63
|
+
'&$wrapperInnerTitle': {
|
|
64
|
+
'& $placeholder,$ellipsis,$space,input': {
|
|
65
|
+
marginTop: 0,
|
|
66
|
+
marginBottom: 0
|
|
67
|
+
},
|
|
68
|
+
'& $tag': {
|
|
69
|
+
marginTop: 0,
|
|
70
|
+
marginBottom: token.selectInnerTitleMarginY,
|
|
71
|
+
paddingTop: 0,
|
|
72
|
+
paddingBottom: 0,
|
|
73
|
+
border: 'none'
|
|
74
|
+
},
|
|
75
|
+
'&$wrapperSmall $tag': {
|
|
76
|
+
marginBottom: 2
|
|
77
|
+
},
|
|
78
|
+
'&$wrapperLarge $tag': {
|
|
79
|
+
marginBottom: 2
|
|
82
80
|
}
|
|
83
81
|
},
|
|
84
|
-
'&$wrapperSmall
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
82
|
+
'&$wrapperSmall': {
|
|
83
|
+
'& $tag': {
|
|
84
|
+
marginTop: 1,
|
|
85
|
+
marginBottom: 1,
|
|
86
|
+
border: 'none'
|
|
87
|
+
},
|
|
88
|
+
'& $placeholder,$ellipsis,$space,input': {
|
|
89
|
+
marginTop: 0,
|
|
90
|
+
marginBottom: 0
|
|
91
|
+
},
|
|
92
|
+
'& $optionInner': {
|
|
93
|
+
paddingTop: token.treeSelectSmallOptionInnerPaddingY,
|
|
94
|
+
paddingBottom: token.treeSelectSmallOptionInnerPaddingY,
|
|
95
|
+
paddingLeft: token.treeSelectSmallOptionInnerPaddingX,
|
|
96
|
+
// padding: `${token.treeSelectSmallOptionInnerPaddingY} ${token.treeSelectSmallOptionInnerPaddingX}`,
|
|
97
|
+
fontSize: token.treeSelectSmallFontSize
|
|
98
|
+
},
|
|
99
|
+
'& $clearIcon': {
|
|
100
|
+
right: token.treeSelectSmallPaddingX
|
|
89
101
|
}
|
|
90
102
|
},
|
|
91
|
-
'&$wrapperLarge
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
103
|
+
'&$wrapperLarge': {
|
|
104
|
+
'& $placeholder,$ellipsis,$space,input': {
|
|
105
|
+
marginTop: token.treeSelectLargePlaceholderMarginY,
|
|
106
|
+
marginBottom: token.treeSelectLargePlaceholderMarginY
|
|
107
|
+
},
|
|
108
|
+
'& $optionInner': {
|
|
109
|
+
// padding: `${token.treeSelectLargeOptionInnerPaddingY} ${token.treeSelectLargeOptionInnerPaddingX}`,
|
|
110
|
+
paddingTop: token.treeSelectLargeOptionInnerPaddingY,
|
|
111
|
+
paddingBottom: token.treeSelectLargeOptionInnerPaddingY,
|
|
112
|
+
paddingLeft: token.treeSelectLargeOptionInnerPaddingX,
|
|
113
|
+
fontSize: token.treeSelectLargeFontSize
|
|
114
|
+
},
|
|
115
|
+
'& $arrowIcon': {
|
|
116
|
+
width: token.treeSelectLargeFontSize
|
|
117
|
+
},
|
|
118
|
+
'& $clearIcon': {
|
|
119
|
+
right: token.treeSelectLargePaddingX
|
|
96
120
|
}
|
|
97
|
-
}
|
|
98
|
-
}), '&$wrapperSmall', {
|
|
99
|
-
'& $tag': {
|
|
100
|
-
height: selectSmallTagHeight,
|
|
101
|
-
lineHeight: '16px',
|
|
102
|
-
marginTop: 1,
|
|
103
|
-
marginBottom: 1
|
|
104
|
-
},
|
|
105
|
-
'& $placeholder,$ellipsis,$space,input': {
|
|
106
|
-
marginTop: 0,
|
|
107
|
-
marginBottom: 0
|
|
108
|
-
},
|
|
109
|
-
'& $optionInner': {
|
|
110
|
-
paddingTop: token.treeSelectSmallOptionInnerPaddingY,
|
|
111
|
-
paddingBottom: token.treeSelectSmallOptionInnerPaddingY,
|
|
112
|
-
paddingLeft: token.treeSelectSmallOptionInnerPaddingX,
|
|
113
|
-
// padding: `${token.treeSelectSmallOptionInnerPaddingY} ${token.treeSelectSmallOptionInnerPaddingX}`,
|
|
114
|
-
fontSize: token.treeSelectSmallFontSize
|
|
115
|
-
},
|
|
116
|
-
'& $clearIcon': {
|
|
117
|
-
right: token.treeSelectSmallPaddingX
|
|
118
|
-
}
|
|
119
|
-
}), '&$wrapperLarge', {
|
|
120
|
-
'& $placeholder,$ellipsis,$space,input': {
|
|
121
|
-
marginTop: token.treeSelectLargePlaceholderMarginY,
|
|
122
|
-
marginBottom: token.treeSelectLargePlaceholderMarginY
|
|
123
|
-
},
|
|
124
|
-
'& $optionInner': {
|
|
125
|
-
// padding: `${token.treeSelectLargeOptionInnerPaddingY} ${token.treeSelectLargeOptionInnerPaddingX}`,
|
|
126
|
-
paddingTop: token.treeSelectLargeOptionInnerPaddingY,
|
|
127
|
-
paddingBottom: token.treeSelectLargeOptionInnerPaddingY,
|
|
128
|
-
paddingLeft: token.treeSelectLargeOptionInnerPaddingX,
|
|
129
|
-
fontSize: token.treeSelectLargeFontSize
|
|
130
121
|
},
|
|
131
|
-
'
|
|
132
|
-
|
|
122
|
+
'&:hover': {
|
|
123
|
+
cursor: 'pointer',
|
|
124
|
+
'&$clearable:not($wrapperEmpty)': {
|
|
125
|
+
'& $clearIcon': {
|
|
126
|
+
display: 'block'
|
|
127
|
+
},
|
|
128
|
+
'& $arrowIcon': {
|
|
129
|
+
display: 'none'
|
|
130
|
+
}
|
|
131
|
+
}
|
|
133
132
|
},
|
|
134
|
-
'
|
|
135
|
-
right: token.treeSelectLargePaddingX
|
|
136
|
-
}
|
|
137
|
-
}), '&:hover', {
|
|
138
|
-
cursor: 'pointer',
|
|
139
|
-
'&$clearable:not($wrapperEmpty)': {
|
|
133
|
+
'&:not($wrapperEmpty):not($wrapperOpen)': {
|
|
140
134
|
'& $clearIcon': {
|
|
141
|
-
display: 'block'
|
|
142
|
-
},
|
|
143
|
-
'& $arrowIcon': {
|
|
144
135
|
display: 'none'
|
|
145
136
|
}
|
|
146
137
|
}
|
|
147
|
-
}),
|
|
148
|
-
'& $clearIcon': {
|
|
149
|
-
display: 'none'
|
|
150
|
-
}
|
|
151
|
-
})),
|
|
138
|
+
}),
|
|
152
139
|
treeWrapper: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, getTokenName('treeFontColor'), token.treeSelectOptionFontColor), getTokenName('treeContentHoverFontColor'), token.treeSelectContentHoverFontColor), getTokenName('treeContentHoverBackgroundColor'), token.treeSelectContentHoverBackgroundColor), getTokenName('treeContentActiveBackgroundColor'), token.treeSelectContentActiveBackgroundColor), getTokenName('treeContentActiveFontColor'), token.treeSelectContentActiveFontColor), getTokenName('treeContentDisabledFontColor'), token.treeSelectContentDisabledFontColor), getTokenName('treeContentDisabledBackgroundColor'), token.treeSelectContentDisabledBackgroundColor),
|
|
153
140
|
wrapperEmpty: {},
|
|
154
141
|
wrapperOpen: {},
|
|
@@ -304,12 +291,18 @@ var treeSelectStyle = _objectSpread(_objectSpread({
|
|
|
304
291
|
clearable: {},
|
|
305
292
|
clearIcon: {
|
|
306
293
|
cursor: 'pointer',
|
|
307
|
-
width: token.
|
|
294
|
+
width: token.treeSelectClearIconSize,
|
|
308
295
|
lineHeight: 0,
|
|
309
296
|
color: token.treeSelectClearColor,
|
|
310
297
|
verticalAlign: 'middle',
|
|
311
298
|
'&:hover svg': {
|
|
312
299
|
color: token.treeSelectClearHoverColor
|
|
300
|
+
},
|
|
301
|
+
'$wrapperSmall &': {
|
|
302
|
+
width: token.treeSelectSmallClearIconSize
|
|
303
|
+
},
|
|
304
|
+
'$wrapperLarge &': {
|
|
305
|
+
width: token.treeSelectLargeClearIconSize
|
|
313
306
|
}
|
|
314
307
|
},
|
|
315
308
|
arrowIcon: {
|
package/esm/version.d.ts
CHANGED
package/esm/version.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["version.ts"],"names":[],"mappings":";AAAA,
|
|
1
|
+
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["version.ts"],"names":[],"mappings":";AAAA,wBAA+B"}
|
package/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '3.9.4-beta.
|
|
1
|
+
export default '3.9.4-beta.11';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sheinx/shineout-style",
|
|
3
|
-
"version": "3.9.4-beta.
|
|
3
|
+
"version": "3.9.4-beta.11",
|
|
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.4-beta.
|
|
21
|
-
"@sheinx/base": "3.9.4-beta.
|
|
20
|
+
"@sheinx/theme": "3.9.4-beta.11",
|
|
21
|
+
"@sheinx/base": "3.9.4-beta.11"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"core-js": ">=3"
|