@wizishop/angular-components 0.0.39 → 0.0.43
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 +3605 -3382
- package/bundles/wizishop-angular-components.umd.js +128 -13
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js +2 -2
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/alert-popup/alert-popup-module.js +16 -0
- package/esm2015/lib/components/alert-popup/alert-popup.component.js +41 -0
- package/esm2015/lib/components/alert-popup/alert-popup.service.js +30 -0
- package/esm2015/lib/components/button/button.component.js +4 -2
- package/esm2015/lib/components/inputs/input/input.component.js +4 -2
- package/esm2015/lib/components/shared-components.module.js +3 -1
- package/esm2015/lib/services/dom.service.js +28 -4
- package/esm2015/public-api.js +3 -1
- package/esm2015/wizishop-angular-components.js +3 -2
- package/fesm2015/wizishop-angular-components.js +112 -6
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/alert-popup/alert-popup-module.d.ts +2 -0
- package/lib/components/alert-popup/alert-popup.component.d.ts +16 -0
- package/lib/components/alert-popup/alert-popup.service.d.ts +20 -0
- package/lib/components/button/button.component.d.ts +1 -0
- package/lib/components/inputs/input/input.component.d.ts +1 -0
- package/lib/services/dom.service.d.ts +11 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/wizishop-angular-components-0.0.43.tgz +0 -0
- package/wizishop-angular-components.d.ts +2 -1
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.39.tgz +0 -0
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { NwbFilterRoutingBuilder, NwbAllModule } from '@wizishop/ng-wizi-bulma';
|
|
2
|
-
import { Component, ViewEncapsulation, Input, EventEmitter, Output, Directive, HostListener, ɵɵdefineInjectable,
|
|
2
|
+
import { Component, ViewEncapsulation, Input, EventEmitter, Output, Directive, HostListener, ɵɵdefineInjectable, ɵɵinject, ComponentFactoryResolver, ApplicationRef, INJECTOR, Injectable, Injector, ElementRef, Renderer2, NgModule, ViewChild, Pipe, Inject } 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';
|
|
6
6
|
import { Subject } from 'rxjs';
|
|
7
7
|
import { takeUntil, debounceTime, distinctUntilChanged, tap } from 'rxjs/operators';
|
|
8
|
+
import { OverlayContainer } from '@angular/cdk/overlay';
|
|
8
9
|
import { CdkTableModule } from '@angular/cdk/table';
|
|
9
10
|
import { trigger, transition, style, animate, state } from '@angular/animations';
|
|
10
11
|
import { TagInputModule } from 'ngx-chips';
|
|
@@ -128,7 +129,11 @@ DebounceKeyupDirective.propDecorators = {
|
|
|
128
129
|
};
|
|
129
130
|
|
|
130
131
|
class DomService {
|
|
131
|
-
constructor() {
|
|
132
|
+
constructor(componentFactoryResolver, appRef, injector, overlayContainer) {
|
|
133
|
+
this.componentFactoryResolver = componentFactoryResolver;
|
|
134
|
+
this.appRef = appRef;
|
|
135
|
+
this.injector = injector;
|
|
136
|
+
this.overlayContainer = overlayContainer;
|
|
132
137
|
this.documentEventSource = new Subject();
|
|
133
138
|
this.documentEventDone = this.documentEventSource.asObservable();
|
|
134
139
|
this.eventInitialisation = true;
|
|
@@ -156,13 +161,31 @@ class DomService {
|
|
|
156
161
|
this.documentScrollSource.next(window);
|
|
157
162
|
};
|
|
158
163
|
}
|
|
164
|
+
attachComponentPortal(component, injector) {
|
|
165
|
+
const componentRef = this.componentFactoryResolver
|
|
166
|
+
.resolveComponentFactory(component)
|
|
167
|
+
.create(injector ? injector : this.injector);
|
|
168
|
+
this.appRef.attachView(componentRef.hostView);
|
|
169
|
+
this.overlayContainer.getContainerElement().appendChild(this._getComponentRootNode(componentRef));
|
|
170
|
+
return componentRef;
|
|
171
|
+
}
|
|
172
|
+
/** Gets the root HTMLElement for an instantiated component. */
|
|
173
|
+
_getComponentRootNode(componentRef) {
|
|
174
|
+
return componentRef.hostView.rootNodes[0];
|
|
175
|
+
}
|
|
159
176
|
}
|
|
160
|
-
DomService.ɵprov = ɵɵdefineInjectable({ factory: function DomService_Factory() { return new DomService(); }, token: DomService, providedIn: "root" });
|
|
177
|
+
DomService.ɵprov = ɵɵdefineInjectable({ factory: function DomService_Factory() { return new DomService(ɵɵinject(ComponentFactoryResolver), ɵɵinject(ApplicationRef), ɵɵinject(INJECTOR), ɵɵinject(OverlayContainer)); }, token: DomService, providedIn: "root" });
|
|
161
178
|
DomService.decorators = [
|
|
162
179
|
{ type: Injectable, args: [{
|
|
163
180
|
providedIn: 'root'
|
|
164
181
|
},] }
|
|
165
182
|
];
|
|
183
|
+
DomService.ctorParameters = () => [
|
|
184
|
+
{ type: ComponentFactoryResolver },
|
|
185
|
+
{ type: ApplicationRef },
|
|
186
|
+
{ type: Injector },
|
|
187
|
+
{ type: OverlayContainer }
|
|
188
|
+
];
|
|
166
189
|
|
|
167
190
|
class AutoHideDirective {
|
|
168
191
|
constructor(_elementRef, domService) {
|
|
@@ -552,6 +575,7 @@ class ButtonComponent {
|
|
|
552
575
|
this.iconFontSize = 12;
|
|
553
576
|
this.hasLoader = false;
|
|
554
577
|
this.disabled = false;
|
|
578
|
+
this.whiteSpaceNowrap = false;
|
|
555
579
|
this.click = new EventEmitter();
|
|
556
580
|
this.isLoading = false;
|
|
557
581
|
this.interval = null;
|
|
@@ -589,7 +613,7 @@ class ButtonComponent {
|
|
|
589
613
|
ButtonComponent.decorators = [
|
|
590
614
|
{ type: Component, args: [{
|
|
591
615
|
selector: 'wac-button',
|
|
592
|
-
template: "<a\n [class]=\"'wac-button ' + extraClasses\"\n (click)=\"onButtonClick($event)\"\n [ngClass]=\"[label === '' ? 'alone' : '', isLoading ? 'is-loading' : '', disabled ? 'disabled' : '', widthAuto ? 'width-auto' : '']\"\n>\n <span class=\"wac-button__wrapper\">\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 class=\"wac-button__loader\"\n [ngClass]=\"extraClasses.includes('is-outlined') ? 'outlined' : ''\"\n *ngIf=\"isLoading || interval !== null\"\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</a>\n"
|
|
616
|
+
template: "<a\n [class]=\"'wac-button ' + extraClasses\"\n (click)=\"onButtonClick($event)\"\n [ngClass]=\"[label === '' ? 'alone' : '', isLoading ? 'is-loading' : '', disabled ? 'disabled' : '', widthAuto ? 'width-auto' : '', whiteSpaceNowrap ? 'white-space-no-wrap' : '']\"\n>\n <span class=\"wac-button__wrapper\">\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 class=\"wac-button__loader\"\n [ngClass]=\"extraClasses.includes('is-outlined') ? 'outlined' : ''\"\n *ngIf=\"isLoading || interval !== null\"\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</a>\n"
|
|
593
617
|
},] }
|
|
594
618
|
];
|
|
595
619
|
ButtonComponent.ctorParameters = () => [];
|
|
@@ -602,6 +626,7 @@ ButtonComponent.propDecorators = {
|
|
|
602
626
|
iconFontSize: [{ type: Input }],
|
|
603
627
|
hasLoader: [{ type: Input }],
|
|
604
628
|
disabled: [{ type: Input }],
|
|
629
|
+
whiteSpaceNowrap: [{ type: Input }],
|
|
605
630
|
click: [{ type: Output }]
|
|
606
631
|
};
|
|
607
632
|
|
|
@@ -1330,6 +1355,7 @@ class InputComponent {
|
|
|
1330
1355
|
this.withoutBlock = false;
|
|
1331
1356
|
this.icon = '';
|
|
1332
1357
|
this.big = false;
|
|
1358
|
+
this.medium = false;
|
|
1333
1359
|
this.boldLabel = 'false';
|
|
1334
1360
|
this.min = null;
|
|
1335
1361
|
this.max = null;
|
|
@@ -1397,7 +1423,7 @@ class InputComponent {
|
|
|
1397
1423
|
InputComponent.decorators = [
|
|
1398
1424
|
{ type: Component, args: [{
|
|
1399
1425
|
selector: 'wac-input',
|
|
1400
|
-
template: "<div\n class=\"field wac-input\"\n [ngClass]=\"{ 'has-no-block': withoutBlock, 'is-big': big, 'with-padding': padding, 'with-progress-bar': progressBar }\"\n>\n <div class=\"field-label is-normal has-text-left\" *ngIf=\"!withoutBlock\">\n <label\n [ngClass]=\"[boldLabel == 'true' ? 'label has-text-weight-bold' : 'label has-text-weight-normal', showTooltip ? 'label-inline' : '']\"\n [innerHTML]=\"label\"\n [for]=\"id\"\n ></label>\n <wac-tooltip\n *ngIf=\"showTooltip\"\n [tooltipIcon]=\"iconTooltip\"\n [tooltipText]=\"textTooltip\"\n [tooltipLink]=\"linkTooltip\"\n [tooltipUrl]=\"urlTooltip\"\n ></wac-tooltip>\n <!-- Size -->\n <span *ngIf=\"value && size && !progressBar\" class=\"is-size-7 wac-input__size\">\n <strong>{{ value.toString().length }}</strong> / {{ size }}\n </span>\n </div>\n <div class=\"field-body\">\n <div class=\"field\">\n <p\n class=\"control\"\n [ngClass]=\"{ 'has-icons-right': textError || success, 'has-icons-left': icon !== '', 'has-input-group': textAppend || textPrepend }\"\n >\n <!-- Text Prepend -->\n <span *ngIf=\"textPrepend\" class=\"has-input-group\">\n <span class=\"has-input-group-text prepend\">{{ textPrepend }}</span>\n <span *ngIf=\"icon !== ''\" class=\"icon is-small is-left\">\n <i [class]=\"icon\"></i>\n </span>\n </span>\n\n <!-- Input -->\n <input\n [class]=\"'input ' + extraClasses\"\n [id]=\"id\"\n [ngClass]=\"{\n 'is-danger': textError,\n 'is-large': big,\n 'is-number': isNumber,\n 'remove-margin': disableMargin,\n 'text-append': textAppend\n }\"\n [type]=\"type\"\n [placeholder]=\"placeholder\"\n [attr.size]=\"size\"\n [(ngModel)]=\"value\"\n (ngModelChange)=\"onChange($event)\"\n (blur)=\"onBlur()\"\n [disabled]=\"disabled\"\n (focusout)=\"onFocusOut()\"\n [min]=\"min\"\n [max]=\"max\"\n (keypress)=\"keyPress($event)\"\n />\n\n <!-- Indication at the end of the input -->\n <span class=\"indication\" *ngIf=\"indication\">\n <span [innerHTML]=\"indication\"></span>\n </span>\n\n <!-- Text Append -->\n <span *ngIf=\"textAppend\" class=\"has-input-group\">\n <span class=\"has-input-group-text append\">{{ textAppend }}</span>\n <!-- error if text append not empty -->\n <span *ngIf=\"textError\" class=\"icon is-small is-right\">\n <i class=\"fal fa-times has-text-danger\"></i>\n </span>\n </span>\n\n <!-- Icon Left -->\n <span *ngIf=\"icon !== '' && !textPrepend\" class=\"icon is-small is-left\">\n <i [class]=\"icon\"></i>\n </span>\n\n <!-- Icon error if textAppend empty -->\n <span *ngIf=\"textError && !textAppend\" class=\"icon is-small is-right\">\n <i class=\"fal fa-times has-text-danger\"></i>\n </span>\n\n <!-- Icon success -->\n <span *ngIf=\"success\" class=\"icon is-small is-right\">\n <i class=\"fas fa-check has-text-success\"></i>\n </span>\n\n <!-- Text Info -->\n <span\n *ngIf=\"textInfo && (textError === null || textError === '') && !progressBar\"\n class=\"is-size-7 wac-input__info text-info\"\n [innerHtml]=\"textInfo\"\n ></span>\n\n <!-- Text Error -->\n <span *ngIf=\"textError && !progressBar\" class=\"is-size-7 wac-input__error has-text-danger\" [innerHtml]=\"textError\"></span>\n </p>\n\n <!-- Progress Bar -->\n <wac-progress-bar *ngIf=\"progressBar\" [min]=\"min\" [max]=\"max\" [valueLength]=\"value.length\"></wac-progress-bar>\n </div>\n </div>\n</div>\n",
|
|
1426
|
+
template: "<div\n class=\"field wac-input\"\n [ngClass]=\"{ 'has-no-block': withoutBlock, 'is-big': big, 'is-medium': medium, 'with-padding': padding, 'with-progress-bar': progressBar }\"\n>\n <div class=\"field-label is-normal has-text-left\" *ngIf=\"!withoutBlock\">\n <label\n [ngClass]=\"[boldLabel == 'true' ? 'label has-text-weight-bold' : 'label has-text-weight-normal', showTooltip ? 'label-inline' : '']\"\n [innerHTML]=\"label\"\n [for]=\"id\"\n ></label>\n <wac-tooltip\n *ngIf=\"showTooltip\"\n [tooltipIcon]=\"iconTooltip\"\n [tooltipText]=\"textTooltip\"\n [tooltipLink]=\"linkTooltip\"\n [tooltipUrl]=\"urlTooltip\"\n ></wac-tooltip>\n <!-- Size -->\n <span *ngIf=\"value && size && !progressBar\" class=\"is-size-7 wac-input__size\">\n <strong>{{ value.toString().length }}</strong> / {{ size }}\n </span>\n </div>\n <div class=\"field-body\">\n <div class=\"field\">\n <p\n class=\"control\"\n [ngClass]=\"{ 'has-icons-right': textError || success, 'has-icons-left': icon !== '', 'has-input-group': textAppend || textPrepend }\"\n >\n <!-- Text Prepend -->\n <span *ngIf=\"textPrepend\" class=\"has-input-group\">\n <span class=\"has-input-group-text prepend\">{{ textPrepend }}</span>\n <span *ngIf=\"icon !== ''\" class=\"icon is-small is-left\">\n <i [class]=\"icon\"></i>\n </span>\n </span>\n\n <!-- Input -->\n <input\n [class]=\"'input ' + extraClasses\"\n [id]=\"id\"\n [ngClass]=\"{\n 'is-danger': textError,\n 'is-large': big,\n 'is-number': isNumber,\n 'remove-margin': disableMargin,\n 'text-append': textAppend\n }\"\n [type]=\"type\"\n [placeholder]=\"placeholder\"\n [attr.size]=\"size\"\n [(ngModel)]=\"value\"\n (ngModelChange)=\"onChange($event)\"\n (blur)=\"onBlur()\"\n [disabled]=\"disabled\"\n (focusout)=\"onFocusOut()\"\n [min]=\"min\"\n [max]=\"max\"\n (keypress)=\"keyPress($event)\"\n />\n\n <!-- Indication at the end of the input -->\n <span class=\"indication\" *ngIf=\"indication\">\n <span [innerHTML]=\"indication\"></span>\n </span>\n\n <!-- Text Append -->\n <span *ngIf=\"textAppend\" class=\"has-input-group\">\n <span class=\"has-input-group-text append\">{{ textAppend }}</span>\n <!-- error if text append not empty -->\n <span *ngIf=\"textError\" class=\"icon is-small is-right\">\n <i class=\"fal fa-times has-text-danger\"></i>\n </span>\n </span>\n\n <!-- Icon Left -->\n <span *ngIf=\"icon !== '' && !textPrepend\" class=\"icon is-small is-left\">\n <i [class]=\"icon\"></i>\n </span>\n\n <!-- Icon error if textAppend empty -->\n <span *ngIf=\"textError && !textAppend\" class=\"icon is-small is-right\">\n <i class=\"fal fa-times has-text-danger\"></i>\n </span>\n\n <!-- Icon success -->\n <span *ngIf=\"success\" class=\"icon is-small is-right\">\n <i class=\"fas fa-check has-text-success\"></i>\n </span>\n\n <!-- Text Info -->\n <span\n *ngIf=\"textInfo && (textError === null || textError === '') && !progressBar\"\n class=\"is-size-7 wac-input__info text-info\"\n [innerHtml]=\"textInfo\"\n ></span>\n\n <!-- Text Error -->\n <span *ngIf=\"textError && !progressBar\" class=\"is-size-7 wac-input__error has-text-danger\" [innerHtml]=\"textError\"></span>\n </p>\n\n <!-- Progress Bar -->\n <wac-progress-bar *ngIf=\"progressBar\" [min]=\"min\" [max]=\"max\" [valueLength]=\"value.length\"></wac-progress-bar>\n </div>\n </div>\n</div>\n",
|
|
1401
1427
|
providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: InputComponent, multi: true }]
|
|
1402
1428
|
},] }
|
|
1403
1429
|
];
|
|
@@ -1413,6 +1439,7 @@ InputComponent.propDecorators = {
|
|
|
1413
1439
|
withoutBlock: [{ type: Input }],
|
|
1414
1440
|
icon: [{ type: Input }],
|
|
1415
1441
|
big: [{ type: Input }],
|
|
1442
|
+
medium: [{ type: Input }],
|
|
1416
1443
|
boldLabel: [{ type: Input }],
|
|
1417
1444
|
min: [{ type: Input }],
|
|
1418
1445
|
max: [{ type: Input }],
|
|
@@ -2976,6 +3003,84 @@ SnackbarComponent.propDecorators = {
|
|
|
2976
3003
|
response: [{ type: Output }]
|
|
2977
3004
|
};
|
|
2978
3005
|
|
|
3006
|
+
class AlertPopupComponent {
|
|
3007
|
+
constructor() {
|
|
3008
|
+
/** Subject for notifying the user that the dialog has finished closing. */
|
|
3009
|
+
this.afterClosedPopup = new Subject();
|
|
3010
|
+
this.open = false;
|
|
3011
|
+
}
|
|
3012
|
+
ngOnInit() {
|
|
3013
|
+
setTimeout(() => {
|
|
3014
|
+
this.open = true;
|
|
3015
|
+
}, 50);
|
|
3016
|
+
if (this.config.duration > 0) {
|
|
3017
|
+
this.timer = setTimeout(() => this.dismiss(), this.config.duration);
|
|
3018
|
+
}
|
|
3019
|
+
}
|
|
3020
|
+
dismiss() {
|
|
3021
|
+
this.open = false;
|
|
3022
|
+
setTimeout(() => {
|
|
3023
|
+
this.afterClosedPopup.next(true);
|
|
3024
|
+
this.afterClosedPopup.complete();
|
|
3025
|
+
}, 200);
|
|
3026
|
+
}
|
|
3027
|
+
/**
|
|
3028
|
+
* Gets an observable that is notified when the dialog is finished closing.
|
|
3029
|
+
*/
|
|
3030
|
+
afterClosed() {
|
|
3031
|
+
return this.afterClosedPopup.asObservable();
|
|
3032
|
+
}
|
|
3033
|
+
}
|
|
3034
|
+
AlertPopupComponent.decorators = [
|
|
3035
|
+
{ type: Component, args: [{
|
|
3036
|
+
selector: 'wac-alert-popup',
|
|
3037
|
+
template: "<div\n [class]=\"'alert ' + ((config.color) ? config.color : ' is-primary') + ((config.extraClasses) ? ' ' + config.extraClasses : '') + ((config.position) ? ' ' + config.position : '') + ((config.fullsize) ? ' fullsize' : '') + ((config.opacity) ? ' opacity-active' : '') + ((config.small) ? ' small' : '')\"\n [ngClass]=\"{'is-active': open}\"\n>\n <div class=\"alert--message\">\n <span class=\"icon\" *ngIf=\"config.icon\">\n <i [class]=\"config.icon\"></i>\n </span>\n <span (click)=\"dismiss()\" class=\"wac-alert-popup__close\"><i class=\"fas fa-times\"></i></span>\n <p *ngIf=\"config.title\" class=\"wac-alert-popup__title\" [innerHTML]=\"config.title\"></p>\n <p *ngIf=\"config.message\" class=\"wac-alert-popup__text\" [innerHTML]=\"config.message\"></p>\n </div>\n</div>\n",
|
|
3038
|
+
host: {
|
|
3039
|
+
class: 'wac-alert-popup'
|
|
3040
|
+
},
|
|
3041
|
+
encapsulation: ViewEncapsulation.None
|
|
3042
|
+
},] }
|
|
3043
|
+
];
|
|
3044
|
+
|
|
3045
|
+
class AlertPopupService {
|
|
3046
|
+
constructor(domService) {
|
|
3047
|
+
this.domService = domService;
|
|
3048
|
+
}
|
|
3049
|
+
open(config) {
|
|
3050
|
+
const componentRef = this.getComponentRef(config);
|
|
3051
|
+
return componentRef.instance;
|
|
3052
|
+
}
|
|
3053
|
+
getComponentRef(config) {
|
|
3054
|
+
const componentRef = this.domService.attachComponentPortal(AlertPopupComponent);
|
|
3055
|
+
config = Object.assign({
|
|
3056
|
+
position: 'is-top'
|
|
3057
|
+
}, config);
|
|
3058
|
+
componentRef.instance.config = config;
|
|
3059
|
+
componentRef.instance.afterClosed().subscribe(() => {
|
|
3060
|
+
componentRef.destroy();
|
|
3061
|
+
});
|
|
3062
|
+
return componentRef;
|
|
3063
|
+
}
|
|
3064
|
+
}
|
|
3065
|
+
AlertPopupService.decorators = [
|
|
3066
|
+
{ type: Injectable }
|
|
3067
|
+
];
|
|
3068
|
+
AlertPopupService.ctorParameters = () => [
|
|
3069
|
+
{ type: DomService }
|
|
3070
|
+
];
|
|
3071
|
+
|
|
3072
|
+
class AlertPopupModule {
|
|
3073
|
+
}
|
|
3074
|
+
AlertPopupModule.decorators = [
|
|
3075
|
+
{ type: NgModule, args: [{
|
|
3076
|
+
imports: [CommonModule],
|
|
3077
|
+
providers: [AlertPopupService],
|
|
3078
|
+
entryComponents: [AlertPopupComponent],
|
|
3079
|
+
declarations: [AlertPopupComponent],
|
|
3080
|
+
exports: [AlertPopupComponent]
|
|
3081
|
+
},] }
|
|
3082
|
+
];
|
|
3083
|
+
|
|
2979
3084
|
const components = [
|
|
2980
3085
|
TagComponent,
|
|
2981
3086
|
TabComponent,
|
|
@@ -3053,6 +3158,7 @@ SharedComponentsModule.decorators = [
|
|
|
3053
3158
|
LoaderModule,
|
|
3054
3159
|
ProgressBarModule,
|
|
3055
3160
|
PerfectScrollbarModule,
|
|
3161
|
+
AlertPopupModule,
|
|
3056
3162
|
RouterModule
|
|
3057
3163
|
],
|
|
3058
3164
|
declarations: components,
|
|
@@ -3082,5 +3188,5 @@ WiziComponentsModule.decorators = [
|
|
|
3082
3188
|
* Generated bundle index. Do not edit.
|
|
3083
3189
|
*/
|
|
3084
3190
|
|
|
3085
|
-
export { AbstractDebounceDirective, AlertComponent, AutoHideDirective, BackComponent, BlockComponent, ButtonComponent, CalendarComponent, CheckBoxRow, CheckboxComponent, DebounceKeyupDirective, DeleteComponent, DropdownComponent, FiltersComponent, FiltersTableService, FreePopinComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HtmlContainer, ImageComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, LabelComponent, LinkComponent, LoaderComponent, LogoComponent, MultipleSearchComponent, MultipleSearchPlusComponent, PaginationComponent, PopinComponent, ProgressBarComponent, RadioComponent, SelectComponent, SelectInTextComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SnackbarComponent, StateComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableRow, TagComponent, TextAreaComponent, TextComponent, TooltipComponent, UploadComponent, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, 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,
|
|
3191
|
+
export { AbstractDebounceDirective, AlertComponent, AlertPopupComponent, AlertPopupService, AutoHideDirective, BackComponent, BlockComponent, ButtonComponent, CalendarComponent, CheckBoxRow, CheckboxComponent, DebounceKeyupDirective, DeleteComponent, DropdownComponent, FiltersComponent, FiltersTableService, FreePopinComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HtmlContainer, ImageComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, LabelComponent, LinkComponent, LoaderComponent, LogoComponent, MultipleSearchComponent, MultipleSearchPlusComponent, PaginationComponent, PopinComponent, ProgressBarComponent, RadioComponent, SelectComponent, SelectInTextComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SnackbarComponent, StateComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableRow, TagComponent, TextAreaComponent, TextComponent, TooltipComponent, UploadComponent, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, 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, AlertPopupModule as ɵn, inOutX as ɵo };
|
|
3086
3192
|
//# sourceMappingURL=wizishop-angular-components.js.map
|