@wizishop/angular-components 14.2.4 → 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,42 +5416,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImpor
5327
5416
  }]
5328
5417
  }] });
5329
5418
 
5330
- ;
5331
- class SummaryComponent {
5419
+ class BlockTitleLegacyComponent {
5332
5420
  constructor() {
5333
- this._activeItem = 0;
5334
- this.itemChanged = new EventEmitter();
5335
- }
5336
- set activeItem(activeItem) {
5337
- this._activeItem = activeItem;
5338
- }
5339
- get activeItem() {
5340
- return this._activeItem;
5341
- }
5342
- scrollToItem(i) {
5343
- this._activeItem = i;
5344
- this.itemChanged.emit(i);
5345
- if (this.items[i].href) {
5346
- const yOffset = -20;
5347
- const element = window.document.getElementById(this.items[i].href);
5348
- if (element) {
5349
- const y = element.getBoundingClientRect().top + window.pageYOffset + yOffset;
5350
- window.scrollTo({ top: y, behavior: 'smooth' });
5351
- }
5352
- }
5421
+ this.simple = false;
5422
+ this.icon = '';
5353
5423
  }
5354
5424
  }
5355
- SummaryComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: SummaryComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
5356
- 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 });
5357
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: SummaryComponent, decorators: [{
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: [{
5358
5428
  type: Component,
5359
- 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" }]
5360
- }], ctorParameters: function () { return []; }, propDecorators: { activeItem: [{
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: [{
5361
5431
  type: Input
5362
- }], items: [{
5432
+ }], icon: [{
5363
5433
  type: Input
5364
- }], itemChanged: [{
5365
- type: Output
5366
5434
  }] } });
5367
5435
 
5368
5436
  const components = [
@@ -5401,6 +5469,7 @@ const components = [
5401
5469
  PopinComponent,
5402
5470
  FreePopinComponent,
5403
5471
  BlockComponent,
5472
+ BlockTitleLegacyComponent,
5404
5473
  WrapperComponent,
5405
5474
  FiltersComponent,
5406
5475
  WrapperBlocsComponent,
@@ -5424,7 +5493,7 @@ const components = [
5424
5493
  ContentWithButtonsComponent,
5425
5494
  WrapperMultipleBlockComponent,
5426
5495
  DraganddropListComponent,
5427
- SummaryComponent
5496
+ BlockSeparatorComponent
5428
5497
  ];
5429
5498
  const exportsFromModule = [
5430
5499
  PaginationComponent,
@@ -5480,6 +5549,7 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
5480
5549
  PopinComponent,
5481
5550
  FreePopinComponent,
5482
5551
  BlockComponent,
5552
+ BlockTitleLegacyComponent,
5483
5553
  WrapperComponent,
5484
5554
  FiltersComponent,
5485
5555
  WrapperBlocsComponent,
@@ -5503,7 +5573,7 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
5503
5573
  ContentWithButtonsComponent,
5504
5574
  WrapperMultipleBlockComponent,
5505
5575
  DraganddropListComponent,
5506
- SummaryComponent], imports: [CommonModule,
5576
+ BlockSeparatorComponent], imports: [CommonModule,
5507
5577
  FormsModule,
5508
5578
  NwbAllModule, i1$3.TranslateModule, ReactiveFormsModule,
5509
5579
  SharedDirectives,
@@ -5561,6 +5631,7 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
5561
5631
  PopinComponent,
5562
5632
  FreePopinComponent,
5563
5633
  BlockComponent,
5634
+ BlockTitleLegacyComponent,
5564
5635
  WrapperComponent,
5565
5636
  FiltersComponent,
5566
5637
  WrapperBlocsComponent,
@@ -5584,7 +5655,7 @@ SharedComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
5584
5655
  ContentWithButtonsComponent,
5585
5656
  WrapperMultipleBlockComponent,
5586
5657
  DraganddropListComponent,
5587
- SummaryComponent, PaginationComponent,
5658
+ BlockSeparatorComponent, PaginationComponent,
5588
5659
  TableComponent,
5589
5660
  TableColumn,
5590
5661
  CheckBoxRow,
@@ -5703,5 +5774,5 @@ class TableFiltersGroup extends NwbFilterGroup {
5703
5774
  * Generated bundle index. Do not edit.
5704
5775
  */
5705
5776
 
5706
- 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, 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 };
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 };
5707
5778
  //# sourceMappingURL=wizishop-angular-components.mjs.map