@wizishop/angular-components 0.0.108 → 0.0.109
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 +1 -1
- package/bundles/wizishop-angular-components.umd.js +6 -6
- 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/free-popin/free-popin.component.js +5 -3
- package/esm2015/lib/components/popin/popin.component.js +3 -5
- package/fesm2015/wizishop-angular-components.js +6 -6
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/free-popin/free-popin.component.d.ts +1 -0
- package/lib/components/popin/popin.component.d.ts +0 -1
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.109.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.108.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -2489,7 +2489,6 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
2489
2489
|
position: fixed;
|
|
2490
2490
|
top: 0;
|
|
2491
2491
|
left: 0;
|
|
2492
|
-
z-index: 9999;
|
|
2493
2492
|
|
|
2494
2493
|
&__wrapper {
|
|
2495
2494
|
background-color: white;
|
|
@@ -3612,6 +3611,7 @@ a.wac-link {
|
|
|
3612
3611
|
position: fixed;
|
|
3613
3612
|
top: 0;
|
|
3614
3613
|
left: 0;
|
|
3614
|
+
z-index: 9999;
|
|
3615
3615
|
|
|
3616
3616
|
&__wrapper {
|
|
3617
3617
|
background-color: white;
|
|
@@ -3288,7 +3288,6 @@
|
|
|
3288
3288
|
this.visibleChange = new i0.EventEmitter();
|
|
3289
3289
|
this.response = new i0.EventEmitter();
|
|
3290
3290
|
this.background = true;
|
|
3291
|
-
this.zIndex = 9999;
|
|
3292
3291
|
this.firstOpen = true;
|
|
3293
3292
|
}
|
|
3294
3293
|
PopinComponent.prototype.ngOnInit = function () {
|
|
@@ -3317,7 +3316,7 @@
|
|
|
3317
3316
|
PopinComponent.decorators = [
|
|
3318
3317
|
{ type: i0.Component, args: [{
|
|
3319
3318
|
selector: 'wac-popin',
|
|
3320
|
-
template: "<div class=\"wac-free\" *ngIf=\"visible\"
|
|
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"
|
|
3321
3320
|
},] }
|
|
3322
3321
|
];
|
|
3323
3322
|
PopinComponent.ctorParameters = function () { return [
|
|
@@ -3334,8 +3333,7 @@
|
|
|
3334
3333
|
visible: [{ type: i0.Input }],
|
|
3335
3334
|
visibleChange: [{ type: i0.Output }],
|
|
3336
3335
|
response: [{ type: i0.Output }],
|
|
3337
|
-
background: [{ type: i0.Input }]
|
|
3338
|
-
zIndex: [{ type: i0.Input }]
|
|
3336
|
+
background: [{ type: i0.Input }]
|
|
3339
3337
|
};
|
|
3340
3338
|
|
|
3341
3339
|
var FreePopinComponent = /** @class */ (function () {
|
|
@@ -3346,6 +3344,7 @@
|
|
|
3346
3344
|
this.visibleChange = new i0.EventEmitter();
|
|
3347
3345
|
this.response = new i0.EventEmitter();
|
|
3348
3346
|
this.background = true;
|
|
3347
|
+
this.zIndex = 9999;
|
|
3349
3348
|
this.firstOpen = true;
|
|
3350
3349
|
}
|
|
3351
3350
|
FreePopinComponent.prototype.ngOnInit = function () {
|
|
@@ -3374,7 +3373,7 @@
|
|
|
3374
3373
|
FreePopinComponent.decorators = [
|
|
3375
3374
|
{ type: i0.Component, args: [{
|
|
3376
3375
|
selector: 'wac-free-popin',
|
|
3377
|
-
template: "<div class=\"wac-free-popin\" *ngIf=\"visible\">\n
|
|
3376
|
+
template: "<div class=\"wac-free-popin\" *ngIf=\"visible\" [ngStyle]=\"{'z-index': zIndex}\">\n <div class=\"wac-free-popin__wrapper\" wzAutoHide (clickOutside)=\"!disableCloseOutside ? closePopin() : ''\">\n <a class=\"wac-free-popin__wrapper__button-close\" (click)=\"closePopin()\">\n <i class=\"fas fa-times\"></i>\n </a>\n <div class=\"wac-free-popin__wrapper__content\">\n <perfect-scrollbar [config]=\"{ suppressScrollX: true }\">\n <ng-content></ng-content>\n </perfect-scrollbar>\n </div>\n <div class=\"wac-free-popin__wrapper__buttons\">\n <div class=\"wac-free-popin__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-popin__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-popin__background\" *ngIf=\"background\"></div>\n</div>\n"
|
|
3378
3377
|
},] }
|
|
3379
3378
|
];
|
|
3380
3379
|
FreePopinComponent.ctorParameters = function () { return [
|
|
@@ -3387,7 +3386,8 @@
|
|
|
3387
3386
|
disableCloseOutside: [{ type: i0.Input }],
|
|
3388
3387
|
visibleChange: [{ type: i0.Output }],
|
|
3389
3388
|
response: [{ type: i0.Output }],
|
|
3390
|
-
background: [{ type: i0.Input }]
|
|
3389
|
+
background: [{ type: i0.Input }],
|
|
3390
|
+
zIndex: [{ type: i0.Input }]
|
|
3391
3391
|
};
|
|
3392
3392
|
|
|
3393
3393
|
var BlockComponent = /** @class */ (function () {
|