@wizishop/angular-components 0.0.73 → 0.0.76

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.
Files changed (30) hide show
  1. package/angular-components.scss +263 -262
  2. package/assets/i18n/en.json +1 -1
  3. package/assets/i18n/fr.json +1 -1
  4. package/bundles/wizishop-angular-components.umd.js +74 -50
  5. package/bundles/wizishop-angular-components.umd.js.map +1 -1
  6. package/bundles/wizishop-angular-components.umd.min.js +1 -1
  7. package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
  8. package/esm2015/lib/components/button/button.component.js +2 -2
  9. package/esm2015/lib/components/selects/select/select.component.js +30 -37
  10. package/esm2015/lib/components/selects/select-items.dto.js +1 -1
  11. package/esm2015/lib/components/shared-components.module.js +3 -1
  12. package/esm2015/lib/components/tree/tree.component.js +8 -5
  13. package/esm2015/lib/components/tree/tree.dto.js +1 -1
  14. package/esm2015/lib/pipes/select/select-filters.pipe.js +15 -0
  15. package/esm2015/lib/pipes/shared-pipes.module.js +7 -3
  16. package/esm2015/lib/pipes/tree/format-object-to-recursif-tree.pipe.js +10 -5
  17. package/esm2015/lib/pipes/tree/format-object-to-simple-tree.pipe.js +9 -5
  18. package/esm2015/public-api.js +2 -1
  19. package/fesm2015/wizishop-angular-components.js +74 -52
  20. package/fesm2015/wizishop-angular-components.js.map +1 -1
  21. package/lib/components/selects/select/select.component.d.ts +10 -10
  22. package/lib/components/selects/select-items.dto.d.ts +1 -1
  23. package/lib/components/tree/tree.component.d.ts +2 -1
  24. package/lib/components/tree/tree.dto.d.ts +2 -0
  25. package/lib/pipes/select/select-filters.pipe.d.ts +5 -0
  26. package/package.json +1 -1
  27. package/public-api.d.ts +1 -0
  28. package/wizishop-angular-components-0.0.76.tgz +0 -0
  29. package/wizishop-angular-components.metadata.json +1 -1
  30. package/wizishop-angular-components-0.0.73.tgz +0 -0
@@ -1,5 +1,5 @@
1
1
  import { NwbFilterRoutingBuilder, NwbAllModule } from '@wizishop/ng-wizi-bulma';
2
- import { Component, ViewEncapsulation, Input, EventEmitter, Output, Directive, HostListener, ɵɵdefineInjectable, ɵɵinject, ComponentFactoryResolver, ApplicationRef, INJECTOR, Injectable, Injector, ElementRef, Renderer2, NgModule, ViewChild, Pipe, Inject, ContentChild } from '@angular/core';
2
+ import { Component, ViewEncapsulation, Input, EventEmitter, Output, Directive, HostListener, ɵɵdefineInjectable, ɵɵinject, ComponentFactoryResolver, ApplicationRef, INJECTOR, Injectable, Injector, ElementRef, Renderer2, NgModule, ViewChild, Pipe, Inject } from '@angular/core';
3
3
  import { CommonModule, DOCUMENT } from '@angular/common';
4
4
  import { NG_VALUE_ACCESSOR, FormsModule, ReactiveFormsModule } from '@angular/forms';
5
5
  import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar';
