@wizishop/angular-components 14.4.23 → 14.4.24

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.
Files changed (29) hide show
  1. package/esm2020/lib/animations/export.animation.mjs +13 -0
  2. package/esm2020/lib/animations/list/animate-list-from-bottom.animation.mjs +18 -0
  3. package/esm2020/lib/animations/list/animate-list-from-left.animation.mjs +18 -0
  4. package/esm2020/lib/animations/list/animate-list-from-right.animation.mjs +18 -0
  5. package/esm2020/lib/animations/list/animate-list-from-top.animation.mjs +16 -0
  6. package/esm2020/lib/animations/show/show-from-bottom.animation.mjs +15 -0
  7. package/esm2020/lib/animations/show/show-from-left.animation.mjs +15 -0
  8. package/esm2020/lib/animations/show/show-from-right.animation.mjs +15 -0
  9. package/esm2020/lib/animations/show/show-from-top.animation.mjs +15 -0
  10. package/esm2020/lib/animations/switch/switch-in-out.animation.mjs +6 -0
  11. package/esm2020/public-api.mjs +2 -1
  12. package/fesm2015/wizishop-angular-components.mjs +129 -2
  13. package/fesm2015/wizishop-angular-components.mjs.map +1 -1
  14. package/fesm2020/wizishop-angular-components.mjs +129 -2
  15. package/fesm2020/wizishop-angular-components.mjs.map +1 -1
  16. package/lib/animations/export.animation.d.ts +12 -0
  17. package/lib/animations/list/animate-list-from-bottom.animation.d.ts +1 -0
  18. package/lib/animations/list/animate-list-from-left.animation.d.ts +1 -0
  19. package/lib/animations/list/animate-list-from-right.animation.d.ts +1 -0
  20. package/lib/animations/list/animate-list-from-top.animation.d.ts +1 -0
  21. package/lib/animations/show/show-from-bottom.animation.d.ts +1 -0
  22. package/lib/animations/show/show-from-left.animation.d.ts +1 -0
  23. package/lib/animations/show/show-from-right.animation.d.ts +1 -0
  24. package/lib/animations/show/show-from-top.animation.d.ts +1 -0
  25. package/lib/animations/switch/switch-in-out.animation.d.ts +1 -0
  26. package/package.json +1 -1
  27. package/public-api.d.ts +1 -0
  28. package/wizishop-angular-components-14.4.24.tgz +0 -0
  29. package/wizishop-angular-components-14.4.23.tgz +0 -0
@@ -0,0 +1,12 @@
1
+ export * from './show/show-from-bottom.animation';
2
+ export * from './show/show-from-top.animation';
3
+ export * from './show/show-from-left.animation';
4
+ export * from './show/show-from-right.animation';
5
+ export * from './show/opacity.animation';
6
+ export * from './list/animate-list-from-bottom.animation';
7
+ export * from './list/animate-list-from-top.animation';
8
+ export * from './list/animate-list-from-right.animation';
9
+ export * from './list/animate-list-from-left.animation';
10
+ export * from './switch/switch-in-out.animation';
11
+ export * from './in-out/in-out-x.animation';
12
+ export * from './in-out/in-out-y.animation';
@@ -0,0 +1 @@
1
+ export declare function animateListFromBottom(passedTime?: string): import("@angular/animations").AnimationTriggerMetadata;
@@ -0,0 +1 @@
1
+ export declare function animateListFromLeft(passedTime?: string): import("@angular/animations").AnimationTriggerMetadata;
@@ -0,0 +1 @@
1
+ export declare function animateListFromRight(passedTime?: string, staggerTime?: string): import("@angular/animations").AnimationTriggerMetadata;
@@ -0,0 +1 @@
1
+ export declare function animateListFromTop(passedTime?: string): import("@angular/animations").AnimationTriggerMetadata;
@@ -0,0 +1 @@
1
+ export declare const showFromBottom: import("@angular/animations").AnimationTriggerMetadata;
@@ -0,0 +1 @@
1
+ export declare const showFromLeft: import("@angular/animations").AnimationTriggerMetadata;
@@ -0,0 +1 @@
1
+ export declare const showFromRight: import("@angular/animations").AnimationTriggerMetadata;
@@ -0,0 +1 @@
1
+ export declare const showFromTop: import("@angular/animations").AnimationTriggerMetadata;
@@ -0,0 +1 @@
1
+ export declare const switchInOut: import("@angular/animations").AnimationTriggerMetadata;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wizishop/angular-components",
3
- "version": "14.4.23",
3
+ "version": "14.4.24",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "~14.0.6",
6
6
  "@angular/cdk": "^14.0.5",
package/public-api.d.ts CHANGED
@@ -124,3 +124,4 @@ export * from './lib/components/expansion/expansion-panel-header/expansion-panel
124
124
  export * from './lib/components/expansion/expansion-panel/expansion-panel.component';
125
125
  export * from './lib/components/expansion/expansion-panel/expansion-panel.directive';
126
126
  export * from './lib/components/expansion/expansion-panel/expansion-panel-base';
127
+ export * from './lib/animations/export.animation';