@sheinx/shineout-style 3.9.13-beta.9 → 3.9.14-beta.2
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/breadcrumb/breadcrumb.js +3 -3
- package/cjs/button/button-group.d.ts.map +1 -1
- package/cjs/button/button-group.js +29 -46
- package/cjs/cascader/cascader.d.ts.map +1 -1
- package/cjs/cascader/cascader.js +17 -13
- 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 +16 -5
- package/cjs/descriptions/descriptions.js +6 -6
- package/cjs/dropdown/dropdown.js +4 -4
- package/cjs/input/input-border.js +1 -1
- package/cjs/input/input.js +2 -2
- package/cjs/menu/menu.d.ts.map +1 -1
- package/cjs/menu/menu.js +5 -2
- package/cjs/radio/radio.d.ts.map +1 -1
- package/cjs/radio/radio.js +13 -10
- package/cjs/select/select.d.ts.map +1 -1
- package/cjs/select/select.js +27 -20
- package/cjs/switch/switch.d.ts.map +1 -1
- package/cjs/switch/switch.js +4 -1
- package/cjs/tabs/tabs.js +1 -1
- package/cjs/transfer/transfer.d.ts.map +1 -1
- package/cjs/transfer/transfer.js +6 -0
- package/cjs/tree-select/tree-select.js +1 -1
- package/cjs/version.d.ts +1 -1
- package/cjs/version.js +1 -1
- package/esm/breadcrumb/breadcrumb.js +3 -3
- package/esm/button/button-group.d.ts.map +1 -1
- package/esm/button/button-group.js +29 -46
- package/esm/cascader/cascader.d.ts.map +1 -1
- package/esm/cascader/cascader.js +17 -13
- 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 +16 -5
- package/esm/descriptions/descriptions.js +6 -6
- package/esm/dropdown/dropdown.js +4 -4
- package/esm/input/input-border.js +1 -1
- package/esm/input/input.js +2 -2
- package/esm/menu/menu.d.ts.map +1 -1
- package/esm/menu/menu.js +5 -2
- package/esm/radio/radio.d.ts.map +1 -1
- package/esm/radio/radio.js +13 -10
- package/esm/select/select.d.ts.map +1 -1
- package/esm/select/select.js +27 -20
- package/esm/switch/switch.d.ts.map +1 -1
- package/esm/switch/switch.js +4 -1
- package/esm/tabs/tabs.js +1 -1
- package/esm/transfer/transfer.d.ts.map +1 -1
- package/esm/transfer/transfer.js +6 -0
- package/esm/tree-select/tree-select.js +1 -1
- package/esm/version.d.ts +1 -1
- package/esm/version.js +1 -1
- package/package.json +3 -3
|
@@ -88,8 +88,8 @@ var breadcrumbStyle = {
|
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
90
|
down: {
|
|
91
|
-
width: _theme.default.
|
|
92
|
-
height: _theme.default.
|
|
91
|
+
width: _theme.default.breadcrumbFontSize,
|
|
92
|
+
height: _theme.default.breadcrumbFontSize,
|
|
93
93
|
lineHeight: '1',
|
|
94
94
|
marginLeft: 4
|
|
95
95
|
},
|
|
@@ -98,7 +98,7 @@ var breadcrumbStyle = {
|
|
|
98
98
|
},
|
|
99
99
|
dropdown: {
|
|
100
100
|
borderRadius: _theme.default.dropdownListBorderRadius,
|
|
101
|
-
backgroundColor: _theme.default.
|
|
101
|
+
backgroundColor: _theme.default.backgroundPopup,
|
|
102
102
|
boxShadow: _theme.default.dropdownListBoxShadow,
|
|
103
103
|
border: "1px solid ".concat(_theme.default.dropdownListBorderColor),
|
|
104
104
|
// padding: `${token.breadcrumbListPaddingY} 0`,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"button-group.d.ts","sourceRoot":"","sources":["button-group.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAU,MAAM,cAAc,CAAC;AAEhD,OAAO,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"button-group.d.ts","sourceRoot":"","sources":["button-group.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAU,MAAM,cAAc,CAAC;AAEhD,OAAO,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AA+KlD,QAAA,MAAM,gBAAgB,EAAE,QAAQ,CAAC,MAAM,kBAAkB,CA+JxD,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
|
|
@@ -17,16 +17,19 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
17
17
|
var bc = function bc(key) {
|
|
18
18
|
return ".".concat(_jssStyle.prefix, "-button-").concat(key);
|
|
19
19
|
};
|
|
20
|
+
var heightAndTop = {
|
|
21
|
+
height: "var(--button-before-line-height, calc(50% - 2px))",
|
|
22
|
+
top: "var(--button-before-line-top, calc(25% + 1px))"
|
|
23
|
+
};
|
|
20
24
|
var beforeLine = function beforeLine() {
|
|
21
25
|
return _defineProperty(_defineProperty({
|
|
22
|
-
'&::before': {
|
|
26
|
+
'&::before': _objectSpread(_objectSpread({
|
|
23
27
|
position: 'absolute',
|
|
24
|
-
content: '" "'
|
|
25
|
-
|
|
26
|
-
top: 'calc(25% + 1px)',
|
|
28
|
+
content: '" "'
|
|
29
|
+
}, heightAndTop), {}, {
|
|
27
30
|
width: 1,
|
|
28
31
|
background: _theme.default.buttonSplitlineFullBackgroundColor
|
|
29
|
-
},
|
|
32
|
+
}),
|
|
30
33
|
'&[dir=ltr]::before': {
|
|
31
34
|
left: -1
|
|
32
35
|
},
|
|
@@ -72,14 +75,13 @@ var beforeLine = function beforeLine() {
|
|
|
72
75
|
};
|
|
73
76
|
var outlineBeforeLine = function outlineBeforeLine(type, styles) {
|
|
74
77
|
return _defineProperty({
|
|
75
|
-
'&::before': {
|
|
78
|
+
'&::before': _objectSpread(_objectSpread({
|
|
76
79
|
position: 'absolute',
|
|
77
|
-
content: '" "'
|
|
78
|
-
|
|
79
|
-
top: 'calc(25% + 1px)',
|
|
80
|
+
content: '" "'
|
|
81
|
+
}, heightAndTop), {}, {
|
|
80
82
|
width: 1,
|
|
81
83
|
background: _theme.default["button".concat(type).concat(styles, "BorderColor")]
|
|
82
|
-
},
|
|
84
|
+
}),
|
|
83
85
|
'&[dir=ltr]::before': {
|
|
84
86
|
left: -1
|
|
85
87
|
},
|
|
@@ -113,14 +115,13 @@ var outlineBeforeLine = function outlineBeforeLine(type, styles) {
|
|
|
113
115
|
}
|
|
114
116
|
}))
|
|
115
117
|
}, "&".concat(bc('primary'), ",&").concat(bc('success'), ",&").concat(bc('warning'), ",&").concat(bc('danger'), ",").concat(bc('secondary')), {
|
|
116
|
-
'&::before': {
|
|
117
|
-
|
|
118
|
-
top: -1,
|
|
118
|
+
'&::before': _objectSpread(_objectSpread({}, heightAndTop), {}, {
|
|
119
|
+
top: "var(--button-before-line-top, calc(25% + 1px))",
|
|
119
120
|
left: -1,
|
|
120
121
|
width: 1,
|
|
121
122
|
bottom: -1,
|
|
122
123
|
background: "".concat(_theme.default["button".concat(type).concat(styles, "BorderColor")])
|
|
123
|
-
},
|
|
124
|
+
}),
|
|
124
125
|
'& + :not(&)': {
|
|
125
126
|
'&::before': {
|
|
126
127
|
height: 'calc(100% + 2px)',
|
|
@@ -145,15 +146,14 @@ var outlineBeforeLine = function outlineBeforeLine(type, styles) {
|
|
|
145
146
|
};
|
|
146
147
|
var textBeforeLine = function textBeforeLine() {
|
|
147
148
|
return _defineProperty({
|
|
148
|
-
'&::before': {
|
|
149
|
+
'&::before': _objectSpread(_objectSpread({
|
|
149
150
|
transition: 'all 0.3s',
|
|
150
151
|
position: 'absolute',
|
|
151
|
-
content: '" "'
|
|
152
|
-
|
|
153
|
-
top: 'calc(25% + 1px)',
|
|
152
|
+
content: '" "'
|
|
153
|
+
}, heightAndTop), {}, {
|
|
154
154
|
width: 1,
|
|
155
155
|
background: _theme.default.buttonSplitlineOutlineBackgroundColor
|
|
156
|
-
},
|
|
156
|
+
}),
|
|
157
157
|
'&[dir=ltr]::before': {
|
|
158
158
|
left: -1
|
|
159
159
|
},
|
|
@@ -211,21 +211,20 @@ var ButtonGroupStyle = {
|
|
|
211
211
|
borderRadius: 0,
|
|
212
212
|
borderLeft: 'none',
|
|
213
213
|
borderRight: 'none'
|
|
214
|
-
}), "& ".concat(bc('button'), ":not(").concat(bc('outline'), "):not(").concat(bc('text'), ")"), _defineProperty(_defineProperty(_defineProperty({
|
|
214
|
+
}), "& ".concat(bc('button'), ":not(").concat(bc('outline'), "):not(").concat(bc('dashed'), "):not(").concat(bc('text'), ")"), _defineProperty(_defineProperty(_defineProperty({
|
|
215
215
|
position: 'relative',
|
|
216
216
|
'&::before': {
|
|
217
|
-
transition: 'all 0.3s'
|
|
217
|
+
// transition: 'all 0.3s',
|
|
218
218
|
}
|
|
219
219
|
}, "&".concat(bc('secondary')), _objectSpread(_objectSpread({}, beforeLine()), {}, _defineProperty({
|
|
220
|
-
'&::before': {
|
|
220
|
+
'&::before': _objectSpread(_objectSpread({
|
|
221
221
|
position: 'absolute',
|
|
222
|
-
content: '" "'
|
|
223
|
-
|
|
224
|
-
top: 'calc(25% + 1px)',
|
|
222
|
+
content: '" "'
|
|
223
|
+
}, heightAndTop), {}, {
|
|
225
224
|
width: 1,
|
|
226
225
|
background: _theme.default.buttonSplitlineOutlineBackgroundColor,
|
|
227
226
|
transition: 'none'
|
|
228
|
-
},
|
|
227
|
+
}),
|
|
229
228
|
'&[dir=ltr]::before': {
|
|
230
229
|
left: -1
|
|
231
230
|
},
|
|
@@ -249,26 +248,10 @@ var ButtonGroupStyle = {
|
|
|
249
248
|
'&::before': {
|
|
250
249
|
transition: 'all 0.3s'
|
|
251
250
|
}
|
|
252
|
-
}, "&".concat(bc('secondary')), _objectSpread(_objectSpread({}, outlineBeforeLine('
|
|
253
|
-
'&::before': {
|
|
254
|
-
position: 'absolute',
|
|
255
|
-
content: '" "',
|
|
256
|
-
height: 'calc(50% - 2px)',
|
|
257
|
-
top: 'calc(25% + 1px)',
|
|
258
|
-
width: 1,
|
|
259
|
-
background: _theme.default.buttonSplitlineOutlineBackgroundColor // Neutral-border-1
|
|
260
|
-
},
|
|
261
|
-
'&[dir=ltr]::before': {
|
|
262
|
-
left: -1
|
|
263
|
-
},
|
|
264
|
-
'&[dir=rtl]::before': {
|
|
265
|
-
right: -1
|
|
266
|
-
}
|
|
267
|
-
})), "&".concat(bc('primary')), _objectSpread({}, outlineBeforeLine('Primary', 'Outline'))), "&".concat(bc('success')), _objectSpread({}, outlineBeforeLine('Success', 'Outline'))), "&".concat(bc('warning')), _objectSpread({}, outlineBeforeLine('Warning', 'Outline'))), "&".concat(bc('danger')), _objectSpread({}, outlineBeforeLine('Danger', 'Outline')))), "& ".concat(bc('text')), _objectSpread({
|
|
251
|
+
}, "&".concat(bc('secondary')), _objectSpread({}, outlineBeforeLine('Secondary', 'Outline'))), "&".concat(bc('primary')), _objectSpread({}, outlineBeforeLine('Primary', 'Outline'))), "&".concat(bc('success')), _objectSpread({}, outlineBeforeLine('Success', 'Outline'))), "&".concat(bc('warning')), _objectSpread({}, outlineBeforeLine('Warning', 'Outline'))), "&".concat(bc('danger')), _objectSpread({}, outlineBeforeLine('Danger', 'Outline')))), "& ".concat(bc('text')), _objectSpread({
|
|
268
252
|
position: 'relative'
|
|
269
|
-
}, textBeforeLine())), "&".concat(bc('dashed')), {
|
|
270
|
-
position: 'relative'
|
|
271
|
-
|
|
272
|
-
})
|
|
253
|
+
}, textBeforeLine())), "& ".concat(bc('dashed')), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({
|
|
254
|
+
position: 'relative'
|
|
255
|
+
}, "&".concat(bc('secondary')), _objectSpread({}, outlineBeforeLine('Secondary', 'Outline'))), "&".concat(bc('primary')), _objectSpread({}, outlineBeforeLine('Primary', 'Outline'))), "&".concat(bc('success')), _objectSpread({}, outlineBeforeLine('Success', 'Outline'))), "&".concat(bc('warning')), _objectSpread({}, outlineBeforeLine('Warning', 'Outline'))), "&".concat(bc('danger')), _objectSpread({}, outlineBeforeLine('Danger', 'Outline'))))
|
|
273
256
|
};
|
|
274
257
|
var _default = exports.default = ButtonGroupStyle;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cascader.d.ts","sourceRoot":"","sources":["cascader.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,MAAM,MAAM,iBAAiB,GAAG,MAAM,eAAe,CAAC;AAwDtD,QAAA,MAAM,aAAa,EAAE,QAAQ,CAAC,iBAAiB,
|
|
1
|
+
{"version":3,"file":"cascader.d.ts","sourceRoot":"","sources":["cascader.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,MAAM,MAAM,iBAAiB,GAAG,MAAM,eAAe,CAAC;AAwDtD,QAAA,MAAM,aAAa,EAAE,QAAQ,CAAC,iBAAiB,CAiiB9C,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
package/cjs/cascader/cascader.js
CHANGED
|
@@ -320,7 +320,7 @@ var cascaderStyle = _objectSpread(_objectSpread({
|
|
|
320
320
|
},
|
|
321
321
|
pickerWrapper: {
|
|
322
322
|
position: 'absolute',
|
|
323
|
-
backgroundColor: _theme.default.
|
|
323
|
+
backgroundColor: _theme.default.backgroundPopup,
|
|
324
324
|
boxShadow: _theme.default.cascaderPanelShadow,
|
|
325
325
|
border: "1px solid ".concat(_theme.default.cascaderPanelBorder),
|
|
326
326
|
borderRadius: _theme.default.cascaderPanelRadius,
|
|
@@ -489,16 +489,28 @@ var cascaderStyle = _objectSpread(_objectSpread({
|
|
|
489
489
|
'&:hover': {
|
|
490
490
|
'& $optionInner': {
|
|
491
491
|
color: _theme.default.cascaderOptionHoverFontColor,
|
|
492
|
-
backgroundColor: _theme.default.cascaderOptionHoverBackgroundColor
|
|
492
|
+
backgroundColor: _theme.default.cascaderOptionHoverBackgroundColor,
|
|
493
|
+
'& $optionIcon': {
|
|
494
|
+
color: _theme.default.cascaderOptionHoverIconColor
|
|
495
|
+
}
|
|
493
496
|
}
|
|
494
497
|
},
|
|
495
498
|
'&:hover $optionInner:active, & $optionInner:active': {
|
|
496
|
-
color: _theme.default.
|
|
497
|
-
backgroundColor: "".concat(_theme.default.cascaderOptionFocusBackgroundColor)
|
|
499
|
+
color: _theme.default.cascaderOptionFocusFontColor,
|
|
500
|
+
backgroundColor: "".concat(_theme.default.cascaderOptionFocusBackgroundColor),
|
|
501
|
+
'& $optionIcon': {
|
|
502
|
+
color: _theme.default.cascaderOptionFocusIconColor
|
|
503
|
+
}
|
|
498
504
|
}
|
|
499
505
|
},
|
|
500
506
|
'& $optionCheckbox': {
|
|
501
507
|
marginRight: 8
|
|
508
|
+
},
|
|
509
|
+
'&:first-child': {
|
|
510
|
+
paddingTop: 0
|
|
511
|
+
},
|
|
512
|
+
'&:last-child': {
|
|
513
|
+
paddingBottom: 0
|
|
502
514
|
}
|
|
503
515
|
},
|
|
504
516
|
filterOption: {
|
|
@@ -573,18 +585,10 @@ var cascaderStyle = _objectSpread(_objectSpread({
|
|
|
573
585
|
paddingTop: 2
|
|
574
586
|
},
|
|
575
587
|
optionHover: {},
|
|
576
|
-
optionActive: {
|
|
577
|
-
color: _theme.default.cascaderOptionActiveColor,
|
|
578
|
-
backgroundColor: _theme.default.cascaderOptionActiveBackgroundColor,
|
|
579
|
-
'&>div': {
|
|
580
|
-
color: _theme.default.cascaderOptionActiveColor
|
|
581
|
-
}
|
|
582
|
-
},
|
|
583
588
|
optionDisabled: {
|
|
584
589
|
cursor: 'not-allowed',
|
|
585
590
|
color: _theme.default.cascaderOptionDisabledColor,
|
|
586
|
-
|
|
587
|
-
'&>div': {
|
|
591
|
+
'& > $optionInner': {
|
|
588
592
|
cursor: 'not-allowed',
|
|
589
593
|
color: _theme.default.cascaderOptionDisabledColor,
|
|
590
594
|
backgroundColor: _theme.default.cascaderOptionDisabledBackgroundColor
|
package/cjs/checkbox/checkbox.js
CHANGED
|
@@ -45,17 +45,17 @@ var checkboxStyle = _objectSpread(_objectSpread({}, _common.animations), {}, {
|
|
|
45
45
|
display: 'block',
|
|
46
46
|
position: 'relative',
|
|
47
47
|
boxSizing: 'border-box',
|
|
48
|
-
width: _theme.default.
|
|
49
|
-
height: _theme.default.
|
|
48
|
+
width: _theme.default.checkboxIconSize,
|
|
49
|
+
height: _theme.default.checkboxIconSize,
|
|
50
50
|
// marginTop: token.checkboxIndicatorMarginTop,
|
|
51
51
|
flexShrink: 0,
|
|
52
52
|
'$wrapperSmall &': {
|
|
53
|
-
width: _theme.default.
|
|
54
|
-
height: _theme.default.
|
|
53
|
+
width: _theme.default.checkboxSmallIconSize,
|
|
54
|
+
height: _theme.default.checkboxSmallIconSize
|
|
55
55
|
},
|
|
56
56
|
'$wrapperLarge &': {
|
|
57
|
-
width: _theme.default.
|
|
58
|
-
height: _theme.default.
|
|
57
|
+
width: _theme.default.checkboxLargeIconSize,
|
|
58
|
+
height: _theme.default.checkboxLargeIconSize
|
|
59
59
|
},
|
|
60
60
|
verticalAlign: 'middle',
|
|
61
61
|
'&::before': {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"date-picker.d.ts","sourceRoot":"","sources":["date-picker.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAGxC,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAGjD,MAAM,MAAM,mBAAmB,GAAG,MAAM,iBAAiB,CAAC;AAgE1D,QAAA,MAAM,eAAe,EAAE,QAAQ,CAAC,mBAAmB,
|
|
1
|
+
{"version":3,"file":"date-picker.d.ts","sourceRoot":"","sources":["date-picker.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAGxC,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAGjD,MAAM,MAAM,mBAAmB,GAAG,MAAM,iBAAiB,CAAC;AAgE1D,QAAA,MAAM,eAAe,EAAE,QAAQ,CAAC,mBAAmB,CAgrBlD,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
|
@@ -158,6 +158,12 @@ var datePickerStyle = _objectSpread(_objectSpread(_objectSpread({
|
|
|
158
158
|
width: '100%',
|
|
159
159
|
'&::placeholder': {
|
|
160
160
|
color: _theme.default.inputPlaceholderColor
|
|
161
|
+
},
|
|
162
|
+
'$wrapperDisabled &': {
|
|
163
|
+
color: _theme.default.inputDisabledFontColor,
|
|
164
|
+
'&::placeholder': {
|
|
165
|
+
color: _theme.default.inputDisabledPlaceholderColor
|
|
166
|
+
}
|
|
161
167
|
}
|
|
162
168
|
}
|
|
163
169
|
},
|
|
@@ -232,7 +238,7 @@ var datePickerStyle = _objectSpread(_objectSpread(_objectSpread({
|
|
|
232
238
|
},
|
|
233
239
|
pickerWrapper: {
|
|
234
240
|
position: 'absolute',
|
|
235
|
-
backgroundColor: _theme.default.
|
|
241
|
+
backgroundColor: _theme.default.backgroundPopup,
|
|
236
242
|
boxShadow: _theme.default.datePickerPanelShadow,
|
|
237
243
|
borderRadius: _theme.default.datePickerPanelRadius,
|
|
238
244
|
border: "1px solid ".concat(_theme.default.datePickerPanelBorder),
|
|
@@ -467,7 +473,7 @@ var datePickerStyle = _objectSpread(_objectSpread(_objectSpread({
|
|
|
467
473
|
pickerCell: {
|
|
468
474
|
color: _theme.default.datePickerCellColor,
|
|
469
475
|
'&$pickerCellBound': {
|
|
470
|
-
color: _theme.default.
|
|
476
|
+
color: _theme.default.datePickerCellDisabledColor
|
|
471
477
|
},
|
|
472
478
|
'&:not($pickerCellDisabled):not($pickerCellActive):hover': {
|
|
473
479
|
'& $pickerCellContent > span': {
|
|
@@ -646,14 +652,18 @@ var datePickerStyle = _objectSpread(_objectSpread(_objectSpread({
|
|
|
646
652
|
flex: '1',
|
|
647
653
|
position: 'relative',
|
|
648
654
|
borderRadius: _theme.default.datePickerTimeItemBorderRadius,
|
|
655
|
+
color: _theme.default.datePickerCellColor,
|
|
656
|
+
fontWeight: _theme.default.datePickerPanelFontWeight,
|
|
657
|
+
fontSize: _theme.default.datePickerPanelBodyFontSize,
|
|
649
658
|
'&:not($timeItemDisabled):hover': {
|
|
650
|
-
|
|
659
|
+
color: _theme.default.datePickerCellHoverColor,
|
|
660
|
+
backgroundColor: _theme.default.datePickerCellHoverBackgroundColor
|
|
651
661
|
},
|
|
652
662
|
'$timeItemDisabled&': {
|
|
653
663
|
color: _theme.default.datePickerTimeItemDisabledColor,
|
|
654
664
|
cursor: 'not-allowed'
|
|
655
665
|
},
|
|
656
|
-
'$timeItemActive
|
|
666
|
+
'$timeItemActive&, $timeItemActive&:hover': {
|
|
657
667
|
color: _theme.default.datePickerTimeItemActiveColor,
|
|
658
668
|
backgroundColor: _theme.default.datePickerTimeItemActiveBackgroundColor
|
|
659
669
|
}
|
|
@@ -686,6 +696,7 @@ var datePickerStyle = _objectSpread(_objectSpread(_objectSpread({
|
|
|
686
696
|
alignItems: 'center',
|
|
687
697
|
lineHeight: _theme.default.lineHeightDynamic,
|
|
688
698
|
'& > span': {
|
|
699
|
+
color: _theme.default.datePickerCellColor,
|
|
689
700
|
lineHeight: '0',
|
|
690
701
|
marginRight: '8px',
|
|
691
702
|
'& > svg': {
|
|
@@ -705,7 +716,7 @@ var datePickerStyle = _objectSpread(_objectSpread(_objectSpread({
|
|
|
705
716
|
},
|
|
706
717
|
transformOrigin: 'bottom',
|
|
707
718
|
animation: '$scale-y-top 0.2s ease-in-out forwards',
|
|
708
|
-
backgroundColor: _theme.default.
|
|
719
|
+
backgroundColor: _theme.default.backgroundPopup,
|
|
709
720
|
boxShadow: _theme.default.datePickerPanelShadow,
|
|
710
721
|
display: 'none'
|
|
711
722
|
},
|
|
@@ -13,18 +13,18 @@ var descriptionsStyle = {
|
|
|
13
13
|
},
|
|
14
14
|
small: {
|
|
15
15
|
'& $title': {
|
|
16
|
-
fontSize: _theme.default.
|
|
16
|
+
fontSize: _theme.default.descriptionsTitleSmallFontSize
|
|
17
17
|
},
|
|
18
18
|
'& $table': {
|
|
19
|
-
fontSize: _theme.default.
|
|
19
|
+
fontSize: _theme.default.descriptionsSmallFontSize
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
large: {
|
|
23
23
|
'& $title': {
|
|
24
|
-
fontSize: _theme.default.
|
|
24
|
+
fontSize: _theme.default.descriptionsTitleLargeFontSize
|
|
25
25
|
},
|
|
26
26
|
'& $table': {
|
|
27
|
-
fontSize: _theme.default.
|
|
27
|
+
fontSize: _theme.default.descriptionsLargeFontSize
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
header: {
|
|
@@ -32,7 +32,7 @@ var descriptionsStyle = {
|
|
|
32
32
|
alignItems: 'center',
|
|
33
33
|
justifyContent: 'space-between',
|
|
34
34
|
paddingBottom: _theme.default.descriptionsTitlePaddingBottom,
|
|
35
|
-
fontSize: _theme.default.
|
|
35
|
+
fontSize: _theme.default.descriptionsTitleDefaultFontSize
|
|
36
36
|
},
|
|
37
37
|
title: {
|
|
38
38
|
lineHeight: _theme.default.lineHeightDynamic,
|
|
@@ -45,7 +45,7 @@ var descriptionsStyle = {
|
|
|
45
45
|
lineHeight: _theme.default.lineHeightDynamic
|
|
46
46
|
},
|
|
47
47
|
body: {
|
|
48
|
-
fontSize: _theme.default.
|
|
48
|
+
fontSize: _theme.default.descriptionsDefaultFontSize,
|
|
49
49
|
overflow: 'hidden'
|
|
50
50
|
},
|
|
51
51
|
table: {
|
package/cjs/dropdown/dropdown.js
CHANGED
|
@@ -30,7 +30,7 @@ var dropdown = {
|
|
|
30
30
|
border: "".concat(_theme.default.dropdownListBorderWidth, " solid ").concat(_theme.default.dropdownListBorderColor),
|
|
31
31
|
borderRadius: _theme.default.dropdownListBorderRadius,
|
|
32
32
|
padding: "".concat(_theme.default.dropdownListPaddingY, " ").concat(_theme.default.dropdownListPaddingX),
|
|
33
|
-
background: _theme.default.
|
|
33
|
+
background: _theme.default.backgroundPopup,
|
|
34
34
|
boxShadow: _theme.default.dropdownListBoxShadow,
|
|
35
35
|
width: 'max-content',
|
|
36
36
|
boxSizing: 'border-box',
|
|
@@ -179,16 +179,16 @@ var dropdown = {
|
|
|
179
179
|
},
|
|
180
180
|
itemDisabled: {},
|
|
181
181
|
optionGroup: {
|
|
182
|
-
padding: "calc(".concat(_theme.default.dropdownOptionGroupPaddingTop, " - 4px) ").concat(_theme.default.
|
|
182
|
+
padding: "calc(".concat(_theme.default.dropdownOptionGroupPaddingTop, " - 4px) ").concat(_theme.default.dropdownOptionPaddingX, " ").concat(_theme.default.dropdownOptionGroupPaddingBottom),
|
|
183
183
|
fontSize: _theme.default.dropdownOptionGroupFontSize,
|
|
184
184
|
fontWeight: _theme.default.dropdownOptionGroupFontWeight,
|
|
185
185
|
color: _theme.default.dropdownOptionGroupFontColor,
|
|
186
186
|
lineHeight: _theme.default.lineHeightDynamic,
|
|
187
187
|
'$listSmall &': {
|
|
188
|
-
padding: "".concat(_theme.default.dropdownOptionGroupSmallTop, " ").concat(_theme.default.
|
|
188
|
+
padding: "".concat(_theme.default.dropdownOptionGroupSmallTop, " ").concat(_theme.default.dropdownOptionSmallPaddingX, " 0")
|
|
189
189
|
},
|
|
190
190
|
'$listLarge &': {
|
|
191
|
-
padding: "".concat(_theme.default.dropdownOptionGroupLargeTop, " ").concat(_theme.default.
|
|
191
|
+
padding: "".concat(_theme.default.dropdownOptionGroupLargeTop, " ").concat(_theme.default.dropdownOptionLargePaddingX, " ").concat(_theme.default.dropdownOptionGroupLargeBottom)
|
|
192
192
|
}
|
|
193
193
|
},
|
|
194
194
|
optionDivider: {
|
|
@@ -42,7 +42,7 @@ var _default = exports.default = function _default(name) {
|
|
|
42
42
|
borderRadius: 0,
|
|
43
43
|
boxShadow: 'none',
|
|
44
44
|
backgroundColor: 'transparent',
|
|
45
|
-
flex: 1,
|
|
45
|
+
flex: '1 1 auto',
|
|
46
46
|
minWidth: 0
|
|
47
47
|
},
|
|
48
48
|
'[data-soui-role="input-group"]:not([data-soui-border="false"]) [data-soui-input-border] + &&&': {
|
package/cjs/input/input.js
CHANGED
|
@@ -262,7 +262,7 @@ var input = _objectSpread(_objectSpread(_objectSpread({
|
|
|
262
262
|
boxSizing: 'border-box',
|
|
263
263
|
cursor: 'pointer',
|
|
264
264
|
width: '18px',
|
|
265
|
-
borderLeft: "
|
|
265
|
+
borderLeft: "".concat(_theme.default.inputBorderWidth, " solid ").concat(_theme.default.inputBorderColor),
|
|
266
266
|
lineHeight: '1',
|
|
267
267
|
color: _theme.default.inputIconColor,
|
|
268
268
|
'&:hover': {
|
|
@@ -271,7 +271,7 @@ var input = _objectSpread(_objectSpread(_objectSpread({
|
|
|
271
271
|
}
|
|
272
272
|
},
|
|
273
273
|
'&:first-child': {
|
|
274
|
-
borderBottom: "
|
|
274
|
+
borderBottom: "".concat(_theme.default.inputBorderWidth, " solid ").concat(_theme.default.inputBorderColor)
|
|
275
275
|
},
|
|
276
276
|
'& svg': {
|
|
277
277
|
width: _theme.default.inputFontSize,
|
package/cjs/menu/menu.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"menu.d.ts","sourceRoot":"","sources":["menu.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,MAAM,MAAM,aAAa,GAAG,MAAM,WAAW,CAAC;AAM9C,QAAA,MAAM,SAAS,EAAE,QAAQ,CAAC,aAAa,
|
|
1
|
+
{"version":3,"file":"menu.d.ts","sourceRoot":"","sources":["menu.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,MAAM,MAAM,aAAa,GAAG,MAAM,WAAW,CAAC;AAM9C,QAAA,MAAM,SAAS,EAAE,QAAQ,CAAC,aAAa,CAojBtC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
package/cjs/menu/menu.js
CHANGED
|
@@ -203,8 +203,11 @@ var menuStyle = {
|
|
|
203
203
|
}
|
|
204
204
|
},
|
|
205
205
|
// 一级菜单展不展开都是fill-9,一级展开后的子级都是fill-10
|
|
206
|
-
'[data-soui-theme=dark] $root > $item > &': {
|
|
207
|
-
backgroundColor: _theme.default.menuDarkItemBackgroundColor
|
|
206
|
+
'[data-soui-theme=dark] $root > $item:not($itemActive):not($itemDisabled) > &': {
|
|
207
|
+
backgroundColor: _theme.default.menuDarkItemBackgroundColor,
|
|
208
|
+
'&:hover': {
|
|
209
|
+
backgroundColor: _theme.default.menuDarkItemHoverBackgroundColor
|
|
210
|
+
}
|
|
208
211
|
},
|
|
209
212
|
'[data-soui-theme=dark] &': {
|
|
210
213
|
color: _theme.default.menuDarkFontColor,
|
package/cjs/radio/radio.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"radio.d.ts","sourceRoot":"","sources":["radio.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAG5C,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,MAAM,YAAY,
|
|
1
|
+
{"version":3,"file":"radio.d.ts","sourceRoot":"","sources":["radio.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAG5C,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,MAAM,YAAY,CAqL5C,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/cjs/radio/radio.js
CHANGED
|
@@ -51,7 +51,10 @@ var radioStyle = _objectSpread(_objectSpread({}, _common.animations), {}, {
|
|
|
51
51
|
marginTop: _theme.default.radioIndicatorMarginTop
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
|
-
wrapperChecked: {
|
|
54
|
+
wrapperChecked: {
|
|
55
|
+
'--button-before-line-height': '100%',
|
|
56
|
+
'--button-before-line-top': 0
|
|
57
|
+
},
|
|
55
58
|
wrapperDisabled: {
|
|
56
59
|
cursor: 'not-allowed'
|
|
57
60
|
},
|
|
@@ -59,18 +62,18 @@ var radioStyle = _objectSpread(_objectSpread({}, _common.animations), {}, {
|
|
|
59
62
|
display: 'block',
|
|
60
63
|
position: 'relative',
|
|
61
64
|
boxSizing: 'border-box',
|
|
62
|
-
width: _theme.default.
|
|
63
|
-
minWidth: _theme.default.
|
|
64
|
-
height: _theme.default.
|
|
65
|
+
width: _theme.default.radioIconWidth,
|
|
66
|
+
minWidth: _theme.default.radioIconWidth,
|
|
67
|
+
height: _theme.default.radioIconWidth,
|
|
65
68
|
'$wrapperSmall &': {
|
|
66
|
-
width: _theme.default.
|
|
67
|
-
minWidth: _theme.default.
|
|
68
|
-
height: _theme.default.
|
|
69
|
+
width: _theme.default.radioSmallIconWidth,
|
|
70
|
+
minWidth: _theme.default.radioSmallIconWidth,
|
|
71
|
+
height: _theme.default.radioSmallIconWidth
|
|
69
72
|
},
|
|
70
73
|
'$wrapperLarge &': {
|
|
71
|
-
width: _theme.default.
|
|
72
|
-
minWidth: _theme.default.
|
|
73
|
-
height: _theme.default.
|
|
74
|
+
width: _theme.default.radioLargeIconWidth,
|
|
75
|
+
minWidth: _theme.default.radioLargeIconWidth,
|
|
76
|
+
height: _theme.default.radioLargeIconWidth
|
|
74
77
|
},
|
|
75
78
|
marginRight: _theme.default.radioIconGap,
|
|
76
79
|
verticalAlign: 'middle',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"select.d.ts","sourceRoot":"","sources":["select.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAGxC,MAAM,MAAM,eAAe,GAAG,MAAM,aAAa,CAAC;AAwDlD,QAAA,MAAM,WAAW,EAAE,QAAQ,CAAC,eAAe,
|
|
1
|
+
{"version":3,"file":"select.d.ts","sourceRoot":"","sources":["select.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAGxC,MAAM,MAAM,eAAe,GAAG,MAAM,aAAa,CAAC;AAwDlD,QAAA,MAAM,WAAW,EAAE,QAAQ,CAAC,eAAe,CAqmB1C,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
package/cjs/select/select.js
CHANGED
|
@@ -286,7 +286,7 @@ var selectStyle = _objectSpread(_objectSpread({
|
|
|
286
286
|
pickerWrapper: {
|
|
287
287
|
position: 'absolute',
|
|
288
288
|
overflow: 'hidden',
|
|
289
|
-
backgroundColor: _theme.default.
|
|
289
|
+
backgroundColor: _theme.default.backgroundPopup,
|
|
290
290
|
boxShadow: _theme.default.selectPanelShadow,
|
|
291
291
|
borderRadius: _theme.default.selectPanelRadius,
|
|
292
292
|
transformOrigin: '0 0',
|
|
@@ -304,19 +304,18 @@ var selectStyle = _objectSpread(_objectSpread({
|
|
|
304
304
|
fontSize: _theme.default.selectSmallFontSize
|
|
305
305
|
},
|
|
306
306
|
'& $optionGroupTitle': {
|
|
307
|
-
padding: "calc(".concat(_theme.default.selectFontSize, " - 10px) ").concat(_theme.default.
|
|
307
|
+
padding: "calc(".concat(_theme.default.selectFontSize, " - 10px) calc(").concat(_theme.default.selectSmallOptionInnerPaddingX, " + ").concat(_theme.default.selectOptionPaddingX, ") 0")
|
|
308
308
|
}
|
|
309
309
|
},
|
|
310
310
|
pickerLarge: {
|
|
311
311
|
'& $optionInner': {
|
|
312
|
-
// padding: `${token.selectLargeOptionInnerPaddingY} ${token.selectLargeOptionInnerPaddingX}`,
|
|
313
312
|
paddingTop: _theme.default.selectLargeOptionInnerPaddingY,
|
|
314
313
|
paddingBottom: _theme.default.selectLargeOptionInnerPaddingY,
|
|
315
314
|
paddingLeft: _theme.default.selectLargeOptionInnerPaddingX,
|
|
316
315
|
fontSize: _theme.default.selectLargeFontSize
|
|
317
316
|
},
|
|
318
317
|
'& $optionGroupTitle': {
|
|
319
|
-
padding: "".concat(_theme.default.selectFontSize, " calc(").concat(_theme.default.
|
|
318
|
+
padding: "".concat(_theme.default.selectFontSize, " calc(").concat(_theme.default.selectLargeOptionInnerPaddingX, " + ").concat(_theme.default.selectOptionPaddingX, ") ").concat(_theme.default.selectGroupTitleLargeBottom)
|
|
320
319
|
}
|
|
321
320
|
},
|
|
322
321
|
iconWrapper: {
|
|
@@ -335,7 +334,7 @@ var selectStyle = _objectSpread(_objectSpread({
|
|
|
335
334
|
color: _theme.default.inputClearColor,
|
|
336
335
|
verticalAlign: 'middle',
|
|
337
336
|
'&:hover': {
|
|
338
|
-
color: _theme.default.
|
|
337
|
+
color: _theme.default.inputHoverClearColor
|
|
339
338
|
},
|
|
340
339
|
'$wrapperSmall &': {
|
|
341
340
|
width: _theme.default.inputSmallFontSize
|
|
@@ -349,7 +348,7 @@ var selectStyle = _objectSpread(_objectSpread({
|
|
|
349
348
|
verticalAlign: 'middle',
|
|
350
349
|
width: _theme.default.inputFontSize,
|
|
351
350
|
lineHeight: 0,
|
|
352
|
-
color: _theme.default.
|
|
351
|
+
color: _theme.default.inputIconColor,
|
|
353
352
|
transition: 'transform 0.3s'
|
|
354
353
|
},
|
|
355
354
|
arrowIconOpen: {
|
|
@@ -403,7 +402,15 @@ var selectStyle = _objectSpread(_objectSpread({
|
|
|
403
402
|
position: 'absolute',
|
|
404
403
|
display: 'inline-flex',
|
|
405
404
|
width: _theme.default.selectFontSize,
|
|
406
|
-
fontSize: _theme.default.selectFontSize
|
|
405
|
+
fontSize: _theme.default.selectFontSize,
|
|
406
|
+
'$pickerSmall &': {
|
|
407
|
+
width: _theme.default.selectSmallFontSize,
|
|
408
|
+
fontSize: _theme.default.selectSmallFontSize
|
|
409
|
+
},
|
|
410
|
+
'$pickerLarge &': {
|
|
411
|
+
width: _theme.default.selectLargeFontSize,
|
|
412
|
+
fontSize: _theme.default.selectLargeFontSize
|
|
413
|
+
}
|
|
407
414
|
},
|
|
408
415
|
moreIcon: {},
|
|
409
416
|
hideTag: {},
|
|
@@ -494,13 +501,13 @@ var selectStyle = _objectSpread(_objectSpread({
|
|
|
494
501
|
// not disabled
|
|
495
502
|
'&:not($optionDisabled)': {
|
|
496
503
|
cursor: 'pointer'
|
|
504
|
+
},
|
|
505
|
+
'&:first-child': {
|
|
506
|
+
paddingTop: 0
|
|
507
|
+
},
|
|
508
|
+
'&:last-child': {
|
|
509
|
+
paddingBottom: 0
|
|
497
510
|
}
|
|
498
|
-
// hover
|
|
499
|
-
// '&:hover': {
|
|
500
|
-
// '& $optionInner': {
|
|
501
|
-
// backgroundColor: token.selectOptionHoverBackgroundColor,
|
|
502
|
-
// },
|
|
503
|
-
// },
|
|
504
511
|
},
|
|
505
512
|
optionInner: {
|
|
506
513
|
position: 'relative',
|
|
@@ -546,7 +553,7 @@ var selectStyle = _objectSpread(_objectSpread({
|
|
|
546
553
|
optionGroupTitle: {
|
|
547
554
|
fontSize: "var(--group-font-size, ".concat(_theme.default.selectGroupTitleFontSize, ")"),
|
|
548
555
|
lineHeight: _theme.default.lineHeightDynamic,
|
|
549
|
-
padding: "calc(".concat(_theme.default.selectFontSize, " - 2px) ").concat(_theme.default.
|
|
556
|
+
padding: "calc(".concat(_theme.default.selectFontSize, " - 2px) calc(").concat(_theme.default.selectOptionInnerPaddingX, " + ").concat(_theme.default.selectOptionPaddingX, ") ").concat(_theme.default.selectGroupTitlePaddingBottom),
|
|
550
557
|
color: _theme.default.selectGroupTitleFontColor,
|
|
551
558
|
fontWeight: _theme.default.selectGroupTitleFontWeight
|
|
552
559
|
},
|
|
@@ -559,7 +566,7 @@ var selectStyle = _objectSpread(_objectSpread({
|
|
|
559
566
|
'& > $columnsCheckbox': {
|
|
560
567
|
padding: 0,
|
|
561
568
|
marginRight: 0,
|
|
562
|
-
marginLeft: _theme.default.
|
|
569
|
+
marginLeft: _theme.default.selectOptionInnerPaddingX,
|
|
563
570
|
width: 'auto'
|
|
564
571
|
},
|
|
565
572
|
'$pickerSmall &': {
|
|
@@ -588,7 +595,7 @@ var selectStyle = _objectSpread(_objectSpread({
|
|
|
588
595
|
padding: "0 ".concat(_theme.default.selectOptionPaddingX),
|
|
589
596
|
'& $optionGroupTitle': {
|
|
590
597
|
padding: 0,
|
|
591
|
-
marginLeft: _theme.default.
|
|
598
|
+
marginLeft: _theme.default.selectOptionInnerPaddingX
|
|
592
599
|
},
|
|
593
600
|
'$pickerSmall &': {
|
|
594
601
|
'& $optionGroupTitle': {
|
|
@@ -623,8 +630,8 @@ var selectStyle = _objectSpread(_objectSpread({
|
|
|
623
630
|
columnsRadio: {
|
|
624
631
|
width: '100%',
|
|
625
632
|
height: '100%',
|
|
626
|
-
paddingLeft: _theme.default.
|
|
627
|
-
paddingRight: _theme.default.
|
|
633
|
+
paddingLeft: _theme.default.selectOptionInnerPaddingX,
|
|
634
|
+
paddingRight: _theme.default.selectOptionInnerPaddingX,
|
|
628
635
|
marginLeft: _theme.default.selectColumnOptionMargin,
|
|
629
636
|
'& :last-child': {
|
|
630
637
|
flex: 1,
|
|
@@ -636,8 +643,8 @@ var selectStyle = _objectSpread(_objectSpread({
|
|
|
636
643
|
columnsCheckbox: {
|
|
637
644
|
width: '100%',
|
|
638
645
|
height: '100%',
|
|
639
|
-
paddingLeft: _theme.default.
|
|
640
|
-
paddingRight: _theme.default.
|
|
646
|
+
paddingLeft: _theme.default.selectOptionInnerPaddingX,
|
|
647
|
+
paddingRight: _theme.default.selectOptionInnerPaddingX,
|
|
641
648
|
marginLeft: 0,
|
|
642
649
|
'$pickerSmall &': {
|
|
643
650
|
paddingLeft: _theme.default.selectSmallColumnPadding,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"switch.d.ts","sourceRoot":"","sources":["switch.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAaxC,QAAA,MAAM,WAAW,EAAE,QAAQ,CAAC,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"switch.d.ts","sourceRoot":"","sources":["switch.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAaxC,QAAA,MAAM,WAAW,EAAE,QAAQ,CAAC,MAAM,aAAa,CAgM9C,CAAC;AAEF,eAAe,WAAW,CAAC"}
|