@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.
- package/angular-components.scss +0 -1
- package/bundles/wizishop-angular-components.umd.js +4 -2
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js +1 -1
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/popin/popin.component.js +5 -3
- package/fesm2015/wizishop-angular-components.js +4 -2
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/popin/popin.component.d.ts +1 -0
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.108.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.107.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -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 () {
|