@wizishop/angular-components 0.0.172 → 0.0.175

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 (24) hide show
  1. package/angular-components.scss +2505 -2132
  2. package/bundles/wizishop-angular-components.umd.js +72 -32
  3. package/bundles/wizishop-angular-components.umd.js.map +1 -1
  4. package/bundles/wizishop-angular-components.umd.min.js +1 -1
  5. package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
  6. package/esm2015/lib/components/block-with-checkbox/block-with-checkbox.component.js +11 -8
  7. package/esm2015/lib/components/button/button.component.js +5 -2
  8. package/esm2015/lib/components/content-with-buttons/content-with-buttons.component.js +14 -0
  9. package/esm2015/lib/components/mosaic/mosaic.component.js +38 -19
  10. package/esm2015/lib/components/shared-components.module.js +4 -2
  11. package/esm2015/lib/components/wrapper-sidebar/wrapper-sidebar.component.js +4 -2
  12. package/esm2015/public-api.js +2 -1
  13. package/fesm2015/wizishop-angular-components.js +70 -29
  14. package/fesm2015/wizishop-angular-components.js.map +1 -1
  15. package/lib/components/block-with-checkbox/block-with-checkbox.component.d.ts +1 -0
  16. package/lib/components/button/button.component.d.ts +2 -0
  17. package/lib/components/content-with-buttons/content-with-buttons.component.d.ts +5 -0
  18. package/lib/components/mosaic/mosaic.component.d.ts +9 -7
  19. package/lib/components/wrapper-sidebar/wrapper-sidebar.component.d.ts +1 -0
  20. package/package.json +1 -1
  21. package/public-api.d.ts +1 -0
  22. package/wizishop-angular-components-0.0.175.tgz +0 -0
  23. package/wizishop-angular-components.metadata.json +1 -1
  24. package/wizishop-angular-components-0.0.172.tgz +0 -0
@@ -1,5 +1,5 @@
1
1
  import { NwbFilterRoutingBuilder, NwbAllModule, NwbFilterGroup } from '@wizishop/ng-wizi-bulma';
