@wizishop/angular-components 15.1.147 → 15.1.149
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 +318 -4
- package/assets/images/upload/upload_images.svg +23 -0
- package/esm2020/lib/components/pricing-section/pricing-section-table.dto.mjs +2 -0
- package/esm2020/lib/components/pricing-section/pricing-section.component.mjs +15 -0
- package/esm2020/lib/components/pricing-section/pricing-section.dto.mjs +2 -0
- package/esm2020/lib/components/reassurance-section/reassurance-section-content.dto.mjs +2 -0
- package/esm2020/lib/components/reassurance-section/reassurance-section.component.mjs +15 -0
- package/esm2020/lib/components/reassurance-section/reassurance-section.dto.mjs +2 -0
- package/esm2020/lib/components/shared-components.module.mjs +12 -4
- package/esm2020/lib/components/tag/tag.component.mjs +6 -3
- package/esm2020/lib/components/upload/upload.component.mjs +22 -3
- package/esm2020/public-api.mjs +7 -1
- package/fesm2015/wizishop-angular-components.mjs +59 -8
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +59 -8
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/pricing-section/pricing-section-table.dto.d.ts +6 -0
- package/lib/components/pricing-section/pricing-section.component.d.ts +8 -0
- package/lib/components/pricing-section/pricing-section.dto.d.ts +7 -0
- package/lib/components/reassurance-section/reassurance-section-content.dto.d.ts +4 -0
- package/lib/components/reassurance-section/reassurance-section.component.d.ts +8 -0
- package/lib/components/reassurance-section/reassurance-section.dto.d.ts +5 -0
- package/lib/components/shared-components.module.d.ts +52 -50
- package/lib/components/tag/tag.component.d.ts +2 -1
- package/lib/components/upload/upload.component.d.ts +6 -1
- package/package.json +1 -1
- package/public-api.d.ts +6 -0
- package/wizishop-angular-components-15.1.149.tgz +0 -0
- package/wizishop-angular-components-15.1.147.tgz +0 -0
|
@@ -1983,6 +1983,7 @@ class TagComponent {
|
|
|
1983
1983
|
this.label = '';
|
|
1984
1984
|
this.hasClose = false;
|
|
1985
1985
|
this.draggable = false;
|
|
1986
|
+
this.hoverDelete = false;
|
|
1986
1987
|
this.big = false;
|
|
1987
1988
|
this.isOpen = true;
|
|
1988
1989
|
this.isOpenChange = new EventEmitter();
|
|
@@ -1993,10 +1994,10 @@ class TagComponent {
|
|
|
1993
1994
|
}
|
|
1994
1995
|
}
|
|
1995
1996
|
TagComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TagComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1996
|
-
TagComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.5", type: TagComponent, selector: "wac-tag", inputs: { label: "label", class: "class", hasClose: "hasClose", draggable: "draggable", big: "big", isOpen: "isOpen" }, outputs: { isOpenChange: "isOpenChange" }, ngImport: i0, template: "<div class=\"wac-tag\" [classList]=\"'wac-tag--' + class\" [ngClass]=\"{ hover: hasClose, 'big': big , draggable: draggable}\">\r\n <div *ngIf=\"draggable\" class=\"wac-tag__draggable\">\r\n <span>\r\n <span></span>\r\n </span>\r\n </div>\r\n {{ label }}\r\n <span class=\"wac-tag__close\" *ngIf=\"hasClose\" (click)=\"toggleTag()\"><i class=\"fas fa-times\"></i></span>\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1997
|
+
TagComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.5", type: TagComponent, selector: "wac-tag", inputs: { label: "label", class: "class", hasClose: "hasClose", draggable: "draggable", hoverDelete: "hoverDelete", big: "big", isOpen: "isOpen" }, outputs: { isOpenChange: "isOpenChange" }, ngImport: i0, template: "<div class=\"wac-tag\" [classList]=\"'wac-tag--' + class\" [ngClass]=\"{ hover: hasClose, 'big': big , draggable: draggable, 'hover-delete': hoverDelete}\">\r\n <div *ngIf=\"draggable\" class=\"wac-tag__draggable\">\r\n <span>\r\n <span></span>\r\n </span>\r\n </div>\r\n {{ label }}\r\n <span class=\"wac-tag__close\" *ngIf=\"hasClose\" (click)=\"toggleTag()\"><i class=\"fas fa-times\"></i></span>\r\n <div class=\"hover-delete\">\r\n <i class=\"fa-solid fa-trash\"></i>\r\n </div>\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1997
1998
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: TagComponent, decorators: [{
|
|
1998
1999
|
type: Component,
|
|
1999
|
-
args: [{ selector: 'wac-tag', template: "<div class=\"wac-tag\" [classList]=\"'wac-tag--' + class\" [ngClass]=\"{ hover: hasClose, 'big': big , draggable: draggable}\">\r\n <div *ngIf=\"draggable\" class=\"wac-tag__draggable\">\r\n <span>\r\n <span></span>\r\n </span>\r\n </div>\r\n {{ label }}\r\n <span class=\"wac-tag__close\" *ngIf=\"hasClose\" (click)=\"toggleTag()\"><i class=\"fas fa-times\"></i></span>\r\n</div>\r\n" }]
|
|
2000
|
+
args: [{ selector: 'wac-tag', template: "<div class=\"wac-tag\" [classList]=\"'wac-tag--' + class\" [ngClass]=\"{ hover: hasClose, 'big': big , draggable: draggable, 'hover-delete': hoverDelete}\">\r\n <div *ngIf=\"draggable\" class=\"wac-tag__draggable\">\r\n <span>\r\n <span></span>\r\n </span>\r\n </div>\r\n {{ label }}\r\n <span class=\"wac-tag__close\" *ngIf=\"hasClose\" (click)=\"toggleTag()\"><i class=\"fas fa-times\"></i></span>\r\n <div class=\"hover-delete\">\r\n <i class=\"fa-solid fa-trash\"></i>\r\n </div>\r\n</div>\r\n" }]
|
|
2000
2001
|
}], ctorParameters: function () { return []; }, propDecorators: { label: [{
|
|
2001
2002
|
type: Input
|
|
2002
2003
|
}], class: [{
|
|
@@ -2005,6 +2006,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImpor
|
|
|
2005
2006
|
type: Input
|
|
2006
2007
|
}], draggable: [{
|
|
2007
2008
|
type: Input
|
|
2009
|
+
}], hoverDelete: [{
|
|
2010
|
+
type: Input
|
|
2008
2011
|
}], big: [{
|
|
2009
2012
|
type: Input
|
|
2010
2013
|
}], isOpen: [{
|
|
@@ -3839,18 +3842,28 @@ class UploadComponent {
|
|
|
3839
3842
|
this.icon = 'far fa-images';
|
|
3840
3843
|
this.image = 'assets/angular-components/images/upload/icon_picture.svg';
|
|
3841
3844
|
this.labelImage = 'Glisser-déposer votre image ici';
|
|
3845
|
+
this.imageBlock = 'assets/angular-components/images/upload/upload_images.svg';
|
|
3846
|
+
this.labelUploadImage = '';
|
|
3847
|
+
this.onClickAction = () => { };
|
|
3842
3848
|
this.open = new EventEmitter();
|
|
3849
|
+
this.clickEvent = new EventEmitter();
|
|
3843
3850
|
}
|
|
3844
3851
|
ngOnInit() { }
|
|
3845
3852
|
triggerEvent(event) {
|
|
3846
3853
|
this.open.emit(event);
|
|
3847
3854
|
}
|
|
3855
|
+
clickAction() {
|
|
3856
|
+
if (this.onClickAction) {
|
|
3857
|
+
this.onClickAction();
|
|
3858
|
+
}
|
|
3859
|
+
this.clickEvent.emit();
|
|
3860
|
+
}
|
|
3848
3861
|
}
|
|
3849
3862
|
UploadComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UploadComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3850
|
-
UploadComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.5", type: UploadComponent, selector: "wac-upload", inputs: { label: "label", type: "type", icon: "icon", image: "image", labelImage: "labelImage" }, outputs: { open: "open" }, ngImport: i0, template: "<div class=\"wac-upload\" [ngClass]=\"{ portrait: type === 'portrait', landscape: type === 'landscape' }\">\r\n <div class=\"wac-upload__wrapper\">\r\n <div *ngIf=\"(type === 'portrait' || type === 'landscape') && image\" class=\"wac-upload__wrapper__visual\">\r\n <img [src]=\"image\" />\r\n <strong [innerHTML]=\"labelImage\"></strong>\r\n </div>\r\n <span *ngIf=\"(type === 'portrait' || type === 'landscape') && image\">ou</span>\r\n <button (click)=\"triggerEvent($event)\" type=\"button\">\r\n <span *ngIf=\"icon\"><i [classList]=\"icon\"></i></span>\r\n <span [innerHTML]=\"label\"></span>\r\n </button>\r\n
|
|
3863
|
+
UploadComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.5", type: UploadComponent, selector: "wac-upload", inputs: { label: "label", type: "type", icon: "icon", image: "image", labelImage: "labelImage", imageBlock: "imageBlock", labelUploadImage: "labelUploadImage", onClickAction: "onClickAction" }, outputs: { open: "open", clickEvent: "clickEvent" }, ngImport: i0, template: "<div class=\"wac-upload\" [ngClass]=\"{ portrait: type === 'portrait', landscape: type === 'landscape', block: type === 'block'}\" (click)=\"clickAction()\">\r\n <div class=\"wac-upload__wrapper\">\r\n\r\n <div *ngIf=\"(type === 'portrait' || type === 'landscape') && image\" class=\"wac-upload__wrapper__visual\">\r\n <img [src]=\"image\" />\r\n <strong [innerHTML]=\"labelImage\"></strong>\r\n </div>\r\n \r\n <div *ngIf=\"(type === 'block')\" class=\"wac-upload__wrapper__visual\">\r\n <img [src]=\"imageBlock\" />\r\n </div>\r\n\r\n <span *ngIf=\"(type === 'portrait' || type === 'landscape') && image\">ou</span>\r\n \r\n <button (click)=\"triggerEvent($event)\" type=\"button\" [ngClass]=\"{ block: type === 'block' }\">\r\n <span *ngIf=\"icon\"><i [classList]=\"icon\"></i></span>\r\n <span [innerHTML]=\"label\"></span>\r\n </button>\r\n\r\n <div *ngIf=\"(type === 'block')\" class=\"wac-upload__wrapper__visual\">\r\n <wac-text [textClass]=\"'optional'\" noMargin>{{ labelUploadImage }}</wac-text>\r\n </div>\r\n\r\n </div>\r\n</div>", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: TextComponent, selector: "wac-text", inputs: ["textClass", "noMargin"] }] });
|
|
3851
3864
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UploadComponent, decorators: [{
|
|
3852
3865
|
type: Component,
|
|
3853
|
-
args: [{ selector: 'wac-upload', template: "<div class=\"wac-upload\" [ngClass]=\"{ portrait: type === 'portrait', landscape: type === 'landscape' }\">\r\n <div class=\"wac-upload__wrapper\">\r\n <div *ngIf=\"(type === 'portrait' || type === 'landscape') && image\" class=\"wac-upload__wrapper__visual\">\r\n <img [src]=\"image\" />\r\n <strong [innerHTML]=\"labelImage\"></strong>\r\n </div>\r\n <span *ngIf=\"(type === 'portrait' || type === 'landscape') && image\">ou</span>\r\n <button (click)=\"triggerEvent($event)\" type=\"button\">\r\n <span *ngIf=\"icon\"><i [classList]=\"icon\"></i></span>\r\n <span [innerHTML]=\"label\"></span>\r\n </button>\r\n
|
|
3866
|
+
args: [{ selector: 'wac-upload', template: "<div class=\"wac-upload\" [ngClass]=\"{ portrait: type === 'portrait', landscape: type === 'landscape', block: type === 'block'}\" (click)=\"clickAction()\">\r\n <div class=\"wac-upload__wrapper\">\r\n\r\n <div *ngIf=\"(type === 'portrait' || type === 'landscape') && image\" class=\"wac-upload__wrapper__visual\">\r\n <img [src]=\"image\" />\r\n <strong [innerHTML]=\"labelImage\"></strong>\r\n </div>\r\n \r\n <div *ngIf=\"(type === 'block')\" class=\"wac-upload__wrapper__visual\">\r\n <img [src]=\"imageBlock\" />\r\n </div>\r\n\r\n <span *ngIf=\"(type === 'portrait' || type === 'landscape') && image\">ou</span>\r\n \r\n <button (click)=\"triggerEvent($event)\" type=\"button\" [ngClass]=\"{ block: type === 'block' }\">\r\n <span *ngIf=\"icon\"><i [classList]=\"icon\"></i></span>\r\n <span [innerHTML]=\"label\"></span>\r\n </button>\r\n\r\n <div *ngIf=\"(type === 'block')\" class=\"wac-upload__wrapper__visual\">\r\n <wac-text [textClass]=\"'optional'\" noMargin>{{ labelUploadImage }}</wac-text>\r\n </div>\r\n\r\n </div>\r\n</div>" }]
|
|
3854
3867
|
}], ctorParameters: function () { return []; }, propDecorators: { label: [{
|
|
3855
3868
|
type: Input
|
|
3856
3869
|
}], type: [{
|
|
@@ -3861,8 +3874,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImpor
|
|
|
3861
3874
|
type: Input
|
|
3862
3875
|
}], labelImage: [{
|
|
3863
3876
|
type: Input
|
|
3877
|
+
}], imageBlock: [{
|
|
3878
|
+
type: Input
|
|
3879
|
+
}], labelUploadImage: [{
|
|
3880
|
+
type: Input
|
|
3881
|
+
}], onClickAction: [{
|
|
3882
|
+
type: Input
|
|
3864
3883
|
}], open: [{
|
|
3865
3884
|
type: Output
|
|
3885
|
+
}], clickEvent: [{
|
|
3886
|
+
type: Output
|
|
3866
3887
|
}] } });
|
|
3867
3888
|
|
|
3868
3889
|
class H4Component {
|
|
@@ -6998,6 +7019,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImpor
|
|
|
6998
7019
|
type: Input
|
|
6999
7020
|
}] } });
|
|
7000
7021
|
|
|
7022
|
+
class ReassuranceSectionComponent {
|
|
7023
|
+
constructor() { }
|
|
7024
|
+
}
|
|
7025
|
+
ReassuranceSectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ReassuranceSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7026
|
+
ReassuranceSectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.5", type: ReassuranceSectionComponent, selector: "wac-reassurance-section", inputs: { data: "data" }, ngImport: i0, template: "<div class=\"wac-reassurance-section\">\r\n <h2 *ngIf=\"data?.title\" [innerHTML]=\"data?.title\" class=\"wac-reassurance-section__title\"></h2>\r\n <div class=\"wac-reassurance-section__wrapper\">\r\n <div class=\"wac-reassurance-section__wrapper__item\" *ngFor=\"let item of data?.content; let i = index;\">\r\n <strong [innerHTML]=\"item.title\"></strong>\r\n <span [innerHTML]=\"item.text\"></span>\r\n </div>\r\n </div>\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
7027
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ReassuranceSectionComponent, decorators: [{
|
|
7028
|
+
type: Component,
|
|
7029
|
+
args: [{ selector: 'wac-reassurance-section', template: "<div class=\"wac-reassurance-section\">\r\n <h2 *ngIf=\"data?.title\" [innerHTML]=\"data?.title\" class=\"wac-reassurance-section__title\"></h2>\r\n <div class=\"wac-reassurance-section__wrapper\">\r\n <div class=\"wac-reassurance-section__wrapper__item\" *ngFor=\"let item of data?.content; let i = index;\">\r\n <strong [innerHTML]=\"item.title\"></strong>\r\n <span [innerHTML]=\"item.text\"></span>\r\n </div>\r\n </div>\r\n</div>\r\n" }]
|
|
7030
|
+
}], ctorParameters: function () { return []; }, propDecorators: { data: [{
|
|
7031
|
+
type: Input
|
|
7032
|
+
}] } });
|
|
7033
|
+
|
|
7034
|
+
class PricingSectionComponent {
|
|
7035
|
+
constructor() { }
|
|
7036
|
+
}
|
|
7037
|
+
PricingSectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PricingSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7038
|
+
PricingSectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.5", type: PricingSectionComponent, selector: "wac-pricing-section", inputs: { data: "data" }, ngImport: i0, template: "<div class=\"wac-pricing-section\">\r\n <div class=\"wac-pricing-section__top\">\r\n <h2 *ngIf=\"data?.title\" [innerHTML]=\"data?.title\"></h2>\r\n <div class=\"wac-pricing-section__top__text\" *ngIf=\"data?.subtitle\" [innerHTML]=\"data?.subtitle\"></div>\r\n </div>\r\n\r\n <div class=\"wac-pricing-section__table\">\r\n <div class=\"wac-pricing-section__table__top\">\r\n <div class=\"wac-pricing-section__table__item\" *ngFor=\"let table of data?.tables\">\r\n <div class=\"wac-pricing-section__table__item__thead\">\r\n <i *ngIf=\"table?.icon\" class=\"{{ table?.icon }}\"></i>\r\n <strong [innerHTML]=\"table.title\"></strong>\r\n </div>\r\n <div class=\"wac-pricing-section__table__item__tbody\">\r\n <div class=\"wac-pricing-section__table__item__tbody__label\">\r\n <strong *ngFor=\"let th of table.thead\">{{ th }}</strong>\r\n </div>\r\n <div class=\"wac-pricing-section__table__item__tbody__line\" *ngFor=\"let line of table.tbody\">\r\n <strong class=\"hide-for-mobile\">{{ line[0] }}</strong>\r\n <span *ngFor=\"let l of line;let i = index;\" [ngClass]=\"{'hide': i === 0}\">\r\n <ng-container *ngIf=\"i > 0\">\r\n <span><strong class=\"show-for-mobile\">{{ line[0] }}<br/></strong>{{l}}</span>\r\n </ng-container>\r\n </span>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"wac-pricing-section__table__bottom\" *ngIf=\"data?.furtherInformation\">\r\n <p class=\"italic small\" [innerHTML]=\"data?.furtherInformation\"></p>\r\n </div>\r\n </div>\r\n\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
7039
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PricingSectionComponent, decorators: [{
|
|
7040
|
+
type: Component,
|
|
7041
|
+
args: [{ selector: 'wac-pricing-section', template: "<div class=\"wac-pricing-section\">\r\n <div class=\"wac-pricing-section__top\">\r\n <h2 *ngIf=\"data?.title\" [innerHTML]=\"data?.title\"></h2>\r\n <div class=\"wac-pricing-section__top__text\" *ngIf=\"data?.subtitle\" [innerHTML]=\"data?.subtitle\"></div>\r\n </div>\r\n\r\n <div class=\"wac-pricing-section__table\">\r\n <div class=\"wac-pricing-section__table__top\">\r\n <div class=\"wac-pricing-section__table__item\" *ngFor=\"let table of data?.tables\">\r\n <div class=\"wac-pricing-section__table__item__thead\">\r\n <i *ngIf=\"table?.icon\" class=\"{{ table?.icon }}\"></i>\r\n <strong [innerHTML]=\"table.title\"></strong>\r\n </div>\r\n <div class=\"wac-pricing-section__table__item__tbody\">\r\n <div class=\"wac-pricing-section__table__item__tbody__label\">\r\n <strong *ngFor=\"let th of table.thead\">{{ th }}</strong>\r\n </div>\r\n <div class=\"wac-pricing-section__table__item__tbody__line\" *ngFor=\"let line of table.tbody\">\r\n <strong class=\"hide-for-mobile\">{{ line[0] }}</strong>\r\n <span *ngFor=\"let l of line;let i = index;\" [ngClass]=\"{'hide': i === 0}\">\r\n <ng-container *ngIf=\"i > 0\">\r\n <span><strong class=\"show-for-mobile\">{{ line[0] }}<br/></strong>{{l}}</span>\r\n </ng-container>\r\n </span>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"wac-pricing-section__table__bottom\" *ngIf=\"data?.furtherInformation\">\r\n <p class=\"italic small\" [innerHTML]=\"data?.furtherInformation\"></p>\r\n </div>\r\n </div>\r\n\r\n</div>\r\n" }]
|
|
7042
|
+
}], ctorParameters: function () { return []; }, propDecorators: { data: [{
|
|
7043
|
+
type: Input
|
|
7044
|
+
}] } });
|
|
7045
|
+
|
|
7001
7046
|
const components = [
|
|
7002
7047
|
GridComponent,
|
|
7003
7048
|
TagComponent,
|
|
@@ -7068,7 +7113,9 @@ const components = [
|
|
|
7068
7113
|
MenuTileComponent,
|
|
7069
7114
|
ColorPickerComponent,
|
|
7070
7115
|
ImageTextSectionComponent,
|
|
7071
|
-
FaqSectionComponent
|
|
7116
|
+
FaqSectionComponent,
|
|
7117
|
+
ReassuranceSectionComponent,
|
|
7118
|
+
PricingSectionComponent
|
|
7072
7119
|
];
|
|
7073
7120
|
const exportsFromModule = [
|
|
7074
7121
|
PaginationComponent,
|
|
@@ -7170,7 +7217,9 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
7170
7217
|
MenuTileComponent,
|
|
7171
7218
|
ColorPickerComponent,
|
|
7172
7219
|
ImageTextSectionComponent,
|
|
7173
|
-
FaqSectionComponent
|
|
7220
|
+
FaqSectionComponent,
|
|
7221
|
+
ReassuranceSectionComponent,
|
|
7222
|
+
PricingSectionComponent], imports: [CommonModule,
|
|
7174
7223
|
FormsModule,
|
|
7175
7224
|
NwbAllModule,
|
|
7176
7225
|
TranslateModule,
|
|
@@ -7273,7 +7322,9 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
7273
7322
|
MenuTileComponent,
|
|
7274
7323
|
ColorPickerComponent,
|
|
7275
7324
|
ImageTextSectionComponent,
|
|
7276
|
-
FaqSectionComponent,
|
|
7325
|
+
FaqSectionComponent,
|
|
7326
|
+
ReassuranceSectionComponent,
|
|
7327
|
+
PricingSectionComponent, PaginationComponent,
|
|
7277
7328
|
TableComponent,
|
|
7278
7329
|
TableColumn,
|
|
7279
7330
|
CheckBoxRow,
|
|
@@ -7543,5 +7594,5 @@ const switchInOut = trigger('switchInOut', [
|
|
|
7543
7594
|
* Generated bundle index. Do not edit.
|
|
7544
7595
|
*/
|
|
7545
7596
|
|
|
7546
|
-
export { ACCORDION_ITEM, AbstractDebounceDirective, AccordionComponent, AiExpressComponent, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AreAllOptionsSelectedPipe, AutoHideDirective, BackComponent, BlockComponent, BlockSeparatorComponent, BlockTitleLegacyComponent, BlockWithCheckboxComponent, BorderPickerComponent, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CallComponentFunctionPipe, CardPriceComponent, ChargingBarComponent, CheckBoxRow, CheckboxComponent, ColorPickerComponent, ColumnComponent, ConfirmDeleteComponent, ContentWithButtonsComponent, CopyToClipBoardDirective, DebounceKeyupDirective, DeleteComponent, DomChangedDirective, DraganddropListComponent, DropdownComponent, EXPANSION_PANEL_HEADER, ExpandedPanelComponent, ExpansionExport, ExpansionModule, ExpansionPanelComponent, ExpansionPanelDirective, ExpansionPanelHeaderComponent, ExpansionPanelHeaderDirective, FaqSectionComponent, FilterOptionsPipe, FiltersComponent, FiltersTableService, FindOptionSelectedPipe, FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe, FreePopinComponent, GooglePreviewComponent, GridComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HistoryService, HtmlContainer, ImageComponent, ImageTextSectionComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, KeypressEnterDirective, LabelComponent, LinkComponent, LoaderComponent, LogoComponent, MenuTileComponent, MosaicComponent, MultipleSearchComponent, MultipleSearchPlusComponent, OnlyNumberDirective, OptionCallToActionComponent, OptionComponent, OptionGroupComponent, OptionalDisableContainerComponent, PaginationComponent, PlaceholderComponent, PopinComponent, ProgressBarComponent, RadioComponent, RadioGroupLegacyDirective, RadioLegacyComponent, RadioLegacyDirective, RadioOptionComponent, RowComponent, ScrollToDirective, SearchComponent, SelectComponent, SelectDirective, SelectFiltersPipe, SelectInTextComponent, SelectOptionDirective, SelectSearchTriggerComponent, SelectedListComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SharedPipes, SlideInComponent, SnackbarComponent, StateComponent, SummaryComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableFiltersGroup, TableRow, TabsComponent, TagComponent, TagDropdownComponent, TagLabelComponent, TextAreaComponent, TextComponent, TokenCheckComponent, TooltipComponent, TreeComponent, TreeModule, TwoDigitDecimalNumberDirective, UploadComponent, ValueChangeService, VarDirective, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, WrapperMultipleBlockComponent, WrapperSidebarComponent, WzEditInPlaceComponent, ZindexToggleDirective, animateListFromBottom, animateListFromLeft, animateListFromRight, animateListFromTop, distinctUntilTableFiltersChanged, inOutX, inOutY, opacityAnimation, showFromBottom, showFromLeft, showFromRight, showFromTop, switchInOut, updateTableFiltersTotalItems, uuid };
|
|
7597
|
+
export { ACCORDION_ITEM, AbstractDebounceDirective, AccordionComponent, AiExpressComponent, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AreAllOptionsSelectedPipe, AutoHideDirective, BackComponent, BlockComponent, BlockSeparatorComponent, BlockTitleLegacyComponent, BlockWithCheckboxComponent, BorderPickerComponent, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CallComponentFunctionPipe, CardPriceComponent, ChargingBarComponent, CheckBoxRow, CheckboxComponent, ColorPickerComponent, ColumnComponent, ConfirmDeleteComponent, ContentWithButtonsComponent, CopyToClipBoardDirective, DebounceKeyupDirective, DeleteComponent, DomChangedDirective, DraganddropListComponent, DropdownComponent, EXPANSION_PANEL_HEADER, ExpandedPanelComponent, ExpansionExport, ExpansionModule, ExpansionPanelComponent, ExpansionPanelDirective, ExpansionPanelHeaderComponent, ExpansionPanelHeaderDirective, FaqSectionComponent, FilterOptionsPipe, FiltersComponent, FiltersTableService, FindOptionSelectedPipe, FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe, FreePopinComponent, GooglePreviewComponent, GridComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HistoryService, HtmlContainer, ImageComponent, ImageTextSectionComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, KeypressEnterDirective, LabelComponent, LinkComponent, LoaderComponent, LogoComponent, MenuTileComponent, MosaicComponent, MultipleSearchComponent, MultipleSearchPlusComponent, OnlyNumberDirective, OptionCallToActionComponent, OptionComponent, OptionGroupComponent, OptionalDisableContainerComponent, PaginationComponent, PlaceholderComponent, PopinComponent, PricingSectionComponent, ProgressBarComponent, RadioComponent, RadioGroupLegacyDirective, RadioLegacyComponent, RadioLegacyDirective, RadioOptionComponent, ReassuranceSectionComponent, RowComponent, ScrollToDirective, SearchComponent, SelectComponent, SelectDirective, SelectFiltersPipe, SelectInTextComponent, SelectOptionDirective, SelectSearchTriggerComponent, SelectedListComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SharedPipes, SlideInComponent, SnackbarComponent, StateComponent, SummaryComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableFiltersGroup, TableRow, TabsComponent, TagComponent, TagDropdownComponent, TagLabelComponent, TextAreaComponent, TextComponent, TokenCheckComponent, TooltipComponent, TreeComponent, TreeModule, TwoDigitDecimalNumberDirective, UploadComponent, ValueChangeService, VarDirective, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, WrapperMultipleBlockComponent, WrapperSidebarComponent, WzEditInPlaceComponent, ZindexToggleDirective, animateListFromBottom, animateListFromLeft, animateListFromRight, animateListFromTop, distinctUntilTableFiltersChanged, inOutX, inOutY, opacityAnimation, showFromBottom, showFromLeft, showFromRight, showFromTop, switchInOut, updateTableFiltersTotalItems, uuid };
|
|
7547
7598
|
//# sourceMappingURL=wizishop-angular-components.mjs.map
|