@acorex/components 5.0.44 → 5.0.45
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/esm2020/lib/base/overlay.service.mjs +2 -2
- package/esm2020/lib/popup/popup.component.mjs +1 -1
- package/esm2020/lib/toast/toast.service.mjs +2 -2
- package/fesm2015/acorex-components.mjs +2 -2
- package/fesm2015/acorex-components.mjs.map +1 -1
- package/fesm2020/acorex-components.mjs +2 -2
- package/fesm2020/acorex-components.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3237,7 +3237,7 @@ class AXOverlayService {
|
|
|
3237
3237
|
hasBackdrop: configs.hasBackdrop,
|
|
3238
3238
|
disposeOnNavigation: true,
|
|
3239
3239
|
backdropClass: configs.backdropClass ? configs.backdropClass : (configs.transparentBackdrop ? 'cdk-overlay-transparent-backdrop' : undefined),
|
|
3240
|
-
panelClass: configs.panelClass ? configs.panelClass : ['
|
|
3240
|
+
panelClass: configs.panelClass ? configs.panelClass : ['ax-animate-animated', 'ax-animate-fadeIn', 'ax-animate-faster']
|
|
3241
3241
|
};
|
|
3242
3242
|
// joon nanat dorost sho
|
|
3243
3243
|
let overlayRef = configs.containerElement ? this.overlayService.createOn(configs.containerElement, config) : this.overlayService2.create(config);
|
|
@@ -6543,7 +6543,7 @@ class AXToastService {
|
|
|
6543
6543
|
}
|
|
6544
6544
|
const overlayRef = this.overlayService.create({
|
|
6545
6545
|
positionStrategy,
|
|
6546
|
-
panelClass: ['
|
|
6546
|
+
panelClass: ['ax-animate-animated', 'ax-animate-fadeIn', 'ax-animate-faster'],
|
|
6547
6547
|
});
|
|
6548
6548
|
const toastPortal = new ComponentPortal(AXToastComponent, null, this.parentInjector);
|
|
6549
6549
|
const host = overlayRef.attach(toastPortal);
|