@wizishop/angular-components 14.4.22 → 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.
- package/angular-components.scss +129 -129
- package/assets/i18n/en.json +1 -1
- package/assets/i18n/fr.json +1 -1
- package/esm2020/lib/animations/export.animation.mjs +13 -0
- package/esm2020/lib/animations/list/animate-list-from-bottom.animation.mjs +18 -0
- package/esm2020/lib/animations/list/animate-list-from-left.animation.mjs +18 -0
- package/esm2020/lib/animations/list/animate-list-from-right.animation.mjs +18 -0
- package/esm2020/lib/animations/list/animate-list-from-top.animation.mjs +16 -0
- package/esm2020/lib/animations/show/opacity.animation.mjs +5 -0
- package/esm2020/lib/animations/show/show-from-bottom.animation.mjs +15 -0
- package/esm2020/lib/animations/show/show-from-left.animation.mjs +15 -0
- package/esm2020/lib/animations/show/show-from-right.animation.mjs +15 -0
- package/esm2020/lib/animations/show/show-from-top.animation.mjs +15 -0
- package/esm2020/lib/animations/switch/switch-in-out.animation.mjs +6 -0
- package/esm2020/lib/components/calendar/calendar.component.mjs +16 -6
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/wizishop-angular-components.mjs +148 -7
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +146 -7
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/animations/export.animation.d.ts +12 -0
- package/lib/animations/list/animate-list-from-bottom.animation.d.ts +1 -0
- package/lib/animations/list/animate-list-from-left.animation.d.ts +1 -0
- package/lib/animations/list/animate-list-from-right.animation.d.ts +1 -0
- package/lib/animations/list/animate-list-from-top.animation.d.ts +1 -0
- package/lib/animations/show/opacity.animation.d.ts +1 -0
- package/lib/animations/show/show-from-bottom.animation.d.ts +1 -0
- package/lib/animations/show/show-from-left.animation.d.ts +1 -0
- package/lib/animations/show/show-from-right.animation.d.ts +1 -0
- package/lib/animations/show/show-from-top.animation.d.ts +1 -0
- package/lib/animations/switch/switch-in-out.animation.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/wizishop-angular-components-14.4.24.tgz +0 -0
- package/wizishop-angular-components-14.4.22.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 opacityAnimation: 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
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';
|
|
Binary file
|
|
Binary file
|