@wizishop/angular-components 14.3.1 → 14.3.3
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 +31 -0
- package/esm2020/lib/components/selects/option/option.component.mjs +11 -9
- package/esm2020/lib/components/selects/option/select-option.directive.mjs +3 -5
- package/esm2020/lib/components/selects/select-test/select.component.mjs +19 -12
- package/esm2020/lib/components/selects/select-test/value-change.service.mjs +31 -4
- package/esm2020/lib/components/shared-components.module.mjs +8 -4
- package/esm2020/lib/components/summary/summary.component.mjs +41 -0
- package/esm2020/lib/components/wrapper-sidebar/wrapper-sidebar.component.mjs +6 -3
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/wizishop-angular-components.mjs +108 -30
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +108 -30
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/selects/option/option.component.d.ts +4 -4
- package/lib/components/selects/option/select-option.directive.d.ts +1 -2
- package/lib/components/selects/select-test/value-change.service.d.ts +4 -2
- package/lib/components/shared-components.module.d.ts +45 -44
- package/lib/components/summary/summary.component.d.ts +17 -0
- package/lib/components/wrapper-sidebar/wrapper-sidebar.component.d.ts +2 -1
- package/package.json +24 -14
- package/public-api.d.ts +1 -0
- package/wizishop-angular-components-14.3.3.tgz +0 -0
- package/wizishop-angular-components-14.3.1.tgz +0 -0
|
@@ -20,7 +20,7 @@ import * as i4 from 'ngx-autosize';
|
|
|
20
20
|
import { AutosizeModule } from 'ngx-autosize';
|
|
21
21
|
import * as i2$1 from '@angular/router';
|
|
22
22
|
import { RouterModule } from '@angular/router';
|
|
23
|
-
import { DOWN_ARROW, UP_ARROW, LEFT_ARROW, RIGHT_ARROW, ENTER, SPACE, hasModifierKey, ESCAPE } from '@angular/cdk/keycodes';
|
|
23
|
+
import { DOWN_ARROW, UP_ARROW, LEFT_ARROW, RIGHT_ARROW, ENTER, SPACE, hasModifierKey, ESCAPE, A, Z, ZERO, NINE } from '@angular/cdk/keycodes';
|
|
24
24
|
import * as i2$2 from 'ngx-scrollbar';
|
|
25
25
|
import { NgScrollbarModule } from 'ngx-scrollbar';
|
|
26
26
|
import * as i3 from 'ngx-scrollbar/reached-event';
|
|
@@ -357,8 +357,6 @@ class SelectOptionDirective {
|
|
|
357
357
|
onClick() {
|
|
358
358
|
this.onSelectOption();
|
|
359
359
|
}
|
|
360
|
-
ngOnInit() {
|
|
361
|
-
}
|
|
362
360
|
onSelectOption() {
|
|
363
361
|
if (this.disabled) {
|
|
364
362
|
return;
|
|
@@ -384,11 +382,11 @@ class SelectOptionDirective {
|
|
|
384
382
|
}
|
|
385
383
|
}
|
|
386
384
|
SelectOptionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: SelectOptionDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
387
|
-
SelectOptionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.7", type: SelectOptionDirective, selector: "[
|
|
385
|
+
SelectOptionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.7", type: SelectOptionDirective, selector: "[wacSelectOption]", inputs: { disabled: "disabled", value: "value", selected: "selected" }, outputs: { selectedChange: "selectedChange" }, host: { listeners: { "click": "onClick()" } }, providers: [{ provide: OPTION_SELECTION_HANDLER, useExisting: SelectOptionDirective }], ngImport: i0 });
|
|
388
386
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: SelectOptionDirective, decorators: [{
|
|
389
387
|
type: Directive,
|
|
390
388
|
args: [{
|
|
391
|
-
selector: '[
|
|
389
|
+
selector: '[wacSelectOption]',
|
|
392
390
|
providers: [{ provide: OPTION_SELECTION_HANDLER, useExisting: SelectOptionDirective }]
|
|
393
391
|
}]
|
|
394
392
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { onClick: [{
|
|
@@ -4224,7 +4222,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImpor
|
|
|
4224
4222
|
}] } });
|
|
4225
4223
|
|
|
4226
4224
|
class ValueChangeService {
|
|
4227
|
-
constructor() {
|
|
4225
|
+
constructor(changeDetectorRef) {
|
|
4226
|
+
this.changeDetectorRef = changeDetectorRef;
|
|
4228
4227
|
this.valueChange$ = new Subject();
|
|
4229
4228
|
this.indexSelectedOption = null;
|
|
4230
4229
|
this.resetListeners$ = new Subject();
|
|
@@ -4252,6 +4251,7 @@ class ValueChangeService {
|
|
|
4252
4251
|
handleValueChange() {
|
|
4253
4252
|
this.changeSelectedOption();
|
|
4254
4253
|
this.updateSelectPlaceholder();
|
|
4254
|
+
this.changeDetectorRef.markForCheck();
|
|
4255
4255
|
}
|
|
4256
4256
|
selectNextOption() {
|
|
4257
4257
|
if (this.indexSelectedOption + 1 >= this.optionChildren.length) {
|
|
@@ -4274,6 +4274,31 @@ class ValueChangeService {
|
|
|
4274
4274
|
this.indexSelectedOption = this.indexSelectedOption - 1;
|
|
4275
4275
|
this.assignValue(this.optionChildren.get(this.indexSelectedOption).value);
|
|
4276
4276
|
}
|
|
4277
|
+
searchOptionByFirstLetter(letter) {
|
|
4278
|
+
const matchedOptionsIndex = this.optionChildren
|
|
4279
|
+
.map((option, index) => {
|
|
4280
|
+
const textOption = option.getContentRef().nativeElement.textContent.trim().toLowerCase();
|
|
4281
|
+
return textOption.startsWith(letter) ? index : null;
|
|
4282
|
+
})
|
|
4283
|
+
.filter((index) => index !== null);
|
|
4284
|
+
if (!matchedOptionsIndex.length) { // reset the selection
|
|
4285
|
+
this.indexSelectedOption = null;
|
|
4286
|
+
this.assignValue(null);
|
|
4287
|
+
return;
|
|
4288
|
+
}
|
|
4289
|
+
// find the next option after the current selected option, or the first option
|
|
4290
|
+
const validOptionIndex = matchedOptionsIndex.find((index) => {
|
|
4291
|
+
if (isNaN(this.indexSelectedOption)) {
|
|
4292
|
+
return true;
|
|
4293
|
+
}
|
|
4294
|
+
if (index > this.indexSelectedOption) {
|
|
4295
|
+
return true;
|
|
4296
|
+
}
|
|
4297
|
+
return false;
|
|
4298
|
+
});
|
|
4299
|
+
this.indexSelectedOption = isNaN(validOptionIndex) ? matchedOptionsIndex[0] : validOptionIndex;
|
|
4300
|
+
this.assignValue(this.optionChildren.get(this.indexSelectedOption).value);
|
|
4301
|
+
}
|
|
4277
4302
|
handleInitialSelectedOption() {
|
|
4278
4303
|
setTimeout(() => {
|
|
4279
4304
|
if (!this.value) {
|
|
@@ -4329,11 +4354,11 @@ class ValueChangeService {
|
|
|
4329
4354
|
this.resetListeners$.complete();
|
|
4330
4355
|
}
|
|
4331
4356
|
}
|
|
4332
|
-
ValueChangeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: ValueChangeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4357
|
+
ValueChangeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: ValueChangeService, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4333
4358
|
ValueChangeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: ValueChangeService });
|
|
4334
4359
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: ValueChangeService, decorators: [{
|
|
4335
4360
|
type: Injectable
|
|
4336
|
-
}], ctorParameters: function () { return []; } });
|
|
4361
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; } });
|
|
4337
4362
|
|
|
4338
4363
|
class SelectSearchTriggerComponent {
|
|
4339
4364
|
constructor() {
|
|
@@ -4387,7 +4412,8 @@ class SelectTestComponent {
|
|
|
4387
4412
|
constructor(valueChangeService) {
|
|
4388
4413
|
this.valueChangeService = valueChangeService;
|
|
4389
4414
|
//! Refacto improve sroll on mobile, see with Pauline
|
|
4390
|
-
// todo handle
|
|
4415
|
+
// todo handle when user search with first letter from keyboard event
|
|
4416
|
+
// angular material select https://github.com/angular/components/blob/main/src/material/select/select.ts
|
|
4391
4417
|
this.role = 'combobox';
|
|
4392
4418
|
this.valueChange = new EventEmitter();
|
|
4393
4419
|
this.disabled = false;
|
|
@@ -4502,28 +4528,34 @@ class SelectTestComponent {
|
|
|
4502
4528
|
}
|
|
4503
4529
|
/** Handles keyboard events when the selected is open. */
|
|
4504
4530
|
_handleOpenKeydown(event) {
|
|
4531
|
+
console.log('event', event);
|
|
4505
4532
|
const keyCode = event.keyCode;
|
|
4506
4533
|
const isArrowKey = keyCode === DOWN_ARROW ||
|
|
4507
4534
|
keyCode === UP_ARROW ||
|
|
4508
4535
|
keyCode === LEFT_ARROW ||
|
|
4509
4536
|
keyCode === RIGHT_ARROW;
|
|
4510
4537
|
const isEscapeKey = keyCode === ESCAPE || keyCode === ENTER || keyCode === SPACE;
|
|
4538
|
+
const isTyping = (keyCode >= A && keyCode <= Z) || (keyCode >= ZERO && keyCode <= NINE);
|
|
4511
4539
|
if ((isArrowKey && event.altKey) || isEscapeKey) {
|
|
4512
4540
|
// Close the select on ALT + arrow key to match the native <select>
|
|
4513
4541
|
event.preventDefault();
|
|
4514
4542
|
this.openPanel = false;
|
|
4515
4543
|
return;
|
|
4516
4544
|
}
|
|
4517
|
-
if (
|
|
4545
|
+
else if (isArrowKey) {
|
|
4546
|
+
event.preventDefault(); // prevents the page from scrolling
|
|
4547
|
+
// select the next option on arrow key down
|
|
4548
|
+
if (keyCode === DOWN_ARROW || keyCode === RIGHT_ARROW) {
|
|
4549
|
+
this.valueChangeService.selectNextOption();
|
|
4550
|
+
return;
|
|
4551
|
+
}
|
|
4552
|
+
this.valueChangeService.selectPreviousOption();
|
|
4518
4553
|
return;
|
|
4519
4554
|
}
|
|
4520
|
-
|
|
4521
|
-
|
|
4522
|
-
if (keyCode === DOWN_ARROW || keyCode === RIGHT_ARROW) {
|
|
4523
|
-
this.valueChangeService.selectNextOption();
|
|
4555
|
+
if (isTyping && !this.customSearchTrigger) {
|
|
4556
|
+
this.valueChangeService.searchOptionByFirstLetter(event.key);
|
|
4524
4557
|
return;
|
|
4525
4558
|
}
|
|
4526
|
-
this.valueChangeService.selectPreviousOption();
|
|
4527
4559
|
}
|
|
4528
4560
|
writeValue(value) {
|
|
4529
4561
|
if (isNaN(value)) {
|
|
@@ -4546,13 +4578,13 @@ SelectTestComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", vers
|
|
|
4546
4578
|
SelectTestComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.7", type: SelectTestComponent, selector: "wac-select-test", inputs: { value: "value", required: "required", disabled: "disabled", keepPanelOpen: "keepPanelOpen", openPanel: "openPanel", enableSearch: "enableSearch" }, outputs: { valueChange: "valueChange", openPanelChange: "openPanelChange" }, host: { listeners: { "document:keydown": "_handleKeydown($event)" }, properties: { "attr.role": "this.role" } }, providers: [
|
|
4547
4579
|
{ provide: NG_VALUE_ACCESSOR, useExisting: SelectTestComponent, multi: true },
|
|
4548
4580
|
ValueChangeService
|
|
4549
|
-
], queries: [{ propertyName: "customSearchTrigger", first: true, predicate: SelectSearchTriggerComponent, descendants: true }, { propertyName: "label", first: true, predicate: LabelComponent, descendants: true }, { propertyName: "optionChildren", predicate: OPTION_SELECTION_HANDLER, descendants: true }], ngImport: i0, template: "<p *ngIf=\"!!label\" class=\"wac-select-test__label\">\n <ng-content select=\"wac-label, .wac-label\" ></ng-content>\n</p>\n\n\n<div\n class=\"wac-select-test\"\n wzAutoHide\n (clickOutside)=\"onClosePanel()\"\n [triggerElement]=\"'wac-select-test__header__selection'\"\n [zIndexToggle]=\"openPanel\"\n >\n\n <div class=\"wac-select-test__header\" [ngClass]=\"{ 'select-disabled' : disabled }\" (click)=\"!disabled && onTogglePanel()\" tabindex=\"0\">\n\n <ng-container [ngTemplateOutlet]=\"openPanel ? openPanelTrigger : closePanelTrigger\" >\n\n <ng-template #closePanelTrigger>\n <ng-container [ngTemplateOutlet]=\"defaultTrigger\"></ng-container>\n </ng-template>\n\n <ng-template #openPanelTrigger>\n <ng-content *ngIf=\"!!customSearchTrigger; else defaultTrigger\" select=\"wac-select-search-trigger\" ></ng-content>\n </ng-template>\n\n <ng-template #defaultTrigger>\n <ng-content *ngIf=\"!selectedOptionContent\" select=\"wac-placeholder,[role=placeholder]\"></ng-content>\n <div\n class=\"wac-select-test__header__selection wac-option__placeholder\"\n *ngIf=\"!!selectedOptionContent\"\n [innerHtml]=\"selectedOptionContent\">\n </div>\n </ng-template>\n\n </ng-container>\n\n <span class=\"wac-select-test__header__chevron\"><i class=\"fas fa-chevron-down\"></i></span>\n\n </div>\n\n\n <div class=\"wac-select-test__content\" *ngIf=\"!disabled\" [ngClass]=\"{ hidden: !openPanel, open: openPanel }\">\n\n <perfect-scrollbar [config]=\"{ suppressScrollX: true }\">\n <ng-content\n select=\"wac-option-call-to-action, wac-option, option, .option, [selectOption]\">\n </ng-content>\n </perfect-scrollbar>\n\n <div *ngIf=\"!optionChildren?.length\" class=\"wac-select-test__content__empty\">\n <span>{{'wac.datatable.noresult' | translate}}</span>\n </div>\n\n </div>\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: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: AutoHideDirective, selector: "[wzAutoHide]", inputs: ["triggerElement", "forceOn"], outputs: ["clickOutside"] }, { kind: "directive", type: ZindexToggleDirective, selector: "[zIndexToggle]", inputs: ["zIndexToggle"], outputs: ["onEventChange"] }, { kind: "component", type: i4$1.PerfectScrollbarComponent, selector: "perfect-scrollbar", inputs: ["disabled", "usePSClass", "autoPropagation", "scrollIndicators", "config"], outputs: ["psScrollY", "psScrollX", "psScrollUp", "psScrollDown", "psScrollLeft", "psScrollRight", "psYReachEnd", "psYReachStart", "psXReachEnd", "psXReachStart"], exportAs: ["ngxPerfectScrollbar"] }, { kind: "pipe", type: i1$3.TranslatePipe, name: "translate" }], encapsulation: i0.ViewEncapsulation.None });
|
|
4581
|
+
], queries: [{ propertyName: "customSearchTrigger", first: true, predicate: SelectSearchTriggerComponent, descendants: true }, { propertyName: "label", first: true, predicate: LabelComponent, descendants: true }, { propertyName: "optionChildren", predicate: OPTION_SELECTION_HANDLER, descendants: true }], ngImport: i0, template: "<p *ngIf=\"!!label\" class=\"wac-select-test__label\">\n <ng-content select=\"wac-label, .wac-label\" ></ng-content>\n</p>\n\n\n<div\n class=\"wac-select-test\"\n wzAutoHide\n (clickOutside)=\"onClosePanel()\"\n [triggerElement]=\"'wac-select-test__header__selection'\"\n [zIndexToggle]=\"openPanel\"\n >\n\n <div class=\"wac-select-test__header\" [ngClass]=\"{ 'select-disabled' : disabled }\" (click)=\"!disabled && onTogglePanel()\" tabindex=\"0\">\n\n <ng-container [ngTemplateOutlet]=\"openPanel ? openPanelTrigger : closePanelTrigger\" >\n\n <ng-template #closePanelTrigger>\n <ng-container [ngTemplateOutlet]=\"defaultTrigger\"></ng-container>\n </ng-template>\n\n <ng-template #openPanelTrigger>\n <ng-content *ngIf=\"!!customSearchTrigger; else defaultTrigger\" select=\"wac-select-search-trigger\" ></ng-content>\n </ng-template>\n\n <ng-template #defaultTrigger>\n <ng-content *ngIf=\"!selectedOptionContent\" select=\"wac-placeholder,[role=placeholder]\"></ng-content>\n <div\n class=\"wac-select-test__header__selection wac-option__placeholder\"\n *ngIf=\"!!selectedOptionContent\"\n [innerHtml]=\"selectedOptionContent\">\n </div>\n </ng-template>\n\n </ng-container>\n\n <span class=\"wac-select-test__header__chevron\"><i class=\"fas fa-chevron-down\"></i></span>\n\n </div>\n\n\n <div class=\"wac-select-test__content\" *ngIf=\"!disabled\" [ngClass]=\"{ hidden: !openPanel, open: openPanel }\">\n\n <perfect-scrollbar [config]=\"{ suppressScrollX: true }\">\n <ng-content\n select=\"wac-option-call-to-action, wac-option, option, .option, [selectOption]\">\n </ng-content>\n </perfect-scrollbar>\n\n <div *ngIf=\"!optionChildren?.length\" class=\"wac-select-test__content__empty\">\n <span>{{'wac.datatable.noresult' | translate}}</span>\n </div>\n\n </div>\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: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: AutoHideDirective, selector: "[wzAutoHide]", inputs: ["triggerElement", "forceOn"], outputs: ["clickOutside"] }, { kind: "directive", type: ZindexToggleDirective, selector: "[zIndexToggle]", inputs: ["zIndexToggle"], outputs: ["onEventChange"] }, { kind: "component", type: i4$1.PerfectScrollbarComponent, selector: "perfect-scrollbar", inputs: ["disabled", "usePSClass", "autoPropagation", "scrollIndicators", "config"], outputs: ["psScrollY", "psScrollX", "psScrollUp", "psScrollDown", "psScrollLeft", "psScrollRight", "psYReachEnd", "psYReachStart", "psXReachEnd", "psXReachStart"], exportAs: ["ngxPerfectScrollbar"] }, { kind: "pipe", type: i1$3.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
4550
4582
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: SelectTestComponent, decorators: [{
|
|
4551
4583
|
type: Component,
|
|
4552
4584
|
args: [{ selector: 'wac-select-test', providers: [
|
|
4553
4585
|
{ provide: NG_VALUE_ACCESSOR, useExisting: SelectTestComponent, multi: true },
|
|
4554
4586
|
ValueChangeService
|
|
4555
|
-
], encapsulation: ViewEncapsulation.None, template: "<p *ngIf=\"!!label\" class=\"wac-select-test__label\">\n <ng-content select=\"wac-label, .wac-label\" ></ng-content>\n</p>\n\n\n<div\n class=\"wac-select-test\"\n wzAutoHide\n (clickOutside)=\"onClosePanel()\"\n [triggerElement]=\"'wac-select-test__header__selection'\"\n [zIndexToggle]=\"openPanel\"\n >\n\n <div class=\"wac-select-test__header\" [ngClass]=\"{ 'select-disabled' : disabled }\" (click)=\"!disabled && onTogglePanel()\" tabindex=\"0\">\n\n <ng-container [ngTemplateOutlet]=\"openPanel ? openPanelTrigger : closePanelTrigger\" >\n\n <ng-template #closePanelTrigger>\n <ng-container [ngTemplateOutlet]=\"defaultTrigger\"></ng-container>\n </ng-template>\n\n <ng-template #openPanelTrigger>\n <ng-content *ngIf=\"!!customSearchTrigger; else defaultTrigger\" select=\"wac-select-search-trigger\" ></ng-content>\n </ng-template>\n\n <ng-template #defaultTrigger>\n <ng-content *ngIf=\"!selectedOptionContent\" select=\"wac-placeholder,[role=placeholder]\"></ng-content>\n <div\n class=\"wac-select-test__header__selection wac-option__placeholder\"\n *ngIf=\"!!selectedOptionContent\"\n [innerHtml]=\"selectedOptionContent\">\n </div>\n </ng-template>\n\n </ng-container>\n\n <span class=\"wac-select-test__header__chevron\"><i class=\"fas fa-chevron-down\"></i></span>\n\n </div>\n\n\n <div class=\"wac-select-test__content\" *ngIf=\"!disabled\" [ngClass]=\"{ hidden: !openPanel, open: openPanel }\">\n\n <perfect-scrollbar [config]=\"{ suppressScrollX: true }\">\n <ng-content\n select=\"wac-option-call-to-action, wac-option, option, .option, [selectOption]\">\n </ng-content>\n </perfect-scrollbar>\n\n <div *ngIf=\"!optionChildren?.length\" class=\"wac-select-test__content__empty\">\n <span>{{'wac.datatable.noresult' | translate}}</span>\n </div>\n\n </div>\n</div>" }]
|
|
4587
|
+
], encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, template: "<p *ngIf=\"!!label\" class=\"wac-select-test__label\">\n <ng-content select=\"wac-label, .wac-label\" ></ng-content>\n</p>\n\n\n<div\n class=\"wac-select-test\"\n wzAutoHide\n (clickOutside)=\"onClosePanel()\"\n [triggerElement]=\"'wac-select-test__header__selection'\"\n [zIndexToggle]=\"openPanel\"\n >\n\n <div class=\"wac-select-test__header\" [ngClass]=\"{ 'select-disabled' : disabled }\" (click)=\"!disabled && onTogglePanel()\" tabindex=\"0\">\n\n <ng-container [ngTemplateOutlet]=\"openPanel ? openPanelTrigger : closePanelTrigger\" >\n\n <ng-template #closePanelTrigger>\n <ng-container [ngTemplateOutlet]=\"defaultTrigger\"></ng-container>\n </ng-template>\n\n <ng-template #openPanelTrigger>\n <ng-content *ngIf=\"!!customSearchTrigger; else defaultTrigger\" select=\"wac-select-search-trigger\" ></ng-content>\n </ng-template>\n\n <ng-template #defaultTrigger>\n <ng-content *ngIf=\"!selectedOptionContent\" select=\"wac-placeholder,[role=placeholder]\"></ng-content>\n <div\n class=\"wac-select-test__header__selection wac-option__placeholder\"\n *ngIf=\"!!selectedOptionContent\"\n [innerHtml]=\"selectedOptionContent\">\n </div>\n </ng-template>\n\n </ng-container>\n\n <span class=\"wac-select-test__header__chevron\"><i class=\"fas fa-chevron-down\"></i></span>\n\n </div>\n\n\n <div class=\"wac-select-test__content\" *ngIf=\"!disabled\" [ngClass]=\"{ hidden: !openPanel, open: openPanel }\">\n\n <perfect-scrollbar [config]=\"{ suppressScrollX: true }\">\n <ng-content\n select=\"wac-option-call-to-action, wac-option, option, .option, [selectOption]\">\n </ng-content>\n </perfect-scrollbar>\n\n <div *ngIf=\"!optionChildren?.length\" class=\"wac-select-test__content__empty\">\n <span>{{'wac.datatable.noresult' | translate}}</span>\n </div>\n\n </div>\n</div>" }]
|
|
4556
4588
|
}], ctorParameters: function () { return [{ type: ValueChangeService }]; }, propDecorators: { role: [{
|
|
4557
4589
|
type: HostBinding,
|
|
4558
4590
|
args: ['attr.role']
|
|
@@ -4587,33 +4619,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImpor
|
|
|
4587
4619
|
}] } });
|
|
4588
4620
|
|
|
4589
4621
|
class OptionComponent {
|
|
4590
|
-
constructor(renderer, elementRef) {
|
|
4622
|
+
constructor(renderer, elementRef, changeDetectorRef) {
|
|
4591
4623
|
this.renderer = renderer;
|
|
4592
4624
|
this.elementRef = elementRef;
|
|
4625
|
+
this.changeDetectorRef = changeDetectorRef;
|
|
4593
4626
|
this.disabled = false;
|
|
4594
4627
|
this.selectedChange = new EventEmitter();
|
|
4595
4628
|
}
|
|
4596
4629
|
set selected(selected) {
|
|
4597
4630
|
this._selected = selected;
|
|
4598
4631
|
selected ? this.renderer.addClass(this.elementRef.nativeElement, 'selected') : this.renderer.removeClass(this.elementRef.nativeElement, 'selected');
|
|
4632
|
+
this.changeDetectorRef.markForCheck();
|
|
4599
4633
|
}
|
|
4600
4634
|
get selected() {
|
|
4601
4635
|
return this._selected;
|
|
4602
4636
|
}
|
|
4603
|
-
ngOnInit() {
|
|
4604
|
-
}
|
|
4605
4637
|
onSelectOption() {
|
|
4606
4638
|
if (this.disabled) {
|
|
4607
4639
|
return;
|
|
4608
4640
|
}
|
|
4609
4641
|
this.selected = !this.selected;
|
|
4610
4642
|
this.selectedChange.emit(this.value);
|
|
4643
|
+
this.changeDetectorRef.markForCheck();
|
|
4611
4644
|
}
|
|
4612
4645
|
getValue() {
|
|
4613
4646
|
return this.value;
|
|
4614
4647
|
}
|
|
4615
4648
|
setValue(value) {
|
|
4616
4649
|
this.value = value;
|
|
4650
|
+
this.changeDetectorRef.markForCheck();
|
|
4617
4651
|
}
|
|
4618
4652
|
isSelected() {
|
|
4619
4653
|
return this.selected;
|
|
@@ -4626,12 +4660,12 @@ class OptionComponent {
|
|
|
4626
4660
|
return this.contentRef;
|
|
4627
4661
|
}
|
|
4628
4662
|
}
|
|
4629
|
-
OptionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: OptionComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
4630
|
-
OptionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.7", type: OptionComponent, selector: "wac-option", inputs: { disabled: "disabled", value: "value", selected: "selected" }, outputs: { selectedChange: "selectedChange" }, providers: [{ provide: OPTION_SELECTION_HANDLER, useExisting: OptionComponent }], viewQueries: [{ propertyName: "contentRef", first: true, predicate: ["contentWrapper"], descendants: true }], ngImport: i0, template: "<div\n [ngClass]=\"{ 'disabled': disabled }\"\n class=\"wac-option\"\n (click)=\"onSelectOption()\"\n >\n <div [ngClass]=\"{ 'selected': !disabled && selected, 'disabled': disabled }\" #contentWrapper>\n <ng-content></ng-content>\n </div>\n</div>", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
4663
|
+
OptionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: OptionComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
4664
|
+
OptionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.7", type: OptionComponent, selector: "wac-option", inputs: { disabled: "disabled", value: "value", selected: "selected" }, outputs: { selectedChange: "selectedChange" }, providers: [{ provide: OPTION_SELECTION_HANDLER, useExisting: OptionComponent }], viewQueries: [{ propertyName: "contentRef", first: true, predicate: ["contentWrapper"], descendants: true }], ngImport: i0, template: "<div\n [ngClass]=\"{ 'disabled': disabled }\"\n class=\"wac-option\"\n (click)=\"onSelectOption()\"\n >\n <div [ngClass]=\"{ 'selected': !disabled && selected, 'disabled': disabled }\" #contentWrapper>\n <ng-content></ng-content>\n </div>\n</div>", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
4631
4665
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: OptionComponent, decorators: [{
|
|
4632
4666
|
type: Component,
|
|
4633
|
-
args: [{ selector: 'wac-option', encapsulation: ViewEncapsulation.None, providers: [{ provide: OPTION_SELECTION_HANDLER, useExisting: OptionComponent }], template: "<div\n [ngClass]=\"{ 'disabled': disabled }\"\n class=\"wac-option\"\n (click)=\"onSelectOption()\"\n >\n <div [ngClass]=\"{ 'selected': !disabled && selected, 'disabled': disabled }\" #contentWrapper>\n <ng-content></ng-content>\n </div>\n</div>" }]
|
|
4634
|
-
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { contentRef: [{
|
|
4667
|
+
args: [{ selector: 'wac-option', encapsulation: ViewEncapsulation.None, providers: [{ provide: OPTION_SELECTION_HANDLER, useExisting: OptionComponent }], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\n [ngClass]=\"{ 'disabled': disabled }\"\n class=\"wac-option\"\n (click)=\"onSelectOption()\"\n >\n <div [ngClass]=\"{ 'selected': !disabled && selected, 'disabled': disabled }\" #contentWrapper>\n <ng-content></ng-content>\n </div>\n</div>" }]
|
|
4668
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { contentRef: [{
|
|
4635
4669
|
type: ViewChild,
|
|
4636
4670
|
args: ['contentWrapper']
|
|
4637
4671
|
}], disabled: [{
|
|
@@ -4673,13 +4707,14 @@ class WrapperSidebarComponent {
|
|
|
4673
4707
|
this.reverse = false;
|
|
4674
4708
|
this.hideBackground = false;
|
|
4675
4709
|
this.stickySidebar = false;
|
|
4710
|
+
this.transparentSidebar = false;
|
|
4676
4711
|
}
|
|
4677
4712
|
}
|
|
4678
4713
|
WrapperSidebarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: WrapperSidebarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4679
|
-
WrapperSidebarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.7", type: WrapperSidebarComponent, selector: "wac-wrapper-sidebar", inputs: { reverse: "reverse", hideBackground: "hideBackground", backgroundGrey: "backgroundGrey", backgroundWidth: "backgroundWidth", stickySidebar: "stickySidebar" }, ngImport: i0, template: "<div class=\"wac-wrapper-sidebar\" [ngClass]=\"{'reverse': reverse}\">\n <div class=\"wac-wrapper-sidebar__left\" [ngClass]=\"{'sticky': stickySidebar}\">\n <ng-content select=\"[sidebar]\"></ng-content>\n </div>\n <div class=\"wac-wrapper-sidebar__right\" [style.backgroundImage]=\"!hideBackground && backgroundGrey !== '' ? 'url(' + backgroundGrey + ')' : ''\" [style.backgroundSize]=\"backgroundWidth\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
4714
|
+
WrapperSidebarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.7", type: WrapperSidebarComponent, selector: "wac-wrapper-sidebar", inputs: { reverse: "reverse", hideBackground: "hideBackground", backgroundGrey: "backgroundGrey", backgroundWidth: "backgroundWidth", stickySidebar: "stickySidebar", transparentSidebar: "transparentSidebar" }, ngImport: i0, template: "<div class=\"wac-wrapper-sidebar\" [ngClass]=\"{'reverse': reverse}\">\n <div class=\"wac-wrapper-sidebar__left\" [ngClass]=\"{'sticky': stickySidebar, 'transparent': transparentSidebar}\">\n <ng-content select=\"[sidebar]\"></ng-content>\n </div>\n <div class=\"wac-wrapper-sidebar__right\" [style.backgroundImage]=\"!hideBackground && backgroundGrey !== '' ? 'url(' + backgroundGrey + ')' : ''\" [style.backgroundSize]=\"backgroundWidth\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
4680
4715
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: WrapperSidebarComponent, decorators: [{
|
|
4681
4716
|
type: Component,
|
|
4682
|
-
args: [{ selector: 'wac-wrapper-sidebar', template: "<div class=\"wac-wrapper-sidebar\" [ngClass]=\"{'reverse': reverse}\">\n <div class=\"wac-wrapper-sidebar__left\" [ngClass]=\"{'sticky': stickySidebar}\">\n <ng-content select=\"[sidebar]\"></ng-content>\n </div>\n <div class=\"wac-wrapper-sidebar__right\" [style.backgroundImage]=\"!hideBackground && backgroundGrey !== '' ? 'url(' + backgroundGrey + ')' : ''\" [style.backgroundSize]=\"backgroundWidth\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</div>\n" }]
|
|
4717
|
+
args: [{ selector: 'wac-wrapper-sidebar', template: "<div class=\"wac-wrapper-sidebar\" [ngClass]=\"{'reverse': reverse}\">\n <div class=\"wac-wrapper-sidebar__left\" [ngClass]=\"{'sticky': stickySidebar, 'transparent': transparentSidebar}\">\n <ng-content select=\"[sidebar]\"></ng-content>\n </div>\n <div class=\"wac-wrapper-sidebar__right\" [style.backgroundImage]=\"!hideBackground && backgroundGrey !== '' ? 'url(' + backgroundGrey + ')' : ''\" [style.backgroundSize]=\"backgroundWidth\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</div>\n" }]
|
|
4683
4718
|
}], ctorParameters: function () { return []; }, propDecorators: { reverse: [{
|
|
4684
4719
|
type: Input
|
|
4685
4720
|
}], hideBackground: [{
|
|
@@ -4690,6 +4725,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImpor
|
|
|
4690
4725
|
type: Input
|
|
4691
4726
|
}], stickySidebar: [{
|
|
4692
4727
|
type: Input
|
|
4728
|
+
}], transparentSidebar: [{
|
|
4729
|
+
type: Input
|
|
4693
4730
|
}] } });
|
|
4694
4731
|
|
|
4695
4732
|
class BreadcrumbsComponent {
|
|
@@ -5433,6 +5470,44 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImpor
|
|
|
5433
5470
|
type: Input
|
|
5434
5471
|
}] } });
|
|
5435
5472
|
|
|
5473
|
+
;
|
|
5474
|
+
class SummaryComponent {
|
|
5475
|
+
constructor() {
|
|
5476
|
+
this._activeItem = 0;
|
|
5477
|
+
this.itemChanged = new EventEmitter();
|
|
5478
|
+
}
|
|
5479
|
+
set activeItem(activeItem) {
|
|
5480
|
+
this._activeItem = activeItem;
|
|
5481
|
+
}
|
|
5482
|
+
get activeItem() {
|
|
5483
|
+
return this._activeItem;
|
|
5484
|
+
}
|
|
5485
|
+
scrollToItem(i) {
|
|
5486
|
+
this._activeItem = i;
|
|
5487
|
+
this.itemChanged.emit(i);
|
|
5488
|
+
if (this.items[i].href) {
|
|
5489
|
+
const yOffset = -20;
|
|
5490
|
+
const element = window.document.getElementById(this.items[i].href);
|
|
5491
|
+
if (element) {
|
|
5492
|
+
const y = element.getBoundingClientRect().top + window.pageYOffset + yOffset;
|
|
5493
|
+
window.scrollTo({ top: y, behavior: 'smooth' });
|
|
5494
|
+
}
|
|
5495
|
+
}
|
|
5496
|
+
}
|
|
5497
|
+
}
|
|
5498
|
+
SummaryComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: SummaryComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5499
|
+
SummaryComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.7", type: SummaryComponent, selector: "wac-summary", inputs: { activeItem: "activeItem", items: "items" }, outputs: { itemChanged: "itemChanged" }, ngImport: i0, template: "<div class=\"wac-summary\">\n <ng-container *ngFor=\"let item of items; let i = index\">\n <p [ngClass]=\"{'active' : activeItem === i, 'item-link': item.href}\" (click)=\"scrollToItem(i)\">{{ item.label }}</p>\n </ng-container>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
5500
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: SummaryComponent, decorators: [{
|
|
5501
|
+
type: Component,
|
|
5502
|
+
args: [{ selector: 'wac-summary', encapsulation: ViewEncapsulation.None, template: "<div class=\"wac-summary\">\n <ng-container *ngFor=\"let item of items; let i = index\">\n <p [ngClass]=\"{'active' : activeItem === i, 'item-link': item.href}\" (click)=\"scrollToItem(i)\">{{ item.label }}</p>\n </ng-container>\n</div>\n" }]
|
|
5503
|
+
}], ctorParameters: function () { return []; }, propDecorators: { activeItem: [{
|
|
5504
|
+
type: Input
|
|
5505
|
+
}], items: [{
|
|
5506
|
+
type: Input
|
|
5507
|
+
}], itemChanged: [{
|
|
5508
|
+
type: Output
|
|
5509
|
+
}] } });
|
|
5510
|
+
|
|
5436
5511
|
const components = [
|
|
5437
5512
|
TagComponent,
|
|
5438
5513
|
TabComponent,
|
|
@@ -5493,7 +5568,8 @@ const components = [
|
|
|
5493
5568
|
ContentWithButtonsComponent,
|
|
5494
5569
|
WrapperMultipleBlockComponent,
|
|
5495
5570
|
DraganddropListComponent,
|
|
5496
|
-
BlockSeparatorComponent
|
|
5571
|
+
BlockSeparatorComponent,
|
|
5572
|
+
SummaryComponent
|
|
5497
5573
|
];
|
|
5498
5574
|
const exportsFromModule = [
|
|
5499
5575
|
PaginationComponent,
|
|
@@ -5573,7 +5649,8 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
5573
5649
|
ContentWithButtonsComponent,
|
|
5574
5650
|
WrapperMultipleBlockComponent,
|
|
5575
5651
|
DraganddropListComponent,
|
|
5576
|
-
BlockSeparatorComponent
|
|
5652
|
+
BlockSeparatorComponent,
|
|
5653
|
+
SummaryComponent], imports: [CommonModule,
|
|
5577
5654
|
FormsModule,
|
|
5578
5655
|
NwbAllModule, i1$3.TranslateModule, ReactiveFormsModule,
|
|
5579
5656
|
SharedDirectives,
|
|
@@ -5655,7 +5732,8 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
5655
5732
|
ContentWithButtonsComponent,
|
|
5656
5733
|
WrapperMultipleBlockComponent,
|
|
5657
5734
|
DraganddropListComponent,
|
|
5658
|
-
BlockSeparatorComponent,
|
|
5735
|
+
BlockSeparatorComponent,
|
|
5736
|
+
SummaryComponent, PaginationComponent,
|
|
5659
5737
|
TableComponent,
|
|
5660
5738
|
TableColumn,
|
|
5661
5739
|
CheckBoxRow,
|
|
@@ -5774,5 +5852,5 @@ class TableFiltersGroup extends NwbFilterGroup {
|
|
|
5774
5852
|
* Generated bundle index. Do not edit.
|
|
5775
5853
|
*/
|
|
5776
5854
|
|
|
5777
|
-
export { ACCORDION_ITEM, AbstractDebounceDirective, AccordionComponent, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AreAllOptionsSelectedPipe, AutoHideDirective, BackComponent, BlockComponent, BlockSeparatorComponent, BlockTitleLegacyComponent, BlockWithCheckboxComponent, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CardPriceComponent, CheckBoxRow, CheckboxComponent, ConfirmDeleteComponent, ContentWithButtonsComponent, DebounceKeyupDirective, DeleteComponent, DraganddropListComponent, DropdownComponent, EXPANSION_PANEL_HEADER, ExpansionExport, ExpansionModule, ExpansionPanelBase, ExpansionPanelComponent, ExpansionPanelDirective, ExpansionPanelHeaderComponent, ExpansionPanelHeaderDirective, FilterOptionsPipe, FiltersComponent, FiltersTableService, FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe, FreePopinComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HtmlContainer, ImageComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, KeypressEnterDirective, LabelComponent, LinkComponent, LoaderComponent, LogoComponent, MosaicComponent, MultipleSearchComponent, MultipleSearchPlusComponent, OptionCallToActionComponent, OptionComponent, OptionalDisableContainerComponent, PaginationComponent, PlaceholderComponent, PopinComponent, ProgressBarComponent, RadioComponent, SearchComponent, SelectComponent, SelectFiltersPipe, SelectInTextComponent, SelectOptionDirective, SelectSearchTriggerComponent, SelectTestComponent, SelectedListComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SharedPipes, SnackbarComponent, StateComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableFiltersGroup, TableRow, TagComponent, TagLabelComponent, TextAreaComponent, TextComponent, TokenCheckComponent, TooltipComponent, TreeComponent, TreeModule, UploadComponent, VarDirective, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, WrapperMultipleBlockComponent, WrapperSidebarComponent, WzEditInPlaceComponent, ZindexToggleDirective };
|
|
5855
|
+
export { ACCORDION_ITEM, AbstractDebounceDirective, AccordionComponent, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AreAllOptionsSelectedPipe, AutoHideDirective, BackComponent, BlockComponent, BlockSeparatorComponent, BlockTitleLegacyComponent, BlockWithCheckboxComponent, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CardPriceComponent, CheckBoxRow, CheckboxComponent, ConfirmDeleteComponent, ContentWithButtonsComponent, DebounceKeyupDirective, DeleteComponent, DraganddropListComponent, DropdownComponent, EXPANSION_PANEL_HEADER, ExpansionExport, ExpansionModule, ExpansionPanelBase, ExpansionPanelComponent, ExpansionPanelDirective, ExpansionPanelHeaderComponent, ExpansionPanelHeaderDirective, FilterOptionsPipe, FiltersComponent, FiltersTableService, FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe, FreePopinComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HtmlContainer, ImageComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, KeypressEnterDirective, LabelComponent, LinkComponent, LoaderComponent, LogoComponent, MosaicComponent, MultipleSearchComponent, MultipleSearchPlusComponent, OptionCallToActionComponent, OptionComponent, OptionalDisableContainerComponent, PaginationComponent, PlaceholderComponent, PopinComponent, ProgressBarComponent, RadioComponent, SearchComponent, SelectComponent, SelectFiltersPipe, SelectInTextComponent, SelectOptionDirective, SelectSearchTriggerComponent, SelectTestComponent, SelectedListComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SharedPipes, SnackbarComponent, StateComponent, SummaryComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableFiltersGroup, TableRow, TagComponent, TagLabelComponent, TextAreaComponent, TextComponent, TokenCheckComponent, TooltipComponent, TreeComponent, TreeModule, UploadComponent, VarDirective, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, WrapperMultipleBlockComponent, WrapperSidebarComponent, WzEditInPlaceComponent, ZindexToggleDirective };
|
|
5778
5856
|
//# sourceMappingURL=wizishop-angular-components.mjs.map
|