monkey-front-core 0.0.146 → 0.0.149
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/core/directives/index.mjs +3 -1
- package/esm2020/lib/core/directives/monkeyecx-directives-module.mjs +19 -6
- package/esm2020/lib/core/directives/monkeyecx-popover-options.directive.mjs +39 -0
- package/esm2020/lib/core/directives/monkeyecx-popover.directive.mjs +198 -0
- package/esm2020/lib/core/pipes/index.mjs +3 -1
- package/esm2020/lib/core/pipes/monkeyecx-format-beautify-json.mjs +38 -0
- package/esm2020/lib/core/pipes/monkeyecx-format-date-timelapse.mjs +2 -2
- package/esm2020/lib/core/pipes/monkeyecx-format-date-unix-timelapse.mjs +36 -0
- package/esm2020/lib/core/pipes/monkeyecx-pipes.module.mjs +14 -4
- package/esm2020/lib/core/specification-search/monkeyecx-specification-search.mjs +8 -4
- package/esm2020/lib/monkey-front-core.module.mjs +6 -6
- package/fesm2015/monkey-front-core.mjs +364 -39
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +360 -39
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/directives/index.d.ts +2 -0
- package/lib/core/directives/monkeyecx-directives-module.d.ts +5 -1
- package/lib/core/directives/monkeyecx-popover-options.directive.d.ts +19 -0
- package/lib/core/directives/monkeyecx-popover.directive.d.ts +38 -0
- package/lib/core/pipes/index.d.ts +2 -0
- package/lib/core/pipes/monkeyecx-format-beautify-json.d.ts +8 -0
- package/lib/core/pipes/monkeyecx-format-date-unix-timelapse.d.ts +7 -0
- package/lib/core/pipes/monkeyecx-pipes.module.d.ts +3 -1
- package/lib/core/specification-search/monkeyecx-specification-search.d.ts +1 -1
- package/lib/monkey-front-core.module.d.ts +4 -4
- package/monkey-front-core-0.0.149.tgz +0 -0
- package/package.json +2 -1
- package/monkey-front-core-0.0.146.tgz +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Pipe, Component, ViewEncapsulation, Input, Injectable, NgModule, EventEmitter, Directive, Output, HostBinding, HostListener, forwardRef, Self,
|
|
2
|
+
import { Pipe, Component, ViewEncapsulation, Input, Injectable, NgModule, EventEmitter, Directive, Output, HostBinding, HostListener, forwardRef, Self, InjectionToken, Inject, Optional, NgZone, ErrorHandler, SkipSelf } from '@angular/core';
|
|
3
3
|
import * as i1 from 'monkey-style-guide';
|
|
4
4
|
import { MonkeyButtonModule, MonkeyIconModule, MonkeyInputModule, MonkeyModalModule, MonkeyUtils, MonkeyStyleGuideModule, MonkeyStyleGuideModalService, MonkeyStyleGuideSettingsService, MonkeyStyleGuideSnackbarService } from 'monkey-style-guide';
|
|
5
5
|
import * as i2 from '@angular/common';
|
|
@@ -10,14 +10,17 @@ import * as moment_ from 'moment';
|
|
|
10
10
|
import * as i1$2 from 'ngx-cookie-service';
|
|
11
11
|
import * as i1$3 from '@angular/router';
|
|
12
12
|
import { NavigationStart, NavigationEnd, NavigationError, NavigationCancel } from '@angular/router';
|
|
13
|
-
import { BehaviorSubject, throwError, interval, concat, of, Subject } from 'rxjs';
|
|
13
|
+
import { BehaviorSubject, Subscription, throwError, interval, concat, of, Subject } from 'rxjs';
|
|
14
14
|
import { filter, take, takeWhile, map, catchError, first, takeUntil, mergeMap, finalize } from 'rxjs/operators';
|
|
15
15
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
16
|
+
import { TemplatePortal } from '@angular/cdk/portal';
|
|
17
|
+
import * as i1$4 from '@angular/cdk/overlay';
|
|
18
|
+
import { OverlayModule } from '@angular/cdk/overlay';
|
|
16
19
|
import { __decorate } from 'tslib';
|
|
17
|
-
import * as i1$
|
|
20
|
+
import * as i1$5 from '@angular/common/http';
|
|
18
21
|
import { HttpParams, HttpErrorResponse, HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';
|
|
19
22
|
import { datadogRum } from '@datadog/browser-rum';
|
|
20
|
-
import * as i1$
|
|
23
|
+
import * as i1$6 from '@angular/service-worker';
|
|
21
24
|
import { ServiceWorkerModule } from '@angular/service-worker';
|
|
22
25
|
import { initialize } from 'launchdarkly-js-client-sdk';
|
|
23
26
|
|
|
@@ -240,14 +243,14 @@ class MonkeyEcxUtils {
|
|
|
240
243
|
}
|
|
241
244
|
}
|
|
242
245
|
|
|
243
|
-
const moment$
|
|
246
|
+
const moment$4 = moment_;
|
|
244
247
|
class MonkeyEcxFormatDateTimelapsePipe {
|
|
245
248
|
transform(date, showTime = false, useUtc = true, format = '- HH:mm') {
|
|
246
249
|
if (!MonkeyEcxUtils.persistNullEmptyUndefined(date))
|
|
247
250
|
return '';
|
|
248
|
-
let stillUtc = moment$
|
|
251
|
+
let stillUtc = moment$4.default.utc(date).toDate();
|
|
249
252
|
if (!useUtc)
|
|
250
|
-
stillUtc = moment$
|
|
253
|
+
stillUtc = moment$4.default(date).toDate();
|
|
251
254
|
if (date.toString().indexOf(':') <= -1) {
|
|
252
255
|
if (typeof date === 'string') {
|
|
253
256
|
stillUtc = date;
|
|
@@ -256,7 +259,7 @@ class MonkeyEcxFormatDateTimelapsePipe {
|
|
|
256
259
|
}
|
|
257
260
|
const formatFrom = `YYYY/MM/DD${showTime ? ` ${format}` : ''}`;
|
|
258
261
|
const formatTo = `DD/MM/YYYY${showTime ? ` ${format}` : ''}`;
|
|
259
|
-
return `${moment$
|
|
262
|
+
return `${moment$4.default(stillUtc, formatFrom).format(formatTo)}`;
|
|
260
263
|
}
|
|
261
264
|
}
|
|
262
265
|
MonkeyEcxFormatDateTimelapsePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateTimelapsePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
@@ -264,7 +267,7 @@ MonkeyEcxFormatDateTimelapsePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12
|
|
|
264
267
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateTimelapsePipe, decorators: [{
|
|
265
268
|
type: Pipe,
|
|
266
269
|
args: [{
|
|
267
|
-
name: 'monkeyecxFormatDateTimelapse'
|
|
270
|
+
name: 'monkeyecxFormatDateTimelapse'
|
|
268
271
|
}]
|
|
269
272
|
}] });
|
|
270
273
|
|
|
@@ -547,7 +550,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
547
550
|
}]
|
|
548
551
|
}] });
|
|
549
552
|
|
|
550
|
-
const moment$
|
|
553
|
+
const moment$3 = moment_;
|
|
551
554
|
class MonkeyEcxFormatDateGroupPipe {
|
|
552
555
|
constructor(injector) {
|
|
553
556
|
this.injector = injector;
|
|
@@ -559,12 +562,12 @@ class MonkeyEcxFormatDateGroupPipe {
|
|
|
559
562
|
var _a;
|
|
560
563
|
if (!MonkeyEcxUtils.persistNullEmptyUndefined(date))
|
|
561
564
|
return '';
|
|
562
|
-
let stillUtc = moment$
|
|
565
|
+
let stillUtc = moment$3.default.utc(date).toDate();
|
|
563
566
|
if (((_a = date.toString()) === null || _a === void 0 ? void 0 : _a.indexOf(':')) <= -1) {
|
|
564
567
|
stillUtc = date;
|
|
565
568
|
}
|
|
566
569
|
const formatFrom = 'YYYY/MM/DD';
|
|
567
|
-
const fmt = moment$
|
|
570
|
+
const fmt = moment$3.default(stillUtc, formatFrom).locale(this.lang);
|
|
568
571
|
const dayFormated = fmt.format('DD/');
|
|
569
572
|
const monthFormated = MonkeyEcxUtils.capitalize(fmt.format('MMMM'));
|
|
570
573
|
const yearFormated = fmt.format('YYYY');
|
|
@@ -589,15 +592,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
589
592
|
}], ctorParameters: function () { return [{ type: i0.Injector }]; } });
|
|
590
593
|
|
|
591
594
|
/* eslint-disable max-classes-per-file */
|
|
592
|
-
const moment$
|
|
595
|
+
const moment$2 = moment_;
|
|
593
596
|
class DateValidator {
|
|
594
597
|
static do(control) {
|
|
595
598
|
if (!control.parent || !control)
|
|
596
599
|
return null;
|
|
597
600
|
if (control && control.value) {
|
|
598
601
|
const dateFormat = 'MM-DD-YYYY';
|
|
599
|
-
if (!moment$
|
|
600
|
-
.default(moment$
|
|
602
|
+
if (!moment$2
|
|
603
|
+
.default(moment$2.default(control.value).format(dateFormat), ['DD/MM/YYYY', 'MM-DD-YYYY', 'YYYY-MM-DD'], true)
|
|
601
604
|
.isValid()) {
|
|
602
605
|
return {
|
|
603
606
|
invalidDate: true,
|
|
@@ -903,7 +906,7 @@ var decoratorsUtils = /*#__PURE__*/Object.freeze({
|
|
|
903
906
|
hasMonkeyEcxServiceAndHandlingProperties: hasMonkeyEcxServiceAndHandlingProperties
|
|
904
907
|
});
|
|
905
908
|
|
|
906
|
-
const moment = moment_;
|
|
909
|
+
const moment$1 = moment_;
|
|
907
910
|
const EMAIL_REGEXP = /^[\w-.]+@([\w-]+\.)+[\w-]{1,64}$/;
|
|
908
911
|
function isEmptyInputValue(value) {
|
|
909
912
|
return value == null || value.length === 0;
|
|
@@ -1048,8 +1051,8 @@ function dateValidator(control) {
|
|
|
1048
1051
|
if (!control.parent || !control || isEmptyInputValue(control.value))
|
|
1049
1052
|
return null;
|
|
1050
1053
|
const dateFormat = 'MM-DD-YYYY';
|
|
1051
|
-
if (!moment
|
|
1052
|
-
.default(moment.default(control.value).format(dateFormat), ['DD/MM/YYYY', 'MM-DD-YYYY', 'YYYY-MM-DD'], true)
|
|
1054
|
+
if (!moment$1
|
|
1055
|
+
.default(moment$1.default(control.value).format(dateFormat), ['DD/MM/YYYY', 'MM-DD-YYYY', 'YYYY-MM-DD'], true)
|
|
1053
1056
|
.isValid()) {
|
|
1054
1057
|
return {
|
|
1055
1058
|
invalidDate: true,
|
|
@@ -1134,6 +1137,74 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1134
1137
|
}]
|
|
1135
1138
|
}] });
|
|
1136
1139
|
|
|
1140
|
+
class MonkeyEcxFormatBeaufityJSONPipe {
|
|
1141
|
+
constructor() {
|
|
1142
|
+
// not to do
|
|
1143
|
+
}
|
|
1144
|
+
transform(value) {
|
|
1145
|
+
const jsonLine = /^( *)("[\w]+": )?("[^"]*"|[\w.+-]*)?([,[{])?$/gm;
|
|
1146
|
+
const replacer = (match, pIndent, pKey, pVal, pEnd) => {
|
|
1147
|
+
const key = '<span class="json-key" style="color: brown">';
|
|
1148
|
+
const val = '<span class="json-value" style="color: navy">';
|
|
1149
|
+
const str = '<span class="json-string" style="color: olive">';
|
|
1150
|
+
let r = pIndent || '';
|
|
1151
|
+
if (pKey) {
|
|
1152
|
+
r = `${r + key + pKey.replace(/[": ]/g, '')}</span>: `;
|
|
1153
|
+
}
|
|
1154
|
+
if (pVal) {
|
|
1155
|
+
r = `${r + (pVal[0] === '"' ? str : val) + pVal}</span>`;
|
|
1156
|
+
}
|
|
1157
|
+
return r + (pEnd || '');
|
|
1158
|
+
};
|
|
1159
|
+
return JSON.stringify(value, null, 3)
|
|
1160
|
+
.replace(/&/g, '&')
|
|
1161
|
+
.replace(/\\"/g, '"')
|
|
1162
|
+
.replace(/</g, '<')
|
|
1163
|
+
.replace(/>/g, '>')
|
|
1164
|
+
.replace(jsonLine, replacer);
|
|
1165
|
+
}
|
|
1166
|
+
}
|
|
1167
|
+
MonkeyEcxFormatBeaufityJSONPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1168
|
+
MonkeyEcxFormatBeaufityJSONPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, name: "monkeyecxFormatBeautifyJSON" });
|
|
1169
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, decorators: [{
|
|
1170
|
+
type: Pipe,
|
|
1171
|
+
args: [{
|
|
1172
|
+
name: 'monkeyecxFormatBeautifyJSON'
|
|
1173
|
+
}]
|
|
1174
|
+
}], ctorParameters: function () { return []; } });
|
|
1175
|
+
|
|
1176
|
+
const moment = moment_;
|
|
1177
|
+
class MonkeyEcxFormatDateUnixTimelapsePipe {
|
|
1178
|
+
transform(date, showTime = false, useUtc = true, format = '- HH:mm') {
|
|
1179
|
+
if (!MonkeyEcxUtils.persistNullEmptyUndefined(date))
|
|
1180
|
+
return '';
|
|
1181
|
+
let stillUtc = moment.default.utc(date).toDate();
|
|
1182
|
+
if (!useUtc)
|
|
1183
|
+
stillUtc = moment.default(date).toDate();
|
|
1184
|
+
if (moment.default
|
|
1185
|
+
.utc(date)
|
|
1186
|
+
.toDate()
|
|
1187
|
+
.toLocaleString()
|
|
1188
|
+
.indexOf(':') <= -1) {
|
|
1189
|
+
if (typeof date === 'string') {
|
|
1190
|
+
stillUtc = date;
|
|
1191
|
+
showTime = false;
|
|
1192
|
+
}
|
|
1193
|
+
}
|
|
1194
|
+
const formatFrom = `YYYY/MM/DD${showTime ? ` ${format}` : ''}`;
|
|
1195
|
+
const formatTo = `DD/MM/YYYY${showTime ? ` ${format}` : ''}`;
|
|
1196
|
+
return `${moment.default(stillUtc, formatFrom).format(formatTo)}`;
|
|
1197
|
+
}
|
|
1198
|
+
}
|
|
1199
|
+
MonkeyEcxFormatDateUnixTimelapsePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateUnixTimelapsePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1200
|
+
MonkeyEcxFormatDateUnixTimelapsePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateUnixTimelapsePipe, name: "monkeyecxFormatDateUnixTimelapse" });
|
|
1201
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateUnixTimelapsePipe, decorators: [{
|
|
1202
|
+
type: Pipe,
|
|
1203
|
+
args: [{
|
|
1204
|
+
name: 'monkeyecxFormatDateUnixTimelapse'
|
|
1205
|
+
}]
|
|
1206
|
+
}] });
|
|
1207
|
+
|
|
1137
1208
|
class MonkeyEcxPipesModule {
|
|
1138
1209
|
}
|
|
1139
1210
|
MonkeyEcxPipesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPipesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -1151,7 +1222,9 @@ MonkeyEcxPipesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", ve
|
|
|
1151
1222
|
MonkeyEcxFormatValue,
|
|
1152
1223
|
MonkeyEcxFormatZipCodePipe,
|
|
1153
1224
|
MonkeyEcxTextTruncatePipe,
|
|
1154
|
-
MonkeyEcxTruncateQtdPipe
|
|
1225
|
+
MonkeyEcxTruncateQtdPipe,
|
|
1226
|
+
MonkeyEcxFormatBeaufityJSONPipe,
|
|
1227
|
+
MonkeyEcxFormatDateUnixTimelapsePipe], exports: [MonkeyEcxDisplayFirstNamePipe,
|
|
1155
1228
|
MonkeyEcxFormatAddressPipe,
|
|
1156
1229
|
MonkeyEcxFormatCurrencyPipe,
|
|
1157
1230
|
MonkeyEcxFormatDateTimelapsePipe,
|
|
@@ -1165,7 +1238,9 @@ MonkeyEcxPipesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", ve
|
|
|
1165
1238
|
MonkeyEcxFormatValue,
|
|
1166
1239
|
MonkeyEcxFormatZipCodePipe,
|
|
1167
1240
|
MonkeyEcxTextTruncatePipe,
|
|
1168
|
-
MonkeyEcxTruncateQtdPipe
|
|
1241
|
+
MonkeyEcxTruncateQtdPipe,
|
|
1242
|
+
MonkeyEcxFormatBeaufityJSONPipe,
|
|
1243
|
+
MonkeyEcxFormatDateUnixTimelapsePipe] });
|
|
1169
1244
|
MonkeyEcxPipesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPipesModule, providers: [CurrencyPipe] });
|
|
1170
1245
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPipesModule, decorators: [{
|
|
1171
1246
|
type: NgModule,
|
|
@@ -1186,6 +1261,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1186
1261
|
MonkeyEcxFormatZipCodePipe,
|
|
1187
1262
|
MonkeyEcxTextTruncatePipe,
|
|
1188
1263
|
MonkeyEcxTruncateQtdPipe,
|
|
1264
|
+
MonkeyEcxFormatBeaufityJSONPipe,
|
|
1265
|
+
MonkeyEcxFormatDateUnixTimelapsePipe
|
|
1189
1266
|
],
|
|
1190
1267
|
exports: [
|
|
1191
1268
|
MonkeyEcxDisplayFirstNamePipe,
|
|
@@ -1203,8 +1280,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1203
1280
|
MonkeyEcxFormatZipCodePipe,
|
|
1204
1281
|
MonkeyEcxTextTruncatePipe,
|
|
1205
1282
|
MonkeyEcxTruncateQtdPipe,
|
|
1283
|
+
MonkeyEcxFormatBeaufityJSONPipe,
|
|
1284
|
+
MonkeyEcxFormatDateUnixTimelapsePipe
|
|
1206
1285
|
],
|
|
1207
|
-
providers: [CurrencyPipe]
|
|
1286
|
+
providers: [CurrencyPipe]
|
|
1208
1287
|
}]
|
|
1209
1288
|
}] });
|
|
1210
1289
|
|
|
@@ -1779,6 +1858,239 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1779
1858
|
args: ['input', ['$event']]
|
|
1780
1859
|
}] } });
|
|
1781
1860
|
|
|
1861
|
+
const POPOVER_OPTIONS = new InjectionToken('POPOVER_OPTIONS');
|
|
1862
|
+
class MonkeyEcxPopoverOptionsDirective {
|
|
1863
|
+
set options(options) {
|
|
1864
|
+
Object.entries(options).forEach(([k, v]) => {
|
|
1865
|
+
this[k] = v;
|
|
1866
|
+
});
|
|
1867
|
+
}
|
|
1868
|
+
}
|
|
1869
|
+
MonkeyEcxPopoverOptionsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPopoverOptionsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1870
|
+
MonkeyEcxPopoverOptionsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: MonkeyEcxPopoverOptionsDirective, selector: "[monkeyecxPopoverOptions]", inputs: { options: ["monkeyecxPopoverOptions", "options"] }, providers: [
|
|
1871
|
+
{
|
|
1872
|
+
provide: POPOVER_OPTIONS,
|
|
1873
|
+
useExisting: forwardRef(() => {
|
|
1874
|
+
// eslint-disable-next-line no-use-before-define
|
|
1875
|
+
return MonkeyEcxPopoverOptionsDirective;
|
|
1876
|
+
})
|
|
1877
|
+
}
|
|
1878
|
+
], ngImport: i0 });
|
|
1879
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPopoverOptionsDirective, decorators: [{
|
|
1880
|
+
type: Directive,
|
|
1881
|
+
args: [{
|
|
1882
|
+
selector: '[monkeyecxPopoverOptions]',
|
|
1883
|
+
providers: [
|
|
1884
|
+
{
|
|
1885
|
+
provide: POPOVER_OPTIONS,
|
|
1886
|
+
useExisting: forwardRef(() => {
|
|
1887
|
+
// eslint-disable-next-line no-use-before-define
|
|
1888
|
+
return MonkeyEcxPopoverOptionsDirective;
|
|
1889
|
+
})
|
|
1890
|
+
}
|
|
1891
|
+
]
|
|
1892
|
+
}]
|
|
1893
|
+
}], propDecorators: { options: [{
|
|
1894
|
+
type: Input,
|
|
1895
|
+
args: ['monkeyecxPopoverOptions']
|
|
1896
|
+
}] } });
|
|
1897
|
+
|
|
1898
|
+
class MonkeyEcxPopoverDirective {
|
|
1899
|
+
constructor(tpl, vcr, el, zone, _viewContainerRef, _cd, overlay, overlayPositionBuilder, options) {
|
|
1900
|
+
this.tpl = tpl;
|
|
1901
|
+
this.vcr = vcr;
|
|
1902
|
+
this.el = el;
|
|
1903
|
+
this.zone = zone;
|
|
1904
|
+
this._viewContainerRef = _viewContainerRef;
|
|
1905
|
+
this._cd = _cd;
|
|
1906
|
+
this.overlay = overlay;
|
|
1907
|
+
this.overlayPositionBuilder = overlayPositionBuilder;
|
|
1908
|
+
this.options = options;
|
|
1909
|
+
this.minwidth = false;
|
|
1910
|
+
this.backdrop = true;
|
|
1911
|
+
this.watch = false;
|
|
1912
|
+
this.dir = 'ltr';
|
|
1913
|
+
this.contextmenu = false;
|
|
1914
|
+
this.subs = new Subscription();
|
|
1915
|
+
// not to do
|
|
1916
|
+
}
|
|
1917
|
+
get popover() {
|
|
1918
|
+
return this._popover;
|
|
1919
|
+
}
|
|
1920
|
+
set popover(show) {
|
|
1921
|
+
this._popover = show;
|
|
1922
|
+
if (show) {
|
|
1923
|
+
this.createPopover();
|
|
1924
|
+
}
|
|
1925
|
+
else if (this.overlayRef) {
|
|
1926
|
+
this.overlayRef.dispose();
|
|
1927
|
+
}
|
|
1928
|
+
}
|
|
1929
|
+
get target() {
|
|
1930
|
+
return this._target;
|
|
1931
|
+
}
|
|
1932
|
+
set target(target) {
|
|
1933
|
+
this._target = target;
|
|
1934
|
+
}
|
|
1935
|
+
getDirPositions(dir) {
|
|
1936
|
+
var _a;
|
|
1937
|
+
const revert = {
|
|
1938
|
+
start: 'end', end: 'start', bottom: 'top', top: 'bottom', center: 'center'
|
|
1939
|
+
};
|
|
1940
|
+
const centerY = (pos) => {
|
|
1941
|
+
return {
|
|
1942
|
+
originX: 'center', originY: pos, overlayX: 'center', overlayY: revert[pos]
|
|
1943
|
+
};
|
|
1944
|
+
};
|
|
1945
|
+
const centerX = (pos) => {
|
|
1946
|
+
return {
|
|
1947
|
+
originX: revert[pos], originY: 'center', overlayX: pos, overlayY: 'center'
|
|
1948
|
+
};
|
|
1949
|
+
};
|
|
1950
|
+
const ltr = (axis) => {
|
|
1951
|
+
return {
|
|
1952
|
+
originX: 'start', originY: axis, overlayX: 'start', overlayY: revert[axis]
|
|
1953
|
+
};
|
|
1954
|
+
};
|
|
1955
|
+
const rtl = (axis) => {
|
|
1956
|
+
return {
|
|
1957
|
+
originX: 'end', originY: axis, overlayX: 'end', overlayY: revert[axis]
|
|
1958
|
+
};
|
|
1959
|
+
};
|
|
1960
|
+
const side = (axis, axis2) => {
|
|
1961
|
+
return {
|
|
1962
|
+
originX: axis, originY: axis2, overlayX: revert[axis], overlayY: axis2
|
|
1963
|
+
};
|
|
1964
|
+
};
|
|
1965
|
+
const cmp = dir || ((_a = this.options) === null || _a === void 0 ? void 0 : _a.dir) || this.dir;
|
|
1966
|
+
if (cmp === 'ct') {
|
|
1967
|
+
return [centerY('top'), centerY('bottom'), centerX('start'), centerX('end')];
|
|
1968
|
+
}
|
|
1969
|
+
if (cmp === 'cr') {
|
|
1970
|
+
return [centerX('end'), centerX('start'), centerY('top'), centerY('bottom')];
|
|
1971
|
+
}
|
|
1972
|
+
if (cmp === 'cc') {
|
|
1973
|
+
return [centerX('center')];
|
|
1974
|
+
}
|
|
1975
|
+
if (cmp === 'ltr') {
|
|
1976
|
+
return [ltr('bottom'), ltr('top')];
|
|
1977
|
+
}
|
|
1978
|
+
if (cmp === 'rtl') {
|
|
1979
|
+
return [rtl('bottom'), rtl('top')];
|
|
1980
|
+
}
|
|
1981
|
+
if (cmp === 'tltr') {
|
|
1982
|
+
return [ltr('top'), ltr('bottom')];
|
|
1983
|
+
}
|
|
1984
|
+
if (cmp === 'trtl') {
|
|
1985
|
+
return [rtl('top'), rtl('bottom')];
|
|
1986
|
+
}
|
|
1987
|
+
if (cmp === 'rt') {
|
|
1988
|
+
return [side('end', 'top'), side('end', 'bottom'), ltr('top')];
|
|
1989
|
+
}
|
|
1990
|
+
if (cmp === 'rb') {
|
|
1991
|
+
return [side('end', 'bottom'), side('end', 'top'), ltr('bottom'), rtl('bottom')];
|
|
1992
|
+
}
|
|
1993
|
+
if (cmp === 'lt') {
|
|
1994
|
+
return [side('start', 'top'), side('start', 'bottom'), rtl('top')];
|
|
1995
|
+
}
|
|
1996
|
+
if (cmp === 'lb') {
|
|
1997
|
+
return [side('start', 'bottom'), side('start', 'top'), rtl('bottom')];
|
|
1998
|
+
}
|
|
1999
|
+
return [];
|
|
2000
|
+
}
|
|
2001
|
+
createPopover(origin, options) {
|
|
2002
|
+
var _a;
|
|
2003
|
+
this.templatePortal = new TemplatePortal(this.tpl, this._viewContainerRef);
|
|
2004
|
+
this.positionStrategy = this.overlayPositionBuilder
|
|
2005
|
+
.flexibleConnectedTo(origin || this.target)
|
|
2006
|
+
.withPush(true)
|
|
2007
|
+
.withGrowAfterOpen(true)
|
|
2008
|
+
.withPositions(this.getDirPositions(options === null || options === void 0 ? void 0 : options.dir));
|
|
2009
|
+
this.overlayRef = this.overlay.create({
|
|
2010
|
+
positionStrategy: this.positionStrategy,
|
|
2011
|
+
disposeOnNavigation: true,
|
|
2012
|
+
direction: 'ltr',
|
|
2013
|
+
hasBackdrop: this.backdrop,
|
|
2014
|
+
scrollStrategy: this.overlay.scrollStrategies.reposition({}),
|
|
2015
|
+
backdropClass: 'cdk-overlay-transparent-backdrop',
|
|
2016
|
+
width: (((_a = this.options) === null || _a === void 0 ? void 0 : _a.minwidth) || this.minwidth) ? (this.target.offsetWidth - 2) : undefined,
|
|
2017
|
+
maxHeight: '95%',
|
|
2018
|
+
height: this.height
|
|
2019
|
+
});
|
|
2020
|
+
let resizeObserver;
|
|
2021
|
+
const subs = this.overlayRef.backdropClick().subscribe((e) => {
|
|
2022
|
+
this.popover = false;
|
|
2023
|
+
subs.unsubscribe();
|
|
2024
|
+
resizeObserver === null || resizeObserver === void 0 ? void 0 : resizeObserver.disconnect();
|
|
2025
|
+
this.zone.run(() => {
|
|
2026
|
+
if (this.closed) {
|
|
2027
|
+
this.closed(e);
|
|
2028
|
+
}
|
|
2029
|
+
});
|
|
2030
|
+
});
|
|
2031
|
+
const attached = this.overlayRef.attach(this.templatePortal);
|
|
2032
|
+
if (this.watch) {
|
|
2033
|
+
try {
|
|
2034
|
+
if ('ResizeObserver' in window) {
|
|
2035
|
+
resizeObserver = new ResizeObserver(([{ contentRect }]) => {
|
|
2036
|
+
this.overlayRef.updatePosition();
|
|
2037
|
+
})
|
|
2038
|
+
.observe(attached.rootNodes[0]);
|
|
2039
|
+
}
|
|
2040
|
+
}
|
|
2041
|
+
catch (e) {
|
|
2042
|
+
// not to do
|
|
2043
|
+
}
|
|
2044
|
+
}
|
|
2045
|
+
}
|
|
2046
|
+
ngOnDestroy() {
|
|
2047
|
+
this.popover = false;
|
|
2048
|
+
this.subs.unsubscribe();
|
|
2049
|
+
}
|
|
2050
|
+
}
|
|
2051
|
+
MonkeyEcxPopoverDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPopoverDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.ViewContainerRef }, { token: i0.ChangeDetectorRef }, { token: i1$4.Overlay }, { token: i1$4.OverlayPositionBuilder }, { token: POPOVER_OPTIONS, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2052
|
+
MonkeyEcxPopoverDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: MonkeyEcxPopoverDirective, selector: "[monkeyecxPopover]", inputs: { popover: ["monkeyecxPopover", "popover"], closed: ["monkeyecxPopoverClosed", "closed"], target: ["monkeyecxPopoverTarget", "target"], minwidth: ["monkeyecxPopoverMinwidth", "minwidth"], backdrop: ["monkeyecxPopoverBackdrop", "backdrop"], watch: ["monkeyecxPopoverWatch", "watch"], dir: ["monkeyecxPopoverDir", "dir"], contextmenu: ["monkeyecxPopoverContextmenu", "contextmenu"], height: ["monkeyecxPopoverHeight", "height"] }, ngImport: i0 });
|
|
2053
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPopoverDirective, decorators: [{
|
|
2054
|
+
type: Directive,
|
|
2055
|
+
args: [{
|
|
2056
|
+
selector: '[monkeyecxPopover]'
|
|
2057
|
+
}]
|
|
2058
|
+
}], ctorParameters: function () {
|
|
2059
|
+
return [{ type: i0.TemplateRef }, { type: i0.ViewContainerRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.ViewContainerRef }, { type: i0.ChangeDetectorRef }, { type: i1$4.Overlay }, { type: i1$4.OverlayPositionBuilder }, { type: undefined, decorators: [{
|
|
2060
|
+
type: Inject,
|
|
2061
|
+
args: [POPOVER_OPTIONS]
|
|
2062
|
+
}, {
|
|
2063
|
+
type: Optional
|
|
2064
|
+
}] }];
|
|
2065
|
+
}, propDecorators: { popover: [{
|
|
2066
|
+
type: Input,
|
|
2067
|
+
args: ['monkeyecxPopover']
|
|
2068
|
+
}], closed: [{
|
|
2069
|
+
type: Input,
|
|
2070
|
+
args: ['monkeyecxPopoverClosed']
|
|
2071
|
+
}], target: [{
|
|
2072
|
+
type: Input,
|
|
2073
|
+
args: ['monkeyecxPopoverTarget']
|
|
2074
|
+
}], minwidth: [{
|
|
2075
|
+
type: Input,
|
|
2076
|
+
args: ['monkeyecxPopoverMinwidth']
|
|
2077
|
+
}], backdrop: [{
|
|
2078
|
+
type: Input,
|
|
2079
|
+
args: ['monkeyecxPopoverBackdrop']
|
|
2080
|
+
}], watch: [{
|
|
2081
|
+
type: Input,
|
|
2082
|
+
args: ['monkeyecxPopoverWatch']
|
|
2083
|
+
}], dir: [{
|
|
2084
|
+
type: Input,
|
|
2085
|
+
args: ['monkeyecxPopoverDir']
|
|
2086
|
+
}], contextmenu: [{
|
|
2087
|
+
type: Input,
|
|
2088
|
+
args: ['monkeyecxPopoverContextmenu']
|
|
2089
|
+
}], height: [{
|
|
2090
|
+
type: Input,
|
|
2091
|
+
args: ['monkeyecxPopoverHeight']
|
|
2092
|
+
}] } });
|
|
2093
|
+
|
|
1782
2094
|
class MonkeyEcxRequestPagedHandling {
|
|
1783
2095
|
constructor(url, pagedParams, links, samePage = false) {
|
|
1784
2096
|
this.samePage = false;
|
|
@@ -2263,14 +2575,14 @@ class MonkeyEcxService {
|
|
|
2263
2575
|
}));
|
|
2264
2576
|
}
|
|
2265
2577
|
}
|
|
2266
|
-
MonkeyEcxService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxService, deps: [{ token: i1$
|
|
2578
|
+
MonkeyEcxService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxService, deps: [{ token: i1$5.HttpClient }, { token: MonkeyEcxHandlingService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2267
2579
|
MonkeyEcxService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxService, providedIn: 'root' });
|
|
2268
2580
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxService, decorators: [{
|
|
2269
2581
|
type: Injectable,
|
|
2270
2582
|
args: [{
|
|
2271
2583
|
providedIn: 'root',
|
|
2272
2584
|
}]
|
|
2273
|
-
}], ctorParameters: function () { return [{ type: i1$
|
|
2585
|
+
}], ctorParameters: function () { return [{ type: i1$5.HttpClient }, { type: MonkeyEcxHandlingService }]; } });
|
|
2274
2586
|
|
|
2275
2587
|
let window$1;
|
|
2276
2588
|
const text = {
|
|
@@ -2484,14 +2796,14 @@ class MonkeyEcxServiceWorkerConfigService {
|
|
|
2484
2796
|
this.verify();
|
|
2485
2797
|
}
|
|
2486
2798
|
}
|
|
2487
|
-
MonkeyEcxServiceWorkerConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxServiceWorkerConfigService, deps: [{ token: i0.ApplicationRef }, { token: i1$
|
|
2799
|
+
MonkeyEcxServiceWorkerConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxServiceWorkerConfigService, deps: [{ token: i0.ApplicationRef }, { token: i1$6.SwUpdate }, { token: i1.MonkeyStyleGuideModalService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2488
2800
|
MonkeyEcxServiceWorkerConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxServiceWorkerConfigService, providedIn: 'root' });
|
|
2489
2801
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxServiceWorkerConfigService, decorators: [{
|
|
2490
2802
|
type: Injectable,
|
|
2491
2803
|
args: [{
|
|
2492
2804
|
providedIn: 'root'
|
|
2493
2805
|
}]
|
|
2494
|
-
}], ctorParameters: function () { return [{ type: i0.ApplicationRef }, { type: i1$
|
|
2806
|
+
}], ctorParameters: function () { return [{ type: i0.ApplicationRef }, { type: i1$6.SwUpdate }, { type: i1.MonkeyStyleGuideModalService }]; } });
|
|
2495
2807
|
|
|
2496
2808
|
/* eslint-disable no-console */
|
|
2497
2809
|
class MonkeyEcxSecurityConsoleConfigService extends MonkeyEcxCommonsService {
|
|
@@ -3094,15 +3406,19 @@ MonkeyEcxDirectivesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0
|
|
|
3094
3406
|
MonkeyEcxOnlyAlphaNumericDirective,
|
|
3095
3407
|
MonkeyEcxOnlyNumbersDirective,
|
|
3096
3408
|
MonkeyEcxSecurityDirective,
|
|
3097
|
-
MonkeyEcxTooltipDirective
|
|
3409
|
+
MonkeyEcxTooltipDirective,
|
|
3410
|
+
MonkeyEcxPopoverDirective,
|
|
3411
|
+
MonkeyEcxPopoverOptionsDirective], imports: [CommonModule, OverlayModule], exports: [MonkeyEcxDragDropDirective,
|
|
3098
3412
|
MonkeyEcxFormatCurrency,
|
|
3099
3413
|
MonkeyEcxFeatureDirective,
|
|
3100
3414
|
MonkeyEcxFormatUpper,
|
|
3101
3415
|
MonkeyEcxOnlyAlphaNumericDirective,
|
|
3102
3416
|
MonkeyEcxOnlyNumbersDirective,
|
|
3103
3417
|
MonkeyEcxSecurityDirective,
|
|
3104
|
-
MonkeyEcxTooltipDirective
|
|
3105
|
-
|
|
3418
|
+
MonkeyEcxTooltipDirective,
|
|
3419
|
+
MonkeyEcxPopoverDirective,
|
|
3420
|
+
MonkeyEcxPopoverOptionsDirective] });
|
|
3421
|
+
MonkeyEcxDirectivesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxDirectivesModule, imports: [[CommonModule, OverlayModule]] });
|
|
3106
3422
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxDirectivesModule, decorators: [{
|
|
3107
3423
|
type: NgModule,
|
|
3108
3424
|
args: [{
|
|
@@ -3114,8 +3430,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
3114
3430
|
MonkeyEcxOnlyAlphaNumericDirective,
|
|
3115
3431
|
MonkeyEcxOnlyNumbersDirective,
|
|
3116
3432
|
MonkeyEcxSecurityDirective,
|
|
3117
|
-
MonkeyEcxTooltipDirective
|
|
3433
|
+
MonkeyEcxTooltipDirective,
|
|
3434
|
+
MonkeyEcxPopoverDirective,
|
|
3435
|
+
MonkeyEcxPopoverOptionsDirective
|
|
3118
3436
|
],
|
|
3437
|
+
imports: [CommonModule, OverlayModule],
|
|
3119
3438
|
exports: [
|
|
3120
3439
|
MonkeyEcxDragDropDirective,
|
|
3121
3440
|
MonkeyEcxFormatCurrency,
|
|
@@ -3124,7 +3443,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
3124
3443
|
MonkeyEcxOnlyAlphaNumericDirective,
|
|
3125
3444
|
MonkeyEcxOnlyNumbersDirective,
|
|
3126
3445
|
MonkeyEcxSecurityDirective,
|
|
3127
|
-
MonkeyEcxTooltipDirective
|
|
3446
|
+
MonkeyEcxTooltipDirective,
|
|
3447
|
+
MonkeyEcxPopoverDirective,
|
|
3448
|
+
MonkeyEcxPopoverOptionsDirective
|
|
3128
3449
|
]
|
|
3129
3450
|
}]
|
|
3130
3451
|
}] });
|
|
@@ -4247,7 +4568,7 @@ class MonkeyEcxSpecificationSearch {
|
|
|
4247
4568
|
throw new Error(`MonkeyEcxSpecificationSearch Error ${e}`);
|
|
4248
4569
|
}
|
|
4249
4570
|
}
|
|
4250
|
-
buildMoreThanOne(field, op = OpSearch.EQUAL) {
|
|
4571
|
+
buildMoreThanOne(field, op = OpSearch.EQUAL, addSingleQuotes = false) {
|
|
4251
4572
|
var _a, _b;
|
|
4252
4573
|
const self = this;
|
|
4253
4574
|
try {
|
|
@@ -4256,7 +4577,11 @@ class MonkeyEcxSpecificationSearch {
|
|
|
4256
4577
|
const filters = (_b = (_a = self[field]) === null || _a === void 0 ? void 0 : _a.split(',')) === null || _b === void 0 ? void 0 : _b.map((filter) => {
|
|
4257
4578
|
if (!filter)
|
|
4258
4579
|
return null;
|
|
4259
|
-
return {
|
|
4580
|
+
return {
|
|
4581
|
+
[field]: {
|
|
4582
|
+
[op]: addSingleQuotes ? `'${filter}'` : `${filter}`
|
|
4583
|
+
}
|
|
4584
|
+
};
|
|
4260
4585
|
}).filter((val) => { return val; });
|
|
4261
4586
|
return filters || [];
|
|
4262
4587
|
}
|
|
@@ -4266,13 +4591,13 @@ class MonkeyEcxSpecificationSearch {
|
|
|
4266
4591
|
}
|
|
4267
4592
|
}
|
|
4268
4593
|
|
|
4269
|
-
class
|
|
4594
|
+
class MonkeyFrontCoreModule {
|
|
4270
4595
|
}
|
|
4271
|
-
|
|
4272
|
-
|
|
4273
|
-
HttpClientModule, i1$1.TranslateModule, MonkeyEcxConfigModule, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxErrorHandlingModule, MonkeyStyleGuideModule, i1$
|
|
4596
|
+
MonkeyFrontCoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4597
|
+
MonkeyFrontCoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, imports: [CommonModule,
|
|
4598
|
+
HttpClientModule, i1$1.TranslateModule, MonkeyEcxConfigModule, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxErrorHandlingModule, MonkeyStyleGuideModule, i1$6.ServiceWorkerModule, ClosedToMaintenanceModule,
|
|
4274
4599
|
VersionChangedModule] });
|
|
4275
|
-
|
|
4600
|
+
MonkeyFrontCoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, providers: [
|
|
4276
4601
|
MonkeyStyleGuideModalService,
|
|
4277
4602
|
MonkeyStyleGuideSettingsService,
|
|
4278
4603
|
MonkeyStyleGuideSnackbarService
|
|
@@ -4288,7 +4613,7 @@ MonkeyFrontCoreModuleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0
|
|
|
4288
4613
|
ClosedToMaintenanceModule,
|
|
4289
4614
|
VersionChangedModule
|
|
4290
4615
|
]] });
|
|
4291
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type:
|
|
4616
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, decorators: [{
|
|
4292
4617
|
type: NgModule,
|
|
4293
4618
|
args: [{
|
|
4294
4619
|
imports: [
|
|
@@ -4319,5 +4644,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
4319
4644
|
* Generated bundle index. Do not edit.
|
|
4320
4645
|
*/
|
|
4321
4646
|
|
|
4322
|
-
export { ClosedToMaintenanceComponent, ClosedToMaintenanceModule, decoratorsUtils as DecoratorsUtils, Link, MonkeyEcxAuthGuard, MonkeyEcxAuthGuardCompany, MonkeyEcxAuthGuardLogin, MonkeyEcxAuthenticationService, MonkeyEcxCommonsService, MonkeyEcxConfigModule, MonkeyEcxConfigService, MonkeyEcxCookieStorageService, MonkeyEcxCoreCharts, MonkeyEcxCoreClearDecorators, MonkeyEcxCoreLog, MonkeyEcxCoreService, MonkeyEcxCoreServiceConstructor, MonkeyEcxCoreServicePaged, MonkeyEcxCoreServiceQueue, MonkeyEcxDirectivesModule, MonkeyEcxDiscoveryParamsService, MonkeyEcxDisplayFirstNamePipe, MonkeyEcxDragDropDirective, MonkeyEcxErrorConfigService, MonkeyEcxErrorHandlingModule, MonkeyEcxErrorHandlingService, MonkeyEcxFeatureDirective, MonkeyEcxFeatureToggleService, MonkeyEcxFormatAddressPipe, MonkeyEcxFormatCurrency, MonkeyEcxFormatCurrencyPipe, MonkeyEcxFormatDateGroupPipe, MonkeyEcxFormatDateTimelapsePipe, MonkeyEcxFormatDocumentPipe, MonkeyEcxFormatDocumentTypePipe, MonkeyEcxFormatNumberPipe, MonkeyEcxFormatPhonePipe, MonkeyEcxFormatSizePipe, MonkeyEcxFormatTaxPipe, MonkeyEcxFormatUpper, MonkeyEcxFormatValue, MonkeyEcxFormatZipCodePipe, MonkeyEcxHandlingService, MonkeyEcxHttpConfigErrorInterceptor, MonkeyEcxHttpConfigHeaderInterceptor, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxHttpConfigLoadingInProgressInterceptor, MonkeyEcxHttpConfigQueueInterceptor, MonkeyEcxHttpErrorHandlingService, MonkeyEcxLoggedHandlingService, MonkeyEcxLogsConfigService, MonkeyEcxMaintenanceConfigService, MonkeyEcxModel, MonkeyEcxOnlyAlphaNumericDirective, MonkeyEcxOnlyNumbersDirective, MonkeyEcxOthersErrorsHandlingService, MonkeyEcxPipesModule, MonkeyEcxProgressBarComponent, MonkeyEcxProgressBarModule, MonkeyEcxProgressBarService, MonkeyEcxRequestDownloadHandlingService, MonkeyEcxRequestDownloadedHandlingService, MonkeyEcxRequestPagedHandling, MonkeyEcxRequestQueueHandlingService, MonkeyEcxRequestQueueModalHandlingService, MonkeyEcxRequestScheduleService, MonkeyEcxSecurityConsoleConfigService, MonkeyEcxSecurityDirective, MonkeyEcxService, MonkeyEcxServiceDownload, MonkeyEcxServiceUpload, MonkeyEcxServiceWorkerConfigService, MonkeyEcxSpecificationSearch, MonkeyEcxTextTruncatePipe, MonkeyEcxTokenStorageService, MonkeyEcxTooltipDirective, MonkeyEcxTruncateQtdPipe, MonkeyEcxUtils, MonkeyEcxi18nConfigService,
|
|
4647
|
+
export { ClosedToMaintenanceComponent, ClosedToMaintenanceModule, decoratorsUtils as DecoratorsUtils, Link, MonkeyEcxAuthGuard, MonkeyEcxAuthGuardCompany, MonkeyEcxAuthGuardLogin, MonkeyEcxAuthenticationService, MonkeyEcxCommonsService, MonkeyEcxConfigModule, MonkeyEcxConfigService, MonkeyEcxCookieStorageService, MonkeyEcxCoreCharts, MonkeyEcxCoreClearDecorators, MonkeyEcxCoreLog, MonkeyEcxCoreService, MonkeyEcxCoreServiceConstructor, MonkeyEcxCoreServicePaged, MonkeyEcxCoreServiceQueue, MonkeyEcxDirectivesModule, MonkeyEcxDiscoveryParamsService, MonkeyEcxDisplayFirstNamePipe, MonkeyEcxDragDropDirective, MonkeyEcxErrorConfigService, MonkeyEcxErrorHandlingModule, MonkeyEcxErrorHandlingService, 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, 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 };
|
|
4323
4648
|
//# sourceMappingURL=monkey-front-core.mjs.map
|