@wizishop/angular-components 15.1.3 → 15.1.5

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 (35) hide show
  1. package/angular-components.scss +21 -21
  2. package/esm2020/lib/components/button/button.component.mjs +1 -1
  3. package/esm2020/lib/components/expansion/accordion/accordion.component.mjs +3 -3
  4. package/esm2020/lib/components/expansion/expansion-panel/expansion-panel.component.mjs +3 -3
  5. package/esm2020/lib/components/expansion/expansion-panel/expansion-panel.directive.mjs +75 -7
  6. package/esm2020/lib/components/expansion/expansion-panel-header/expansion-panel-header.component.mjs +3 -3
  7. package/esm2020/lib/components/expansion/expansion-panel-header/expansion-panel-header.directive.mjs +37 -7
  8. package/esm2020/lib/components/header-page/header-page.component.mjs +1 -1
  9. package/esm2020/lib/components/radio/radio-directive.mjs +4 -21
  10. package/esm2020/lib/components/selects/option/select-option.directive.mjs +2 -2
  11. package/esm2020/lib/components/tab/tab.component.mjs +3 -1
  12. package/esm2020/lib/pipes/call-component-function.pipe.mjs +3 -2
  13. package/esm2020/lib/pipes/shared-pipes.module.mjs +8 -11
  14. package/esm2020/public-api.mjs +2 -2
  15. package/fesm2015/wizishop-angular-components.mjs +40 -80
  16. package/fesm2015/wizishop-angular-components.mjs.map +1 -1
  17. package/fesm2020/wizishop-angular-components.mjs +40 -80
  18. package/fesm2020/wizishop-angular-components.mjs.map +1 -1
  19. package/lib/components/expansion/expansion-panel/expansion-panel.component.d.ts +2 -2
  20. package/lib/components/expansion/expansion-panel/expansion-panel.directive.d.ts +21 -4
  21. package/lib/components/expansion/expansion-panel-header/expansion-panel-header.component.d.ts +2 -2
  22. package/lib/components/expansion/expansion-panel-header/expansion-panel-header.directive.d.ts +14 -4
  23. package/lib/components/expansion/expansion.module.d.ts +1 -3
  24. package/lib/components/radio/radio-directive.d.ts +0 -2
  25. package/lib/components/tab/tab.component.d.ts +5 -1
  26. package/lib/pipes/call-component-function.pipe.d.ts +1 -1
  27. package/lib/pipes/shared-pipes.module.d.ts +6 -6
  28. package/package.json +1 -1
  29. package/public-api.d.ts +1 -1
  30. package/wizishop-angular-components-15.1.5.tgz +0 -0
  31. package/esm2020/lib/components/expansion/expansion-panel/expansion-panel-base.mjs +0 -83
  32. package/esm2020/lib/components/expansion/expansion-panel-header/expansion-panel-header-base.mjs +0 -44
  33. package/lib/components/expansion/expansion-panel/expansion-panel-base.d.ts +0 -26
  34. package/lib/components/expansion/expansion-panel-header/expansion-panel-header-base.d.ts +0 -20
  35. package/wizishop-angular-components-15.1.3.tgz +0 -0
@@ -381,7 +381,7 @@ class SelectOptionDirective {
381
381
  if (this.disabled || this.disabledByParent) {
382
382
  return;
383
383
  }
384
- this.selected = !this.selected;
384
+ this.selected = this.multiple ? !this.selected : true; // If not multiple mode -> can not be unselected
385
385
  this.selectedChange.emit(this.selected);
386
386
  this.changeDetectorRef.markForCheck();
387
387
  }
@@ -861,20 +861,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
861
861
  }] } });
862
862
 
