monkey-front-core 0.0.145 → 0.0.148
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/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/services/auth/monkeyecx-auth-guard-company.service.mjs +2 -4
- package/esm2020/lib/core/services/auth/monkeyecx-auth-guard-login.service.mjs +2 -4
- package/esm2020/lib/core/services/auth/monkeyecx-authentication.service.mjs +2 -4
- package/esm2020/lib/core/services/error/monkeyecx-error-handling.service.mjs +2 -4
- package/esm2020/lib/core/specification-search/monkeyecx-specification-search.mjs +6 -5
- package/fesm2015/monkey-front-core.mjs +102 -33
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +102 -33
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- 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 +3 -2
- package/monkey-front-core-0.0.148.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.145.tgz +0 -0
|
@@ -240,14 +240,14 @@ class MonkeyEcxUtils {
|
|
|
240
240
|
}
|
|
241
241
|
}
|
|
242
242
|
|
|
243
|
-
const moment$
|
|
243
|
+
const moment$4 = moment_;
|
|
244
244
|
class MonkeyEcxFormatDateTimelapsePipe {
|
|
245
245
|
transform(date, showTime = false, useUtc = true, format = '- HH:mm') {
|
|
246
246
|
if (!MonkeyEcxUtils.persistNullEmptyUndefined(date))
|
|
247
247
|
return '';
|
|
248
|
-
let stillUtc = moment$
|
|
248
|
+
let stillUtc = moment$4.default.utc(date).toDate();
|
|
249
249
|
if (!useUtc)
|
|
250
|
-
stillUtc = moment$
|
|
250
|
+
stillUtc = moment$4.default(date).toDate();
|
|
251
251
|
if (date.toString().indexOf(':') <= -1) {
|
|
252
252
|
if (typeof date === 'string') {
|
|
253
253
|
stillUtc = date;
|
|
@@ -256,7 +256,7 @@ class MonkeyEcxFormatDateTimelapsePipe {
|
|
|
256
256
|
}
|
|
257
257
|
const formatFrom = `YYYY/MM/DD${showTime ? ` ${format}` : ''}`;
|
|
258
258
|
const formatTo = `DD/MM/YYYY${showTime ? ` ${format}` : ''}`;
|
|
259
|
-
return `${moment$
|
|
259
|
+
return `${moment$4.default(stillUtc, formatFrom).format(formatTo)}`;
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
262
|
MonkeyEcxFormatDateTimelapsePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateTimelapsePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
@@ -264,7 +264,7 @@ MonkeyEcxFormatDateTimelapsePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12
|
|
|
264
264
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateTimelapsePipe, decorators: [{
|
|
265
265
|
type: Pipe,
|
|
266
266
|
args: [{
|
|
267
|
-
name: 'monkeyecxFormatDateTimelapse'
|
|
267
|
+
name: 'monkeyecxFormatDateTimelapse'
|
|
268
268
|
}]
|
|
269
269
|
}] });
|
|
270
270
|
|
|
@@ -547,7 +547,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
547
547
|
}]
|
|
548
548
|
}] });
|
|
549
549
|
|
|
550
|
-
const moment$
|
|
550
|
+
const moment$3 = moment_;
|
|
551
551
|
class MonkeyEcxFormatDateGroupPipe {
|
|
552
552
|
constructor(injector) {
|
|
553
553
|
this.injector = injector;
|
|
@@ -559,12 +559,12 @@ class MonkeyEcxFormatDateGroupPipe {
|
|
|
559
559
|
var _a;
|
|
560
560
|
if (!MonkeyEcxUtils.persistNullEmptyUndefined(date))
|
|
561
561
|
return '';
|
|
562
|
-
let stillUtc = moment$
|
|
562
|
+
let stillUtc = moment$3.default.utc(date).toDate();
|
|
563
563
|
if (((_a = date.toString()) === null || _a === void 0 ? void 0 : _a.indexOf(':')) <= -1) {
|
|
564
564
|
stillUtc = date;
|
|
565
565
|
}
|
|
566
566
|
const formatFrom = 'YYYY/MM/DD';
|
|
567
|
-
const fmt = moment$
|
|
567
|
+
const fmt = moment$3.default(stillUtc, formatFrom).locale(this.lang);
|
|
568
568
|
const dayFormated = fmt.format('DD/');
|
|
569
569
|
const monthFormated = MonkeyEcxUtils.capitalize(fmt.format('MMMM'));
|
|
570
570
|
const yearFormated = fmt.format('YYYY');
|
|
@@ -589,15 +589,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
589
589
|
}], ctorParameters: function () { return [{ type: i0.Injector }]; } });
|
|
590
590
|
|
|
591
591
|
/* eslint-disable max-classes-per-file */
|
|
592
|
-
const moment$
|
|
592
|
+
const moment$2 = moment_;
|
|
593
593
|
class DateValidator {
|
|
594
594
|
static do(control) {
|
|
595
595
|
if (!control.parent || !control)
|
|
596
596
|
return null;
|
|
597
597
|
if (control && control.value) {
|
|
598
598
|
const dateFormat = 'MM-DD-YYYY';
|
|
599
|
-
if (!moment$
|
|
600
|
-
.default(moment$
|
|
599
|
+
if (!moment$2
|
|
600
|
+
.default(moment$2.default(control.value).format(dateFormat), ['DD/MM/YYYY', 'MM-DD-YYYY', 'YYYY-MM-DD'], true)
|
|
601
601
|
.isValid()) {
|
|
602
602
|
return {
|
|
603
603
|
invalidDate: true,
|
|
@@ -903,7 +903,7 @@ var decoratorsUtils = /*#__PURE__*/Object.freeze({
|
|
|
903
903
|
hasMonkeyEcxServiceAndHandlingProperties: hasMonkeyEcxServiceAndHandlingProperties
|
|
904
904
|
});
|
|
905
905
|
|
|
906
|
-
const moment = moment_;
|
|
906
|
+
const moment$1 = moment_;
|
|
907
907
|
const EMAIL_REGEXP = /^[\w-.]+@([\w-]+\.)+[\w-]{1,64}$/;
|
|
908
908
|
function isEmptyInputValue(value) {
|
|
909
909
|
return value == null || value.length === 0;
|
|
@@ -1048,8 +1048,8 @@ function dateValidator(control) {
|
|
|
1048
1048
|
if (!control.parent || !control || isEmptyInputValue(control.value))
|
|
1049
1049
|
return null;
|
|
1050
1050
|
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)
|
|
1051
|
+
if (!moment$1
|
|
1052
|
+
.default(moment$1.default(control.value).format(dateFormat), ['DD/MM/YYYY', 'MM-DD-YYYY', 'YYYY-MM-DD'], true)
|
|
1053
1053
|
.isValid()) {
|
|
1054
1054
|
return {
|
|
1055
1055
|
invalidDate: true,
|
|
@@ -1134,6 +1134,74 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1134
1134
|
}]
|
|
1135
1135
|
}] });
|
|
1136
1136
|
|
|
1137
|
+
class MonkeyEcxFormatBeaufityJSONPipe {
|
|
1138
|
+
constructor() {
|
|
1139
|
+
// not to do
|
|
1140
|
+
}
|
|
1141
|
+
transform(value) {
|
|
1142
|
+
const jsonLine = /^( *)("[\w]+": )?("[^"]*"|[\w.+-]*)?([,[{])?$/gm;
|
|
1143
|
+
const replacer = (match, pIndent, pKey, pVal, pEnd) => {
|
|
1144
|
+
const key = '<span class="json-key" style="color: brown">';
|
|
1145
|
+
const val = '<span class="json-value" style="color: navy">';
|
|
1146
|
+
const str = '<span class="json-string" style="color: olive">';
|
|
1147
|
+
let r = pIndent || '';
|
|
1148
|
+
if (pKey) {
|
|
1149
|
+
r = `${r + key + pKey.replace(/[": ]/g, '')}</span>: `;
|
|
1150
|
+
}
|
|
1151
|
+
if (pVal) {
|
|
1152
|
+
r = `${r + (pVal[0] === '"' ? str : val) + pVal}</span>`;
|
|
1153
|
+
}
|
|
1154
|
+
return r + (pEnd || '');
|
|
1155
|
+
};
|
|
1156
|
+
return JSON.stringify(value, null, 3)
|
|
1157
|
+
.replace(/&/g, '&')
|
|
1158
|
+
.replace(/\\"/g, '"')
|
|
1159
|
+
.replace(/</g, '<')
|
|
1160
|
+
.replace(/>/g, '>')
|
|
1161
|
+
.replace(jsonLine, replacer);
|
|
1162
|
+
}
|
|
1163
|
+
}
|
|
1164
|
+
MonkeyEcxFormatBeaufityJSONPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1165
|
+
MonkeyEcxFormatBeaufityJSONPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, name: "monkeyecxFormatBeautifyJSON" });
|
|
1166
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, decorators: [{
|
|
1167
|
+
type: Pipe,
|
|
1168
|
+
args: [{
|
|
1169
|
+
name: 'monkeyecxFormatBeautifyJSON'
|
|
1170
|
+
}]
|
|
1171
|
+
}], ctorParameters: function () { return []; } });
|
|
1172
|
+
|
|
1173
|
+
const moment = moment_;
|
|
1174
|
+
class MonkeyEcxFormatDateUnixTimelapsePipe {
|
|
1175
|
+
transform(date, showTime = false, useUtc = true, format = '- HH:mm') {
|
|
1176
|
+
if (!MonkeyEcxUtils.persistNullEmptyUndefined(date))
|
|
1177
|
+
return '';
|
|
1178
|
+
let stillUtc = moment.default.utc(date).toDate();
|
|
1179
|
+
if (!useUtc)
|
|
1180
|
+
stillUtc = moment.default(date).toDate();
|
|
1181
|
+
if (moment.default
|
|
1182
|
+
.utc(date)
|
|
1183
|
+
.toDate()
|
|
1184
|
+
.toLocaleString()
|
|
1185
|
+
.indexOf(':') <= -1) {
|
|
1186
|
+
if (typeof date === 'string') {
|
|
1187
|
+
stillUtc = date;
|
|
1188
|
+
showTime = false;
|
|
1189
|
+
}
|
|
1190
|
+
}
|
|
1191
|
+
const formatFrom = `YYYY/MM/DD${showTime ? ` ${format}` : ''}`;
|
|
1192
|
+
const formatTo = `DD/MM/YYYY${showTime ? ` ${format}` : ''}`;
|
|
1193
|
+
return `${moment.default(stillUtc, formatFrom).format(formatTo)}`;
|
|
1194
|
+
}
|
|
1195
|
+
}
|
|
1196
|
+
MonkeyEcxFormatDateUnixTimelapsePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateUnixTimelapsePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1197
|
+
MonkeyEcxFormatDateUnixTimelapsePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateUnixTimelapsePipe, name: "monkeyecxFormatDateUnixTimelapse" });
|
|
1198
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateUnixTimelapsePipe, decorators: [{
|
|
1199
|
+
type: Pipe,
|
|
1200
|
+
args: [{
|
|
1201
|
+
name: 'monkeyecxFormatDateUnixTimelapse'
|
|
1202
|
+
}]
|
|
1203
|
+
}] });
|
|
1204
|
+
|
|
1137
1205
|
class MonkeyEcxPipesModule {
|
|
1138
1206
|
}
|
|
1139
1207
|
MonkeyEcxPipesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPipesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -1151,7 +1219,9 @@ MonkeyEcxPipesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", ve
|
|
|
1151
1219
|
MonkeyEcxFormatValue,
|
|
1152
1220
|
MonkeyEcxFormatZipCodePipe,
|
|
1153
1221
|
MonkeyEcxTextTruncatePipe,
|
|
1154
|
-
MonkeyEcxTruncateQtdPipe
|
|
1222
|
+
MonkeyEcxTruncateQtdPipe,
|
|
1223
|
+
MonkeyEcxFormatBeaufityJSONPipe,
|
|
1224
|
+
MonkeyEcxFormatDateUnixTimelapsePipe], exports: [MonkeyEcxDisplayFirstNamePipe,
|
|
1155
1225
|
MonkeyEcxFormatAddressPipe,
|
|
1156
1226
|
MonkeyEcxFormatCurrencyPipe,
|
|
1157
1227
|
MonkeyEcxFormatDateTimelapsePipe,
|
|
@@ -1165,7 +1235,9 @@ MonkeyEcxPipesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", ve
|
|
|
1165
1235
|
MonkeyEcxFormatValue,
|
|
1166
1236
|
MonkeyEcxFormatZipCodePipe,
|
|
1167
1237
|
MonkeyEcxTextTruncatePipe,
|
|
1168
|
-
MonkeyEcxTruncateQtdPipe
|
|
1238
|
+
MonkeyEcxTruncateQtdPipe,
|
|
1239
|
+
MonkeyEcxFormatBeaufityJSONPipe,
|
|
1240
|
+
MonkeyEcxFormatDateUnixTimelapsePipe] });
|
|
1169
1241
|
MonkeyEcxPipesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPipesModule, providers: [CurrencyPipe] });
|
|
1170
1242
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPipesModule, decorators: [{
|
|
1171
1243
|
type: NgModule,
|
|
@@ -1186,6 +1258,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1186
1258
|
MonkeyEcxFormatZipCodePipe,
|
|
1187
1259
|
MonkeyEcxTextTruncatePipe,
|
|
1188
1260
|
MonkeyEcxTruncateQtdPipe,
|
|
1261
|
+
MonkeyEcxFormatBeaufityJSONPipe,
|
|
1262
|
+
MonkeyEcxFormatDateUnixTimelapsePipe
|
|
1189
1263
|
],
|
|
1190
1264
|
exports: [
|
|
1191
1265
|
MonkeyEcxDisplayFirstNamePipe,
|
|
@@ -1203,8 +1277,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1203
1277
|
MonkeyEcxFormatZipCodePipe,
|
|
1204
1278
|
MonkeyEcxTextTruncatePipe,
|
|
1205
1279
|
MonkeyEcxTruncateQtdPipe,
|
|
1280
|
+
MonkeyEcxFormatBeaufityJSONPipe,
|
|
1281
|
+
MonkeyEcxFormatDateUnixTimelapsePipe
|
|
1206
1282
|
],
|
|
1207
|
-
providers: [CurrencyPipe]
|
|
1283
|
+
providers: [CurrencyPipe]
|
|
1208
1284
|
}]
|
|
1209
1285
|
}] });
|
|
1210
1286
|
|
|
@@ -3188,9 +3264,7 @@ MonkeyEcxAuthenticationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12
|
|
|
3188
3264
|
MonkeyEcxAuthenticationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxAuthenticationService, providedIn: 'root' });
|
|
3189
3265
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxAuthenticationService, decorators: [{
|
|
3190
3266
|
type: Injectable,
|
|
3191
|
-
args: [{
|
|
3192
|
-
providedIn: 'root'
|
|
3193
|
-
}]
|
|
3267
|
+
args: [{ providedIn: 'root' }]
|
|
3194
3268
|
}], ctorParameters: function () { return []; } });
|
|
3195
3269
|
|
|
3196
3270
|
class MonkeyEcxAuthGuardCompany {
|
|
@@ -3212,9 +3286,7 @@ MonkeyEcxAuthGuardCompany.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0"
|
|
|
3212
3286
|
MonkeyEcxAuthGuardCompany.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxAuthGuardCompany, providedIn: 'root' });
|
|
3213
3287
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxAuthGuardCompany, decorators: [{
|
|
3214
3288
|
type: Injectable,
|
|
3215
|
-
args: [{
|
|
3216
|
-
providedIn: 'root'
|
|
3217
|
-
}]
|
|
3289
|
+
args: [{ providedIn: 'root' }]
|
|
3218
3290
|
}], ctorParameters: function () { return [{ type: MonkeyEcxAuthenticationService }]; } });
|
|
3219
3291
|
|
|
3220
3292
|
class MonkeyEcxAuthGuardLogin {
|
|
@@ -3238,9 +3310,7 @@ MonkeyEcxAuthGuardLogin.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0",
|
|
|
3238
3310
|
MonkeyEcxAuthGuardLogin.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxAuthGuardLogin, providedIn: 'root' });
|
|
3239
3311
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxAuthGuardLogin, decorators: [{
|
|
3240
3312
|
type: Injectable,
|
|
3241
|
-
args: [{
|
|
3242
|
-
providedIn: 'root'
|
|
3243
|
-
}]
|
|
3313
|
+
args: [{ providedIn: 'root' }]
|
|
3244
3314
|
}], ctorParameters: function () { return [{ type: MonkeyEcxAuthenticationService }]; } });
|
|
3245
3315
|
|
|
3246
3316
|
class MonkeyEcxAuthGuard {
|
|
@@ -3440,9 +3510,7 @@ MonkeyEcxErrorHandlingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.
|
|
|
3440
3510
|
MonkeyEcxErrorHandlingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxErrorHandlingService, providedIn: 'root' });
|
|
3441
3511
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxErrorHandlingService, decorators: [{
|
|
3442
3512
|
type: Injectable,
|
|
3443
|
-
args: [{
|
|
3444
|
-
providedIn: 'root'
|
|
3445
|
-
}]
|
|
3513
|
+
args: [{ providedIn: 'root' }]
|
|
3446
3514
|
}], ctorParameters: function () { return [{ type: i0.Injector }]; } });
|
|
3447
3515
|
|
|
3448
3516
|
class MonkeyEcxErrorHandlingModule {
|
|
@@ -4190,6 +4258,7 @@ var OpSearch;
|
|
|
4190
4258
|
OpSearch["GT"] = ">:value";
|
|
4191
4259
|
OpSearch["LT"] = "<:value";
|
|
4192
4260
|
OpSearch["EQUAL"] = "::value";
|
|
4261
|
+
OpSearch["IN"] = " IN :value";
|
|
4193
4262
|
})(OpSearch || (OpSearch = {}));
|
|
4194
4263
|
class MonkeyEcxSpecificationSearch {
|
|
4195
4264
|
constructor() {
|
|
@@ -4254,9 +4323,9 @@ class MonkeyEcxSpecificationSearch {
|
|
|
4254
4323
|
throw new Error(`MonkeyEcxSpecificationSearch Error ${e}`);
|
|
4255
4324
|
}
|
|
4256
4325
|
}
|
|
4257
|
-
buildMoreThanOne(field, op = OpSearch.EQUAL) {
|
|
4326
|
+
buildMoreThanOne(field, op = OpSearch.EQUAL, addSingleQuotes = false) {
|
|
4258
4327
|
var _a, _b;
|
|
4259
|
-
|
|
4328
|
+
const self = this;
|
|
4260
4329
|
try {
|
|
4261
4330
|
if (!self[field])
|
|
4262
4331
|
return [];
|
|
@@ -4265,7 +4334,7 @@ class MonkeyEcxSpecificationSearch {
|
|
|
4265
4334
|
return null;
|
|
4266
4335
|
return {
|
|
4267
4336
|
[field]: {
|
|
4268
|
-
[op]: `${filter}`
|
|
4337
|
+
[op]: addSingleQuotes ? `'${filter}'` : `${filter}`
|
|
4269
4338
|
}
|
|
4270
4339
|
};
|
|
4271
4340
|
}).filter((val) => { return val; });
|
|
@@ -4330,5 +4399,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
4330
4399
|
* Generated bundle index. Do not edit.
|
|
4331
4400
|
*/
|
|
4332
4401
|
|
|
4333
|
-
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, MonkeyFrontCoreModuleModule, OpSearch, statics as Statics, validateUtils as ValidateUtils, Validators, VersionChangedComponent, VersionChangedModule, comboValidator, dateRangeValidator, dateStartEndValidator, dateValidator, documentValidator, emailValidator, passwordConfirmValidator, registerValidator, trueValidator, urlValidator, valueGreaterThanZero, zipCodeValidator };
|
|
4402
|
+
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, MonkeyEcxProgressBarComponent, MonkeyEcxProgressBarModule, MonkeyEcxProgressBarService, MonkeyEcxRequestDownloadHandlingService, MonkeyEcxRequestDownloadedHandlingService, MonkeyEcxRequestPagedHandling, MonkeyEcxRequestQueueHandlingService, MonkeyEcxRequestQueueModalHandlingService, MonkeyEcxRequestScheduleService, MonkeyEcxSecurityConsoleConfigService, MonkeyEcxSecurityDirective, MonkeyEcxService, MonkeyEcxServiceDownload, MonkeyEcxServiceUpload, MonkeyEcxServiceWorkerConfigService, MonkeyEcxSpecificationSearch, MonkeyEcxTextTruncatePipe, MonkeyEcxTokenStorageService, MonkeyEcxTooltipDirective, MonkeyEcxTruncateQtdPipe, MonkeyEcxUtils, MonkeyEcxi18nConfigService, MonkeyFrontCoreModuleModule, OpSearch, statics as Statics, validateUtils as ValidateUtils, Validators, VersionChangedComponent, VersionChangedModule, comboValidator, dateRangeValidator, dateStartEndValidator, dateValidator, documentValidator, emailValidator, passwordConfirmValidator, registerValidator, trueValidator, urlValidator, valueGreaterThanZero, zipCodeValidator };
|
|
4334
4403
|
//# sourceMappingURL=monkey-front-core.mjs.map
|