@wizishop/angular-components 0.0.174 → 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.
- package/angular-components.scss +2505 -2132
- package/bundles/wizishop-angular-components.umd.js +69 -31
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js +1 -1
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/block-with-checkbox/block-with-checkbox.component.js +11 -8
- package/esm2015/lib/components/button/button.component.js +5 -2
- package/esm2015/lib/components/content-with-buttons/content-with-buttons.component.js +14 -0
- package/esm2015/lib/components/mosaic/mosaic.component.js +38 -19
- package/esm2015/lib/components/shared-components.module.js +4 -2
- package/esm2015/public-api.js +2 -1
- package/fesm2015/wizishop-angular-components.js +67 -28
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/block-with-checkbox/block-with-checkbox.component.d.ts +1 -0
- package/lib/components/button/button.component.d.ts +2 -0
- package/lib/components/content-with-buttons/content-with-buttons.component.d.ts +5 -0
- package/lib/components/mosaic/mosaic.component.d.ts +9 -7
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/wizishop-angular-components-0.0.175.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.174.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 }],
|
|
@@ -3788,8 +3791,9 @@ TokenCheckComponent.propDecorators = {
|
|
|
3788
3791
|
class BlockWithCheckboxComponent {
|
|
3789
3792
|
constructor() {
|
|
3790
3793
|
this.selected = false;
|
|
3791
|
-
this.
|
|
3792
|
-
this.
|
|
3794
|
+
this.disabled = false;
|
|
3795
|
+
this.iconCopy = 'fa-solid fa-paste';
|
|
3796
|
+
this.iconWorld = 'fa-light fa-globe';
|
|
3793
3797
|
this.copyAction = new EventEmitter();
|
|
3794
3798
|
this.worldAction = new EventEmitter();
|
|
3795
3799
|
this.checkboxAction = new EventEmitter();
|
|
@@ -3801,10 +3805,11 @@ class BlockWithCheckboxComponent {
|
|
|
3801
3805
|
this.randomLabelName = 'radioBlock' + Math.random() * (900 - 700) + 700;
|
|
3802
3806
|
}
|
|
3803
3807
|
eventSelected(event) {
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
3807
|
-
|
|
3808
|
+
if (!this.disabled) {
|
|
3809
|
+
this.selected = event.target.checked;
|
|
3810
|
+
this.checkboxAction.emit(this.selected);
|
|
3811
|
+
this.isFirst = false;
|
|
3812
|
+
}
|
|
3808
3813
|
}
|
|
3809
3814
|
eventCopy() {
|
|
3810
3815
|
this.copyAction.emit(true);
|
|
@@ -3821,12 +3826,13 @@ class BlockWithCheckboxComponent {
|
|
|
3821
3826
|
BlockWithCheckboxComponent.decorators = [
|
|
3822
3827
|
{ type: Component, args: [{
|
|
3823
3828
|
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"
|
|
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"
|
|
3825
3830
|
},] }
|
|
3826
3831
|
];
|
|
3827
3832
|
BlockWithCheckboxComponent.ctorParameters = () => [];
|
|
3828
3833
|
BlockWithCheckboxComponent.propDecorators = {
|
|
3829
3834
|
selected: [{ type: Input }],
|
|
3835
|
+
disabled: [{ type: Input }],
|
|
3830
3836
|
iconCopy: [{ type: Input }],
|
|
3831
3837
|
iconWorld: [{ type: Input }],
|
|
3832
3838
|
copyAction: [{ type: Output }],
|
|
@@ -3874,32 +3880,49 @@ ConfirmDeleteComponent.propDecorators = {
|
|
|
3874
3880
|
|
|
3875
3881
|
class MosaicComponent {
|
|
3876
3882
|
constructor() {
|
|
3877
|
-
this.
|
|
3883
|
+
this.imagesList = [];
|
|
3878
3884
|
this.isLoading = false;
|
|
3879
3885
|
this.numberOfColumn = 3;
|
|
3880
3886
|
this.importImageSrc = new EventEmitter();
|
|
3887
|
+
this.loadMoreImages = new EventEmitter();
|
|
3881
3888
|
}
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
|
|
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
|
+
}
|
|
3888
3899
|
}
|
|
3889
|
-
generateColumns() {
|
|
3890
|
-
|
|
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;
|
|
3891
3911
|
}
|
|
3892
|
-
|
|
3912
|
+
separateImagesIntoColumns(newImagesToDisplay) {
|
|
3893
3913
|
const columns = [];
|
|
3894
|
-
const numberOfImagePerColumn =
|
|
3895
|
-
for (let i = 0; i <
|
|
3896
|
-
const chunk =
|
|
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);
|
|
3897
3917
|
columns.push(chunk);
|
|
3898
3918
|
}
|
|
3899
3919
|
return columns;
|
|
3900
3920
|
}
|
|
3921
|
+
concatColumns(oldColumns, newColumns) {
|
|
3922
|
+
return oldColumns.map((oldColumn, columnIndex) => [...oldColumn, ...newColumns[columnIndex]]);
|
|
3923
|
+
}
|
|
3901
3924
|
onBottomReached() {
|
|
3902
|
-
|
|
3925
|
+
this.loadMoreImages.emit();
|
|
3903
3926
|
}
|
|
3904
3927
|
onImportImage(src) {
|
|
3905
3928
|
this.importImageSrc.emit(src);
|
|
@@ -3908,8 +3931,9 @@ class MosaicComponent {
|
|
|
3908
3931
|
MosaicComponent.decorators = [
|
|
3909
3932
|
{ type: Component, args: [{
|
|
3910
3933
|
selector: 'wac-mosaic',
|
|
3911
|
-
template: "<div class=\"wac-mosaic\"
|
|
3912
|
-
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
|
|
3913
3937
|
},] }
|
|
3914
3938
|
];
|
|
3915
3939
|
MosaicComponent.ctorParameters = () => [];
|
|
@@ -3918,9 +3942,23 @@ MosaicComponent.propDecorators = {
|
|
|
3918
3942
|
isLoading: [{ type: Input }],
|
|
3919
3943
|
numberOfColumn: [{ type: Input }],
|
|
3920
3944
|
importButtonTemplate: [{ type: Input }],
|
|
3921
|
-
importImageSrc: [{ type: Output }]
|
|
3945
|
+
importImageSrc: [{ type: Output }],
|
|
3946
|
+
loadMoreImages: [{ type: Output }]
|
|
3922
3947
|
};
|
|
3923
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
|
+
|
|
3924
3962
|
const components = [
|
|
3925
3963
|
TagComponent,
|
|
3926
3964
|
TabComponent,
|
|
@@ -3969,7 +4007,8 @@ const components = [
|
|
|
3969
4007
|
TokenCheckComponent,
|
|
3970
4008
|
BlockWithCheckboxComponent,
|
|
3971
4009
|
ConfirmDeleteComponent,
|
|
3972
|
-
MosaicComponent
|
|
4010
|
+
MosaicComponent,
|
|
4011
|
+
ContentWithButtonsComponent
|
|
3973
4012
|
];
|
|
3974
4013
|
const exportsFromModule = [
|
|
3975
4014
|
PaginationComponent,
|
|
@@ -4053,5 +4092,5 @@ class TableFiltersGroup extends NwbFilterGroup {
|
|
|
4053
4092
|
* Generated bundle index. Do not edit.
|
|
4054
4093
|
*/
|
|
4055
4094
|
|
|
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 };
|
|
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 };
|
|
4057
4096
|
//# sourceMappingURL=wizishop-angular-components.js.map
|