863
863
  class RadioDirective extends SelectOptionDirective {
864
- onClick() {
865
- this.onSelectRadioOption();
866
- }
867
- onSelectRadioOption() {
868
- if (this.disabled || this.disabledByParent) {
869
- return;
870
- }
871
- if (this.selected) {
872
- return;
873
- }
874
- this.selected = true;
875
- this.selectedChange.emit(this.selected);
876
- this.changeDetectorRef.markForCheck();
877
- }
878
864
  constructor(contentRef, changeDetectorRef) {
879
865
  super(contentRef, changeDetectorRef);
880
866
  this.contentRef = contentRef;
@@ -882,7 +868,7 @@ class RadioDirective extends SelectOptionDirective {
882
868
  }
883
869
  }
884
870
  RadioDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: RadioDirective, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
885
- RadioDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.1", type: RadioDirective, selector: "[wacRadio]", host: { listeners: { "click": "onClick($event)" } }, providers: [{ provide: OPTION_SELECTION_HANDLER, useExisting: RadioDirective }], exportAs: ["wacRadio"], usesInheritance: true, ngImport: i0 });
871
+ RadioDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.1", type: RadioDirective, selector: "[wacRadio]", providers: [{ provide: OPTION_SELECTION_HANDLER, useExisting: RadioDirective }], exportAs: ["wacRadio"], usesInheritance: true, ngImport: i0 });
886
872
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: RadioDirective, decorators: [{
887
873
  type: Directive,
888
874
  args: [{
@@ -890,10 +876,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
890
876
  exportAs: 'wacRadio',
891
877
  providers: [{ provide: OPTION_SELECTION_HANDLER, useExisting: RadioDirective }],
892
878
  }]
893
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { onClick: [{
894
- type: HostListener,
895
- args: ['click', ['$event']]
896
- }] } });
879
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; } });
897
880
 
898
881
  class RadioGroupDirective extends SelectDirective {
899
882
  get multiple() {
@@ -1631,6 +1614,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
1631
1614
 
1632
1615
  class TabComponent {
1633
1616
  constructor() {
1617
+ // TODO implement ng-content
1618
+ // TODO implement ngModel
1634
1619
  this.underline = false;
1635
1620
  this.button = false;
1636
1621
  this.tabs = [];
@@ -4760,11 +4745,12 @@ class CallComponentFunctionPipe {
4760
4745
  }
4761
4746
  }
4762
4747
  CallComponentFunctionPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: CallComponentFunctionPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
4763
- CallComponentFunctionPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.1", ngImport: i0, type: CallComponentFunctionPipe, name: "wacFn" });
4748
+ CallComponentFunctionPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.1.1", ngImport: i0, type: CallComponentFunctionPipe, isStandalone: true, name: "wacFn" });
4764
4749
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: CallComponentFunctionPipe, decorators: [{
4765
4750
  type: Pipe,
4766
4751
  args: [{
4767
4752
  name: 'wacFn',
4753
+ standalone: true,
4768
4754
  }]
4769
4755
  }] });
4770
4756
 
@@ -4772,8 +4758,7 @@ const exportedPipes = [
4772
4758
  FormatObjectToRecursifTreePipe,
4773
4759
  FormatObjectToSimpleTreePipe,
4774
4760
  FilterOptionsPipe,
4775
- FindOptionSelectedPipe,
4776
- CallComponentFunctionPipe
4761
+ FindOptionSelectedPipe
4777
4762
  ];
4778
4763
  const pipes = [
4779
4764
  SelectFiltersPipe,
@@ -4785,21 +4770,19 @@ SharedPipes.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15
4785
4770
  SharedPipes.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.1", ngImport: i0, type: SharedPipes, declarations: [FormatObjectToRecursifTreePipe,
4786
4771
  FormatObjectToSimpleTreePipe,
4787
4772
  FilterOptionsPipe,
4788
- FindOptionSelectedPipe,
4789
- CallComponentFunctionPipe, SelectFiltersPipe,
4790
- AreAllOptionsSelectedPipe], imports: [CommonModule, FormsModule], exports: [FormatObjectToRecursifTreePipe,
4773
+ FindOptionSelectedPipe, SelectFiltersPipe,
4774
+ AreAllOptionsSelectedPipe], imports: [CommonModule, FormsModule, CallComponentFunctionPipe], exports: [FormatObjectToRecursifTreePipe,
4791
4775
  FormatObjectToSimpleTreePipe,
4792
4776
  FilterOptionsPipe,
4793
- FindOptionSelectedPipe,
4794
- CallComponentFunctionPipe, SelectFiltersPipe,
4795
- AreAllOptionsSelectedPipe] });
4777
+ FindOptionSelectedPipe, SelectFiltersPipe,
4778
+ AreAllOptionsSelectedPipe, CallComponentFunctionPipe] });
4796
4779
  SharedPipes.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: SharedPipes, imports: [CommonModule, FormsModule] });