@@ -579,7 +579,7 @@ class ButtonComponent {
579
579
  this.label = '';
580
580
  this.icon = '';
581
581
  this.widthAuto = false;
582
- this.contentHorizontalPosition = 'left';
582
+ this.contentHorizontalPosition = 'center';
583
583
  this.iconFontSize = 12;
584
584
  this.hasLoader = false;
585
585
  this.disabled = false;
@@ -2474,21 +2474,12 @@ class SelectComponent {
2474
2474
  this.clickOnCallToAction = new EventEmitter();
2475
2475
  this.openCategories = false;
2476
2476
  this.searchValue = '';
2477
- this.currentLabel = '';
2478
- this.currentLabelIcon = '';
2477
+ this.indexItemSelected = -1;
2478
+ // ControlValueAccessor methods
2479
+ this.onChange = () => { };
2480
+ this.onTouch = () => { };
2479
2481
  }
2480
2482
  ngOnInit() {
2481
- this.currentLabel = this.placeholder;
2482
- this.emptyResult = this.translateService.instant('datatable.noresult ');
2483
- this.setInitialValues();
2484
- }
2485
- setInitialValues() {
2486
- if (!this.items.length) {
2487
- return;
2488
- }
2489
- this.triggerValueSelect = this.items;
2490
- const itemSelected = this.getItemSelected();
2491
- this.setCurrentItem(itemSelected);
2492
2483
  }
2493
2484
  onClose() {
2494
2485
  this.openCategories = false;
@@ -2496,25 +2487,20 @@ class SelectComponent {
2496
2487
  customTB(item, index) {
2497
2488
  return `${item.id}-${index}`;
2498
2489
  }
2499
- onSelectItem(index) {
2490
+ onSelectItem(id) {
2500
2491
  this.unselectAll();
2501
- const itemSelected = this.items[index];
2502
- this.setCurrentItem(itemSelected);
2503
- this.selectValue.emit(index);
2492
+ this.setIndexItemSelected(id);
2493
+ const itemSelected = this.getItemSelected();
2494
+ itemSelected.selected = true;
2495
+ this.selectValue.emit(this.indexItemSelected);
2496
+ this.onChange(itemSelected);
2504
2497
  }
2505
2498
  onClickCallToAction() {
2506
2499
  this.onClose();
2507
2500
  this.clickOnCallToAction.emit(this.callToAction.value);
2508
2501
  }
2509
2502
  getItemSelected() {
2510
- let itemSelected = null;
2511
- this.items.forEach(item => {
2512
- if (!item.selected) {
2513
- return;
2514
- }
2515
- itemSelected = item;
2516
- });
2517
- return itemSelected;
2503
+ return this.items[this.indexItemSelected];
2518
2504
  }
2519
2505
  showCategories() {
2520
2506
  this.openCategories = true;
@@ -2522,26 +2508,32 @@ class SelectComponent {
2522
2508
  this.searchElement.nativeElement.focus();
2523
2509
  }, 0);
2524
2510
  }
2525
- setCurrentItem(itemSelected) {
2526
- if (!itemSelected) {
2511
+ unselectAll() {
2512
+ this.items.forEach(item => item.selected = false);
2513
+ }
2514
+ setIndexItemSelected(id) {
2515
+ this.indexItemSelected = this.items.findIndex(item => item.id === id);
2516
+ }
2517
+ writeValue(selectItem) {
2518
+ if (!selectItem) {
2527
2519
  return;
2528
2520
  }
2529
- itemSelected.selected = true;
2530
- this.currentLabel = itemSelected.name;
2531
- this.currentLabelIcon = itemSelected.icon;
2521
+ this.unselectAll();
2522
+ selectItem.selected = true;
2523
+ this.setIndexItemSelected(selectItem.id);
2532
2524
  }
2533
- searchInSelect() {
2534
- console.log(this.searchValue);
2535
- this.triggerValueSelect = this.items.filter(item => item.name.indexOf(this.searchValue) >= 0);
2525
+ registerOnChange(fn) {
2526
+ this.onChange = fn;
2536
2527
  }
2537
- unselectAll() {
2538
- this.items.forEach(item => item.selected = false);
2528
+ registerOnTouched(fn) {
2529
+ this.onTouch = fn;
2539
2530
  }
2540
2531
  }
2541
2532
  SelectComponent.decorators = [
2542
2533
  { type: Component, args: [{
2543
2534
  selector: 'wac-select',
2544
- template: "<p *ngIf=\"label\" [innerHTML]=\"label\" class=\"wac-select__label\"></p>\n<div class=\"wac-select\" wzAutoHide (clickOutside)=\"onClose()\" [ngStyle]=\"{ 'max-width': maxWidth }\" [zIndexToggle]=\"openCategories\">\n <div class=\"wac-select__current\" [ngClass]=\"{ 'select-disabled' : disabled }\" (click)=\"!disabled && openCategories = !openCategories\" *ngIf=\"!search\">\n <span *ngIf=\"currentLabelIcon\" class=\"icon\" [innerHTML]=\"currentLabelIcon\"></span><span [innerHTML]=\"currentLabel\"></span><span><i class=\"fas fa-chevron-down\"></i></span>\n </div>\n <div class=\"wac-select__current wac-select__current--withSearch\" [ngClass]=\"{ 'select-disabled' : disabled, 'open-search': openCategories }\" *ngIf=\"search\">\n <div class=\"wac-select__current__search\" *ngIf=\"openCategories && !disabled\">\n <i class=\"far fa-search\"></i>\n <input #search type=\"text\" [(ngModel)]=\"searchValue\" (keyup)=\"searchInSelect()\" />\n </div>\n <span (click)=\"openCategories = !openCategories;\" *ngIf=\"currentLabelIcon && !openCategories\" class=\"icon\" [innerHTML]=\"currentLabelIcon\"></span>\n <span (click)=\"showCategories()\" [innerHTML]=\"currentLabel\"></span>\n <span (click)=\"openCategories = !openCategories;\"><i class=\"fas fa-chevron-down\"></i></span>\n </div>\n <div class=\"wac-select__content\" *ngIf=\"!disabled\" [ngClass]=\"{ hidden: !openCategories, open: type === 'open' }\" [ngStyle]=\"{ 'max-width': maxWidthItems }\">\n <perfect-scrollbar [config]=\"{ suppressScrollX: true }\" *ngIf=\"triggerValueSelect.length > 0\">\n <div *ngIf=\"callToAction\" class=\"wac-select__content__cta\">\n <div (click)=\"onClickCallToAction()\">\n <i *ngIf=\"callToAction.icon\" [classList]=\"callToAction.icon\"></i><strong *ngIf=\"callToAction.boldText\">{{ callToAction.boldText }}</strong\n ><span>{{ callToAction?.name }}</span>\n </div>\n </div>\n <div (click)=\"onClose()\" class=\"wac-select__content__item\" *ngFor=\"let item of triggerValueSelect; trackBy: customTB; let index = index;\">\n <div [ngClass]=\"{ selected: item.selected }\" (click)=\"onSelectItem(index)\">\n <span class=\"icon\" [innerHTML]=\"item.icon\" *ngIf=\"item.icon\"></span>{{ item.name }}\n </div>\n </div>\n </perfect-scrollbar>\n <div class=\"wac-select__content__empty\" *ngIf=\"triggerValueSelect.length === 0\">\n <span *ngIf=\"emptyResult\">{{emptyResult}}</span>\n </div>\n </div>\n</div>\n"
2535
+ template: "<p *ngIf=\"label\" [innerHTML]=\"label\" class=\"wac-select__label\"></p>\n\n<div class=\"wac-select\" wzAutoHide (clickOutside)=\"onClose()\" [ngStyle]=\"{ 'max-width': maxWidth }\" [zIndexToggle]=\"openCategories\">\n\n <div class=\"wac-select__current\" [ngClass]=\"{ 'select-disabled' : disabled }\" (click)=\"!disabled && openCategories = !openCategories\" *ngIf=\"!search\">\n <span *ngIf=\"indexItemSelected !== -1\" class=\"icon\" [innerHTML]=\"items[indexItemSelected].icon\"></span>\n <span [innerHTML]=\"indexItemSelected !== -1 ? items[indexItemSelected].name : placeholder\"></span><span><i class=\"fas fa-chevron-down\"></i></span>\n </div>\n\n <div class=\"wac-select__current wac-select__current--withSearch\" [ngClass]=\"{ 'select-disabled' : disabled, 'open-search': openCategories }\" *ngIf=\"search\">\n <div class=\"wac-select__current__search\" *ngIf=\"openCategories && !disabled\">\n <i class=\"far fa-search\"></i>\n <input #search type=\"text\" [(ngModel)]=\"searchValue\" />\n </div>\n <span (click)=\"openCategories = !openCategories;\" *ngIf=\"items[indexItemSelected]?.icon && !openCategories\" class=\"icon\" [innerHTML]=\"items[indexItemSelected].icon\"></span>\n <span (click)=\"showCategories()\" [innerHTML]=\"items[indexItemSelected]?.name ? items[indexItemSelected].name : placeholder\"></span>\n <span (click)=\"openCategories = !openCategories;\"><i class=\"fas fa-chevron-down\"></i></span>\n </div>\n\n <div class=\"wac-select__content\" *ngIf=\"!disabled\" [ngClass]=\"{ hidden: !openCategories, open: type === 'open' }\" [ngStyle]=\"{ 'max-width': maxWidthItems }\">\n <perfect-scrollbar [config]=\"{ suppressScrollX: true }\" *ngIf=\"items.length\">\n\n <div *ngIf=\"callToAction\" class=\"wac-select__content__cta\">\n <div (click)=\"onClickCallToAction()\">\n <i *ngIf=\"callToAction.icon\" [classList]=\"callToAction.icon\"></i><strong *ngIf=\"callToAction.boldText\">{{ callToAction.boldText }}</strong\n ><span>{{ callToAction?.name }}</span>\n </div>\n </div>\n\n <div\n *ngFor=\"let item of items | selectFilters: searchValue; let index = index;\"\n (click)=\"onClose()\"\n class=\"wac-select__content__item\"\n >\n <div [ngClass]=\"{ selected: item.selected }\" (click)=\"onSelectItem(item.id)\">\n <span class=\"icon\" [innerHTML]=\"item.icon\" *ngIf=\"item.icon\"></span>{{ item.name }}\n </div>\n </div>\n\n </perfect-scrollbar>\n\n <div *ngIf=\"!(items | selectFilters: searchValue)?.length\" class=\"wac-select__content__empty\">\n <span>{{'wac.datatable.noresult' | translate}}</span>\n </div>\n\n </div>\n</div>",
2536
+ providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: SelectComponent, multi: true }]
2545
2537
  },] }
2546
2538
  ];
2547
2539
  SelectComponent.ctorParameters = () => [
@@ -3299,19 +3291,22 @@ SelectedListComponent.propDecorators = {
3299
3291
  };
3300
3292
 
3301
3293
  class TreeComponent {
3302
- constructor() { }
3294
+ constructor() {
3295
+ this.treeDepth = 0;
3296
+ }
3303
3297
  ngOnInit() { }
3304
3298
  }
3305
3299
  TreeComponent.decorators = [
3306
3300
  { type: Component, args: [{
3307
3301
  selector: 'wac-tree',
3308
- template: "<div *ngFor=\"let item of items; index as i\">\n <ul>\n <li>\n\n <ng-template #defaultItem>\n {{ item?.treeLabel }}\n </ng-template>\n\n <ng-container\n [ngTemplateOutlet]=\"optionTemplateRef || defaultItem\"\n [ngTemplateOutletContext]=\"{ $implicit: item, index: i }\"\n >\n </ng-container>\n\n <wac-tree [items]=\"item.treeChildren\" *ngIf=\"item.treeChildren?.length\"></wac-tree>\n </li>\n </ul>\n</div>"
3302
+ template: "<div *ngFor=\"let item of items; index as i\" [ngClass]=\"['treeDepth-' + treeDepth]\">\n <ul>\n <li>\n\n <ng-template #defaultItem>\n {{ item?.treeLabel }}\n </ng-template>\n\n <ng-container\n [ngTemplateOutlet]=\"optionTemplate || defaultItem\"\n [ngTemplateOutletContext]=\"{ $implicit: item, index: i }\"\n >\n </ng-container>\n\n <wac-tree [optionTemplate]=\"optionTemplate\" [items]=\"item.treeChildren\" *ngIf=\"item.treeChildren?.length\" [treeDepth]=\"treeDepth + 1\">\n <!-- Todo maybe pass child template -->\n\n </wac-tree>\n </li>\n </ul>\n</div>"
3309
3303
  },] }
3310
3304
  ];
3311
3305
  TreeComponent.ctorParameters = () => [];
3312
3306
  TreeComponent.propDecorators = {
3313
3307
  items: [{ type: Input }],
3314
- optionTemplateRef: [{ type: ContentChild, args: ["optionTemplate", { static: false },] }]
3308
+ treeDepth: [{ type: Input }],
3309
+ optionTemplate: [{ type: Input, args: ["optionTemplate",] }]
3315
3310
  };
3316
3311
 
3317
3312
  class FormatObjectToRecursifTreePipe {
@@ -3320,23 +3315,28 @@ class FormatObjectToRecursifTreePipe {
3320
3315
  }
3321
3316
  transform(objectList, childrenProperties) {
3322
3317
  this.childrenProperties = childrenProperties;
3323
- objectList.forEach(object => this.recursiveFormatObjectToRecursifTree(object));
3318
+ const treeDepth = 0;
3319
+ objectList.forEach(object => this.recursiveFormatObjectToRecursifTree(object, treeDepth));
3324
3320
  return objectList;
3325
3321
  }
3326
- recursiveFormatObjectToRecursifTree(object) {
3322
+ recursiveFormatObjectToRecursifTree(object, treeDepth) {
3327
3323
  for (const childrenProperty of this.childrenProperties) {
3324
+ object.hasTreeChildren = true;
3328
3325
  if (!object.hasOwnProperty(childrenProperty)) {
3326
+ // No more chrildren
3327
+ object.hasTreeChrildren = false;
3329
3328
  continue;
3330
3329
  }
3331
- if (Array.isArray(object[childrenProperty])) {
3330
+ if (!Array.isArray(object[childrenProperty])) {
3332
3331
  throw `Property : "${childrenProperty}", is not an array. it could not be transform to a recursive list.`;
3333
3332
  }
3334
3333
  // Add treeChildren property filled with name children property
3335
3334
  object.treeChildren = object[childrenProperty];
3336
3335
  // call this function recursively until no children can be generated
3337
- this.recursiveFormatObjectToRecursifTree(object.treeChildren);
3336
+ this.recursiveFormatObjectToRecursifTree(object.treeChildren, treeDepth++);
3338
3337
  break;
3339
3338
  }
3339
+ object.treeDepth = treeDepth;
3340
3340
  }
3341
3341
  }
3342
3342
  FormatObjectToRecursifTreePipe.decorators = [
@@ -3353,10 +3353,11 @@ class FormatObjectToSimpleTreePipe {
3353
3353
  transform(objectList, childrenProperties, labelProperties) {
3354
3354
  this.childrenProperties = childrenProperties;
3355
3355
  this.labelProperties = labelProperties;
3356
- objectList.forEach(object => this.recursiveFormatObjectToSimpleTree(object));
3356
+ const treeDepth = 0;
3357
+ objectList.forEach(object => this.recursiveFormatObjectToSimpleTree(object, treeDepth));
3357
3358
  return objectList;
3358
3359
  }
3359
- recursiveFormatObjectToSimpleTree(object) {
3360
+ recursiveFormatObjectToSimpleTree(object, treeDepth) {
3360
3361
  for (const property in object) {
3361
3362
  if (!Object.prototype.hasOwnProperty.call(object, property)) {
3362
3363
  continue;
@@ -3365,16 +3366,19 @@ class FormatObjectToSimpleTreePipe {
3365
3366
  object.treeLabel = object[property];
3366
3367
  continue;
3367
3368
  }
3369
+ object.hasTreeChrildren = true;
3368
3370
  if (!this.childrenProperties.includes(property)) {
3371
+ // No more chrildren
3372
+ object.hasTreeChrildren = false;
3369
3373
  continue;
3370
3374
  }
3371
- if (Array.isArray(object[property])) {
3375
+ if (!Array.isArray(object[property])) {
3372
3376
  throw `Property : "${property}", is not an array. it could not be transform to a recursive list.`;
3373
3377
  }
3374
3378
  // Add treeChildren property filled with name children property
3375
3379
  object.treeChildren = object[property];
3376
3380
  // call this function recursively until no children can be generated
3377
- this.recursiveFormatObjectToSimpleTree(object.treeChildren);
3381
+ this.recursiveFormatObjectToSimpleTree(object.treeChildren, treeDepth++);
3378
3382
  break;
3379
3383
  }
3380
3384
  }
@@ -3385,14 +3389,31 @@ FormatObjectToSimpleTreePipe.decorators = [
3385
3389
  },] }
3386
3390
  ];
3387
3391
 
3392
+ class SelectFiltersPipe {
3393
+ transform(items, filterName) {
3394
+ return items.filter(item => {
3395
+ const regexp = new RegExp(filterName, 'i');
3396
+ return regexp.test(item.name);
3397
+ });
3398
+ }
3399
+ }
3400
+ SelectFiltersPipe.decorators = [
3401
+ { type: Pipe, args: [{
3402
+ name: 'selectFilters'
3403
+ },] }
3404
+ ];
3405
+
3388
3406
  const exportedPipes = [FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe];
3407
+ const pipes$1 = [
3408
+ SelectFiltersPipe
3409
+ ];
3389
3410
  class SharedPipes {
3390
3411
  }
3391
3412
  SharedPipes.decorators = [
3392
3413
  { type: NgModule, args: [{
3393
3414
  imports: [CommonModule, FormsModule],
3394
- declarations: exportedPipes,
3395
- exports: exportedPipes
3415
+ declarations: [...exportedPipes, ...pipes$1],
3416
+ exports: [...exportedPipes, ...pipes$1]
3396
3417
  },] }
3397
3418
  ];
3398
3419
 
@@ -3480,6 +3501,7 @@ SharedComponentsModule.decorators = [
3480
3501
  TranslateModule.forChild(),
3481
3502
  ReactiveFormsModule,
3482
3503
  SharedDirectives,
3504
+ SharedPipes,
3483
3505
  CdkTableModule,
3484
3506
  TagInputModule,
3485
3507
  PaginationModule,
@@ -3523,5 +3545,5 @@ WiziComponentsModule.decorators = [
3523
3545
  * Generated bundle index. Do not edit.
3524
3546
  */
3525
3547
 
3526
- export { AbstractDebounceDirective, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AutoHideDirective, BackComponent, BlockComponent, ButtonComponent, CalendarComponent, CheckBoxRow, CheckboxComponent, DebounceKeyupDirective, DeleteComponent, DropdownComponent, FiltersComponent, FiltersTableService, FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe, FreePopinComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HtmlContainer, ImageComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, LabelComponent, LinkComponent, LoaderComponent, LogoComponent, MultipleSearchComponent, MultipleSearchPlusComponent, PaginationComponent, PopinComponent, ProgressBarComponent, RadioComponent, SearchComponent, SelectComponent, SelectInTextComponent, SelectedListComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SharedPipes, SnackbarComponent, StateComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableRow, TagComponent, TextAreaComponent, TextComponent, TooltipComponent, TreeComponent, TreeModule, UploadComponent, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, WzEditInPlaceComponent, ZindexToggleDirective, DomService as ɵa, PaginationModule as ɵb, PagniationArrayTotalPages as ɵc, PagniationIsLastPage as ɵd, PagniationText as ɵe, TableModule as ɵf, InputSearchModule as ɵg, InputModule as ɵh, TooltipModule as ɵi, ProgressBarModule as ɵj, LoaderModule as ɵk, CheckboxModule as ɵl, inOutY as ɵm, inOutX as ɵn };
3548
+ export { AbstractDebounceDirective, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AutoHideDirective, BackComponent, BlockComponent, ButtonComponent, CalendarComponent, CheckBoxRow, CheckboxComponent, DebounceKeyupDirective, DeleteComponent, DropdownComponent, FiltersComponent, FiltersTableService, FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe, FreePopinComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HtmlContainer, ImageComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, LabelComponent, LinkComponent, LoaderComponent, LogoComponent, MultipleSearchComponent, MultipleSearchPlusComponent, PaginationComponent, PopinComponent, ProgressBarComponent, RadioComponent, SearchComponent, SelectComponent, SelectFiltersPipe, SelectInTextComponent, SelectedListComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SharedPipes, SnackbarComponent, StateComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableRow, TagComponent, TextAreaComponent, TextComponent, TooltipComponent, TreeComponent, TreeModule, UploadComponent, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, WzEditInPlaceComponent, ZindexToggleDirective, DomService as ɵa, PaginationModule as ɵb, PagniationArrayTotalPages as ɵc, PagniationIsLastPage as ɵd, PagniationText as ɵe, TableModule as ɵf, InputSearchModule as ɵg, InputModule as ɵh, TooltipModule as ɵi, ProgressBarModule as ɵj, LoaderModule as ɵk, CheckboxModule as ɵl, inOutY as ɵm, inOutX as ɵn };
3527
3549
  //# sourceMappingURL=wizishop-angular-components.js.map