@wizishop/angular-components 14.2.3 → 14.3.1

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.
@@ -3530,45 +3530,137 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImpor
3530
3530
  type: Input
3531
3531
  }] } });
3532
3532
 
3533
+ class BlockSeparatorComponent {
3534
+ constructor() { }
3535
+ }
3536
+ BlockSeparatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BlockSeparatorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
3537
+ BlockSeparatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.7", type: BlockSeparatorComponent, selector: "wac-block-separator", ngImport: i0, template: ``, isInline: true, encapsulation: i0.ViewEncapsulation.None });
3538
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BlockSeparatorComponent, decorators: [{
3539
+ type: Component,
3540
+ args: [{
3541
+ selector: 'wac-block-separator',
3542
+ template: ``,
3543
+ encapsulation: ViewEncapsulation.None
3544
+ }]
3545
+ }], ctorParameters: function () { return []; } });
3546
+
3533
3547
  class BlockComponent {
3534
- constructor() {
3535
- this.titleBlock = ''; // Titre interne au block
3536
- this.titleExternalBlock = false; // Titre externe au block
3537
- this.sticky = false; // add sticky to block
3538
- this.simple = false;
3539
- this.noFullHeight = false; // not full height
3540
- this.icon = '';
3541
- this.titleUppercase = true;
3542
- this.borderRadius = false;
3543
- this.removePadding = false;
3544
- this.stretchHeight = false;
3548
+ constructor(renderer2, wacBlockElementRef) {
3549
+ this.renderer2 = renderer2;
3550
+ this.wacBlockElementRef = wacBlockElementRef;
3551
+ this.config = {
3552
+ borderRadius: '3px'
3553
+ };
3554
+ this.destroy$ = new Subject();
3555
+ }
3556
+ get borderRadius() {
3557
+ return `--wac-block-border-radius: ${this.config.borderRadius ? this.config.borderRadius : '3px'};`;
3558
+ }
3559
+ ngAfterViewInit() {
3560
+ const groupedNodesList = this.getSeparatedGroupedOfNodes(this.wacBlockElementRef.nativeElement.childNodes);
3561
+ this.attachSeparatedBlocksToTheDom(groupedNodesList, this.wacBlockElementRef.nativeElement);
3562
+ this.blockSeparators
3563
+ .changes.pipe(takeUntil$1(this.destroy$))
3564
+ .subscribe(() => {
3565
+ this.handleAddedSeparator();
3566
+ setTimeout(() => {
3567
+ this.handleRemovedSeparator();
3568
+ }, 0);
3569
+ });
3570
+ }
3571
+ handleRemovedSeparator() {
3572
+ const wacBlockComponentChildNodes = this.wacBlockElementRef.nativeElement.childNodes;
3573
+ for (let i = 0; i < wacBlockComponentChildNodes.length; i++) {
3574
+ const childNode = wacBlockComponentChildNodes[i];
3575
+ const nextChild = wacBlockComponentChildNodes[i + 1];
3576
+ const areWacBlockSideBySide = nextChild && childNode.classList.contains('wac-block') && nextChild.classList.contains('wac-block');
3577
+ if (!areWacBlockSideBySide) {
3578
+ continue;
3579
+ }
3580
+ const parentElement = this.wacBlockElementRef.nativeElement;
3581
+ this.fusionNextBlockWithCurrentBlock(parentElement, nextChild, childNode);
3582
+ i--; // we remove a child, so we need to go back to the previous index
3583
+ }
3584
+ }
3585
+ fusionNextBlockWithCurrentBlock(parentElement, nextChild, childNode) {
3586
+ parentElement.removeChild(nextChild); // not working with renderer2, it just freeze the app
3587
+ childNode.append(...nextChild.childNodes);
3588
+ }
3589
+ handleAddedSeparator() {
3590
+ const wacBlockComponentChildNodes = [...this.wacBlockElementRef.nativeElement.childNodes];
3591
+ for (let i = 0; i < wacBlockComponentChildNodes.length; i++) {
3592
+ const childNode = wacBlockComponentChildNodes[i];
3593
+ if (childNode.nodeName === 'WAC-BLOCK-SEPARATOR') {
3594
+ continue;
3595
+ }
3596
+ if (!this.hasBlockSeparator(childNode.childNodes)) {
3597
+ continue;
3598
+ }
3599
+ const groupedNodesList = this.getSeparatedGroupedOfNodes(childNode.childNodes);
3600
+ groupedNodesList.shift(); // remove first group, it's the current block
3601
+ this.attachSeparatedBlocksToTheDom(groupedNodesList, this.wacBlockElementRef.nativeElement, wacBlockComponentChildNodes[i + 1]);
3602
+ }
3603
+ }
3604
+ hasBlockSeparator(childNodes) {
3605
+ return [...childNodes].some(groupedNodes => groupedNodes?.nodeName === 'WAC-BLOCK-SEPARATOR');
3606
+ }
3607
+ attachSeparatedBlocksToTheDom(groupedNodesList, parentElement, nextElement) {
3608
+ for (let index = 0; index < groupedNodesList.length; index++) {
3609
+ const groupedNodes = groupedNodesList[index];
3610
+ if (groupedNodes[0]?.nodeName === 'WAC-BLOCK-SEPARATOR') {
3611
+ this.attachToTheDom(groupedNodes[0], parentElement, nextElement);
3612
+ continue;
3613
+ }
3614
+ const separatedWacBlock = document.createElement('div');
3615
+ separatedWacBlock.classList.add('wac-block');
3616
+ groupedNodes.forEach(node => {
3617
+ separatedWacBlock.appendChild(node);
3618
+ });
3619
+ this.attachToTheDom(separatedWacBlock, parentElement, nextElement);
3620
+ }
3621
+ }
3622
+ attachToTheDom(child, parentElement, nextElement) {
3623
+ if (nextElement) {
3624
+ this.renderer2.insertBefore(parentElement, child, nextElement, true);
3625
+ }
3626
+ else {
3627
+ this.renderer2.appendChild(parentElement, child);
3628
+ }
3629
+ }
3630
+ getSeparatedGroupedOfNodes(childNodes) {
3631
+ const groupedNodesList = [];
3632
+ let followingNodes = [];
3633
+ for (const node of childNodes) {
3634
+ if (node.nodeName === 'WAC-BLOCK-SEPARATOR') {
3635
+ groupedNodesList.push(followingNodes, [node]); // close a group and start a new one
3636
+ followingNodes = [];
3637
+ continue;
3638
+ }
3639
+ followingNodes.push(node);
3640
+ }
3641
+ if (followingNodes.length) {
3642
+ groupedNodesList.push(followingNodes);
3643
+ }
3644
+ return groupedNodesList;
3645
+ }
3646
+ ngOnDesTroy() {
3647
+ this.destroy$.next();
3648
+ this.destroy$.complete();
3545
3649
  }
3546
3650
  }
3547
- BlockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BlockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
3548
- BlockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.7", type: BlockComponent, selector: "wac-block", inputs: { titleBlock: "titleBlock", titleExternalBlock: "titleExternalBlock", sticky: "sticky", simple: "simple", noFullHeight: "noFullHeight", icon: "icon", titleUppercase: "titleUppercase", borderRadius: "borderRadius", removePadding: "removePadding", stretchHeight: "stretchHeight" }, ngImport: i0, template: "<div\n class=\"wac-block\"\n [ngClass]=\"{ 'wac-block__external': titleExternalBlock, sticky: sticky, noFullHeight: noFullHeight, 'stretch': stretchHeight, 'border-radius': borderRadius, 'no-padding' : removePadding }\"\n>\n <h2 *ngIf=\"titleBlock.length\" class=\"wac-block__title\" [ngClass]=\"{ 'is-simple': simple, 'no-uppercase': !titleUppercase }\">\n {{ titleBlock }} <i *ngIf=\"icon\" [ngClass]=\"icon\"></i>\n </h2>\n <div class=\"wac-block__content\">\n <ng-content></ng-content>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
3651
+ BlockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BlockComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
3652
+ BlockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.7", type: BlockComponent, selector: "wac-block", inputs: { config: "config" }, host: { properties: { "style": "this.borderRadius" } }, queries: [{ propertyName: "blockSeparators", predicate: BlockSeparatorComponent }], ngImport: i0, template: "<ng-content></ng-content>", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
3549
3653
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BlockComponent, decorators: [{
3550
3654
  type: Component,
3551
- args: [{ selector: 'wac-block', template: "<div\n class=\"wac-block\"\n [ngClass]=\"{ 'wac-block__external': titleExternalBlock, sticky: sticky, noFullHeight: noFullHeight, 'stretch': stretchHeight, 'border-radius': borderRadius, 'no-padding' : removePadding }\"\n>\n <h2 *ngIf=\"titleBlock.length\" class=\"wac-block__title\" [ngClass]=\"{ 'is-simple': simple, 'no-uppercase': !titleUppercase }\">\n {{ titleBlock }} <i *ngIf=\"icon\" [ngClass]=\"icon\"></i>\n </h2>\n <div class=\"wac-block__content\">\n <ng-content></ng-content>\n </div>\n</div>\n" }]
3552
- }], ctorParameters: function () { return []; }, propDecorators: { titleBlock: [{
3553
- type: Input
3554
- }], titleExternalBlock: [{
3555
- type: Input
3556
- }], sticky: [{
3557
- type: Input
3558
- }], simple: [{
3559
- type: Input
3560
- }], noFullHeight: [{
3561
- type: Input
3562
- }], icon: [{
3563
- type: Input
3564
- }], titleUppercase: [{
3655
+ args: [{ selector: 'wac-block', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-content></ng-content>" }]
3656
+ }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { blockSeparators: [{
3657
+ type: ContentChildren,
3658
+ args: [BlockSeparatorComponent]
3659
+ }], config: [{
3565
3660
  type: Input
3566
3661
  }], borderRadius: [{
3567
- type: Input
3568
- }], removePadding: [{
3569
- type: Input
3570
- }], stretchHeight: [{
3571
- type: Input
3662
+ type: HostBinding,
3663
+ args: ['style']
3572
3664
  }] } });
3573
3665
 
3574
3666
  class WrapperComponent {
@@ -4581,14 +4673,13 @@ class WrapperSidebarComponent {
4581
4673
  this.reverse = false;
4582
4674
  this.hideBackground = false;
4583
4675
  this.stickySidebar = false;
4584
- this.transparentSidebar = false;
4585
4676
  }
4586
4677
  }
4587
4678
  WrapperSidebarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: WrapperSidebarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
4588
- 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"] }] });
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"] }] });
4589
4680
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: WrapperSidebarComponent, decorators: [{
4590
4681
  type: Component,
4591
- 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" }]
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" }]
4592
4683
  }], ctorParameters: function () { return []; }, propDecorators: { reverse: [{
4593
4684
  type: Input
4594
4685
  }], hideBackground: [{
@@ -4599,8 +4690,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImpor
4599
4690
  type: Input
4600
4691
  }], stickySidebar: [{
4601
4692
  type: Input
4602
- }], transparentSidebar: [{
4603
- type: Input
4604
4693
  }] } });
4605
4694
 
4606
4695
  class BreadcrumbsComponent {
@@ -5327,6 +5416,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImpor
5327
5416
  }]