4797
4780
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: SharedPipes, decorators: [{
4798
4781
  type: NgModule,
4799
4782
  args: [{
4800
- imports: [CommonModule, FormsModule],
4783
+ imports: [CommonModule, FormsModule, CallComponentFunctionPipe],
4801
4784
  declarations: [...exportedPipes, ...pipes],
4802
- exports: [...exportedPipes, ...pipes]
4785
+ exports: [...exportedPipes, ...pipes, CallComponentFunctionPipe]
4803
4786
  }]
4804
4787
  }] });
4805
4788
 
@@ -5593,7 +5576,7 @@ class AccordionComponent {
5593
5576
  }
5594
5577
  }
5595
5578
  AccordionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: AccordionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
5596
- AccordionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: AccordionComponent, selector: "wac-accordion", inputs: { keepOnlyOnePanelOpen: "keepOnlyOnePanelOpen" }, host: { properties: { "class": "this.class" } }, queries: [{ propertyName: "expansionItems", predicate: ACCORDION_ITEM }], ngImport: i0, template: "<ng-content></ng-content>" });
5579
+ AccordionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: AccordionComponent, selector: "wac-accordion", inputs: { keepOnlyOnePanelOpen: "keepOnlyOnePanelOpen" }, host: { properties: { "class": "this.class" } }, queries: [{ propertyName: "expansionItems", predicate: ACCORDION_ITEM, descendants: true }], ngImport: i0, template: "<ng-content></ng-content>" });
5597
5580
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: AccordionComponent, decorators: [{
5598
5581
  type: Component,
5599
5582
  args: [{ selector: 'wac-accordion', template: "<ng-content></ng-content>" }]
@@ -5602,14 +5585,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
5602
5585
  args: ['class']
5603
5586
  }], expansionItems: [{
5604
5587
  type: ContentChildren,
5605
- args: [ACCORDION_ITEM]
5588
+ args: [ACCORDION_ITEM, { descendants: true }]
5606
5589
  }], keepOnlyOnePanelOpen: [{
5607
5590
  type: Input
5608
5591
  }] } });
5609
5592
 