2
- import { Component, ViewEncapsulation, Input, EventEmitter, Output, Directive, HostListener, ɵɵdefineInjectable, ɵɵinject, ComponentFactoryResolver, ApplicationRef, INJECTOR, Injectable, Injector, ElementRef, Renderer2, TemplateRef, ViewContainerRef, NgModule, Inject, ContentChildren, ViewChild, Pipe } from '@angular/core';
2
+ import { Component, ViewEncapsulation, Input, EventEmitter, Output, Directive, HostListener, ɵɵdefineInjectable, ɵɵinject, ComponentFactoryResolver, ApplicationRef, INJECTOR, Injectable, Injector, ElementRef, Renderer2, TemplateRef, ViewContainerRef, NgModule, Inject, ContentChildren, ViewChild, Pipe, ChangeDetectionStrategy } 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';
@@ -892,6 +892,7 @@ class ButtonComponent {
892
892
  this.animationText = '';
893
893
  this.confirmDelete = false;
894
894
  this.confirmDeleteText = '';
895
+ this.tooltipPosition = 'top-center';
895
896
  this.confirmDeletePosition = 'right';
896
897
  this.click = new EventEmitter();
897
898
  this.isLoadingChange = new EventEmitter();
@@ -973,7 +974,7 @@ class ButtonComponent {
973
974
  ButtonComponent.decorators = [
974
975
  { type: Component, args: [{
975
976
  selector: 'wac-button',
976
- template: "<a\n [class]=\"'wac-button ' + extraClasses\"\n (click)=\"confirmDelete && waitForConfirmDelete ? addMaxWidthDelete() : '';onButtonClick($event);\"\n (mouseleave)=\"animation ? resetMaxWidth() : '';\"\n (mouseenter)=\"animation ? addMaxWidth() : '';\"\n wzAutoHide (clickOutside)=\"confirmDelete && !waitForConfirmDelete ? resetMaxWidthDelete() : ''\"\n [ngClass]=\"[\n label === '' ? 'alone' : '',\n coin ? 'has-coin width-auto' : '',\n animationRight ? 'animation-right' : '',\n animation ? 'animationText' : '',\n isLoading ? 'is-loading' : '',\n opacity ? 'opacity' : '',\n disabled ? 'disabled' : '',\n widthAuto ? 'width-auto' : '',\n whiteSpaceNowrap ? 'white-space-no-wrap' : '',\n !waitForConfirmDelete && confirmDelete ? 'step-delete' : '',\n confirmDelete ? 'deletePosition-' + confirmDeletePosition : ''\n ]\"\n [ngStyle]=\"{\n 'text-align': contentHorizontalPosition\n }\"\n>\n <span class=\"wac-button__wrapper\" [style.color]=\"textcolor ? textcolor : ''\">\n <i *ngIf=\"icon !== ''\" [ngClass]=\"icon\" [style.font-size.px]=\"iconFontSize\"></i>\n {{ label }}\n <i *ngIf=\"iconNext !== ''\" [ngClass]=\"iconNext\" [style.font-size.px]=\"iconFontSize\"></i>\n </span>\n <span class=\"wac-button__animation\" [style.maxWidth]=\"buttonMaxWidth\" [style.width]=\"buttonWidth + 'px'\">\n <span #calculWidth class=\"wac-button__animation__text\" [innerHTML]=\"animationText\"></span>\n </span>\n <span class=\"wac-button__confirmDelete\" [style.maxWidth]=\"buttonMaxWidthDelete\" [style.width]=\"buttonWidthDelete + 'px'\">\n <span #calculWidthDelete class=\"wac-button__confirmDelete__text\" [innerHTML]=\"confirmDeleteText\"></span>\n </span>\n <span *ngIf=\"coin\" class=\"wac-button__coin\"><i class=\"fa-solid fa-coin-front\"></i><span [innerHTML]=\"coin\"></span></span>\n <span\n class=\"wac-button__loader\"\n [ngClass]=\"extraClasses.includes('is-outlined') ? 'outlined' : ''\"\n *ngIf=\"isLoading\"\n [style.width]=\"currentLoading + '%'\"\n >\n <span *ngIf=\"extraClasses.includes('is-outlined')\">\n <i *ngIf=\"icon !== ''\" [ngClass]=\"icon\" [style.font-size.px]=\"iconFontSize\"></i>\n {{ label }}\n <i *ngIf=\"iconNext !== ''\" [ngClass]=\"iconNext\" [style.font-size.px]=\"iconFontSize\"></i>\n </span>\n\n </span>\n</a>\n"
977
+ template: "<a\n [class]=\"'wac-button ' + extraClasses\"\n (click)=\"confirmDelete && waitForConfirmDelete ? addMaxWidthDelete() : '';onButtonClick($event);\"\n (mouseleave)=\"animation ? resetMaxWidth() : '';\"\n (mouseenter)=\"animation ? addMaxWidth() : '';\"\n wzAutoHide (clickOutside)=\"confirmDelete && !waitForConfirmDelete ? resetMaxWidthDelete() : ''\"\n [ngClass]=\"[\n label === '' ? 'alone' : '',\n coin ? 'has-coin width-auto' : '',\n animationRight ? 'animation-right' : '',\n animation ? 'animationText' : '',\n isLoading ? 'is-loading' : '',\n opacity ? 'opacity' : '',\n disabled ? 'disabled' : '',\n widthAuto ? 'width-auto' : '',\n whiteSpaceNowrap ? 'white-space-no-wrap' : '',\n !waitForConfirmDelete && confirmDelete ? 'step-delete' : '',\n confirmDelete ? 'deletePosition-' + confirmDeletePosition : ''\n ]\"\n [ngStyle]=\"{\n 'text-align': contentHorizontalPosition\n }\"\n>\n <span class=\"wac-button__wrapper\" [style.color]=\"textcolor ? textcolor : ''\">\n <i *ngIf=\"icon\" [ngClass]=\"icon\" [style.font-size.px]=\"iconFontSize\"></i>\n {{ label }}\n <i *ngIf=\"iconNext\" [ngClass]=\"iconNext\" [style.font-size.px]=\"iconFontSize\"></i>\n </span>\n <span class=\"wac-button__animation\" [style.maxWidth]=\"buttonMaxWidth\" [style.width]=\"buttonWidth + 'px'\">\n <span #calculWidth class=\"wac-button__animation__text\" [innerHTML]=\"animationText\"></span>\n </span>\n <span class=\"wac-button__confirmDelete\" [style.maxWidth]=\"buttonMaxWidthDelete\" [style.width]=\"buttonWidthDelete + 'px'\">\n <span #calculWidthDelete class=\"wac-button__confirmDelete__text\" [innerHTML]=\"confirmDeleteText\"></span>\n </span>\n <span *ngIf=\"coin\" class=\"wac-button__coin\"><i class=\"fa-solid fa-coin-front\"></i><span [innerHTML]=\"coin\"></span></span>\n <span\n class=\"wac-button__loader\"\n [ngClass]=\"extraClasses.includes('is-outlined') ? 'outlined' : ''\"\n *ngIf=\"isLoading\"\n [style.width]=\"currentLoading + '%'\"\n >\n <span *ngIf=\"extraClasses.includes('is-outlined')\">\n <i *ngIf=\"icon !== ''\" [ngClass]=\"icon\" [style.font-size.px]=\"iconFontSize\"></i>\n {{ label }}\n <i *ngIf=\"iconNext !== ''\" [ngClass]=\"iconNext\" [style.font-size.px]=\"iconFontSize\"></i>\n </span>\n </span>\n <span class=\"wac-button__tooltips {{ tooltipPosition }}\" *ngIf=\"tooltip\">\n {{ tooltip }}\n </span>\n</a>\n"
977
978
  },] }
978
979
  ];
979
980
  ButtonComponent.ctorParameters = () => [];
@@ -996,6 +997,8 @@ ButtonComponent.propDecorators = {
996
997
  confirmDelete: [{ type: Input }],
997
998
  confirmDeleteText: [{ type: Input }],
998
999
  coin: [{ type: Input }],
1000
+ tooltip: [{ type: Input }],
1001
+ tooltipPosition: [{ type: Input }],
999
1002
  confirmDeletePosition: [{ type: Input }],
1000
1003
  click: [{ type: Output }],
1001
1004
  isLoading: [{ type: Input }],
@@ -3686,6 +3689,7 @@ TreeModule.decorators = [
3686
3689
  class WrapperSidebarComponent {
3687
3690
  constructor() {
3688
3691
  this.reverse = false;
3692
+ this.hideBackground = false;
3689
3693
  }
3690
3694
  ngOnInit() {
3691
3695
  }
@@ -3693,12 +3697,13 @@ class WrapperSidebarComponent {
3693
3697
  WrapperSidebarComponent.decorators = [
3694
3698
  { type: Component, args: [{
3695
3699
  selector: 'wac-wrapper-sidebar',
3696
- template: "<div class=\"wac-wrapper-sidebar\" [ngClass]=\"{'reverse': reverse}\">\n <div class=\"wac-wrapper-sidebar__left\">\n <ng-content select=\"[sidebar]\"></ng-content>\n </div>\n <div class=\"wac-wrapper-sidebar__right\" [style.backgroundImage]=\"'url(' + backgroundGrey + ')'\" [style.backgroundSize]=\"backgroundWidth\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</div>\n"
3700
+ template: "<div class=\"wac-wrapper-sidebar\" [ngClass]=\"{'reverse': reverse}\">\n <div class=\"wac-wrapper-sidebar__left\">\n <ng-content select=\"[sidebar]\"></ng-content>\n </div>\n <div class=\"wac-wrapper-sidebar__right\" [style.backgroundImage]=\"!hideBackground ? 'url(' + backgroundGrey + ')' : ''\" [style.backgroundSize]=\"backgroundWidth\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</div>\n"
3697
3701
  },] }
3698
3702
  ];
3699
3703
  WrapperSidebarComponent.ctorParameters = () => [];
3700
3704
  WrapperSidebarComponent.propDecorators = {
3701
3705
  reverse: [{ type: Input }],
3706
+ hideBackground: [{ type: Input }],
3702
3707
  backgroundGrey: [{ type: Input }],
3703
3708
  backgroundWidth: [{ type: Input }]
3704
3709
  };
@@ -3786,8 +3791,9 @@ TokenCheckComponent.propDecorators = {
3786
3791
  class BlockWithCheckboxComponent {
3787
3792
  constructor() {
3788
3793
  this.selected = false;
3789
- this.iconCopy = 'fa-solid fa-copy';
3790
- this.iconWorld = 'fa-thin fa-globe';
3794
+ this.disabled = false;
3795
+ this.iconCopy = 'fa-solid fa-paste';
3796
+ this.iconWorld = 'fa-light fa-globe';
3791
3797
  this.copyAction = new EventEmitter();
3792
3798
  this.worldAction = new EventEmitter();
3793
3799
  this.checkboxAction = new EventEmitter();
@@ -3799,10 +3805,11 @@ class BlockWithCheckboxComponent {
3799
3805
  this.randomLabelName = 'radioBlock' + Math.random() * (900 - 700) + 700;
3800
3806
  }
3801
3807
  eventSelected(event) {
3802
- console.log(event);
3803
- this.selected = event.target.checked;
3804
- this.checkboxAction.emit(this.selected);
3805
- this.isFirst = false;
3808
+ if (!this.disabled) {
3809
+ this.selected = event.target.checked;
3810
+ this.checkboxAction.emit(this.selected);
3811
+ this.isFirst = false;
3812
+ }
3806
3813
  }
3807
3814
  eventCopy() {
3808
3815
  this.copyAction.emit(true);
@@ -3819,12 +3826,13 @@ class BlockWithCheckboxComponent {
3819
3826
  BlockWithCheckboxComponent.decorators = [
3820
3827
  { type: Component, args: [{
3821
3828
  selector: 'wac-block-with-checkbox',
3822
- template: "<div class=\"block-with-checkbox\" [ngClass]=\"{'selected': inputRadioA.checked, 'firstWacRadioBLock': isFirst}\" [style.opacity]=\"opacity\" (mouseover)=\"removeFirstClass()\">\n <div class=\"block-with-checkbox__left\" (click)=\"inputRadioA.click()\">\n <div class=\"wac-radio-block\">\n <div class=\"wac-radio__row\">\n <input #inputRadioA [name]=\"nameRadio\" type=\"radio\" [value]=\"selected\" (change)=\"eventSelected($event)\" [id]=\"randomLabelName\">\n <label [for]=\"randomLabelName\"></label>\n </div>\n </div>\n </div>\n <div class=\"block-with-checkbox__center\" (click)=\"inputRadioA.click()\">\n <ng-content></ng-content>\n </div>\n <div class=\"block-with-checkbox__right\">\n <div><wac-button extraClasses=\"is-blue opacity static-width\" [iconFontSize]=\"18\" [icon]=\"iconCopy\" (click)=\"eventCopy()\"></wac-button></div>\n <div><wac-button extraClasses=\"is-green opacity static-width\" [iconFontSize]=\"18\" [icon]=\"iconWorld\" (click)=\"eventWorld()\"></wac-button></div>\n </div>\n</div>\n"
3829
+ template: "<div class=\"block-with-checkbox\" [ngClass]=\"{'selected': inputRadioA.checked || selected, 'firstWacRadioBLock': isFirst, 'disabled': disabled}\" [style.opacity]=\"opacity\" (mouseover)=\"removeFirstClass()\">\n <div class=\"block-with-checkbox__left\" (click)=\"inputRadioA.click()\">\n <div class=\"wac-radio-block\">\n <div class=\"wac-radio__row\">\n <input #inputRadioA [name]=\"nameRadio\" type=\"radio\" [checked]=\"selected\" [value]=\"selected\" (change)=\"eventSelected($event)\" [id]=\"randomLabelName\">\n <label [for]=\"randomLabelName\"></label>\n </div>\n </div>\n </div>\n <div class=\"block-with-checkbox__center\" (click)=\"inputRadioA.click()\">\n <ng-content></ng-content>\n </div>\n <div class=\"block-with-checkbox__right\">\n <div><wac-button extraClasses=\"is-blue opacity static-width\" [iconFontSize]=\"18\" [icon]=\"iconCopy\" (click)=\"eventCopy()\"></wac-button></div>\n <div><wac-button extraClasses=\"is-green opacity static-width\" [iconFontSize]=\"18\" [icon]=\"iconWorld\" (click)=\"eventWorld()\"></wac-button></div>\n </div>\n</div>\n"
3823
3830
  },] }
3824
3831
  ];
3825
3832
  BlockWithCheckboxComponent.ctorParameters = () => [];
3826
3833
  BlockWithCheckboxComponent.propDecorators = {
3827
3834
  selected: [{ type: Input }],
3835
+ disabled: [{ type: Input }],
3828
3836
  iconCopy: [{ type: Input }],
3829
3837
  iconWorld: [{ type: Input }],
3830
3838
  copyAction: [{ type: Output }],
@@ -3872,32 +3880,49 @@ ConfirmDeleteComponent.propDecorators = {
3872
3880
 
3873
3881
  class MosaicComponent {
3874
3882
  constructor() {
3875
- this._imagesList = [];
3883
+ this.imagesList = [];
3876
3884
  this.isLoading = false;
3877
3885
  this.numberOfColumn = 3;
3878
3886
  this.importImageSrc = new EventEmitter();
3887
+ this.loadMoreImages = new EventEmitter();
3879
3888
  }
3880
- set imagesList(imagesList) {
3881
- this._imagesList = imagesList;
3882
- this.generateColumns();
3883
- }
3884
- get imagesList() {
3885
- return this._imagesList;
3889
+ ngOnChanges(changes) {
3890
+ console.log('changes', changes);
3891
+ const isNumberOfColumnChange = changes.numberOfColumn && (changes.numberOfColumn.currentValue !== changes.numberOfColumn.previousValue);
3892
+ if (changes.imagesList) {
3893
+ this.generateColumns(changes.imagesList.previousValue, changes.imagesList.currentValue, isNumberOfColumnChange);
3894
+ return;
3895
+ }
3896
+ if (isNumberOfColumnChange) {
3897
+ this.generateColumns(null, this.imagesList, isNumberOfColumnChange);
3898
+ }
3886
3899
  }
3887
- generateColumns() {
3888
- this.columns = this.sliceIntoChunks();
3900
+ generateColumns(previousList, currentList, isNumberOfColumnChange) {
3901
+ const isNewListSmaller = (currentList && previousList) && (currentList.length < previousList.length);
3902
+ const resetColumns = isNumberOfColumnChange || isNewListSmaller;
3903
+ const isPreviousListExisting = previousList === null || previousList === void 0 ? void 0 : previousList.length;
3904
+ const newImagesToDisplay = !isPreviousListExisting || resetColumns ? currentList : currentList.slice(previousList.length);
3905
+ let columns = this.separateImagesIntoColumns(newImagesToDisplay);
3906
+ if (isPreviousListExisting && !resetColumns) {
3907
+ const existingColumns = this.columns;
3908
+ columns = this.concatColumns(existingColumns, columns);
3909
+ }
3910
+ this.columns = columns;
3889
3911
  }
3890
- sliceIntoChunks() {
3912
+ separateImagesIntoColumns(newImagesToDisplay) {
3891
3913
  const columns = [];
3892
- const numberOfImagePerColumn = this.imagesList.length / this.numberOfColumn;
3893
- for (let i = 0; i < this.imagesList.length; i += numberOfImagePerColumn) {
3894
- const chunk = this.imagesList.slice(i, i + numberOfImagePerColumn);
3914
+ const numberOfImagePerColumn = Math.floor(newImagesToDisplay.length / this.numberOfColumn);
3915
+ for (let i = 0; i < newImagesToDisplay.length; i += numberOfImagePerColumn) {
3916
+ const chunk = newImagesToDisplay.slice(i, i + numberOfImagePerColumn);
3895
3917
  columns.push(chunk);
3896
3918
  }
3897
3919
  return columns;
3898
3920
  }
3921
+ concatColumns(oldColumns, newColumns) {
3922
+ return oldColumns.map((oldColumn, columnIndex) => [...oldColumn, ...newColumns[columnIndex]]);
3923
+ }
3899
3924
  onBottomReached() {
3900
- console.log('end bottom !');
3925
+ this.loadMoreImages.emit();
3901
3926
  }
3902
3927
  onImportImage(src) {
3903
3928
  this.importImageSrc.emit(src);
@@ -3906,8 +3931,9 @@ class MosaicComponent {
3906
3931
  MosaicComponent.decorators = [
3907
3932
  { type: Component, args: [{
3908
3933
  selector: 'wac-mosaic',
3909
- template: "<div class=\"wac-mosaic\" *ngIf=\"!isLoading; else loading\">\n <ng-scrollbar (reachedBottom)=\"onBottomReached()\" reachedOffset=\"200\" class=\"wac-mosaic__wrapper__scrollbar\">\n <div class=\"wac-mosaic__wrapper\">\n <div class=\"wac-mosaic__wrapper__column\" *ngFor=\"let column of columns\">\n <div class=\"wac-mosaic__wrapper__column__image\" *ngFor=\"let image of column; let i = index;\">\n <img [src]=\"image.src\" [alt]=\"image.alt\"/>\n <div class=\"hover\">\n <ng-container\n [ngTemplateOutlet]=\"importButtonTemplate || defaultImportButton\"\n [ngTemplateOutletContext]=\"{ $implicit: image }\"\n >\n </ng-container>\n </div>\n </div>\n </div>\n </div>\n </ng-scrollbar>\n</div>\n\n<ng-template #defaultImportButton let-image>\n <wac-button [icon]=\"'fa-solid fa-image'\" [label]=\"'wac.MosaicComponent.import' | translate\" [extraClasses]=\"'is-success'\" (click)=\"onImportImage(image.src)\"></wac-button>\n</ng-template>\n\n<ng-template #loading>\n <div class=\"wac-mosaic__loader\" *ngIf=\"isLoading\">\n <wac-loader></wac-loader>\n </div>\n</ng-template>\n",
3910
- encapsulation: ViewEncapsulation.None
3934
+ template: "<div class=\"wac-mosaic\">\n <ng-scrollbar (reachedBottom)=\"onBottomReached()\" reachedOffset=\"200\" class=\"wac-mosaic__wrapper__scrollbar\">\n <div class=\"wac-mosaic__wrapper\">\n <div class=\"wac-mosaic__wrapper__column\" *ngFor=\"let column of columns\">\n <div class=\"wac-mosaic__wrapper__column__image\" *ngFor=\"let image of column; let i = index;\">\n <img [src]=\"image.src\" [alt]=\"image.alt\"/>\n <div class=\"hover\">\n <ng-container\n [ngTemplateOutlet]=\"importButtonTemplate || defaultImportButton\"\n [ngTemplateOutletContext]=\"{ $implicit: image }\"\n >\n </ng-container>\n </div>\n </div>\n </div>\n </div>\n </ng-scrollbar>\n</div>\n\n<div class=\"wac-mosaic__loader\" *ngIf=\"isLoading\">\n <wac-loader></wac-loader>\n</div>\n\n<ng-template #defaultImportButton let-image>\n <wac-button [icon]=\"'fa-solid fa-image'\" [label]=\"'wac.MosaicComponent.import' | translate\" [extraClasses]=\"'is-success'\" (click)=\"onImportImage(image.src)\"></wac-button>\n</ng-template>\n",
3935
+ encapsulation: ViewEncapsulation.None,
3936
+ changeDetection: ChangeDetectionStrategy.OnPush
3911
3937
  },] }
3912
3938
  ];
3913
3939
  MosaicComponent.ctorParameters = () => [];
@@ -3916,9 +3942,23 @@ MosaicComponent.propDecorators = {
3916
3942
  isLoading: [{ type: Input }],
3917
3943
  numberOfColumn: [{ type: Input }],
3918
3944
  importButtonTemplate: [{ type: Input }],
3919
- importImageSrc: [{ type: Output }]
3945
+ importImageSrc: [{ type: Output }],
3946
+ loadMoreImages: [{ type: Output }]
3920
3947
  };
3921
3948
 
3949
+ class ContentWithButtonsComponent {
3950
+ constructor() { }
3951
+ ngOnInit() {
3952
+ }
3953
+ }
3954
+ ContentWithButtonsComponent.decorators = [
3955
+ { type: Component, args: [{
3956
+ selector: 'wac-content-with-buttons',
3957
+ template: "<p>content-with-buttons works!</p>\n"
3958
+ },] }
3959
+ ];
3960
+ ContentWithButtonsComponent.ctorParameters = () => [];
3961
+
3922
3962
  const components = [
3923
3963
  TagComponent,
3924
3964
  TabComponent,
@@ -3967,7 +4007,8 @@ const components = [
3967
4007
  TokenCheckComponent,
3968
4008
  BlockWithCheckboxComponent,
3969
4009
  ConfirmDeleteComponent,
3970
- MosaicComponent
4010
+ MosaicComponent,
4011
+ ContentWithButtonsComponent
3971
4012
  ];
3972
4013
  const exportsFromModule = [
3973
4014
  PaginationComponent,
@@ -4051,5 +4092,5 @@ class TableFiltersGroup extends NwbFilterGroup {
4051
4092
  * Generated bundle index. Do not edit.
4052
4093
  */
4053
4094
 
4054
- export { AbstractDebounceDirective, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AreAllOptionsSelectedPipe, AutoHideDirective, BackComponent, BlockComponent, BlockWithCheckboxComponent, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CardPriceComponent, CheckBoxRow, CheckboxComponent, ConfirmDeleteComponent, DebounceKeyupDirective, DeleteComponent, DropdownComponent, FiltersComponent, FiltersTableService, FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe, FreePopinComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HtmlContainer, ImageComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, KeypressEnterDirective, LabelComponent, LinkComponent, LoaderComponent, LogoComponent, MosaicComponent, MultipleSearchComponent, MultipleSearchPlusComponent, PaginationComponent, PopinComponent, ProgressBarComponent, RadioComponent, SearchComponent, SelectComponent, SelectFiltersPipe, SelectInTextComponent, SelectedListComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SharedPipes, SnackbarComponent, StateComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableFiltersGroup, TableRow, TagComponent, TextAreaComponent, TextComponent, TokenCheckComponent, TooltipComponent, TreeComponent, TreeModule, UploadComponent, VarDirective, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, WrapperSidebarComponent, 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, TableCheckboxIdService as ɵn, MultiSelectionService as ɵo, inOutX as ɵp };
4095
+ export { AbstractDebounceDirective, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AreAllOptionsSelectedPipe, AutoHideDirective, BackComponent, BlockComponent, BlockWithCheckboxComponent, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CardPriceComponent, CheckBoxRow, CheckboxComponent, ConfirmDeleteComponent, ContentWithButtonsComponent, DebounceKeyupDirective, DeleteComponent, DropdownComponent, FiltersComponent, FiltersTableService, FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe, FreePopinComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HtmlContainer, ImageComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, KeypressEnterDirective, LabelComponent, LinkComponent, LoaderComponent, LogoComponent, MosaicComponent, MultipleSearchComponent, MultipleSearchPlusComponent, PaginationComponent, PopinComponent, ProgressBarComponent, RadioComponent, SearchComponent, SelectComponent, SelectFiltersPipe, SelectInTextComponent, SelectedListComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SharedPipes, SnackbarComponent, StateComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableFiltersGroup, TableRow, TagComponent, TextAreaComponent, TextComponent, TokenCheckComponent, TooltipComponent, TreeComponent, TreeModule, UploadComponent, VarDirective, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, WrapperSidebarComponent, 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, TableCheckboxIdService as ɵn, MultiSelectionService as ɵo, inOutX as ɵp };
4055
4096
  //# sourceMappingURL=wizishop-angular-components.js.map