@wizishop/angular-components 0.0.107 → 0.0.108

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.
@@ -3612,7 +3612,6 @@ a.wac-link {
3612
3612
  position: fixed;
3613
3613
  top: 0;
3614
3614
  left: 0;
3615
- z-index: 9999;
3616
3615
 
3617
3616
  &__wrapper {
3618
3617
  background-color: white;
@@ -3288,6 +3288,7 @@
3288
3288
  this.visibleChange = new i0.EventEmitter();
3289
3289
  this.response = new i0.EventEmitter();
3290
3290
  this.background = true;
3291
+ this.zIndex = 9999;
3291
3292
  this.firstOpen = true;
3292
3293
  }
3293
3294
  PopinComponent.prototype.ngOnInit = function () {
@@ -3316,7 +3317,7 @@
3316
3317
  PopinComponent.decorators = [
3317
3318
  { type: i0.Component, args: [{
3318
3319
  selector: 'wac-popin',
3319
- template: "<div class=\"wac-free\" *ngIf=\"visible\">\n <div class=\"wac-free__wrapper\" wzAutoHide (clickOutside)=\"closePopin()\">\n <a class=\"wac-free__wrapper__button-close\" (click)=\"closePopin()\">\n <i class=\"fas fa-times\"></i>\n </a>\n <div class=\"wac-free__wrapper__content\">\n <perfect-scrollbar [config]=\"{ suppressScrollX: true }\">\n <img [src]=\"imgSrc\" alt=\"barre admin\" />\n\n <h2 class=\"wac-popin__wrapper__title\" [innerHTML]=\"title\"></h2>\n\n <p class=\"wac-popin__wrapper__text\" [innerHTML]=\"content\"></p>\n </perfect-scrollbar>\n </div>\n <div class=\"wac-free__wrapper__buttons\">\n <div class=\"wac-free__wrapper__buttons__button\" *ngIf=\"okButtonLabel\">\n <wac-button [extraClasses]=\"'is-success'\" [label]=\"okButtonLabel\" hasLoader=\"true\" (click)=\"validatePopin()\"></wac-button>\n </div>\n <div class=\"wac-free__wrapper__buttons__button\" *ngIf=\"koButtonLabel\">\n <wac-button [extraClasses]=\"'is-danger is-outlined'\" [label]=\"koButtonLabel\" hasLoader=\"true\" (click)=\"refusePopin()\"></wac-button>\n </div>\n </div>\n </div>\n <div class=\"wac-free__background\" *ngIf=\"background\"></div>\n</div>\n"
3320
+ template: "<div class=\"wac-free\" *ngIf=\"visible\" [ngStyle]=\"{'z-index': zIndex}\">\n <div class=\"wac-free__wrapper\" wzAutoHide (clickOutside)=\"closePopin()\">\n <a class=\"wac-free__wrapper__button-close\" (click)=\"closePopin()\">\n <i class=\"fas fa-times\"></i>\n </a>\n <div class=\"wac-free__wrapper__content\">\n <perfect-scrollbar [config]=\"{ suppressScrollX: true }\">\n <img [src]=\"imgSrc\" alt=\"barre admin\" />\n\n <h2 class=\"wac-popin__wrapper__title\" [innerHTML]=\"title\"></h2>\n\n <p class=\"wac-popin__wrapper__text\" [innerHTML]=\"content\"></p>\n </perfect-scrollbar>\n </div>\n <div class=\"wac-free__wrapper__buttons\">\n <div class=\"wac-free__wrapper__buttons__button\" *ngIf=\"okButtonLabel\">\n <wac-button [extraClasses]=\"'is-success'\" [label]=\"okButtonLabel\" hasLoader=\"true\" (click)=\"validatePopin()\"></wac-button>\n </div>\n <div class=\"wac-free__wrapper__buttons__button\" *ngIf=\"koButtonLabel\">\n <wac-button [extraClasses]=\"'is-danger is-outlined'\" [label]=\"koButtonLabel\" hasLoader=\"true\" (click)=\"refusePopin()\"></wac-button>\n </div>\n </div>\n </div>\n <div class=\"wac-free__background\" *ngIf=\"background\"></div>\n</div>\n"
3320
3321
  },] }
3321
3322
  ];
3322
3323
  PopinComponent.ctorParameters = function () { return [
@@ -3333,7 +3334,8 @@
3333
3334
  visible: [{ type: i0.Input }],
3334
3335
  visibleChange: [{ type: i0.Output }],
3335
3336
  response: [{ type: i0.Output }],
3336
- background: [{ type: i0.Input }]
3337
+ background: [{ type: i0.Input }],
3338
+ zIndex: [{ type: i0.Input }]
3337
3339
  };
3338
3340
 
3339
3341
  var FreePopinComponent = /** @class */ (function () {