monkey-front-core 0.0.285 → 0.0.287
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/esm2020/lib/components/currency-config/currency-config.component.mjs +39 -0
- package/esm2020/lib/components/currency-config/currency-config.module.mjs +39 -0
- package/esm2020/lib/components/currency-config/index.mjs +3 -0
- package/esm2020/lib/components/index.mjs +2 -1
- package/esm2020/lib/core/services/config/monkeyecx-currency-config.service.mjs +84 -0
- package/esm2020/lib/core/services/config/monkeyecx-i18n-config.service.mjs +1 -1
- package/esm2020/lib/core/services/index.mjs +2 -1
- package/esm2020/lib/monkey-front-core.module.mjs +8 -5
- package/fesm2015/monkey-front-core.mjs +150 -5
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +151 -5
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/components/currency-config/currency-config.component.d.ts +17 -0
- package/lib/components/currency-config/currency-config.module.d.ts +10 -0
- package/lib/components/currency-config/index.d.ts +2 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/core/services/config/monkeyecx-currency-config.service.d.ts +15 -0
- package/lib/core/services/index.d.ts +1 -0
- package/lib/monkey-front-core.module.d.ts +2 -1
- package/monkey-front-core-0.0.287.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.285.tgz +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { Component, Input, NgModule, Pipe, ViewEncapsulation, Injectable, EventEmitter, Directive, Output, HostBinding, HostListener, forwardRef, Self, InjectionToken, Inject, Optional, SkipSelf, NgZone, ErrorHandler } from '@angular/core';
|
|
3
3
|
import * as i1 from 'monkey-style-guide';
|
|
4
|
-
import { MonkeyButtonModule, MonkeyModalModule, MonkeyIconModule, MonkeyInputModule, MonkeyUtils, MonkeyStyleGuideModule, MonkeyStyleGuideModalService, MonkeyStyleGuideSettingsService, MonkeyStyleGuideSnackbarService } from 'monkey-style-guide';
|
|
4
|
+
import { MonkeyButtonModule, MonkeyModalModule, MonkeyIconModule, MonkeyInputModule, MonkeyRadioButtonModule, MonkeyOptionModule, MonkeyUtils, MonkeyStyleGuideModule, MonkeyStyleGuideModalService, MonkeyStyleGuideSettingsService, MonkeyStyleGuideSnackbarService } from 'monkey-style-guide';
|
|
5
5
|
import * as i2 from '@angular/common';
|
|
6
6
|
import { CommonModule, formatNumber, CurrencyPipe } from '@angular/common';
|
|
7
7
|
import * as i1$1 from '@ngx-translate/core';
|
|
@@ -1693,6 +1693,72 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1693
1693
|
}]
|
|
1694
1694
|
}] });
|
|
1695
1695
|
|
|
1696
|
+
class CurrencyConfigComponent {
|
|
1697
|
+
constructor(modalService) {
|
|
1698
|
+
this.modalService = modalService;
|
|
1699
|
+
this.config = null;
|
|
1700
|
+
this._currency = 'BRL';
|
|
1701
|
+
this._currencies = ['BRL'];
|
|
1702
|
+
this.callback = () => { };
|
|
1703
|
+
// not to do
|
|
1704
|
+
}
|
|
1705
|
+
ngOnInit() {
|
|
1706
|
+
const { config } = this;
|
|
1707
|
+
this._currency = config?.data?.currency;
|
|
1708
|
+
this._currencies = config?.data?.currencies;
|
|
1709
|
+
this.callback = config?.data?.callback;
|
|
1710
|
+
}
|
|
1711
|
+
onClose() {
|
|
1712
|
+
this.modalService.close(this.modalRef);
|
|
1713
|
+
this.callback?.(this._currency);
|
|
1714
|
+
}
|
|
1715
|
+
onHandleChangeCurrency(currency) {
|
|
1716
|
+
this._currency = currency;
|
|
1717
|
+
}
|
|
1718
|
+
}
|
|
1719
|
+
CurrencyConfigComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: CurrencyConfigComponent, deps: [{ token: i1.MonkeyStyleGuideModalService }], target: i0.ɵɵFactoryTarget.Component });
|
|
1720
|
+
CurrencyConfigComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: CurrencyConfigComponent, selector: "monkeyecx-currency-config", inputs: { config: "config", modalRef: "modalRef" }, ngImport: i0, template: "<monkey-modal [config]=\"config\" [modalRef]=\"modalRef\" *ngIf=\"config\">\r\n <div class=\"alert-body\">\r\n <span class=\"title\">\r\n {{ 'MECX-ALERTS.CONFIG.CURRENCY.TITLE' | translate }}\r\n </span>\r\n <span class=\"message\">\r\n {{ 'MECX-ALERTS.CONFIG.CURRENCY.SUB-TITLE' | translate }}\r\n </span>\r\n <monkey-radiobutton [value]=\"_currency\"\r\n (onChange)=\"onHandleChangeCurrency($event)\">\r\n <monkey-option \r\n [label]=\"'CURRENCIES.'+currency | translate\"\r\n [value]=\"currency\"\r\n *ngFor=\"let currency of _currencies\">\r\n </monkey-option>\r\n </monkey-radiobutton>\r\n <span class=\"info\">\r\n {{ 'MECX-ALERTS.CONFIG.CURRENCY.INFO' | translate }}\r\n </span>\r\n </div>\r\n <div class=\"alert-footer\">\r\n <monkey-button type=\"tertiary\" color=\"theme\" (click)=\"onClose()\">\r\n {{ 'BUTTONS.CONFIRM' | translate }}\r\n </monkey-button>\r\n </div>\r\n</monkey-modal>", styles: [":host ::ng-deep monkey-modal mecx-monkey-modal{padding:0}:host ::ng-deep monkey-modal mecx-monkey-modal .body{margin-bottom:0}:host ::ng-deep monkey-modal .mecx-monkey-modal__size-md{max-width:448px}:host ::ng-deep mecx-form-field mecx-form-field-footer{display:none}:host ::ng-deep monkey-radiobutton mecx-form-field mecx-form-field-body.radiobutton{gap:12px}:host .alert-header{height:100%}@media screen and (max-width: 959px){:host .alert-header{min-height:212px}}:host .alert-header img{border-radius:12px 12px 0 0;-o-object-fit:cover;object-fit:cover;width:100%;max-height:280px}@media screen and (max-width: 959px){:host .alert-header img{height:200px}}:host .alert-body{display:flex;flex-direction:column;gap:16px;padding:24px;margin:auto}:host .alert-body .title{font-style:normal;font-weight:700;font-size:32px;line-height:40px;color:#1f2024}:host .alert-body .message{font-style:normal;font-weight:400;font-size:16px;line-height:24px;letter-spacing:.03em;color:#545a63}:host .alert-body .info{color:#9a9ca1;line-height:24px;font-size:14px}:host .alert-footer{display:flex;justify-content:flex-end;align-items:center;padding:0 24px 24px;position:sticky;bottom:0;background:#fafafa}\n"], components: [{ type: i1.MonkeyModalComponent, selector: "monkey-modal", inputs: ["config", "modalRef", "onHandleConfirm"] }, { type: i1.MonkeyRadioButtonComponent, selector: "monkey-radiobutton", inputs: ["label", "helperMessage", "placeholder", "icon", "infoMessage", "errorMessage", "value"], outputs: ["onChange"] }, { type: i1.MonkeyOptionComponent, selector: "monkey-option", inputs: ["type", "label", "value", "selectAll", "selected", "enableClick"], outputs: ["onSelectOption"] }, { type: i1.MonkeyButtonComponent, selector: "monkey-button", inputs: ["label", "icon", "iconPosition", "type", "color", "disabled", "size"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], pipes: { "translate": i1$1.TranslatePipe } });
|
|
1721
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: CurrencyConfigComponent, decorators: [{
|
|
1722
|
+
type: Component,
|
|
1723
|
+
args: [{ selector: 'monkeyecx-currency-config', template: "<monkey-modal [config]=\"config\" [modalRef]=\"modalRef\" *ngIf=\"config\">\r\n <div class=\"alert-body\">\r\n <span class=\"title\">\r\n {{ 'MECX-ALERTS.CONFIG.CURRENCY.TITLE' | translate }}\r\n </span>\r\n <span class=\"message\">\r\n {{ 'MECX-ALERTS.CONFIG.CURRENCY.SUB-TITLE' | translate }}\r\n </span>\r\n <monkey-radiobutton [value]=\"_currency\"\r\n (onChange)=\"onHandleChangeCurrency($event)\">\r\n <monkey-option \r\n [label]=\"'CURRENCIES.'+currency | translate\"\r\n [value]=\"currency\"\r\n *ngFor=\"let currency of _currencies\">\r\n </monkey-option>\r\n </monkey-radiobutton>\r\n <span class=\"info\">\r\n {{ 'MECX-ALERTS.CONFIG.CURRENCY.INFO' | translate }}\r\n </span>\r\n </div>\r\n <div class=\"alert-footer\">\r\n <monkey-button type=\"tertiary\" color=\"theme\" (click)=\"onClose()\">\r\n {{ 'BUTTONS.CONFIRM' | translate }}\r\n </monkey-button>\r\n </div>\r\n</monkey-modal>", styles: [":host ::ng-deep monkey-modal mecx-monkey-modal{padding:0}:host ::ng-deep monkey-modal mecx-monkey-modal .body{margin-bottom:0}:host ::ng-deep monkey-modal .mecx-monkey-modal__size-md{max-width:448px}:host ::ng-deep mecx-form-field mecx-form-field-footer{display:none}:host ::ng-deep monkey-radiobutton mecx-form-field mecx-form-field-body.radiobutton{gap:12px}:host .alert-header{height:100%}@media screen and (max-width: 959px){:host .alert-header{min-height:212px}}:host .alert-header img{border-radius:12px 12px 0 0;-o-object-fit:cover;object-fit:cover;width:100%;max-height:280px}@media screen and (max-width: 959px){:host .alert-header img{height:200px}}:host .alert-body{display:flex;flex-direction:column;gap:16px;padding:24px;margin:auto}:host .alert-body .title{font-style:normal;font-weight:700;font-size:32px;line-height:40px;color:#1f2024}:host .alert-body .message{font-style:normal;font-weight:400;font-size:16px;line-height:24px;letter-spacing:.03em;color:#545a63}:host .alert-body .info{color:#9a9ca1;line-height:24px;font-size:14px}:host .alert-footer{display:flex;justify-content:flex-end;align-items:center;padding:0 24px 24px;position:sticky;bottom:0;background:#fafafa}\n"] }]
|
|
1724
|
+
}], ctorParameters: function () { return [{ type: i1.MonkeyStyleGuideModalService }]; }, propDecorators: { config: [{
|
|
1725
|
+
type: Input
|
|
1726
|
+
}], modalRef: [{
|
|
1727
|
+
type: Input
|
|
1728
|
+
}] } });
|
|
1729
|
+
|
|
1730
|
+
class CurrencyConfigModule {
|
|
1731
|
+
}
|
|
1732
|
+
CurrencyConfigModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: CurrencyConfigModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1733
|
+
CurrencyConfigModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: CurrencyConfigModule, declarations: [CurrencyConfigComponent], imports: [CommonModule,
|
|
1734
|
+
MonkeyButtonModule,
|
|
1735
|
+
MonkeyRadioButtonModule,
|
|
1736
|
+
MonkeyOptionModule,
|
|
1737
|
+
MonkeyModalModule, i1$1.TranslateModule], exports: [CurrencyConfigComponent] });
|
|
1738
|
+
CurrencyConfigModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: CurrencyConfigModule, imports: [[
|
|
1739
|
+
CommonModule,
|
|
1740
|
+
MonkeyButtonModule,
|
|
1741
|
+
MonkeyRadioButtonModule,
|
|
1742
|
+
MonkeyOptionModule,
|
|
1743
|
+
MonkeyModalModule,
|
|
1744
|
+
TranslateModule.forChild()
|
|
1745
|
+
]] });
|
|
1746
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: CurrencyConfigModule, decorators: [{
|
|
1747
|
+
type: NgModule,
|
|
1748
|
+
args: [{
|
|
1749
|
+
declarations: [CurrencyConfigComponent],
|
|
1750
|
+
imports: [
|
|
1751
|
+
CommonModule,
|
|
1752
|
+
MonkeyButtonModule,
|
|
1753
|
+
MonkeyRadioButtonModule,
|
|
1754
|
+
MonkeyOptionModule,
|
|
1755
|
+
MonkeyModalModule,
|
|
1756
|
+
TranslateModule.forChild()
|
|
1757
|
+
],
|
|
1758
|
+
exports: [CurrencyConfigComponent]
|
|
1759
|
+
}]
|
|
1760
|
+
}] });
|
|
1761
|
+
|
|
1696
1762
|
/* eslint-disable space-before-function-paren */
|
|
1697
1763
|
/* eslint-disable func-names */
|
|
1698
1764
|
function MonkeyEcxCoreCharts(render = true) {
|
|
@@ -3869,6 +3935,83 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
3869
3935
|
type: SkipSelf
|
|
3870
3936
|
}] }]; } });
|
|
3871
3937
|
|
|
3938
|
+
class MonkeyEcxCurrencyConfigService {
|
|
3939
|
+
constructor(modalService, cookieService, configService) {
|
|
3940
|
+
this.modalService = modalService;
|
|
3941
|
+
this.cookieService = cookieService;
|
|
3942
|
+
this.configService = configService;
|
|
3943
|
+
// not to do
|
|
3944
|
+
}
|
|
3945
|
+
onHandleCurrencyConfig({ currency, environment }) {
|
|
3946
|
+
const { cookieService } = this;
|
|
3947
|
+
const settings = cookieService.getCookie('monkey-app-settings');
|
|
3948
|
+
const locale = cookieService.getCookie('monkey-app-locale');
|
|
3949
|
+
if (!settings) {
|
|
3950
|
+
cookieService.setCookie('monkey-app-settings', btoa(JSON.stringify({
|
|
3951
|
+
showedCurrencyConfig: true
|
|
3952
|
+
})), environment);
|
|
3953
|
+
}
|
|
3954
|
+
else {
|
|
3955
|
+
const decoded = JSON.parse(atob(settings));
|
|
3956
|
+
cookieService.setCookie('monkey-app-settings', btoa(JSON.stringify({
|
|
3957
|
+
...decoded,
|
|
3958
|
+
showedCurrencyConfig: true
|
|
3959
|
+
})), environment);
|
|
3960
|
+
}
|
|
3961
|
+
if (locale) {
|
|
3962
|
+
const decoded = JSON.parse(atob(locale));
|
|
3963
|
+
cookieService.setCookie('monkey-app-locale', btoa(JSON.stringify({
|
|
3964
|
+
...decoded,
|
|
3965
|
+
currency
|
|
3966
|
+
})), environment);
|
|
3967
|
+
}
|
|
3968
|
+
}
|
|
3969
|
+
async onShowCurrencyConfig(environment, force = false) {
|
|
3970
|
+
const { cookieService } = this;
|
|
3971
|
+
const settings = cookieService.getCookie('monkey-app-settings');
|
|
3972
|
+
let showed = false;
|
|
3973
|
+
if (settings) {
|
|
3974
|
+
const decoded = JSON.parse(atob(settings));
|
|
3975
|
+
showed = decoded.showedCurrencyConfig;
|
|
3976
|
+
}
|
|
3977
|
+
const config = await this.configService
|
|
3978
|
+
.config()
|
|
3979
|
+
.pipe(first((val) => {
|
|
3980
|
+
return !!val && JSON.stringify(val) !== '{}';
|
|
3981
|
+
}))
|
|
3982
|
+
.toPromise();
|
|
3983
|
+
const currency = config?.i18n?.currency;
|
|
3984
|
+
const currencies = config?.i18n?.currencies;
|
|
3985
|
+
if ((!showed || force) && currencies?.length) {
|
|
3986
|
+
this.modalService.open(CurrencyConfigComponent, {
|
|
3987
|
+
color: 'theme',
|
|
3988
|
+
size: 'md',
|
|
3989
|
+
data: {
|
|
3990
|
+
currency,
|
|
3991
|
+
currencies,
|
|
3992
|
+
callback: (dontShowAnymore, currency = 'BRL') => {
|
|
3993
|
+
this.onHandleCurrencyConfig({
|
|
3994
|
+
currency,
|
|
3995
|
+
environment
|
|
3996
|
+
});
|
|
3997
|
+
}
|
|
3998
|
+
}
|
|
3999
|
+
});
|
|
4000
|
+
}
|
|
4001
|
+
}
|
|
4002
|
+
apply(environment, force = false) {
|
|
4003
|
+
this.onShowCurrencyConfig(environment, force);
|
|
4004
|
+
}
|
|
4005
|
+
}
|
|
4006
|
+
MonkeyEcxCurrencyConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxCurrencyConfigService, deps: [{ token: i1.MonkeyStyleGuideModalFixedService }, { token: MonkeyEcxCookieStorageService }, { token: MonkeyEcxConfigService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4007
|
+
MonkeyEcxCurrencyConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxCurrencyConfigService, providedIn: 'root' });
|
|
4008
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxCurrencyConfigService, decorators: [{
|
|
4009
|
+
type: Injectable,
|
|
4010
|
+
args: [{
|
|
4011
|
+
providedIn: 'root'
|
|
4012
|
+
}]
|
|
4013
|
+
}], ctorParameters: function () { return [{ type: i1.MonkeyStyleGuideModalFixedService }, { type: MonkeyEcxCookieStorageService }, { type: MonkeyEcxConfigService }]; } });
|
|
4014
|
+
|
|
3872
4015
|
class MonkeyEcxHttpErrorHandlingService extends MonkeyEcxCommonsService {
|
|
3873
4016
|
constructor(monkeyecxService, tokenStorage, monkeyecxAuthenticationService, router, snackbarService, translateService) {
|
|
3874
4017
|
super(monkeyecxService, tokenStorage);
|
|
@@ -5207,7 +5350,8 @@ MonkeyFrontCoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", ve
|
|
|
5207
5350
|
MonkeyFrontCoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, imports: [CommonModule,
|
|
5208
5351
|
HttpClientModule, i1$1.TranslateModule, MonkeyEcxConfigModule, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxErrorHandlingModule, MonkeyStyleGuideModule, i1$6.ServiceWorkerModule, ClosedToMaintenanceModule,
|
|
5209
5352
|
VersionChangedModule,
|
|
5210
|
-
AlertsModule
|
|
5353
|
+
AlertsModule,
|
|
5354
|
+
CurrencyConfigModule] });
|
|
5211
5355
|
MonkeyFrontCoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, providers: [
|
|
5212
5356
|
MonkeyStyleGuideModalService,
|
|
5213
5357
|
MonkeyStyleGuideSettingsService,
|
|
@@ -5223,7 +5367,8 @@ MonkeyFrontCoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", v
|
|
|
5223
5367
|
ServiceWorkerModule.register('ngsw-worker.js'),
|
|
5224
5368
|
ClosedToMaintenanceModule,
|
|
5225
5369
|
VersionChangedModule,
|
|
5226
|
-
AlertsModule
|
|
5370
|
+
AlertsModule,
|
|
5371
|
+
CurrencyConfigModule
|
|
5227
5372
|
]] });
|
|
5228
5373
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, decorators: [{
|
|
5229
5374
|
type: NgModule,
|
|
@@ -5239,7 +5384,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
5239
5384
|
ServiceWorkerModule.register('ngsw-worker.js'),
|
|
5240
5385
|
ClosedToMaintenanceModule,
|
|
5241
5386
|
VersionChangedModule,
|
|
5242
|
-
AlertsModule
|
|
5387
|
+
AlertsModule,
|
|
5388
|
+
CurrencyConfigModule
|
|
5243
5389
|
],
|
|
5244
5390
|
providers: [
|
|
5245
5391
|
MonkeyStyleGuideModalService,
|
|
@@ -5257,5 +5403,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
5257
5403
|
* Generated bundle index. Do not edit.
|
|
5258
5404
|
*/
|
|
5259
5405
|
|
|
5260
|
-
export { AlertsComponent, AlertsModule, ClosedToMaintenanceComponent, ClosedToMaintenanceModule, decoratorsUtils as DecoratorsUtils, Link, MonkeyEcxAlertsService, MonkeyEcxAuthGuard, MonkeyEcxAuthGuardCompany, MonkeyEcxAuthGuardLogin, MonkeyEcxAuthenticationService, MonkeyEcxBlobSecurePipe, MonkeyEcxCommonsService, MonkeyEcxConfigModule, MonkeyEcxConfigService, MonkeyEcxCookieStorageService, MonkeyEcxCoreCharts, MonkeyEcxCoreClearDecorators, MonkeyEcxCoreLog, MonkeyEcxCoreService, MonkeyEcxCoreServiceConstructor, MonkeyEcxCoreServicePaged, MonkeyEcxCoreServiceQueue, MonkeyEcxDirectivesModule, MonkeyEcxDiscoveryParamsService, MonkeyEcxDisplayFirstNamePipe, MonkeyEcxDisplayInitialsPipe, MonkeyEcxDragDropDirective, MonkeyEcxErrorConfigService, MonkeyEcxErrorHandlingModule, MonkeyEcxErrorHandlingService, MonkeyEcxFeatureByProgramDirective, MonkeyEcxFeatureDirective, MonkeyEcxFeatureToggleService, MonkeyEcxFormatAddressPipe, MonkeyEcxFormatBeaufityJSONPipe, MonkeyEcxFormatCurrency, MonkeyEcxFormatCurrencyPipe, MonkeyEcxFormatDateGroupPipe, MonkeyEcxFormatDateTimelapsePipe, MonkeyEcxFormatDateUnixTimelapsePipe, MonkeyEcxFormatDocumentPipe, MonkeyEcxFormatDocumentTypePipe, MonkeyEcxFormatNumberPipe, MonkeyEcxFormatPhonePipe, MonkeyEcxFormatSizePipe, MonkeyEcxFormatTaxPipe, MonkeyEcxFormatUpper, MonkeyEcxFormatValue, MonkeyEcxFormatZipCodePipe, MonkeyEcxHandlingService, MonkeyEcxHttpConfigErrorInterceptor, MonkeyEcxHttpConfigHeaderInterceptor, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxHttpConfigLoadingInProgressInterceptor, MonkeyEcxHttpConfigQueueInterceptor, MonkeyEcxHttpErrorHandlingService, MonkeyEcxLoggedHandlingService, MonkeyEcxLogsConfigService, MonkeyEcxMaintenanceConfigService, MonkeyEcxModel, MonkeyEcxOnlyAlphaNumericDirective, MonkeyEcxOnlyNumbersDirective, MonkeyEcxOthersErrorsHandlingService, MonkeyEcxPaginationService, MonkeyEcxPipesModule, MonkeyEcxPopoverDirective, MonkeyEcxPopoverOptionsDirective, MonkeyEcxProgressBarComponent, MonkeyEcxProgressBarModule, MonkeyEcxProgressBarService, MonkeyEcxRequestDownloadHandlingService, MonkeyEcxRequestDownloadedHandlingService, MonkeyEcxRequestPagedHandling, MonkeyEcxRequestQueueHandlingService, MonkeyEcxRequestQueueModalHandlingService, MonkeyEcxRequestScheduleService, MonkeyEcxSecurityConsoleConfigService, MonkeyEcxSecurityDirective, MonkeyEcxService, MonkeyEcxServiceDownload, MonkeyEcxServiceUpload, MonkeyEcxServiceWorkerConfigService, MonkeyEcxSpecificationSearch, MonkeyEcxTextTruncatePipe, MonkeyEcxTokenStorageService, MonkeyEcxTooltipDirective, MonkeyEcxTruncateQtdPipe, MonkeyEcxUtils, MonkeyEcxi18nConfigService, MonkeyFrontCoreModule, OpSearch, POPOVER_OPTIONS, statics as Statics, validateUtils as ValidateUtils, Validators, VersionChangedComponent, VersionChangedModule, comboValidator, dateRangeValidator, dateStartEndValidator, dateValidator, documentValidator, emailValidator, passwordConfirmValidator, registerValidator, trueValidator, urlValidator, valueGreaterThanZero, zipCodeValidator };
|
|
5406
|
+
export { AlertsComponent, AlertsModule, ClosedToMaintenanceComponent, ClosedToMaintenanceModule, CurrencyConfigComponent, CurrencyConfigModule, decoratorsUtils as DecoratorsUtils, Link, MonkeyEcxAlertsService, MonkeyEcxAuthGuard, MonkeyEcxAuthGuardCompany, MonkeyEcxAuthGuardLogin, MonkeyEcxAuthenticationService, MonkeyEcxBlobSecurePipe, MonkeyEcxCommonsService, MonkeyEcxConfigModule, MonkeyEcxConfigService, MonkeyEcxCookieStorageService, MonkeyEcxCoreCharts, MonkeyEcxCoreClearDecorators, MonkeyEcxCoreLog, MonkeyEcxCoreService, MonkeyEcxCoreServiceConstructor, MonkeyEcxCoreServicePaged, MonkeyEcxCoreServiceQueue, MonkeyEcxCurrencyConfigService, MonkeyEcxDirectivesModule, MonkeyEcxDiscoveryParamsService, MonkeyEcxDisplayFirstNamePipe, MonkeyEcxDisplayInitialsPipe, MonkeyEcxDragDropDirective, MonkeyEcxErrorConfigService, MonkeyEcxErrorHandlingModule, MonkeyEcxErrorHandlingService, MonkeyEcxFeatureByProgramDirective, MonkeyEcxFeatureDirective, MonkeyEcxFeatureToggleService, MonkeyEcxFormatAddressPipe, MonkeyEcxFormatBeaufityJSONPipe, MonkeyEcxFormatCurrency, MonkeyEcxFormatCurrencyPipe, MonkeyEcxFormatDateGroupPipe, MonkeyEcxFormatDateTimelapsePipe, MonkeyEcxFormatDateUnixTimelapsePipe, MonkeyEcxFormatDocumentPipe, MonkeyEcxFormatDocumentTypePipe, MonkeyEcxFormatNumberPipe, MonkeyEcxFormatPhonePipe, MonkeyEcxFormatSizePipe, MonkeyEcxFormatTaxPipe, MonkeyEcxFormatUpper, MonkeyEcxFormatValue, MonkeyEcxFormatZipCodePipe, MonkeyEcxHandlingService, MonkeyEcxHttpConfigErrorInterceptor, MonkeyEcxHttpConfigHeaderInterceptor, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxHttpConfigLoadingInProgressInterceptor, MonkeyEcxHttpConfigQueueInterceptor, MonkeyEcxHttpErrorHandlingService, MonkeyEcxLoggedHandlingService, MonkeyEcxLogsConfigService, MonkeyEcxMaintenanceConfigService, MonkeyEcxModel, MonkeyEcxOnlyAlphaNumericDirective, MonkeyEcxOnlyNumbersDirective, MonkeyEcxOthersErrorsHandlingService, MonkeyEcxPaginationService, MonkeyEcxPipesModule, MonkeyEcxPopoverDirective, MonkeyEcxPopoverOptionsDirective, MonkeyEcxProgressBarComponent, MonkeyEcxProgressBarModule, MonkeyEcxProgressBarService, MonkeyEcxRequestDownloadHandlingService, MonkeyEcxRequestDownloadedHandlingService, MonkeyEcxRequestPagedHandling, MonkeyEcxRequestQueueHandlingService, MonkeyEcxRequestQueueModalHandlingService, MonkeyEcxRequestScheduleService, MonkeyEcxSecurityConsoleConfigService, MonkeyEcxSecurityDirective, MonkeyEcxService, MonkeyEcxServiceDownload, MonkeyEcxServiceUpload, MonkeyEcxServiceWorkerConfigService, MonkeyEcxSpecificationSearch, MonkeyEcxTextTruncatePipe, MonkeyEcxTokenStorageService, MonkeyEcxTooltipDirective, MonkeyEcxTruncateQtdPipe, MonkeyEcxUtils, MonkeyEcxi18nConfigService, MonkeyFrontCoreModule, OpSearch, POPOVER_OPTIONS, statics as Statics, validateUtils as ValidateUtils, Validators, VersionChangedComponent, VersionChangedModule, comboValidator, dateRangeValidator, dateStartEndValidator, dateValidator, documentValidator, emailValidator, passwordConfirmValidator, registerValidator, trueValidator, urlValidator, valueGreaterThanZero, zipCodeValidator };
|
|
5261
5407
|
//# sourceMappingURL=monkey-front-core.mjs.map
|