@wizishop/angular-components 15.1.147 → 15.1.150
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 +356 -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 +28 -3
- package/esm2020/public-api.mjs +7 -1
- package/fesm2015/wizishop-angular-components.mjs +65 -8
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +65 -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 +8 -1
- package/package.json +1 -1
- package/public-api.d.ts +6 -0
- package/wizishop-angular-components-15.1.150.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,30 @@ 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 = () => { };
|
|
3848
|
+
this.isUploaded = false;
|
|
3849
|
+
this.imageUpload = '';
|
|
3842
3850
|
this.open = new EventEmitter();
|
|
3851
|
+
this.clickEvent = new EventEmitter();
|
|
3843
3852
|
}
|
|
3844
3853
|
ngOnInit() { }
|
|
3845
3854
|
triggerEvent(event) {
|
|
3846
3855
|
this.open.emit(event);
|
|
3847
3856
|
}
|
|
3857
|
+
clickAction() {
|
|
3858
|
+
if (this.onClickAction) {
|
|
3859
|
+
this.onClickAction();
|
|
3860
|
+
}
|
|
3861
|
+
this.clickEvent.emit();
|
|
3862
|
+
}
|
|
3848
3863
|
}
|
|
3849
3864
|
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
|
|
3865
|
+
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", isUploaded: "isUploaded", imageUpload: "imageUpload" }, 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 <!-- Affichage quand aucune image n'est upload\u00E9e -->\r\n <ng-container *ngIf=\"!isUploaded\">\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 </ng-container>\r\n\r\n <!-- Affichage quand une image est upload\u00E9e -->\r\n <ng-container *ngIf=\"isUploaded && imageUpload\">\r\n <div class=\"wac-upload__wrapper__uploaded\">\r\n <img [src]=\"imageUpload\" alt=\"Image upload\u00E9e\" />\r\n </div>\r\n </ng-container>\r\n\r\n </div>\r\n\r\n <ng-container *ngIf=\"isUploaded && imageUpload\">\r\n <div class=\"overlay\">\r\n <img [src]=\"imageBlock\" alt=\"Image de fond\" />\r\n </div>\r\n </ng-container>\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
3866
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: UploadComponent, decorators: [{
|
|
3852
3867
|
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
|
|
3868
|
+
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 <!-- Affichage quand aucune image n'est upload\u00E9e -->\r\n <ng-container *ngIf=\"!isUploaded\">\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 </ng-container>\r\n\r\n <!-- Affichage quand une image est upload\u00E9e -->\r\n <ng-container *ngIf=\"isUploaded && imageUpload\">\r\n <div class=\"wac-upload__wrapper__uploaded\">\r\n <img [src]=\"imageUpload\" alt=\"Image upload\u00E9e\" />\r\n </div>\r\n </ng-container>\r\n\r\n </div>\r\n\r\n <ng-container *ngIf=\"isUploaded && imageUpload\">\r\n <div class=\"overlay\">\r\n <img [src]=\"imageBlock\" alt=\"Image de fond\" />\r\n </div>\r\n </ng-container>\r\n</div>" }]
|
|
3854
3869
|
}], ctorParameters: function () { return []; }, propDecorators: { label: [{
|
|
3855
3870
|
type: Input
|
|
3856
3871
|
}], type: [{
|
|
@@ -3861,8 +3876,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImpor
|
|
|
3861
3876
|
type: Input
|
|
3862
3877
|
}], labelImage: [{
|
|
3863
3878
|
type: Input
|
|
3879
|
+
}], imageBlock: [{
|
|
3880
|
+
type: Input
|
|
3881
|
+
}], labelUploadImage: [{
|
|
3882
|
+
type: Input
|
|
3883
|
+
}], onClickAction: [{
|
|
3884
|
+
type: Input
|
|
3885
|
+
}], isUploaded: [{
|
|
3886
|
+
type: Input
|
|
3887
|
+
}], imageUpload: [{
|
|
3888
|
+
type: Input
|
|
3864
3889
|
}], open: [{
|
|
3865
3890
|
type: Output
|
|
3891
|
+
}], clickEvent: [{
|
|
3892
|
+
type: Output
|
|
3866
3893
|
}] } });
|
|
3867
3894
|
|
|
3868
3895
|
class H4Component {
|
|
@@ -6998,6 +7025,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImpor
|
|
|
6998
7025
|
type: Input
|
|
6999
7026
|
}] } });
|
|
7000
7027
|
|
|
7028
|
+
class ReassuranceSectionComponent {
|
|
7029
|
+
constructor() { }
|
|
7030
|
+
}
|
|
7031
|
+
ReassuranceSectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ReassuranceSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7032
|
+
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"] }] });
|
|
7033
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ReassuranceSectionComponent, decorators: [{
|
|
7034
|
+
type: Component,
|
|
7035
|
+
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" }]
|
|
7036
|
+
}], ctorParameters: function () { return []; }, propDecorators: { data: [{
|
|
7037
|
+
type: Input
|
|
7038
|
+
}] } });
|
|
7039
|
+
|
|
7040
|
+
class PricingSectionComponent {
|
|
7041
|
+
constructor() { }
|
|
7042
|
+
}
|
|
7043
|
+
PricingSectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PricingSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7044
|
+
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"] }] });
|
|
7045
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PricingSectionComponent, decorators: [{
|
|
7046
|
+
type: Component,
|
|
7047
|
+
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" }]
|
|
7048
|
+
}], ctorParameters: function () { return []; }, propDecorators: { data: [{
|
|
7049
|
+
type: Input
|
|
7050
|
+
}] } });
|
|
7051
|
+
|
|
7001
7052
|
const components = [
|
|
7002
7053
|
GridComponent,
|
|
7003
7054
|
TagComponent,
|
|
@@ -7068,7 +7119,9 @@ const components = [
|
|
|
7068
7119
|
MenuTileComponent,
|
|
7069
7120
|
ColorPickerComponent,
|
|
7070
7121
|
ImageTextSectionComponent,
|
|
7071
|
-
FaqSectionComponent
|
|
7122
|
+
FaqSectionComponent,
|
|
7123
|
+
ReassuranceSectionComponent,
|
|
7124
|
+
PricingSectionComponent
|
|
7072
7125
|
];
|
|
7073
7126
|
const exportsFromModule = [
|
|
7074
7127
|
PaginationComponent,
|
|
@@ -7170,7 +7223,9 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
7170
7223
|
MenuTileComponent,
|
|
7171
7224
|
ColorPickerComponent,
|
|
7172
7225
|
ImageTextSectionComponent,
|
|
7173
|
-
FaqSectionComponent
|
|
7226
|
+
FaqSectionComponent,
|
|
7227
|
+
ReassuranceSectionComponent,
|
|
7228
|
+
PricingSectionComponent], imports: [CommonModule,
|
|
7174
7229
|
FormsModule,
|
|
7175
7230
|
NwbAllModule,
|
|
7176
7231
|
TranslateModule,
|
|
@@ -7273,7 +7328,9 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
7273
7328
|
MenuTileComponent,
|
|
7274
7329
|
ColorPickerComponent,
|
|
7275
7330
|
ImageTextSectionComponent,
|
|
7276
|
-
FaqSectionComponent,
|
|
7331
|
+
FaqSectionComponent,
|
|
7332
|
+
ReassuranceSectionComponent,
|
|
7333
|
+
PricingSectionComponent, PaginationComponent,
|
|
7277
7334
|
TableComponent,
|
|
7278
7335
|
TableColumn,
|
|
7279
7336
|
CheckBoxRow,
|
|
@@ -7543,5 +7600,5 @@ const switchInOut = trigger('switchInOut', [
|
|
|
7543
7600
|
* Generated bundle index. Do not edit.
|
|
7544
7601
|
*/
|
|
7545
7602
|
|
|
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 };
|
|
7603
|
+
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
7604
|
//# sourceMappingURL=wizishop-angular-components.mjs.map
|