5610
- class ExpansionPanelHeaderBase {
5593
+ const EXPANSION_PANEL_HEADER = new InjectionToken('EXPANSION_PANEL_HEADER');
5594
+
5595
+ class ExpansionPanelHeaderDirective {
5611
5596
  onClick() {
5612
5597
  this.toggle();
5598
+ console.log('toggle');
5613
5599
  }
5614
5600
  constructor(changeDetectorRef) {
5615
5601
  this.changeDetectorRef = changeDetectorRef;
@@ -5628,10 +5614,14 @@ class ExpansionPanelHeaderBase {
5628
5614
  this.toggle();
5629
5615
  }
5630
5616
  }
5631
- ExpansionPanelHeaderBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelHeaderBase, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
5632
- ExpansionPanelHeaderBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.1", type: ExpansionPanelHeaderBase, inputs: { disabled: "disabled", hideToggle: "hideToggle", isExpanded: "isExpanded" }, outputs: { disabledChange: "disabledChange", hideToggleChange: "hideToggleChange", isExpandedChange: "isExpandedChange" }, host: { listeners: { "click": "onClick()" } }, ngImport: i0 });
5633
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelHeaderBase, decorators: [{
5634
- type: Directive
5617
+ ExpansionPanelHeaderDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelHeaderDirective, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
5618
+ ExpansionPanelHeaderDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.1", type: ExpansionPanelHeaderDirective, selector: "[wacExpansionPanelHeader]", inputs: { disabled: "disabled", hideToggle: "hideToggle", isExpanded: "isExpanded" }, outputs: { disabledChange: "disabledChange", hideToggleChange: "hideToggleChange", isExpandedChange: "isExpandedChange" }, host: { listeners: { "click": "onClick()" } }, providers: [{ provide: EXPANSION_PANEL_HEADER, useExisting: ExpansionPanelHeaderDirective }], ngImport: i0 });
5619
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelHeaderDirective, decorators: [{
5620
+ type: Directive,
5621
+ args: [{
5622
+ selector: '[wacExpansionPanelHeader]',
5623
+ providers: [{ provide: EXPANSION_PANEL_HEADER, useExisting: ExpansionPanelHeaderDirective }],
5624
+ }]
5635
5625
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { onClick: [{
5636
5626
  type: HostListener,
5637
5627
  args: ['click']
@@ -5649,9 +5639,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
5649
5639
  type: Output
5650
5640
  }] } });
5651
5641
 
5652
- const EXPANSION_PANEL_HEADER = new InjectionToken('EXPANSION_PANEL_HEADER');
5653
-
5654
- class ExpansionPanelHeaderComponent extends ExpansionPanelHeaderBase {
5642
+ class ExpansionPanelHeaderComponent extends ExpansionPanelHeaderDirective {
5655
5643
  get isDisabled() {
5656
5644
  return this.disabled;
5657
5645
  }
@@ -5674,23 +5662,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
5674
5662
  args: ['class.wac-expansion-panel-header--disabled']
5675
5663
  }] } });
5676
5664
 
5677
- class ExpansionPanelHeaderDirective extends ExpansionPanelHeaderBase {
5678
- constructor(changeDetectorRef) {
5679
- super(changeDetectorRef);
5680
- this.changeDetectorRef = changeDetectorRef;
5681
- }
5682
- }
5683
- ExpansionPanelHeaderDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelHeaderDirective, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
5684
- ExpansionPanelHeaderDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.1", type: ExpansionPanelHeaderDirective, selector: "[wacExpansionPanelHeader]", providers: [{ provide: EXPANSION_PANEL_HEADER, useExisting: ExpansionPanelHeaderDirective }], usesInheritance: true, ngImport: i0 });
5685
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelHeaderDirective, decorators: [{
5686
- type: Directive,
5687
- args: [{
5688
- selector: '[wacExpansionPanelHeader]',
5689
- providers: [{ provide: EXPANSION_PANEL_HEADER, useExisting: ExpansionPanelHeaderDirective }],
5690
- }]
5691
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; } });
5692
-
5693
- class ExpansionPanelBase {
5665
+ class ExpansionPanelDirective {
5694
5666
  set disabled(disabled) {
5695
5667
  this._disabled = disabled;
5696
5668
  if (this.header) {
@@ -5753,10 +5725,14 @@ class ExpansionPanelBase {
5753
5725
  this.expandChange.emit();
5754
5726
  }
5755
5727
  }
5756
- ExpansionPanelBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelBase, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
5757
- ExpansionPanelBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.1", type: ExpansionPanelBase, inputs: { disabled: "disabled", hideToggle: "hideToggle", isExpanded: "isExpanded" }, outputs: { isExpandedChange: "isExpandedChange" }, queries: [{ propertyName: "header", first: true, predicate: EXPANSION_PANEL_HEADER, descendants: true }], ngImport: i0 });
5758
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelBase, decorators: [{
5759
- type: Directive
5728
+ ExpansionPanelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelDirective, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
5729
+ ExpansionPanelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.1", type: ExpansionPanelDirective, selector: "[wacExpansionPanel]", inputs: { disabled: "disabled", hideToggle: "hideToggle", isExpanded: "isExpanded" }, outputs: { isExpandedChange: "isExpandedChange" }, providers: [{ provide: ACCORDION_ITEM, useExisting: ExpansionPanelDirective }], queries: [{ propertyName: "header", first: true, predicate: EXPANSION_PANEL_HEADER, descendants: true }], ngImport: i0 });
5730
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelDirective, decorators: [{
5731
+ type: Directive,
5732
+ args: [{
5733
+ selector: '[wacExpansionPanel]',
5734
+ providers: [{ provide: ACCORDION_ITEM, useExisting: ExpansionPanelDirective }]
5735
+ }]
5760
5736
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { header: [{
5761
5737
  type: ContentChild,
5762
5738
  args: [EXPANSION_PANEL_HEADER]
@@ -5771,7 +5747,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
5771
5747
  }] } });
5772
5748
 
5773
5749
  // https://material.angular.io/components/expansion/api
5774
- class ExpansionPanelComponent extends ExpansionPanelBase {
5750
+ class ExpansionPanelComponent extends ExpansionPanelDirective {
5775
5751
  get isDisabled() {
5776
5752
  return this.disabled;
5777
5753
  }
@@ -5794,22 +5770,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
5794
5770
  args: ['class.wac-expansion-panel--disabled']
5795
5771
  }] } });
5796
5772
 
5797
- class ExpansionPanelDirective extends ExpansionPanelBase {
5798
- constructor(changeDetectorRef) {
5799
- super(changeDetectorRef);
5800
- this.changeDetectorRef = changeDetectorRef;
5801
- }
5802
- }
5803
- ExpansionPanelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelDirective, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
5804
- ExpansionPanelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.1", type: ExpansionPanelDirective, selector: "[wacExpansionPanel]", providers: [{ provide: ACCORDION_ITEM, useExisting: ExpansionPanelDirective }], usesInheritance: true, ngImport: i0 });
5805
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: ExpansionPanelDirective, decorators: [{
5806
- type: Directive,
5807
- args: [{
5808
- selector: '[wacExpansionPanel]',
5809
- providers: [{ provide: ACCORDION_ITEM, useExisting: ExpansionPanelDirective }]
5810
- }]
5811
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; } });
5812
-
5813
5773
  const components$1 = [
5814
5774
  ExpansionPanelComponent,
5815
5775
  ExpansionPanelHeaderComponent,
@@ -6440,5 +6400,5 @@ const switchInOut = trigger('switchInOut', [
6440
6400
  * Generated bundle index. Do not edit.
6441
6401
  */
6442
6402
 
6443
- export { ACCORDION_ITEM, AbstractDebounceDirective, AccordionComponent, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AreAllOptionsSelectedPipe, AutoHideDirective, BackComponent, BlockComponent, BlockSeparatorComponent, BlockTitleLegacyComponent, BlockWithCheckboxComponent, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CallComponentFunctionPipe, CardPriceComponent, ChargingBarComponent, CheckBoxRow, CheckboxComponent, ConfirmDeleteComponent, ContentWithButtonsComponent, DebounceKeyupDirective, DeleteComponent, DraganddropListComponent, DropdownComponent, EXPANSION_PANEL_HEADER, ExpandedPanelComponent, ExpansionExport, ExpansionModule, ExpansionPanelBase, ExpansionPanelComponent, ExpansionPanelDirective, ExpansionPanelHeaderComponent, ExpansionPanelHeaderDirective, FilterOptionsPipe, FiltersComponent, FiltersTableService, FindOptionSelectedPipe, FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe, FreePopinComponent, GooglePreviewComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HistoryService, HtmlContainer, ImageComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, KeypressEnterDirective, LabelComponent, LinkComponent, LoaderComponent, LogoComponent, MosaicComponent, MultipleSearchComponent, MultipleSearchPlusComponent, OnlyNumberDirective, OptionCallToActionComponent, OptionComponent, OptionalDisableContainerComponent, PaginationComponent, PlaceholderComponent, PopinComponent, ProgressBarComponent, RadioComponent, RadioDirective, RadioGroupDirective, SearchComponent, SelectComponent, SelectDirective, SelectFiltersPipe, SelectInTextComponent, SelectOptionDirective, SelectSearchTriggerComponent, SelectedListComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SharedPipes, SnackbarComponent, StateComponent, SummaryComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableFiltersGroup, TableRow, TagComponent, TagLabelComponent, TextAreaComponent, TextComponent, TokenCheckComponent, TooltipComponent, TreeComponent, TreeModule, TwoDigitDecimalNumberDirective, UploadComponent, ValueChangeService, VarDirective, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, WrapperMultipleBlockComponent, WrapperSidebarComponent, WzEditInPlaceComponent, ZindexToggleDirective, animateListFromBottom, animateListFromLeft, animateListFromRight, animateListFromTop, inOutX, inOutY, opacityAnimation, showFromBottom, showFromLeft, showFromRight, showFromTop, switchInOut, uuid };
6403
+ export { ACCORDION_ITEM, AbstractDebounceDirective, AccordionComponent, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AreAllOptionsSelectedPipe, AutoHideDirective, BackComponent, BlockComponent, BlockSeparatorComponent, BlockTitleLegacyComponent, BlockWithCheckboxComponent, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CallComponentFunctionPipe, CardPriceComponent, ChargingBarComponent, CheckBoxRow, CheckboxComponent, ConfirmDeleteComponent, ContentWithButtonsComponent, DebounceKeyupDirective, DeleteComponent, DraganddropListComponent, DropdownComponent, EXPANSION_PANEL_HEADER, ExpandedPanelComponent, ExpansionExport, ExpansionModule, ExpansionPanelComponent, ExpansionPanelDirective, ExpansionPanelHeaderComponent, ExpansionPanelHeaderDirective, FilterOptionsPipe, FiltersComponent, FiltersTableService, FindOptionSelectedPipe, FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe, FreePopinComponent, GooglePreviewComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HistoryService, HtmlContainer, ImageComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, KeypressEnterDirective, LabelComponent, LinkComponent, LoaderComponent, LoaderModule, LogoComponent, MosaicComponent, MultipleSearchComponent, MultipleSearchPlusComponent, OnlyNumberDirective, OptionCallToActionComponent, OptionComponent, OptionalDisableContainerComponent, PaginationComponent, PlaceholderComponent, PopinComponent, ProgressBarComponent, RadioComponent, RadioDirective, RadioGroupDirective, SearchComponent, SelectComponent, SelectDirective, SelectFiltersPipe, SelectInTextComponent, SelectOptionDirective, SelectSearchTriggerComponent, SelectedListComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SharedPipes, SnackbarComponent, StateComponent, SummaryComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableFiltersGroup, TableRow, TagComponent, TagLabelComponent, TextAreaComponent, TextComponent, TokenCheckComponent, TooltipComponent, TreeComponent, TreeModule, TwoDigitDecimalNumberDirective, UploadComponent, ValueChangeService, VarDirective, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, WrapperMultipleBlockComponent, WrapperSidebarComponent, WzEditInPlaceComponent, ZindexToggleDirective, animateListFromBottom, animateListFromLeft, animateListFromRight, animateListFromTop, inOutX, inOutY, opacityAnimation, showFromBottom, showFromLeft, showFromRight, showFromTop, switchInOut, uuid };
6444
6404
  //# sourceMappingURL=wizishop-angular-components.mjs.map