@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.
@@ -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 : ['animate__animated', 'animate__fadeIn', 'animate__faster']
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: ['animate__animated', 'animate__fadeIn', 'animate__faster'],
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);