@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.
- package/angular-components.scss +4696 -4697
- package/bundles/wizishop-angular-components.umd.js +8 -7
- 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/inputs/input-search/input-search.component.js +4 -4
- package/esm2015/lib/components/tag/tag.component.js +3 -4
- package/fesm2015/wizishop-angular-components.js +8 -7
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/free-popin/free-popin.component.d.ts +1 -0
- package/lib/components/inputs/input-search/input-search.component.d.ts +1 -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.106.tgz +0 -0
|
@@ -368,15 +368,15 @@
|
|
|
368
368
|
InputSearchComponent.prototype.registerOnTouched = function (fn) {
|
|
369
369
|
this.onTouchedCallback = fn;
|
|
370
370
|
};
|
|
371
|
-
InputSearchComponent.prototype.handleDebouncedKeyUp = function (
|
|
372
|
-
this.changeDebounced.emit(
|
|
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(
|
|
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
|
|
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 () {
|