@wizishop/angular-components 0.0.173 → 0.0.176

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.
@@ -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 }}\" [style.minWidth]=\"tooltipWidth\" *ngIf=\"tooltip\">\n {{ tooltip }}\n </span>\n</a>\n"
977
978
  },] }
978
979
  ];
979
980
  ButtonComponent.ctorParameters = () => [];
@@ -996,6 +997,9 @@ ButtonComponent.propDecorators = {
996
997
  confirmDelete: [{ type: Input }],
997
998
  confirmDeleteText: [{ type: Input }],
998
999
  coin: [{ type: Input }],
1000
+ tooltip: [{ type: Input }],
1001
+ tooltipWidth: [{ type: Input }],
1002
+ tooltipPosition: [{ type: Input }],
999
1003
  confirmDeletePosition: [{ type: Input }],
1000
1004
  click: [{ type: Output }],
1001
1005
  isLoading: [{ type: Input }],
@@ -3731,38 +3735,50 @@ BreadcrumbsComponent.propDecorators = {
3731
3735
 
3732
3736
  class CardPriceComponent {
3733
3737
  constructor() {
3738
+ this.selected = false;
3734
3739
  this.disabled = false;
3735
3740
  this.btnTextcolor = '#ffffff';
3736
3741
  this.extraClasses = 'is-success';
3742
+ this.extraClassesSelected = 'is-success is-outlined';
3737
3743
  this.hideButton = false;
3738
3744
  this.click = new EventEmitter();
3745
+ this.removePackage = new EventEmitter();
3739
3746
  }
3740
3747
  ngOnInit() {
3741
3748
  }
3742
3749
  triggerClick() {
3743
3750
  this.click.emit(true);
3744
3751
  }
3752
+ removePackageTrigger() {
3753
+ this.removePackage.emit(true);
3754
+ }
3745
3755
  }
3746
3756
  CardPriceComponent.decorators = [
3747
3757
  { type: Component, args: [{
3748
3758
  selector: 'wac-card-price',
3749
- template: "<div class=\"wac-card-price\">\n <strong>{{amount}}</strong>\n <p>{{title}}</p>\n <div class=\"price\">\n <span class=\"amount\">{{price}} <span>{{currency}}</span></span><span class=\"month\">{{priceWording}}</span>\n </div>\n <div class=\"subtitle\">{{subtitle}}</div>\n <div class=\"cta\">\n <wac-button [label]=\"btnLabel\" [extraClasses]=\"extraClasses\" (click)=\"triggerClick()\" [disabled]=\"disabled\" [textcolor]=\"btnTextcolor\" *ngIf=\"!hideButton\"></wac-button>\n </div>\n</div>\n"
3759
+ template: "<div class=\"wac-card-price\" [ngClass]=\"{'selected': selected}\">\n <strong>{{amount}}</strong>\n <p>{{title}}</p>\n <div class=\"price\">\n <span class=\"amount\">{{price}} <span>{{currency}}</span></span><span class=\"month\">{{priceWording}}</span>\n </div>\n <div class=\"subtitle\">{{subtitle}}</div>\n <div class=\"cta\" *ngIf=\"!selected\">\n <wac-button [label]=\"btnLabel\" [extraClasses]=\"extraClasses\" (click)=\"triggerClick()\" [disabled]=\"disabled\" [whiteSpaceNowrap]=\"true\" [textcolor]=\"btnTextcolor\" *ngIf=\"!hideButton\"></wac-button>\n </div>\n <div class=\"cta\" *ngIf=\"selected\">\n <wac-button [icon]=\"'fa-solid fa-check'\" [label]=\"btnLabelSelected\" [extraClasses]=\"extraClassesSelected\" [whiteSpaceNowrap]=\"true\" *ngIf=\"!hideButton\"></wac-button>\n </div>\n <div class=\"package-subtitle\" *ngIf=\"packageSubtitle\">{{packageSubtitle}}</div>\n <div class=\"link-bottom\">\n <wac-link (click)=\"removePackageTrigger()\">{{linkPackageLabel}}</wac-link>\n </div>\n</div>\n"
3750
3760
  },] }
3751
3761
  ];
3752
3762
  CardPriceComponent.ctorParameters = () => [];
3753
3763
  CardPriceComponent.propDecorators = {
3754
3764
  amount: [{ type: Input }],
3755
3765
  title: [{ type: Input }],
3766
+ selected: [{ type: Input }],
3767
+ btnLabelSelected: [{ type: Input }],
3756
3768
  price: [{ type: Input }],
3757
3769
  currency: [{ type: Input }],
3758
3770
  priceWording: [{ type: Input }],
3759
3771
  subtitle: [{ type: Input }],
3760
3772
  btnLabel: [{ type: Input }],
3773
+ packageSubtitle: [{ type: Input }],
3774
+ linkPackageLabel: [{ type: Input }],
3761
3775
  disabled: [{ type: Input }],
3762
3776
  btnTextcolor: [{ type: Input }],
3763
3777
  extraClasses: [{ type: Input }],
3778
+ extraClassesSelected: [{ type: Input }],
3764
3779
  hideButton: [{ type: Input }],
3765
- click: [{ type: Output }]
3780
+ click: [{ type: Output }],
3781
+ removePackage: [{ type: Output }]
3766
3782
  };
3767
3783
 
3768
3784
  class TokenCheckComponent {
@@ -3788,8 +3804,9 @@ TokenCheckComponent.propDecorators = {
3788
3804
  class BlockWithCheckboxComponent {
3789
3805
  constructor() {
3790
3806
  this.selected = false;
3791
- this.iconCopy = 'fa-solid fa-copy';
3792
- this.iconWorld = 'fa-thin fa-globe';
3807
+ this.disabled = false;
3808
+ this.iconCopy = 'fa-solid fa-paste';
3809
+ this.iconWorld = 'fa-light fa-globe';
3793
3810
  this.copyAction = new EventEmitter();
3794
3811
  this.worldAction = new EventEmitter();
3795
3812
  this.checkboxAction = new EventEmitter();
@@ -3801,10 +3818,11 @@ class BlockWithCheckboxComponent {
3801
3818
  this.randomLabelName = 'radioBlock' + Math.random() * (900 - 700) + 700;
3802
3819
  }
3803
3820
  eventSelected(event) {
3804
- console.log(event);
3805
- this.selected = event.target.checked;
3806
- this.checkboxAction.emit(this.selected);
3807
- this.isFirst = false;
3821
+ if (!this.disabled) {
3822
+ this.selected = event.target.checked;
3823
+ this.checkboxAction.emit(this.selected);
3824
+ this.isFirst = false;
3825
+ }
3808
3826
  }
3809
3827
  eventCopy() {
3810
3828
  this.copyAction.emit(true);
@@ -3821,12 +3839,13 @@ class BlockWithCheckboxComponent {
3821
3839
  BlockWithCheckboxComponent.decorators = [
3822
3840
  { type: Component, args: [{
3823
3841
  selector: 'wac-block-with-checkbox',
3824
- 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"
3842
+ 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"
3825
3843
  },] }
3826
3844
  ];
3827
3845
  BlockWithCheckboxComponent.ctorParameters = () => [];
3828
3846
  BlockWithCheckboxComponent.propDecorators = {
3829
3847
  selected: [{ type: Input }],
3848
+ disabled: [{ type: Input }],
3830
3849
  iconCopy: [{ type: Input }],
3831
3850
  iconWorld: [{ type: Input }],
3832
3851
  copyAction: [{ type: Output }],
@@ -3874,32 +3893,49 @@ ConfirmDeleteComponent.propDecorators = {
3874
3893
 
3875
3894
  class MosaicComponent {
3876
3895
  constructor() {
3877
- this._imagesList = [];
3896
+ this.imagesList = [];
3878
3897
  this.isLoading = false;
3879
3898
  this.numberOfColumn = 3;
3880
3899
  this.importImageSrc = new EventEmitter();
3900
+ this.loadMoreImages = new EventEmitter();
3881
3901
  }
3882
- set imagesList(imagesList) {
3883
- this._imagesList = imagesList;
3884
- this.generateColumns();
3885
- }
3886
- get imagesList() {
3887
- return this._imagesList;
3902
+ ngOnChanges(changes) {
3903
+ console.log('changes', changes);
3904
+ const isNumberOfColumnChange = changes.numberOfColumn && (changes.numberOfColumn.currentValue !== changes.numberOfColumn.previousValue);
3905
+ if (changes.imagesList) {
3906
+ this.generateColumns(changes.imagesList.previousValue, changes.imagesList.currentValue, isNumberOfColumnChange);
3907
+ return;
3908
+ }
3909
+ if (isNumberOfColumnChange) {
3910
+ this.generateColumns(null, this.imagesList, isNumberOfColumnChange);
3911
+ }
3888
3912
  }
3889
- generateColumns() {
3890
- this.columns = this.sliceIntoChunks();
3913
+ generateColumns(previousList, currentList, isNumberOfColumnChange) {
3914
+ const isNewListSmaller = (currentList && previousList) && (currentList.length < previousList.length);
3915
+ const resetColumns = isNumberOfColumnChange || isNewListSmaller;
3916
+ const isPreviousListExisting = previousList === null || previousList === void 0 ? void 0 : previousList.length;
3917
+ const newImagesToDisplay = !isPreviousListExisting || resetColumns ? currentList : currentList.slice(previousList.length);
3918
+ let columns = this.separateImagesIntoColumns(newImagesToDisplay);
3919
+ if (isPreviousListExisting && !resetColumns) {
3920
+ const existingColumns = this.columns;
3921
+ columns = this.concatColumns(existingColumns, columns);
3922
+ }
3923
+ this.columns = columns;
3891
3924
  }
3892
- sliceIntoChunks() {
3925
+ separateImagesIntoColumns(newImagesToDisplay) {
3893
3926
  const columns = [];
3894
- const numberOfImagePerColumn = this.imagesList.length / this.numberOfColumn;
3895
- for (let i = 0; i < this.imagesList.length; i += numberOfImagePerColumn) {
3896
- const chunk = this.imagesList.slice(i, i + numberOfImagePerColumn);
3927
+ const numberOfImagePerColumn = Math.floor(newImagesToDisplay.length / this.numberOfColumn);
3928
+ for (let i = 0; i < newImagesToDisplay.length; i += numberOfImagePerColumn) {
3929
+ const chunk = newImagesToDisplay.slice(i, i + numberOfImagePerColumn);
3897
3930
  columns.push(chunk);
3898
3931
  }
3899
3932
  return columns;
3900
3933
  }
3934
+ concatColumns(oldColumns, newColumns) {
3935
+ return oldColumns.map((oldColumn, columnIndex) => [...oldColumn, ...newColumns[columnIndex]]);
3936
+ }
3901
3937
  onBottomReached() {
3902
- console.log('end bottom !');
3938
+ this.loadMoreImages.emit();
3903
3939
  }
3904
3940
  onImportImage(src) {
3905
3941
  this.importImageSrc.emit(src);
@@ -3908,8 +3944,9 @@ class MosaicComponent {
3908
3944
  MosaicComponent.decorators = [
3909
3945
  { type: Component, args: [{
3910
3946
  selector: 'wac-mosaic',
3911
- 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",
3912
- encapsulation: ViewEncapsulation.None
3947
+ 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]=\"hoverImageTemplate || 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",
3948
+ encapsulation: ViewEncapsulation.None,
3949
+ changeDetection: ChangeDetectionStrategy.OnPush
3913
3950
  },] }
3914
3951
  ];
3915
3952
  MosaicComponent.ctorParameters = () => [];
@@ -3917,10 +3954,24 @@ MosaicComponent.propDecorators = {
3917
3954
  imagesList: [{ type: Input }],
3918
3955
  isLoading: [{ type: Input }],
3919
3956
  numberOfColumn: [{ type: Input }],
3920
- importButtonTemplate: [{ type: Input }],
3921
- importImageSrc: [{ type: Output }]
3957
+ hoverImageTemplate: [{ type: Input }],
3958
+ importImageSrc: [{ type: Output }],
3959
+ loadMoreImages: [{ type: Output }]
3922
3960
  };
3923
3961
 
3962
+ class ContentWithButtonsComponent {
3963
+ constructor() { }
3964
+ ngOnInit() {
3965
+ }
3966
+ }
3967
+ ContentWithButtonsComponent.decorators = [
3968
+ { type: Component, args: [{
3969
+ selector: 'wac-content-with-buttons',
3970
+ template: "<p>content-with-buttons works!</p>\n"
3971
+ },] }
3972
+ ];
3973
+ ContentWithButtonsComponent.ctorParameters = () => [];
3974
+
3924
3975
  const components = [
3925
3976
  TagComponent,
3926
3977
  TabComponent,
@@ -3969,7 +4020,8 @@ const components = [
3969
4020
  TokenCheckComponent,
3970
4021
  BlockWithCheckboxComponent,
3971
4022
  ConfirmDeleteComponent,
3972
- MosaicComponent
4023
+ MosaicComponent,
4024
+ ContentWithButtonsComponent
3973
4025
  ];
3974
4026
  const exportsFromModule = [
3975
4027
  PaginationComponent,
@@ -4053,5 +4105,5 @@ class TableFiltersGroup extends NwbFilterGroup {
4053
4105
  * Generated bundle index. Do not edit.
4054
4106
  */
4055
4107
 
4056
- 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 };
4108
+ 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 };
4057
4109
  //# sourceMappingURL=wizishop-angular-components.js.map