@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alauda/ui",
3
- "version": "6.4.8-beta.55",
3
+ "version": "6.4.8-beta.57",
4
4
  "description": "Angular UI components by Alauda Frontend Team.",
5
5
  "repository": "git+https://github.com/alauda/alauda-ui.git",
6
6
  "author": "Alauda Frontend",
package/theme/_mixin.scss CHANGED
@@ -133,9 +133,8 @@
133
133
  }
134
134
  }
135
135
 
136
- @mixin overlay-pane() {
137
- justify-content: center;
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) {
@@ -0,0 +1,2 @@
1
+ import { AnimationQueryMetadata } from '@angular/animations';
2
+ export declare const getAnimationQueryMetadatas: (classNames: string[], query: (className: string) => AnimationQueryMetadata) => AnimationQueryMetadata[];