@wizishop/angular-components 0.0.106 → 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.
@@ -368,15 +368,15 @@
368
368
  InputSearchComponent.prototype.registerOnTouched = function (fn) {
369
369
  this.onTouchedCallback = fn;
370
370
  };
371
- InputSearchComponent.prototype.handleDebouncedKeyUp = function (event) {
372
- this.changeDebounced.emit(event.target.value);
371
+ InputSearchComponent.prototype.handleDebouncedKeyUp = function () {
372
+ this.changeDebounced.emit(this.value);
373
373
  };
374
374
  return InputSearchComponent;
375
375
  }());
376
376
  InputSearchComponent.decorators = [
377
377
  { type: i0.Component, args: [{
378
378
  selector: 'wac-input-search',
379
- template: "<div class=\"wac-field-input-search\" [ngClass]=\"smallPadding ? 'small-padding' : ''\">\n <p class=\"control has-icons-left has-icons-right\">\n <input\n [placeholder]=\"placeholder\"\n value=\"\"\n class=\"input\"\n type=\"text\"\n [attr.id]=\"id\"\n [(ngModel)]=\"value\"\n debounceKeyUp\n [debounceTime]=\"1000\"\n (onEventChange)=\"handleDebouncedKeyUp($event)\"\n />\n <i class=\"icon fal fa-search\"></i>\n </p>\n</div>\n",
379
+ template: "<div class=\"wac-field-input-search\" [ngClass]=\"smallPadding ? 'small-padding' : ''\">\n <p class=\"control has-icons-left has-icons-right\">\n <input\n [placeholder]=\"placeholder\"\n value=\"\"\n class=\"input\"\n type=\"text\"\n [attr.id]=\"id\"\n [(ngModel)]=\"value\"\n debounceKeyUp\n [debounceTime]=\"1000\"\n (onEventChange)=\"handleDebouncedKeyUp()\"\n />\n <i class=\"icon fal fa-search\"></i>\n </p>\n</div>\n",
380
380
  providers: [{ provide: forms.NG_VALUE_ACCESSOR, useExisting: InputSearchComponent, multi: true }]
381
381
  },] }
382
382
  ];
@@ -865,8 +865,7 @@
865
865
  TagComponent.decorators = [
866
866
  { type: i0.Component, args: [{
867
867
  selector: 'wac-tag',
868
- template: "<div class=\"wac-tag\" [classList]=\"'wac-tag--' + class\" [ngClass]=\"{ hover: hasClose, 'big': big }\">\n {{ label }}\n <span class=\"wac-tag__close\" *ngIf=\"hasClose\" (click)=\"toggleTag()\"><i class=\"fas fa-times\"></i></span>\n</div>\n",
869
- encapsulation: i0.ViewEncapsulation.None
868
+ template: "<div class=\"wac-tag\" [classList]=\"'wac-tag--' + class\" [ngClass]=\"{ hover: hasClose, 'big': big }\">\n {{ label }}\n <span class=\"wac-tag__close\" *ngIf=\"hasClose\" (click)=\"toggleTag()\"><i class=\"fas fa-times\"></i></span>\n</div>\n"
870
869
  },] }
871
870
  ];
872
871
  TagComponent.ctorParameters = function () { return []; };
@@ -3345,6 +3344,7 @@
3345
3344
  this.visibleChange = new i0.EventEmitter();
3346
3345
  this.response = new i0.EventEmitter();
3347
3346
  this.background = true;
3347
+ this.zIndex = 9999;
3348
3348
  this.firstOpen = true;
3349
3349
  }
3350
3350
  FreePopinComponent.prototype.ngOnInit = function () {
@@ -3373,7 +3373,7 @@
3373
3373
  FreePopinComponent.decorators = [
3374
3374
  { type: i0.Component, args: [{
3375
3375
  selector: 'wac-free-popin',
3376
- template: "<div class=\"wac-free-popin\" *ngIf=\"visible\">\n\n\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"
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"
3377
3377
  },] }
3378
3378
  ];
3379
3379
  FreePopinComponent.ctorParameters = function () { return [
@@ -3386,7 +3386,8 @@
3386
3386
  disableCloseOutside: [{ type: i0.Input }],
3387
3387
  visibleChange: [{ type: i0.Output }],
3388
3388
  response: [{ type: i0.Output }],
3389
- background: [{ type: i0.Input }]
3389
+ background: [{ type: i0.Input }],
3390
+ zIndex: [{ type: i0.Input }]
3390
3391
  };
3391
3392
 
3392
3393
  var BlockComponent = /** @class */ (function () {