@alauda/ui 6.4.8-beta.55 → 6.4.8-beta.57
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/core/animation/animation-consts.d.ts +5 -2
- package/dialog/dialog-animations.d.ts +27 -0
- package/dialog/dialog-config.d.ts +0 -31
- package/dialog/dialog.service.d.ts +3 -0
- package/esm2020/back-top/back-top.component.mjs +2 -2
- package/esm2020/core/animation/animation-consts.mjs +7 -6
- package/esm2020/dialog/dialog-animations.mjs +50 -16
- package/esm2020/dialog/dialog-config.mjs +1 -41
- package/esm2020/dialog/dialog.component.mjs +11 -18
- package/esm2020/dialog/dialog.service.mjs +8 -5
- package/esm2020/utils/animations.mjs +2 -0
- package/esm2020/utils/fn.mjs +3 -4
- package/fesm2015/alauda-ui.mjs +64 -70
- package/fesm2015/alauda-ui.mjs.map +1 -1
- package/fesm2020/alauda-ui.mjs +64 -70
- package/fesm2020/alauda-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/theme/_mixin.scss +4 -5
- package/utils/animations.d.ts +2 -0
package/package.json
CHANGED
package/theme/_mixin.scss
CHANGED
|
@@ -133,9 +133,8 @@
|
|
|
133
133
|
}
|
|
134
134
|
}
|
|
135
135
|
|
|
136
|
-
@mixin overlay-pane() {
|
|
137
|
-
|
|
138
|
-
overflow: auto;
|
|
136
|
+
@mixin overlay-pane($alignItems: center) {
|
|
137
|
+
@include flex-center($alignItems);
|
|
139
138
|
@include scroll-bar;
|
|
140
139
|
}
|
|
141
140
|
|
|
@@ -275,10 +274,10 @@
|
|
|
275
274
|
text-overflow: ellipsis;
|
|
276
275
|
}
|
|
277
276
|
|
|
278
|
-
@mixin flex-center {
|
|
277
|
+
@mixin flex-center($alignItems: center) {
|
|
279
278
|
display: flex;
|
|
280
|
-
align-items: center;
|
|
281
279
|
justify-content: center;
|
|
280
|
+
align-items: $alignItems;
|
|
282
281
|
}
|
|
283
282
|
|
|
284
283
|
@mixin point($size, $color: #000) {
|