5328
5417
  }] });
5329
5418
 
5419
+ class BlockTitleLegacyComponent {
5420
+ constructor() {
5421
+ this.simple = false;
5422
+ this.icon = '';
5423
+ }
5424
+ }
5425
+ BlockTitleLegacyComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BlockTitleLegacyComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
5426
+ BlockTitleLegacyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.7", type: BlockTitleLegacyComponent, selector: "wac-block-title-legacy", inputs: { simple: "simple", icon: "icon" }, ngImport: i0, template: "<h2 class=\"wac-block__title\" [ngClass]=\"{ 'is-simple': simple }\">\n <ng-content></ng-content> <i *ngIf=\"icon\" [ngClass]=\"icon\"></i>\n</h2>", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
5427
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BlockTitleLegacyComponent, decorators: [{
5428
+ type: Component,
5429
+ args: [{ selector: 'wac-block-title-legacy', encapsulation: ViewEncapsulation.None, template: "<h2 class=\"wac-block__title\" [ngClass]=\"{ 'is-simple': simple }\">\n <ng-content></ng-content> <i *ngIf=\"icon\" [ngClass]=\"icon\"></i>\n</h2>" }]
5430
+ }], ctorParameters: function () { return []; }, propDecorators: { simple: [{
5431
+ type: Input
5432
+ }], icon: [{
5433
+ type: Input
5434
+ }] } });
5435
+
5330
5436
  const components = [
5331
5437
  TagComponent,
5332
5438
  TabComponent,
@@ -5363,6 +5469,7 @@ const components = [
5363
5469
  PopinComponent,
5364
5470
  FreePopinComponent,
5365
5471
  BlockComponent,
5472
+ BlockTitleLegacyComponent,
5366
5473
  WrapperComponent,
5367
5474
  FiltersComponent,
5368
5475
  WrapperBlocsComponent,
@@ -5385,7 +5492,8 @@ const components = [
5385
5492
  MosaicComponent,
5386
5493
  ContentWithButtonsComponent,
5387
5494
  WrapperMultipleBlockComponent,
5388
- DraganddropListComponent
5495
+ DraganddropListComponent,
5496
+ BlockSeparatorComponent
5389
5497
  ];
5390
5498
  const exportsFromModule = [
5391
5499
  PaginationComponent,
@@ -5441,6 +5549,7 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
5441
5549
  PopinComponent,
5442
5550
  FreePopinComponent,
5443
5551
  BlockComponent,
5552
+ BlockTitleLegacyComponent,
5444
5553
  WrapperComponent,
5445
5554
  FiltersComponent,
5446
5555
  WrapperBlocsComponent,
@@ -5463,7 +5572,8 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
5463
5572
  MosaicComponent,
5464
5573
  ContentWithButtonsComponent,
5465
5574
  WrapperMultipleBlockComponent,
5466
- DraganddropListComponent], imports: [CommonModule,
5575
+ DraganddropListComponent,
5576
+ BlockSeparatorComponent], imports: [CommonModule,
5467
5577
  FormsModule,
5468
5578
  NwbAllModule, i1$3.TranslateModule, ReactiveFormsModule,
5469
5579
  SharedDirectives,
@@ -5521,6 +5631,7 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
5521
5631
  PopinComponent,
5522
5632
  FreePopinComponent,
5523
5633
  BlockComponent,
5634
+ BlockTitleLegacyComponent,
5524
5635
  WrapperComponent,
5525
5636
  FiltersComponent,
5526
5637
  WrapperBlocsComponent,
@@ -5543,7 +5654,8 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
5543
5654
  MosaicComponent,
5544
5655
  ContentWithButtonsComponent,
5545
5656
  WrapperMultipleBlockComponent,
5546
- DraganddropListComponent, PaginationComponent,
5657
+ DraganddropListComponent,
5658
+ BlockSeparatorComponent, PaginationComponent,
5547
5659
  TableComponent,
5548
5660
  TableColumn,
5549
5661
  CheckBoxRow,
@@ -5662,5 +5774,5 @@ class TableFiltersGroup extends NwbFilterGroup {
5662
5774
  * Generated bundle index. Do not edit.
5663
5775
  */
5664
5776
 
5665
- export { ACCORDION_ITEM, AbstractDebounceDirective, AccordionComponent, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AreAllOptionsSelectedPipe, AutoHideDirective, BackComponent, BlockComponent, 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 };
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 };
5666
5778
  //# sourceMappingURL=wizishop-angular-components.mjs.map