@sheinx/shineout-style 3.5.7 → 3.5.8-beta.10
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 +8 -6
- package/cjs/breadcrumb/breadcrumb.d.ts.map +1 -1
- package/cjs/breadcrumb/breadcrumb.js +3 -0
- package/cjs/cascader/cascader.d.ts.map +1 -1
- package/cjs/cascader/cascader.js +4 -1
- package/cjs/descriptions/descriptions.d.ts.map +1 -1
- package/cjs/descriptions/descriptions.js +5 -0
- package/cjs/dropdown/dropdown.d.ts.map +1 -1
- package/cjs/dropdown/dropdown.js +6 -1
- package/cjs/image/image.d.ts.map +1 -1
- package/cjs/image/image.js +3 -0
- package/cjs/inner-title/inner-title.d.ts.map +1 -1
- package/cjs/inner-title/inner-title.js +60 -4
- package/cjs/link/link.d.ts.map +1 -1
- package/cjs/link/link.js +2 -0
- package/cjs/modal/modal.js +2 -2
- package/cjs/popover/popover.d.ts.map +1 -1
- package/cjs/popover/popover.js +0 -1
- package/cjs/progress/progress.d.ts.map +1 -1
- package/cjs/progress/progress.js +6 -4
- package/cjs/table/table.d.ts.map +1 -1
- package/cjs/table/table.js +4 -2
- 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 +8 -6
- package/esm/breadcrumb/breadcrumb.d.ts.map +1 -1
- package/esm/breadcrumb/breadcrumb.js +3 -0
- package/esm/cascader/cascader.d.ts.map +1 -1
- package/esm/cascader/cascader.js +4 -1
- package/esm/descriptions/descriptions.d.ts.map +1 -1
- package/esm/descriptions/descriptions.js +5 -0
- package/esm/dropdown/dropdown.d.ts.map +1 -1
- package/esm/dropdown/dropdown.js +6 -1
- package/esm/image/image.d.ts.map +1 -1
- package/esm/image/image.js +3 -0
- package/esm/inner-title/inner-title.d.ts.map +1 -1
- package/esm/inner-title/inner-title.js +60 -4
- package/esm/link/link.d.ts.map +1 -1
- package/esm/link/link.js +2 -0
- package/esm/modal/modal.js +2 -2
- package/esm/popover/popover.d.ts.map +1 -1
- package/esm/popover/popover.js +0 -1
- package/esm/progress/progress.d.ts.map +1 -1
- package/esm/progress/progress.js +6 -4
- package/esm/table/table.d.ts.map +1 -1
- package/esm/table/table.js +4 -2
- 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/cjs/alert/alert.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alert.d.ts","sourceRoot":"","sources":["alert.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAE5C,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,MAAM,YAAY,
|
|
1
|
+
{"version":3,"file":"alert.d.ts","sourceRoot":"","sources":["alert.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAE5C,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,MAAM,YAAY,CAgK5C,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/cjs/alert/alert.js
CHANGED
|
@@ -63,16 +63,16 @@ var alertStyle = {
|
|
|
63
63
|
},
|
|
64
64
|
widthTitle: {
|
|
65
65
|
'& $icon': {
|
|
66
|
+
fontSize: _theme.default.alertTitleFontSize,
|
|
66
67
|
// marginBottom: Token.alertNearlyMargin,
|
|
67
68
|
width: _theme.default.alertTitleIconWidth,
|
|
68
|
-
height: _theme.default.
|
|
69
|
+
height: _theme.default.lineHeightDynamic
|
|
69
70
|
},
|
|
70
71
|
'& $title': {
|
|
71
72
|
lineHeight: _theme.default.lineHeightDynamic
|
|
72
73
|
},
|
|
73
|
-
'& $
|
|
74
|
-
|
|
75
|
-
marginTop: 2
|
|
74
|
+
'& $closeWrapper': {
|
|
75
|
+
fontSize: _theme.default.alertTitleFontSize
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
78
|
title: {
|
|
@@ -97,7 +97,7 @@ var alertStyle = {
|
|
|
97
97
|
display: 'flex',
|
|
98
98
|
alignItems: 'center',
|
|
99
99
|
justifyContent: 'center',
|
|
100
|
-
marginLeft:
|
|
100
|
+
// marginLeft: Token.alertNearlyMargin,
|
|
101
101
|
'&:hover': {
|
|
102
102
|
color: _theme.default.alertCloseHoverColor
|
|
103
103
|
},
|
|
@@ -106,10 +106,12 @@ var alertStyle = {
|
|
|
106
106
|
}
|
|
107
107
|
},
|
|
108
108
|
closeWrapper: {
|
|
109
|
+
fontSize: _theme.default.alertFontSize,
|
|
109
110
|
width: _theme.default.alertFontSize,
|
|
110
111
|
height: _theme.default.lineHeightDynamic,
|
|
111
112
|
display: 'flex',
|
|
112
|
-
alignItems: 'center'
|
|
113
|
+
alignItems: 'center',
|
|
114
|
+
marginLeft: _theme.default.alertNearlyMargin
|
|
113
115
|
},
|
|
114
116
|
content: {
|
|
115
117
|
flex: '1 1 0',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"breadcrumb.d.ts","sourceRoot":"","sources":["breadcrumb.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEjD,MAAM,MAAM,mBAAmB,GAAG,MAAM,iBAAiB,CAAC;AAE1D,QAAA,MAAM,eAAe,EAAE,QAAQ,CAAC,mBAAmB,
|
|
1
|
+
{"version":3,"file":"breadcrumb.d.ts","sourceRoot":"","sources":["breadcrumb.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEjD,MAAM,MAAM,mBAAmB,GAAG,MAAM,iBAAiB,CAAC;AAE1D,QAAA,MAAM,eAAe,EAAE,QAAQ,CAAC,mBAAmB,CAuGlD,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
|
@@ -45,6 +45,9 @@ var breadcrumbStyle = {
|
|
|
45
45
|
color: _theme.default.breadcrumbDefaultLinkColor,
|
|
46
46
|
'&:hover': {
|
|
47
47
|
color: _theme.default.breadcrumbDefaultLinkHoverColor
|
|
48
|
+
},
|
|
49
|
+
'&:active': {
|
|
50
|
+
color: _theme.default.breadcrumbDefaultLinkActiveColor
|
|
48
51
|
}
|
|
49
52
|
}
|
|
50
53
|
// '&:not(a) svg': {
|
|
@@ -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;AAuDtD,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;AAuDtD,QAAA,MAAM,aAAa,EAAE,QAAQ,CAAC,iBAAiB,CAie9C,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
package/cjs/cascader/cascader.js
CHANGED
|
@@ -156,7 +156,7 @@ var cascaderStyle = _objectSpread(_objectSpread({
|
|
|
156
156
|
}
|
|
157
157
|
},
|
|
158
158
|
wrapperDisabled: _objectSpread(_objectSpread({}, wrapperDisabled), {}, {
|
|
159
|
-
'& $icon': {
|
|
159
|
+
'& $icon, & $arrowIcon': {
|
|
160
160
|
color: _theme.default.cascaderDisabledFontColor
|
|
161
161
|
}
|
|
162
162
|
})
|
|
@@ -534,6 +534,9 @@ var cascaderStyle = _objectSpread(_objectSpread({
|
|
|
534
534
|
cursor: 'not-allowed',
|
|
535
535
|
color: _theme.default.cascaderOptionDisabledColor,
|
|
536
536
|
backgroundColor: _theme.default.cascaderOptionDisabledBackgroundColor
|
|
537
|
+
},
|
|
538
|
+
'& $optionIcon': {
|
|
539
|
+
color: _theme.default.cascaderOptionDisabledColor
|
|
537
540
|
}
|
|
538
541
|
}
|
|
539
542
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"descriptions.d.ts","sourceRoot":"","sources":["descriptions.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAC;AAEnD,MAAM,MAAM,qBAAqB,GAAG,MAAM,mBAAmB,CAAC;AAE9D,QAAA,MAAM,iBAAiB,EAAE,QAAQ,CAAC,qBAAqB,
|
|
1
|
+
{"version":3,"file":"descriptions.d.ts","sourceRoot":"","sources":["descriptions.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAC;AAEnD,MAAM,MAAM,qBAAqB,GAAG,MAAM,mBAAmB,CAAC;AAE9D,QAAA,MAAM,iBAAiB,EAAE,QAAQ,CAAC,qBAAqB,CA0KtD,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dropdown.d.ts","sourceRoot":"","sources":["dropdown.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,QAAA,MAAM,QAAQ,EAAE,QAAQ,CAAC,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"dropdown.d.ts","sourceRoot":"","sources":["dropdown.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,QAAA,MAAM,QAAQ,EAAE,QAAQ,CAAC,MAAM,eAAe,CAgM7C,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
package/cjs/dropdown/dropdown.js
CHANGED
|
@@ -134,7 +134,12 @@ var dropdown = {
|
|
|
134
134
|
display: 'flex'
|
|
135
135
|
}
|
|
136
136
|
},
|
|
137
|
-
itemWrapper: {
|
|
137
|
+
itemWrapper: {
|
|
138
|
+
marginBottom: 2,
|
|
139
|
+
'&:last-child': {
|
|
140
|
+
marginBottom: 0
|
|
141
|
+
}
|
|
142
|
+
},
|
|
138
143
|
item: {
|
|
139
144
|
display: 'block',
|
|
140
145
|
borderRadius: _theme.default.dropdownOptionBorderRadius,
|
package/cjs/image/image.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"image.d.ts","sourceRoot":"","sources":["image.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAE5C,KAAK,UAAU,GAAG,MAAM,YAAY,CAAC;AA2DrC,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,UAAU,
|
|
1
|
+
{"version":3,"file":"image.d.ts","sourceRoot":"","sources":["image.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAE5C,KAAK,UAAU,GAAG,MAAM,YAAY,CAAC;AA2DrC,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,UAAU,CAuZpC,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/cjs/image/image.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inner-title.d.ts","sourceRoot":"","sources":["inner-title.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"inner-title.d.ts","sourceRoot":"","sources":["inner-title.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAsEjD,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,MAAM,iBAAiB,CA4FjD,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -17,18 +17,62 @@ var moveTime = '120ms';
|
|
|
17
17
|
var animation = {
|
|
18
18
|
'@keyframes movein': {
|
|
19
19
|
from: {
|
|
20
|
-
top: 0
|
|
20
|
+
top: 0,
|
|
21
|
+
fontSize: _theme.default.inputInnerFontSize
|
|
21
22
|
},
|
|
22
23
|
to: {
|
|
23
|
-
top: moveOffset
|
|
24
|
+
top: moveOffset,
|
|
25
|
+
fontSize: _theme.default.inputInnerTopFontSize
|
|
24
26
|
}
|
|
25
27
|
},
|
|
26
28
|
'@keyframes moveout': {
|
|
27
29
|
from: {
|
|
28
|
-
top: moveOffset
|
|
30
|
+
top: moveOffset,
|
|
31
|
+
fontSize: _theme.default.inputInnerTopFontSize
|
|
29
32
|
},
|
|
30
33
|
to: {
|
|
31
|
-
top: 0
|
|
34
|
+
top: 0,
|
|
35
|
+
fontSize: _theme.default.inputInnerFontSize
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
'@keyframes moveinSmall': {
|
|
39
|
+
from: {
|
|
40
|
+
top: 0,
|
|
41
|
+
fontSize: _theme.default.inputInnerSmallFontSize
|
|
42
|
+
},
|
|
43
|
+
to: {
|
|
44
|
+
top: moveOffset,
|
|
45
|
+
fontSize: _theme.default.inputInnerTopSmallFontSize
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
'@keyframes moveoutSmall': {
|
|
49
|
+
from: {
|
|
50
|
+
top: moveOffset,
|
|
51
|
+
fontSize: _theme.default.inputInnerTopSmallFontSize
|
|
52
|
+
},
|
|
53
|
+
to: {
|
|
54
|
+
top: 0,
|
|
55
|
+
fontSize: _theme.default.inputInnerSmallFontSize
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
'@keyframes moveinLarge': {
|
|
59
|
+
from: {
|
|
60
|
+
top: 0,
|
|
61
|
+
fontSize: _theme.default.inputInnerLargeFontSize
|
|
62
|
+
},
|
|
63
|
+
to: {
|
|
64
|
+
top: moveOffset,
|
|
65
|
+
fontSize: _theme.default.inputInnerTopLargeFontSize
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
'@keyframes moveoutLarge': {
|
|
69
|
+
from: {
|
|
70
|
+
top: moveOffset,
|
|
71
|
+
fontSize: _theme.default.inputInnerTopLargeFontSize
|
|
72
|
+
},
|
|
73
|
+
to: {
|
|
74
|
+
top: 0,
|
|
75
|
+
fontSize: _theme.default.inputInnerLargeFontSize
|
|
32
76
|
}
|
|
33
77
|
}
|
|
34
78
|
};
|
|
@@ -89,6 +133,18 @@ var innerTitle = _objectSpread(_objectSpread({
|
|
|
89
133
|
'$animation:not($wrapperOpen) & $title': {
|
|
90
134
|
animation: "$moveout ".concat(moveTime, " ease-in")
|
|
91
135
|
},
|
|
136
|
+
'$wrapperLarge$animation$wrapperOpen & $title': {
|
|
137
|
+
animation: "$moveinLarge ".concat(moveTime, " ease-in")
|
|
138
|
+
},
|
|
139
|
+
'$wrapperLarge$animation:not($wrapperOpen) & $title': {
|
|
140
|
+
animation: "$moveoutLarge ".concat(moveTime, " ease-in")
|
|
141
|
+
},
|
|
142
|
+
'$wrapperSmall$animation$wrapperOpen & $title': {
|
|
143
|
+
animation: "$moveinSmall ".concat(moveTime, " ease-in")
|
|
144
|
+
},
|
|
145
|
+
'$wrapperSmall$animation:not($wrapperOpen) & $title': {
|
|
146
|
+
animation: "$moveoutSmall ".concat(moveTime, " ease-in")
|
|
147
|
+
},
|
|
92
148
|
position: 'absolute',
|
|
93
149
|
top: '0',
|
|
94
150
|
left: '0',
|
package/cjs/link/link.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"link.d.ts","sourceRoot":"","sources":["link.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAA;AAE1C,MAAM,MAAM,aAAa,GAAG,MAAM,WAAW,CAAC;AAE9C,QAAA,MAAM,SAAS,EAAE,QAAQ,CAAC,aAAa,
|
|
1
|
+
{"version":3,"file":"link.d.ts","sourceRoot":"","sources":["link.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAA;AAE1C,MAAM,MAAM,aAAa,GAAG,MAAM,WAAW,CAAC;AAE9C,QAAA,MAAM,SAAS,EAAE,QAAQ,CAAC,aAAa,CAuGtC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
package/cjs/link/link.js
CHANGED
|
@@ -21,12 +21,14 @@ var linkStyle = {
|
|
|
21
21
|
},
|
|
22
22
|
underline: {
|
|
23
23
|
textDecoration: 'underline',
|
|
24
|
+
textUnderlineOffset: '2px',
|
|
24
25
|
'&:hover': {
|
|
25
26
|
textDecoration: 'underline'
|
|
26
27
|
}
|
|
27
28
|
},
|
|
28
29
|
underlineHover: {
|
|
29
30
|
textDecoration: 'none',
|
|
31
|
+
textUnderlineOffset: '2px',
|
|
30
32
|
'&:hover': {
|
|
31
33
|
textDecoration: 'underline'
|
|
32
34
|
}
|
package/cjs/modal/modal.js
CHANGED
|
@@ -413,11 +413,11 @@ var modalStyle = _objectSpread(_objectSpread({
|
|
|
413
413
|
'$wrapperDrawerRight &': {
|
|
414
414
|
left: '-4px',
|
|
415
415
|
right: 'auto',
|
|
416
|
-
cursor: '
|
|
416
|
+
cursor: 'col-resize'
|
|
417
417
|
}
|
|
418
418
|
},
|
|
419
419
|
resizeY: {
|
|
420
|
-
cursor: '
|
|
420
|
+
cursor: 'row-resize',
|
|
421
421
|
position: 'absolute',
|
|
422
422
|
left: 0,
|
|
423
423
|
right: 0,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"popover.d.ts","sourceRoot":"","sources":["popover.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAE9C,MAAM,MAAM,gBAAgB,GAAG,MAAM,cAAc,CAAC;AAMpD,QAAA,MAAM,YAAY,EAAE,QAAQ,CAAC,gBAAgB,
|
|
1
|
+
{"version":3,"file":"popover.d.ts","sourceRoot":"","sources":["popover.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAE9C,MAAM,MAAM,gBAAgB,GAAG,MAAM,cAAc,CAAC;AAMpD,QAAA,MAAM,YAAY,EAAE,QAAQ,CAAC,gBAAgB,CAiL5C,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
package/cjs/popover/popover.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"progress.d.ts","sourceRoot":"","sources":["progress.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,MAAM,MAAM,iBAAiB,GAAG,MAAM,eAAe,CAAC;AAEtD,QAAA,MAAM,aAAa,EAAE,QAAQ,CAAC,iBAAiB,
|
|
1
|
+
{"version":3,"file":"progress.d.ts","sourceRoot":"","sources":["progress.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,MAAM,MAAM,iBAAiB,GAAG,MAAM,eAAe,CAAC;AAEtD,QAAA,MAAM,aAAa,EAAE,QAAQ,CAAC,iBAAiB,CAoJ9C,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
package/cjs/progress/progress.js
CHANGED
|
@@ -95,16 +95,16 @@ var progressStyle = {
|
|
|
95
95
|
padding: "0 ".concat(_theme.default.progressLineInnerPaddingX),
|
|
96
96
|
fontWeight: _theme.default.progressLineFontWeight
|
|
97
97
|
},
|
|
98
|
-
'$wrapperSuccess &': {
|
|
98
|
+
'$lineInner$wrapperSuccess &': {
|
|
99
99
|
color: _theme.default.progressSuccessInnerFontColor
|
|
100
100
|
},
|
|
101
|
-
'$wrapperWarning &': {
|
|
101
|
+
'$lineInner$wrapperWarning &': {
|
|
102
102
|
color: _theme.default.progressWarningInnerFontColor
|
|
103
103
|
},
|
|
104
|
-
'$wrapperInfo &': {
|
|
104
|
+
'$lineInner$wrapperInfo &': {
|
|
105
105
|
color: _theme.default.progressInfoInnerFontColor
|
|
106
106
|
},
|
|
107
|
-
'$wrapperDanger &': {
|
|
107
|
+
'$lineInner$wrapperDanger &': {
|
|
108
108
|
color: _theme.default.progressDangerInnerFontColor
|
|
109
109
|
},
|
|
110
110
|
'$lineInnerRight &&': {
|
|
@@ -182,6 +182,8 @@ var progressStyle = {
|
|
|
182
182
|
stroke: _theme.default.progressBackground
|
|
183
183
|
},
|
|
184
184
|
circleFront: {
|
|
185
|
+
transform: 'rotate(-90deg)',
|
|
186
|
+
transformOrigin: '50% 50%',
|
|
185
187
|
transition: 'stroke-dashoffset .32s ease 0s,stroke-dasharray .32s ease 0s,stroke .32s,stroke-width .06s ease .32s',
|
|
186
188
|
'$wrapperSuccess &': {
|
|
187
189
|
stroke: _theme.default.progressSuccessFrontBackgroundColor
|
package/cjs/table/table.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["table.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAUxC,MAAM,MAAM,cAAc,GAAG,MAAM,YAAY,CAAC;AAUhD,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,cAAc,
|
|
1
|
+
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["table.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAUxC,MAAM,MAAM,cAAc,GAAG,MAAM,YAAY,CAAC;AAUhD,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,cAAc,CA4exC,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/cjs/table/table.js
CHANGED
|
@@ -281,7 +281,8 @@ var tableStyle = _objectSpread(_objectSpread({
|
|
|
281
281
|
position: 'absolute',
|
|
282
282
|
top: 0,
|
|
283
283
|
bottom: -1,
|
|
284
|
-
width: '5px'
|
|
284
|
+
width: '5px',
|
|
285
|
+
pointerEvents: 'none'
|
|
285
286
|
},
|
|
286
287
|
'&[dir=ltr]::after': {
|
|
287
288
|
right: '-5px',
|
|
@@ -313,7 +314,8 @@ var tableStyle = _objectSpread(_objectSpread({
|
|
|
313
314
|
position: 'absolute',
|
|
314
315
|
top: 0,
|
|
315
316
|
bottom: 0,
|
|
316
|
-
width: '5px'
|
|
317
|
+
width: '5px',
|
|
318
|
+
pointerEvents: 'none'
|
|
317
319
|
},
|
|
318
320
|
'&[dir=rtl]::before': {
|
|
319
321
|
right: '-5px',
|
package/cjs/version.d.ts
CHANGED
package/cjs/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/cjs/version.js
CHANGED
package/esm/alert/alert.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alert.d.ts","sourceRoot":"","sources":["alert.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAE5C,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,MAAM,YAAY,
|
|
1
|
+
{"version":3,"file":"alert.d.ts","sourceRoot":"","sources":["alert.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAE5C,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,MAAM,YAAY,CAgK5C,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/esm/alert/alert.js
CHANGED
|
@@ -56,16 +56,16 @@ var alertStyle = {
|
|
|
56
56
|
},
|
|
57
57
|
widthTitle: {
|
|
58
58
|
'& $icon': {
|
|
59
|
+
fontSize: Token.alertTitleFontSize,
|
|
59
60
|
// marginBottom: Token.alertNearlyMargin,
|
|
60
61
|
width: Token.alertTitleIconWidth,
|
|
61
|
-
height: Token.
|
|
62
|
+
height: Token.lineHeightDynamic
|
|
62
63
|
},
|
|
63
64
|
'& $title': {
|
|
64
65
|
lineHeight: Token.lineHeightDynamic
|
|
65
66
|
},
|
|
66
|
-
'& $
|
|
67
|
-
|
|
68
|
-
marginTop: 2
|
|
67
|
+
'& $closeWrapper': {
|
|
68
|
+
fontSize: Token.alertTitleFontSize
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
71
|
title: {
|
|
@@ -90,7 +90,7 @@ var alertStyle = {
|
|
|
90
90
|
display: 'flex',
|
|
91
91
|
alignItems: 'center',
|
|
92
92
|
justifyContent: 'center',
|
|
93
|
-
marginLeft: Token.alertNearlyMargin,
|
|
93
|
+
// marginLeft: Token.alertNearlyMargin,
|
|
94
94
|
'&:hover': {
|
|
95
95
|
color: Token.alertCloseHoverColor
|
|
96
96
|
},
|
|
@@ -99,10 +99,12 @@ var alertStyle = {
|
|
|
99
99
|
}
|
|
100
100
|
},
|
|
101
101
|
closeWrapper: {
|
|
102
|
+
fontSize: Token.alertFontSize,
|
|
102
103
|
width: Token.alertFontSize,
|
|
103
104
|
height: Token.lineHeightDynamic,
|
|
104
105
|
display: 'flex',
|
|
105
|
-
alignItems: 'center'
|
|
106
|
+
alignItems: 'center',
|
|
107
|
+
marginLeft: Token.alertNearlyMargin
|
|
106
108
|
},
|
|
107
109
|
content: {
|
|
108
110
|
flex: '1 1 0',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"breadcrumb.d.ts","sourceRoot":"","sources":["breadcrumb.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEjD,MAAM,MAAM,mBAAmB,GAAG,MAAM,iBAAiB,CAAC;AAE1D,QAAA,MAAM,eAAe,EAAE,QAAQ,CAAC,mBAAmB,
|
|
1
|
+
{"version":3,"file":"breadcrumb.d.ts","sourceRoot":"","sources":["breadcrumb.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEjD,MAAM,MAAM,mBAAmB,GAAG,MAAM,iBAAiB,CAAC;AAE1D,QAAA,MAAM,eAAe,EAAE,QAAQ,CAAC,mBAAmB,CAuGlD,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
|
@@ -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;AAuDtD,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;AAuDtD,QAAA,MAAM,aAAa,EAAE,QAAQ,CAAC,iBAAiB,CAie9C,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
package/esm/cascader/cascader.js
CHANGED
|
@@ -149,7 +149,7 @@ var cascaderStyle = _objectSpread(_objectSpread({
|
|
|
149
149
|
}
|
|
150
150
|
},
|
|
151
151
|
wrapperDisabled: _objectSpread(_objectSpread({}, wrapperDisabled), {}, {
|
|
152
|
-
'& $icon': {
|
|
152
|
+
'& $icon, & $arrowIcon': {
|
|
153
153
|
color: token.cascaderDisabledFontColor
|
|
154
154
|
}
|
|
155
155
|
})
|
|
@@ -527,6 +527,9 @@ var cascaderStyle = _objectSpread(_objectSpread({
|
|
|
527
527
|
cursor: 'not-allowed',
|
|
528
528
|
color: token.cascaderOptionDisabledColor,
|
|
529
529
|
backgroundColor: token.cascaderOptionDisabledBackgroundColor
|
|
530
|
+
},
|
|
531
|
+
'& $optionIcon': {
|
|
532
|
+
color: token.cascaderOptionDisabledColor
|
|
530
533
|
}
|
|
531
534
|
}
|
|
532
535
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"descriptions.d.ts","sourceRoot":"","sources":["descriptions.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAC;AAEnD,MAAM,MAAM,qBAAqB,GAAG,MAAM,mBAAmB,CAAC;AAE9D,QAAA,MAAM,iBAAiB,EAAE,QAAQ,CAAC,qBAAqB,
|
|
1
|
+
{"version":3,"file":"descriptions.d.ts","sourceRoot":"","sources":["descriptions.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAC;AAEnD,MAAM,MAAM,qBAAqB,GAAG,MAAM,mBAAmB,CAAC;AAE9D,QAAA,MAAM,iBAAiB,EAAE,QAAQ,CAAC,qBAAqB,CA0KtD,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dropdown.d.ts","sourceRoot":"","sources":["dropdown.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,QAAA,MAAM,QAAQ,EAAE,QAAQ,CAAC,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"dropdown.d.ts","sourceRoot":"","sources":["dropdown.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,QAAA,MAAM,QAAQ,EAAE,QAAQ,CAAC,MAAM,eAAe,CAgM7C,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
package/esm/dropdown/dropdown.js
CHANGED
|
@@ -127,7 +127,12 @@ var dropdown = {
|
|
|
127
127
|
display: 'flex'
|
|
128
128
|
}
|
|
129
129
|
},
|
|
130
|
-
itemWrapper: {
|
|
130
|
+
itemWrapper: {
|
|
131
|
+
marginBottom: 2,
|
|
132
|
+
'&:last-child': {
|
|
133
|
+
marginBottom: 0
|
|
134
|
+
}
|
|
135
|
+
},
|
|
131
136
|
item: {
|
|
132
137
|
display: 'block',
|
|
133
138
|
borderRadius: token.dropdownOptionBorderRadius,
|
package/esm/image/image.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"image.d.ts","sourceRoot":"","sources":["image.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAE5C,KAAK,UAAU,GAAG,MAAM,YAAY,CAAC;AA2DrC,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,UAAU,
|
|
1
|
+
{"version":3,"file":"image.d.ts","sourceRoot":"","sources":["image.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAE5C,KAAK,UAAU,GAAG,MAAM,YAAY,CAAC;AA2DrC,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,UAAU,CAuZpC,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/esm/image/image.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inner-title.d.ts","sourceRoot":"","sources":["inner-title.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"inner-title.d.ts","sourceRoot":"","sources":["inner-title.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAsEjD,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,MAAM,iBAAiB,CA4FjD,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -10,18 +10,62 @@ var moveTime = '120ms';
|
|
|
10
10
|
var animation = {
|
|
11
11
|
'@keyframes movein': {
|
|
12
12
|
from: {
|
|
13
|
-
top: 0
|
|
13
|
+
top: 0,
|
|
14
|
+
fontSize: token.inputInnerFontSize
|
|
14
15
|
},
|
|
15
16
|
to: {
|
|
16
|
-
top: moveOffset
|
|
17
|
+
top: moveOffset,
|
|
18
|
+
fontSize: token.inputInnerTopFontSize
|
|
17
19
|
}
|
|
18
20
|
},
|
|
19
21
|
'@keyframes moveout': {
|
|
20
22
|
from: {
|
|
21
|
-
top: moveOffset
|
|
23
|
+
top: moveOffset,
|
|
24
|
+
fontSize: token.inputInnerTopFontSize
|
|
22
25
|
},
|
|
23
26
|
to: {
|
|
24
|
-
top: 0
|
|
27
|
+
top: 0,
|
|
28
|
+
fontSize: token.inputInnerFontSize
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
'@keyframes moveinSmall': {
|
|
32
|
+
from: {
|
|
33
|
+
top: 0,
|
|
34
|
+
fontSize: token.inputInnerSmallFontSize
|
|
35
|
+
},
|
|
36
|
+
to: {
|
|
37
|
+
top: moveOffset,
|
|
38
|
+
fontSize: token.inputInnerTopSmallFontSize
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
'@keyframes moveoutSmall': {
|
|
42
|
+
from: {
|
|
43
|
+
top: moveOffset,
|
|
44
|
+
fontSize: token.inputInnerTopSmallFontSize
|
|
45
|
+
},
|
|
46
|
+
to: {
|
|
47
|
+
top: 0,
|
|
48
|
+
fontSize: token.inputInnerSmallFontSize
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
'@keyframes moveinLarge': {
|
|
52
|
+
from: {
|
|
53
|
+
top: 0,
|
|
54
|
+
fontSize: token.inputInnerLargeFontSize
|
|
55
|
+
},
|
|
56
|
+
to: {
|
|
57
|
+
top: moveOffset,
|
|
58
|
+
fontSize: token.inputInnerTopLargeFontSize
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
'@keyframes moveoutLarge': {
|
|
62
|
+
from: {
|
|
63
|
+
top: moveOffset,
|
|
64
|
+
fontSize: token.inputInnerTopLargeFontSize
|
|
65
|
+
},
|
|
66
|
+
to: {
|
|
67
|
+
top: 0,
|
|
68
|
+
fontSize: token.inputInnerLargeFontSize
|
|
25
69
|
}
|
|
26
70
|
}
|
|
27
71
|
};
|
|
@@ -82,6 +126,18 @@ var innerTitle = _objectSpread(_objectSpread({
|
|
|
82
126
|
'$animation:not($wrapperOpen) & $title': {
|
|
83
127
|
animation: "$moveout ".concat(moveTime, " ease-in")
|
|
84
128
|
},
|
|
129
|
+
'$wrapperLarge$animation$wrapperOpen & $title': {
|
|
130
|
+
animation: "$moveinLarge ".concat(moveTime, " ease-in")
|
|
131
|
+
},
|
|
132
|
+
'$wrapperLarge$animation:not($wrapperOpen) & $title': {
|
|
133
|
+
animation: "$moveoutLarge ".concat(moveTime, " ease-in")
|
|
134
|
+
},
|
|
135
|
+
'$wrapperSmall$animation$wrapperOpen & $title': {
|
|
136
|
+
animation: "$moveinSmall ".concat(moveTime, " ease-in")
|
|
137
|
+
},
|
|
138
|
+
'$wrapperSmall$animation:not($wrapperOpen) & $title': {
|
|
139
|
+
animation: "$moveoutSmall ".concat(moveTime, " ease-in")
|
|
140
|
+
},
|
|
85
141
|
position: 'absolute',
|
|
86
142
|
top: '0',
|
|
87
143
|
left: '0',
|
package/esm/link/link.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"link.d.ts","sourceRoot":"","sources":["link.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAA;AAE1C,MAAM,MAAM,aAAa,GAAG,MAAM,WAAW,CAAC;AAE9C,QAAA,MAAM,SAAS,EAAE,QAAQ,CAAC,aAAa,
|
|
1
|
+
{"version":3,"file":"link.d.ts","sourceRoot":"","sources":["link.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAExC,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAA;AAE1C,MAAM,MAAM,aAAa,GAAG,MAAM,WAAW,CAAC;AAE9C,QAAA,MAAM,SAAS,EAAE,QAAQ,CAAC,aAAa,CAuGtC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
package/esm/link/link.js
CHANGED
|
@@ -14,12 +14,14 @@ var linkStyle = {
|
|
|
14
14
|
},
|
|
15
15
|
underline: {
|
|
16
16
|
textDecoration: 'underline',
|
|
17
|
+
textUnderlineOffset: '2px',
|
|
17
18
|
'&:hover': {
|
|
18
19
|
textDecoration: 'underline'
|
|
19
20
|
}
|
|
20
21
|
},
|
|
21
22
|
underlineHover: {
|
|
22
23
|
textDecoration: 'none',
|
|
24
|
+
textUnderlineOffset: '2px',
|
|
23
25
|
'&:hover': {
|
|
24
26
|
textDecoration: 'underline'
|
|
25
27
|
}
|
package/esm/modal/modal.js
CHANGED
|
@@ -406,11 +406,11 @@ var modalStyle = _objectSpread(_objectSpread({
|
|
|
406
406
|
'$wrapperDrawerRight &': {
|
|
407
407
|
left: '-4px',
|
|
408
408
|
right: 'auto',
|
|
409
|
-
cursor: '
|
|
409
|
+
cursor: 'col-resize'
|
|
410
410
|
}
|
|
411
411
|
},
|
|
412
412
|
resizeY: {
|
|
413
|
-
cursor: '
|
|
413
|
+
cursor: 'row-resize',
|
|
414
414
|
position: 'absolute',
|
|
415
415
|
left: 0,
|
|
416
416
|
right: 0,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"popover.d.ts","sourceRoot":"","sources":["popover.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAE9C,MAAM,MAAM,gBAAgB,GAAG,MAAM,cAAc,CAAC;AAMpD,QAAA,MAAM,YAAY,EAAE,QAAQ,CAAC,gBAAgB,
|
|
1
|
+
{"version":3,"file":"popover.d.ts","sourceRoot":"","sources":["popover.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAE9C,MAAM,MAAM,gBAAgB,GAAG,MAAM,cAAc,CAAC;AAMpD,QAAA,MAAM,YAAY,EAAE,QAAQ,CAAC,gBAAgB,CAiL5C,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
package/esm/popover/popover.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"progress.d.ts","sourceRoot":"","sources":["progress.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,MAAM,MAAM,iBAAiB,GAAG,MAAM,eAAe,CAAC;AAEtD,QAAA,MAAM,aAAa,EAAE,QAAQ,CAAC,iBAAiB,
|
|
1
|
+
{"version":3,"file":"progress.d.ts","sourceRoot":"","sources":["progress.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/C,MAAM,MAAM,iBAAiB,GAAG,MAAM,eAAe,CAAC;AAEtD,QAAA,MAAM,aAAa,EAAE,QAAQ,CAAC,iBAAiB,CAoJ9C,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
package/esm/progress/progress.js
CHANGED
|
@@ -88,16 +88,16 @@ var progressStyle = {
|
|
|
88
88
|
padding: "0 ".concat(token.progressLineInnerPaddingX),
|
|
89
89
|
fontWeight: token.progressLineFontWeight
|
|
90
90
|
},
|
|
91
|
-
'$wrapperSuccess &': {
|
|
91
|
+
'$lineInner$wrapperSuccess &': {
|
|
92
92
|
color: token.progressSuccessInnerFontColor
|
|
93
93
|
},
|
|
94
|
-
'$wrapperWarning &': {
|
|
94
|
+
'$lineInner$wrapperWarning &': {
|
|
95
95
|
color: token.progressWarningInnerFontColor
|
|
96
96
|
},
|
|
97
|
-
'$wrapperInfo &': {
|
|
97
|
+
'$lineInner$wrapperInfo &': {
|
|
98
98
|
color: token.progressInfoInnerFontColor
|
|
99
99
|
},
|
|
100
|
-
'$wrapperDanger &': {
|
|
100
|
+
'$lineInner$wrapperDanger &': {
|
|
101
101
|
color: token.progressDangerInnerFontColor
|
|
102
102
|
},
|
|
103
103
|
'$lineInnerRight &&': {
|
|
@@ -175,6 +175,8 @@ var progressStyle = {
|
|
|
175
175
|
stroke: token.progressBackground
|
|
176
176
|
},
|
|
177
177
|
circleFront: {
|
|
178
|
+
transform: 'rotate(-90deg)',
|
|
179
|
+
transformOrigin: '50% 50%',
|
|
178
180
|
transition: 'stroke-dashoffset .32s ease 0s,stroke-dasharray .32s ease 0s,stroke .32s,stroke-width .06s ease .32s',
|
|
179
181
|
'$wrapperSuccess &': {
|
|
180
182
|
stroke: token.progressSuccessFrontBackgroundColor
|
package/esm/table/table.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["table.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAUxC,MAAM,MAAM,cAAc,GAAG,MAAM,YAAY,CAAC;AAUhD,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,cAAc,
|
|
1
|
+
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["table.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAUxC,MAAM,MAAM,cAAc,GAAG,MAAM,YAAY,CAAC;AAUhD,QAAA,MAAM,UAAU,EAAE,QAAQ,CAAC,cAAc,CA4exC,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/esm/table/table.js
CHANGED
|
@@ -274,7 +274,8 @@ var tableStyle = _objectSpread(_objectSpread({
|
|
|
274
274
|
position: 'absolute',
|
|
275
275
|
top: 0,
|
|
276
276
|
bottom: -1,
|
|
277
|
-
width: '5px'
|
|
277
|
+
width: '5px',
|
|
278
|
+
pointerEvents: 'none'
|
|
278
279
|
},
|
|
279
280
|
'&[dir=ltr]::after': {
|
|
280
281
|
right: '-5px',
|
|
@@ -306,7 +307,8 @@ var tableStyle = _objectSpread(_objectSpread({
|
|
|
306
307
|
position: 'absolute',
|
|
307
308
|
top: 0,
|
|
308
309
|
bottom: 0,
|
|
309
|
-
width: '5px'
|
|
310
|
+
width: '5px',
|
|
311
|
+
pointerEvents: 'none'
|
|
310
312
|
},
|
|
311
313
|
'&[dir=rtl]::before': {
|
|
312
314
|
right: '-5px',
|
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.5.
|
|
1
|
+
export default '3.5.8-beta.10';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sheinx/shineout-style",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.8-beta.10",
|
|
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.5.
|
|
21
|
-
"@sheinx/base": "3.5.
|
|
20
|
+
"@sheinx/theme": "3.5.8-beta.10",
|
|
21
|
+
"@sheinx/base": "3.5.8-beta.10"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"core-js": ">=3"
|