monkey-front-core 0.0.229 → 0.0.230
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 +2 -1
- package/esm2020/lib/core/pipes/monkeyecx-display-initials.mjs +21 -0
- package/esm2020/lib/core/pipes/monkeyecx-pipes.module.mjs +32 -27
- package/fesm2015/monkey-front-core.mjs +269 -247
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +269 -247
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/pipes/index.d.ts +1 -0
- package/lib/core/pipes/monkeyecx-display-initials.d.ts +7 -0
- package/lib/core/pipes/monkeyecx-pipes.module.d.ts +18 -17
- package/monkey-front-core-0.0.230.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.229.tgz +0 -0
|
@@ -312,6 +312,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
312
312
|
}]
|
|
313
313
|
}] });
|
|
314
314
|
|
|
315
|
+
class MonkeyEcxDisplayInitialsPipe {
|
|
316
|
+
transform(name) {
|
|
317
|
+
if (!MonkeyEcxUtils.persistNullEmptyUndefined(name))
|
|
318
|
+
return '';
|
|
319
|
+
const first = MonkeyEcxUtils.cutFirstLastName(name, 'first');
|
|
320
|
+
const second = MonkeyEcxUtils.cutFirstLastName(name, 'last');
|
|
321
|
+
return `${first?.charAt(0)} ${second?.charAt(0)}`;
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
MonkeyEcxDisplayInitialsPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxDisplayInitialsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
325
|
+
MonkeyEcxDisplayInitialsPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxDisplayInitialsPipe, name: "monkeyecxDisplayInitials" });
|
|
326
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxDisplayInitialsPipe, decorators: [{
|
|
327
|
+
type: Pipe,
|
|
328
|
+
args: [{
|
|
329
|
+
name: 'monkeyecxDisplayInitials'
|
|
330
|
+
}]
|
|
331
|
+
}] });
|
|
332
|
+
|
|
315
333
|
class MonkeyEcxFormatAddressPipe {
|
|
316
334
|
transform({ zipCode, address, neighborhood, city, state, }) {
|
|
317
335
|
return [address, neighborhood, zipCode, city, state]
|
|
@@ -330,6 +348,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
330
348
|
}]
|
|
331
349
|
}] });
|
|
332
350
|
|
|
351
|
+
class MonkeyEcxFormatBeaufityJSONPipe {
|
|
352
|
+
constructor() {
|
|
353
|
+
// not to do
|
|
354
|
+
}
|
|
355
|
+
transform(value) {
|
|
356
|
+
const jsonLine = /^( *)("[\w]+": )?("[^"]*"|[\w.+-]*)?([,[{])?$/gm;
|
|
357
|
+
const replacer = (match, pIndent, pKey, pVal, pEnd) => {
|
|
358
|
+
const key = '<span class="json-key" style="color: brown">';
|
|
359
|
+
const val = '<span class="json-value" style="color: navy">';
|
|
360
|
+
const str = '<span class="json-string" style="color: olive">';
|
|
361
|
+
let r = pIndent || '';
|
|
362
|
+
if (pKey) {
|
|
363
|
+
r = `${r + key + pKey.replace(/[": ]/g, '')}</span>: `;
|
|
364
|
+
}
|
|
365
|
+
if (pVal) {
|
|
366
|
+
r = `${r + (pVal[0] === '"' ? str : val) + pVal}</span>`;
|
|
367
|
+
}
|
|
368
|
+
return r + (pEnd || '');
|
|
369
|
+
};
|
|
370
|
+
return JSON.stringify(value, null, 3)
|
|
371
|
+
.replace(/&/g, '&')
|
|
372
|
+
.replace(/\\"/g, '"')
|
|
373
|
+
.replace(/</g, '<')
|
|
374
|
+
.replace(/>/g, '>')
|
|
375
|
+
.replace(jsonLine, replacer);
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
MonkeyEcxFormatBeaufityJSONPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
379
|
+
MonkeyEcxFormatBeaufityJSONPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, name: "monkeyecxFormatBeautifyJSON" });
|
|
380
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, decorators: [{
|
|
381
|
+
type: Pipe,
|
|
382
|
+
args: [{
|
|
383
|
+
name: 'monkeyecxFormatBeautifyJSON'
|
|
384
|
+
}]
|
|
385
|
+
}], ctorParameters: function () { return []; } });
|
|
386
|
+
|
|
333
387
|
class MonkeyEcxCookieStorageService {
|
|
334
388
|
constructor(cookieService) {
|
|
335
389
|
this.cookieService = cookieService;
|
|
@@ -382,178 +436,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
382
436
|
}]
|
|
383
437
|
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i2.CurrencyPipe }]; } });
|
|
384
438
|
|
|
385
|
-
class MonkeyEcxFormatDocumentPipe {
|
|
386
|
-
transform(document, withType) {
|
|
387
|
-
if (!MonkeyEcxUtils.persistNullEmptyUndefined(document))
|
|
388
|
-
return '';
|
|
389
|
-
return MonkeyEcxUtils.formatDocumentWithMask(document, withType);
|
|
390
|
-
}
|
|
391
|
-
}
|
|
392
|
-
MonkeyEcxFormatDocumentPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDocumentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
393
|
-
MonkeyEcxFormatDocumentPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDocumentPipe, name: "monkeyecxFormatDocument" });
|
|
394
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDocumentPipe, decorators: [{
|
|
395
|
-
type: Pipe,
|
|
396
|
-
args: [{
|
|
397
|
-
name: 'monkeyecxFormatDocument'
|
|
398
|
-
}]
|
|
399
|
-
}] });
|
|
400
|
-
|
|
401
|
-
class MonkeyEcxFormatNumberPipe {
|
|
402
|
-
transform(number) {
|
|
403
|
-
if (!MonkeyEcxUtils.persistNullEmptyUndefined(number))
|
|
404
|
-
return '';
|
|
405
|
-
return formatNumber(Number(number), 'ptbr');
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
MonkeyEcxFormatNumberPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatNumberPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
409
|
-
MonkeyEcxFormatNumberPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatNumberPipe, name: "monkeyecxFormatNumber" });
|
|
410
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatNumberPipe, decorators: [{
|
|
411
|
-
type: Pipe,
|
|
412
|
-
args: [{
|
|
413
|
-
name: 'monkeyecxFormatNumber'
|
|
414
|
-
}]
|
|
415
|
-
}] });
|
|
416
|
-
|
|
417
|
-
class MonkeyEcxFormatPhonePipe {
|
|
418
|
-
transform(phone) {
|
|
419
|
-
if (phone) {
|
|
420
|
-
const value = `${phone || ''}`.replace(/\D/g, '');
|
|
421
|
-
let formated = '';
|
|
422
|
-
if (value.length > 12) {
|
|
423
|
-
formated = value.replace(/(\d{2})?(\d{2})?(\d{5})?(\d{4})/, '+$1 ($2) $3-$4');
|
|
424
|
-
}
|
|
425
|
-
else if (value.length > 11) {
|
|
426
|
-
formated = value.replace(/(\d{2})?(\d{2})?(\d{4})?(\d{4})/, '+$1 ($2) $3-$4');
|
|
427
|
-
}
|
|
428
|
-
else if (value.length > 10) {
|
|
429
|
-
formated = value.replace(/(\d{2})?(\d{5})?(\d{4})/, '($1) $2-$3');
|
|
430
|
-
}
|
|
431
|
-
else if (value.length > 9) {
|
|
432
|
-
formated = value.replace(/(\d{2})?(\d{4})?(\d{4})/, '($1) $2-$3');
|
|
433
|
-
}
|
|
434
|
-
else if (value.length > 5) {
|
|
435
|
-
formated = value.replace(/^(\d{2})?(\d{4})?(\d{0,4})/, '($1) $2-$3');
|
|
436
|
-
}
|
|
437
|
-
else if (value.length > 1) {
|
|
438
|
-
formated = value.replace(/^(\d{2})?(\d{0,5})/, '($1) $2');
|
|
439
|
-
}
|
|
440
|
-
else if (phone !== '') {
|
|
441
|
-
formated = value.replace(/^(\d*)/, '($1');
|
|
442
|
-
}
|
|
443
|
-
return formated;
|
|
444
|
-
}
|
|
445
|
-
return '';
|
|
446
|
-
}
|
|
447
|
-
}
|
|
448
|
-
MonkeyEcxFormatPhonePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatPhonePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
449
|
-
MonkeyEcxFormatPhonePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatPhonePipe, name: "monkeyecxFormatPhone" });
|
|
450
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatPhonePipe, decorators: [{
|
|
451
|
-
type: Pipe,
|
|
452
|
-
args: [{
|
|
453
|
-
name: 'monkeyecxFormatPhone'
|
|
454
|
-
}]
|
|
455
|
-
}] });
|
|
456
|
-
|
|
457
|
-
class MonkeyEcxFormatSizePipe {
|
|
458
|
-
transform(size) {
|
|
459
|
-
if (!size)
|
|
460
|
-
return '0 B';
|
|
461
|
-
const sizeNum = Number(size);
|
|
462
|
-
return MonkeyEcxUtils.formatFileSize(sizeNum);
|
|
463
|
-
}
|
|
464
|
-
}
|
|
465
|
-
MonkeyEcxFormatSizePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatSizePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
466
|
-
MonkeyEcxFormatSizePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatSizePipe, name: "monkeyecxFormatSize" });
|
|
467
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatSizePipe, decorators: [{
|
|
468
|
-
type: Pipe,
|
|
469
|
-
args: [{
|
|
470
|
-
name: 'monkeyecxFormatSize'
|
|
471
|
-
}]
|
|
472
|
-
}] });
|
|
473
|
-
|
|
474
|
-
class MonkeyEcxFormatDocumentTypePipe {
|
|
475
|
-
transform(document, country) {
|
|
476
|
-
if (!MonkeyEcxUtils.persistNullEmptyUndefined(document))
|
|
477
|
-
return '';
|
|
478
|
-
return MonkeyEcxUtils.getDocumentType(document, country);
|
|
479
|
-
}
|
|
480
|
-
}
|
|
481
|
-
MonkeyEcxFormatDocumentTypePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDocumentTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
482
|
-
MonkeyEcxFormatDocumentTypePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDocumentTypePipe, name: "monkeyecxFormatDocumentType" });
|
|
483
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDocumentTypePipe, decorators: [{
|
|
484
|
-
type: Pipe,
|
|
485
|
-
args: [{
|
|
486
|
-
name: 'monkeyecxFormatDocumentType'
|
|
487
|
-
}]
|
|
488
|
-
}] });
|
|
489
|
-
|
|
490
|
-
class MonkeyEcxFormatValue {
|
|
491
|
-
transform(number) {
|
|
492
|
-
if (!MonkeyEcxUtils.persistNullEmptyUndefined(number))
|
|
493
|
-
return '';
|
|
494
|
-
return number;
|
|
495
|
-
}
|
|
496
|
-
}
|
|
497
|
-
MonkeyEcxFormatValue.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatValue, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
498
|
-
MonkeyEcxFormatValue.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatValue, name: "monkeyecxFormatValue" });
|
|
499
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatValue, decorators: [{
|
|
500
|
-
type: Pipe,
|
|
501
|
-
args: [{
|
|
502
|
-
name: 'monkeyecxFormatValue'
|
|
503
|
-
}]
|
|
504
|
-
}] });
|
|
505
|
-
|
|
506
|
-
class MonkeyEcxFormatZipCodePipe {
|
|
507
|
-
transform(zipCode) {
|
|
508
|
-
if (!MonkeyEcxUtils.persistNullEmptyUndefined(zipCode))
|
|
509
|
-
return '';
|
|
510
|
-
return MonkeyEcxUtils.formatZipCode(zipCode);
|
|
511
|
-
}
|
|
512
|
-
}
|
|
513
|
-
MonkeyEcxFormatZipCodePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatZipCodePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
514
|
-
MonkeyEcxFormatZipCodePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatZipCodePipe, name: "monkeyecxFormatZipCode" });
|
|
515
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatZipCodePipe, decorators: [{
|
|
516
|
-
type: Pipe,
|
|
517
|
-
args: [{
|
|
518
|
-
name: 'monkeyecxFormatZipCode'
|
|
519
|
-
}]
|
|
520
|
-
}] });
|
|
521
|
-
|
|
522
|
-
class MonkeyEcxTextTruncatePipe {
|
|
523
|
-
transform(text, maxLength = 25) {
|
|
524
|
-
const midChar = '...';
|
|
525
|
-
if (!text)
|
|
526
|
-
return midChar;
|
|
527
|
-
if (text && text.length <= maxLength)
|
|
528
|
-
return text;
|
|
529
|
-
const left = Math.ceil(maxLength / 2);
|
|
530
|
-
const right = text.length - left + 1;
|
|
531
|
-
return `${text.substr(0, left)} ${midChar} ${text.substring(right)}`;
|
|
532
|
-
}
|
|
533
|
-
}
|
|
534
|
-
MonkeyEcxTextTruncatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxTextTruncatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
535
|
-
MonkeyEcxTextTruncatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxTextTruncatePipe, name: "monkeyecxTextTruncate" });
|
|
536
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxTextTruncatePipe, decorators: [{
|
|
537
|
-
type: Pipe,
|
|
538
|
-
args: [{
|
|
539
|
-
name: 'monkeyecxTextTruncate'
|
|
540
|
-
}]
|
|
541
|
-
}] });
|
|
542
|
-
|
|
543
|
-
class MonkeyEcxTruncateQtdPipe {
|
|
544
|
-
transform(number, threshold) {
|
|
545
|
-
return `${number > threshold ? `${threshold}+` : number}`;
|
|
546
|
-
}
|
|
547
|
-
}
|
|
548
|
-
MonkeyEcxTruncateQtdPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxTruncateQtdPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
549
|
-
MonkeyEcxTruncateQtdPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxTruncateQtdPipe, name: "monkeyecxTruncateQtd" });
|
|
550
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxTruncateQtdPipe, decorators: [{
|
|
551
|
-
type: Pipe,
|
|
552
|
-
args: [{
|
|
553
|
-
name: 'monkeyecxTruncateQtd'
|
|
554
|
-
}]
|
|
555
|
-
}] });
|
|
556
|
-
|
|
557
439
|
const moment$3 = moment_;
|
|
558
440
|
class MonkeyEcxFormatDateGroupPipe {
|
|
559
441
|
constructor(injector) {
|
|
@@ -1116,6 +998,143 @@ class Validators {
|
|
|
1116
998
|
|
|
1117
999
|
/* eslint-disable object-curly-newline */
|
|
1118
1000
|
|
|
1001
|
+
const moment = moment_;
|
|
1002
|
+
class MonkeyEcxFormatDateUnixTimelapsePipe {
|
|
1003
|
+
transform(date, showTime = false, useUtc = true, format = '- HH:mm') {
|
|
1004
|
+
if (!MonkeyEcxUtils.persistNullEmptyUndefined(date))
|
|
1005
|
+
return '';
|
|
1006
|
+
let stillUtc = moment.default.utc(date).toDate();
|
|
1007
|
+
if (!useUtc)
|
|
1008
|
+
stillUtc = moment.default(date).toDate();
|
|
1009
|
+
if (moment.default
|
|
1010
|
+
.utc(date)
|
|
1011
|
+
.toDate()
|
|
1012
|
+
.toLocaleString()
|
|
1013
|
+
.indexOf(':') <= -1) {
|
|
1014
|
+
if (typeof date === 'string') {
|
|
1015
|
+
stillUtc = date;
|
|
1016
|
+
showTime = false;
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1019
|
+
const formatFrom = `YYYY/MM/DD${showTime ? ` ${format}` : ''}`;
|
|
1020
|
+
const formatTo = `DD/MM/YYYY${showTime ? ` ${format}` : ''}`;
|
|
1021
|
+
return `${moment.default(stillUtc, formatFrom).format(formatTo)}`;
|
|
1022
|
+
}
|
|
1023
|
+
}
|
|
1024
|
+
MonkeyEcxFormatDateUnixTimelapsePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateUnixTimelapsePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1025
|
+
MonkeyEcxFormatDateUnixTimelapsePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateUnixTimelapsePipe, name: "monkeyecxFormatDateUnixTimelapse" });
|
|
1026
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateUnixTimelapsePipe, decorators: [{
|
|
1027
|
+
type: Pipe,
|
|
1028
|
+
args: [{
|
|
1029
|
+
name: 'monkeyecxFormatDateUnixTimelapse'
|
|
1030
|
+
}]
|
|
1031
|
+
}] });
|
|
1032
|
+
|
|
1033
|
+
class MonkeyEcxFormatDocumentPipe {
|
|
1034
|
+
transform(document, withType) {
|
|
1035
|
+
if (!MonkeyEcxUtils.persistNullEmptyUndefined(document))
|
|
1036
|
+
return '';
|
|
1037
|
+
return MonkeyEcxUtils.formatDocumentWithMask(document, withType);
|
|
1038
|
+
}
|
|
1039
|
+
}
|
|
1040
|
+
MonkeyEcxFormatDocumentPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDocumentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1041
|
+
MonkeyEcxFormatDocumentPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDocumentPipe, name: "monkeyecxFormatDocument" });
|
|
1042
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDocumentPipe, decorators: [{
|
|
1043
|
+
type: Pipe,
|
|
1044
|
+
args: [{
|
|
1045
|
+
name: 'monkeyecxFormatDocument'
|
|
1046
|
+
}]
|
|
1047
|
+
}] });
|
|
1048
|
+
|
|
1049
|
+
class MonkeyEcxFormatDocumentTypePipe {
|
|
1050
|
+
transform(document, country) {
|
|
1051
|
+
if (!MonkeyEcxUtils.persistNullEmptyUndefined(document))
|
|
1052
|
+
return '';
|
|
1053
|
+
return MonkeyEcxUtils.getDocumentType(document, country);
|
|
1054
|
+
}
|
|
1055
|
+
}
|
|
1056
|
+
MonkeyEcxFormatDocumentTypePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDocumentTypePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1057
|
+
MonkeyEcxFormatDocumentTypePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDocumentTypePipe, name: "monkeyecxFormatDocumentType" });
|
|
1058
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDocumentTypePipe, decorators: [{
|
|
1059
|
+
type: Pipe,
|
|
1060
|
+
args: [{
|
|
1061
|
+
name: 'monkeyecxFormatDocumentType'
|
|
1062
|
+
}]
|
|
1063
|
+
}] });
|
|
1064
|
+
|
|
1065
|
+
class MonkeyEcxFormatNumberPipe {
|
|
1066
|
+
transform(number) {
|
|
1067
|
+
if (!MonkeyEcxUtils.persistNullEmptyUndefined(number))
|
|
1068
|
+
return '';
|
|
1069
|
+
return formatNumber(Number(number), 'ptbr');
|
|
1070
|
+
}
|
|
1071
|
+
}
|
|
1072
|
+
MonkeyEcxFormatNumberPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatNumberPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1073
|
+
MonkeyEcxFormatNumberPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatNumberPipe, name: "monkeyecxFormatNumber" });
|
|
1074
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatNumberPipe, decorators: [{
|
|
1075
|
+
type: Pipe,
|
|
1076
|
+
args: [{
|
|
1077
|
+
name: 'monkeyecxFormatNumber'
|
|
1078
|
+
}]
|
|
1079
|
+
}] });
|
|
1080
|
+
|
|
1081
|
+
class MonkeyEcxFormatPhonePipe {
|
|
1082
|
+
transform(phone) {
|
|
1083
|
+
if (phone) {
|
|
1084
|
+
const value = `${phone || ''}`.replace(/\D/g, '');
|
|
1085
|
+
let formated = '';
|
|
1086
|
+
if (value.length > 12) {
|
|
1087
|
+
formated = value.replace(/(\d{2})?(\d{2})?(\d{5})?(\d{4})/, '+$1 ($2) $3-$4');
|
|
1088
|
+
}
|
|
1089
|
+
else if (value.length > 11) {
|
|
1090
|
+
formated = value.replace(/(\d{2})?(\d{2})?(\d{4})?(\d{4})/, '+$1 ($2) $3-$4');
|
|
1091
|
+
}
|
|
1092
|
+
else if (value.length > 10) {
|
|
1093
|
+
formated = value.replace(/(\d{2})?(\d{5})?(\d{4})/, '($1) $2-$3');
|
|
1094
|
+
}
|
|
1095
|
+
else if (value.length > 9) {
|
|
1096
|
+
formated = value.replace(/(\d{2})?(\d{4})?(\d{4})/, '($1) $2-$3');
|
|
1097
|
+
}
|
|
1098
|
+
else if (value.length > 5) {
|
|
1099
|
+
formated = value.replace(/^(\d{2})?(\d{4})?(\d{0,4})/, '($1) $2-$3');
|
|
1100
|
+
}
|
|
1101
|
+
else if (value.length > 1) {
|
|
1102
|
+
formated = value.replace(/^(\d{2})?(\d{0,5})/, '($1) $2');
|
|
1103
|
+
}
|
|
1104
|
+
else if (phone !== '') {
|
|
1105
|
+
formated = value.replace(/^(\d*)/, '($1');
|
|
1106
|
+
}
|
|
1107
|
+
return formated;
|
|
1108
|
+
}
|
|
1109
|
+
return '';
|
|
1110
|
+
}
|
|
1111
|
+
}
|
|
1112
|
+
MonkeyEcxFormatPhonePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatPhonePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1113
|
+
MonkeyEcxFormatPhonePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatPhonePipe, name: "monkeyecxFormatPhone" });
|
|
1114
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatPhonePipe, decorators: [{
|
|
1115
|
+
type: Pipe,
|
|
1116
|
+
args: [{
|
|
1117
|
+
name: 'monkeyecxFormatPhone'
|
|
1118
|
+
}]
|
|
1119
|
+
}] });
|
|
1120
|
+
|
|
1121
|
+
class MonkeyEcxFormatSizePipe {
|
|
1122
|
+
transform(size) {
|
|
1123
|
+
if (!size)
|
|
1124
|
+
return '0 B';
|
|
1125
|
+
const sizeNum = Number(size);
|
|
1126
|
+
return MonkeyEcxUtils.formatFileSize(sizeNum);
|
|
1127
|
+
}
|
|
1128
|
+
}
|
|
1129
|
+
MonkeyEcxFormatSizePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatSizePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1130
|
+
MonkeyEcxFormatSizePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatSizePipe, name: "monkeyecxFormatSize" });
|
|
1131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatSizePipe, decorators: [{
|
|
1132
|
+
type: Pipe,
|
|
1133
|
+
args: [{
|
|
1134
|
+
name: 'monkeyecxFormatSize'
|
|
1135
|
+
}]
|
|
1136
|
+
}] });
|
|
1137
|
+
|
|
1119
1138
|
class MonkeyEcxFormatTaxPipe {
|
|
1120
1139
|
transform(tax, decimalDigits = 7) {
|
|
1121
1140
|
if (!MonkeyEcxUtils.persistNullEmptyUndefined(tax))
|
|
@@ -1136,71 +1155,70 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1136
1155
|
}]
|
|
1137
1156
|
}] });
|
|
1138
1157
|
|
|
1139
|
-
class
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
const jsonLine = /^( *)("[\w]+": )?("[^"]*"|[\w.+-]*)?([,[{])?$/gm;
|
|
1145
|
-
const replacer = (match, pIndent, pKey, pVal, pEnd) => {
|
|
1146
|
-
const key = '<span class="json-key" style="color: brown">';
|
|
1147
|
-
const val = '<span class="json-value" style="color: navy">';
|
|
1148
|
-
const str = '<span class="json-string" style="color: olive">';
|
|
1149
|
-
let r = pIndent || '';
|
|
1150
|
-
if (pKey) {
|
|
1151
|
-
r = `${r + key + pKey.replace(/[": ]/g, '')}</span>: `;
|
|
1152
|
-
}
|
|
1153
|
-
if (pVal) {
|
|
1154
|
-
r = `${r + (pVal[0] === '"' ? str : val) + pVal}</span>`;
|
|
1155
|
-
}
|
|
1156
|
-
return r + (pEnd || '');
|
|
1157
|
-
};
|
|
1158
|
-
return JSON.stringify(value, null, 3)
|
|
1159
|
-
.replace(/&/g, '&')
|
|
1160
|
-
.replace(/\\"/g, '"')
|
|
1161
|
-
.replace(/</g, '<')
|
|
1162
|
-
.replace(/>/g, '>')
|
|
1163
|
-
.replace(jsonLine, replacer);
|
|
1158
|
+
class MonkeyEcxFormatValue {
|
|
1159
|
+
transform(number) {
|
|
1160
|
+
if (!MonkeyEcxUtils.persistNullEmptyUndefined(number))
|
|
1161
|
+
return '';
|
|
1162
|
+
return number;
|
|
1164
1163
|
}
|
|
1165
1164
|
}
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type:
|
|
1165
|
+
MonkeyEcxFormatValue.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatValue, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1166
|
+
MonkeyEcxFormatValue.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatValue, name: "monkeyecxFormatValue" });
|
|
1167
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatValue, decorators: [{
|
|
1169
1168
|
type: Pipe,
|
|
1170
1169
|
args: [{
|
|
1171
|
-
name: '
|
|
1170
|
+
name: 'monkeyecxFormatValue'
|
|
1172
1171
|
}]
|
|
1173
|
-
}]
|
|
1172
|
+
}] });
|
|
1174
1173
|
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
if (!MonkeyEcxUtils.persistNullEmptyUndefined(date))
|
|
1174
|
+
class MonkeyEcxFormatZipCodePipe {
|
|
1175
|
+
transform(zipCode) {
|
|
1176
|
+
if (!MonkeyEcxUtils.persistNullEmptyUndefined(zipCode))
|
|
1179
1177
|
return '';
|
|
1180
|
-
|
|
1181
|
-
if (!useUtc)
|
|
1182
|
-
stillUtc = moment.default(date).toDate();
|
|
1183
|
-
if (moment.default
|
|
1184
|
-
.utc(date)
|
|
1185
|
-
.toDate()
|
|
1186
|
-
.toLocaleString()
|
|
1187
|
-
.indexOf(':') <= -1) {
|
|
1188
|
-
if (typeof date === 'string') {
|
|
1189
|
-
stillUtc = date;
|
|
1190
|
-
showTime = false;
|
|
1191
|
-
}
|
|
1192
|
-
}
|
|
1193
|
-
const formatFrom = `YYYY/MM/DD${showTime ? ` ${format}` : ''}`;
|
|
1194
|
-
const formatTo = `DD/MM/YYYY${showTime ? ` ${format}` : ''}`;
|
|
1195
|
-
return `${moment.default(stillUtc, formatFrom).format(formatTo)}`;
|
|
1178
|
+
return MonkeyEcxUtils.formatZipCode(zipCode);
|
|
1196
1179
|
}
|
|
1197
1180
|
}
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type:
|
|
1181
|
+
MonkeyEcxFormatZipCodePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatZipCodePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1182
|
+
MonkeyEcxFormatZipCodePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatZipCodePipe, name: "monkeyecxFormatZipCode" });
|
|
1183
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatZipCodePipe, decorators: [{
|
|
1201
1184
|
type: Pipe,
|
|
1202
1185
|
args: [{
|
|
1203
|
-
name: '
|
|
1186
|
+
name: 'monkeyecxFormatZipCode'
|
|
1187
|
+
}]
|
|
1188
|
+
}] });
|
|
1189
|
+
|
|
1190
|
+
class MonkeyEcxTextTruncatePipe {
|
|
1191
|
+
transform(text, maxLength = 25) {
|
|
1192
|
+
const midChar = '...';
|
|
1193
|
+
if (!text)
|
|
1194
|
+
return midChar;
|
|
1195
|
+
if (text && text.length <= maxLength)
|
|
1196
|
+
return text;
|
|
1197
|
+
const left = Math.ceil(maxLength / 2);
|
|
1198
|
+
const right = text.length - left + 1;
|
|
1199
|
+
return `${text.substr(0, left)} ${midChar} ${text.substring(right)}`;
|
|
1200
|
+
}
|
|
1201
|
+
}
|
|
1202
|
+
MonkeyEcxTextTruncatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxTextTruncatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1203
|
+
MonkeyEcxTextTruncatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxTextTruncatePipe, name: "monkeyecxTextTruncate" });
|
|
1204
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxTextTruncatePipe, decorators: [{
|
|
1205
|
+
type: Pipe,
|
|
1206
|
+
args: [{
|
|
1207
|
+
name: 'monkeyecxTextTruncate'
|
|
1208
|
+
}]
|
|
1209
|
+
}] });
|
|
1210
|
+
|
|
1211
|
+
class MonkeyEcxTruncateQtdPipe {
|
|
1212
|
+
transform(number, threshold) {
|
|
1213
|
+
return `${number > threshold ? `${threshold}+` : number}`;
|
|
1214
|
+
}
|
|
1215
|
+
}
|
|
1216
|
+
MonkeyEcxTruncateQtdPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxTruncateQtdPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1217
|
+
MonkeyEcxTruncateQtdPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxTruncateQtdPipe, name: "monkeyecxTruncateQtd" });
|
|
1218
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxTruncateQtdPipe, decorators: [{
|
|
1219
|
+
type: Pipe,
|
|
1220
|
+
args: [{
|
|
1221
|
+
name: 'monkeyecxTruncateQtd'
|
|
1204
1222
|
}]
|
|
1205
1223
|
}] });
|
|
1206
1224
|
|
|
@@ -1208,79 +1226,83 @@ class MonkeyEcxPipesModule {
|
|
|
1208
1226
|
}
|
|
1209
1227
|
MonkeyEcxPipesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPipesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1210
1228
|
MonkeyEcxPipesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPipesModule, declarations: [MonkeyEcxDisplayFirstNamePipe,
|
|
1229
|
+
MonkeyEcxDisplayInitialsPipe,
|
|
1211
1230
|
MonkeyEcxFormatAddressPipe,
|
|
1231
|
+
MonkeyEcxFormatBeaufityJSONPipe,
|
|
1212
1232
|
MonkeyEcxFormatCurrencyPipe,
|
|
1213
|
-
MonkeyEcxFormatDateTimelapsePipe,
|
|
1214
1233
|
MonkeyEcxFormatDateGroupPipe,
|
|
1234
|
+
MonkeyEcxFormatDateTimelapsePipe,
|
|
1235
|
+
MonkeyEcxFormatDateUnixTimelapsePipe,
|
|
1215
1236
|
MonkeyEcxFormatDocumentPipe,
|
|
1237
|
+
MonkeyEcxFormatDocumentTypePipe,
|
|
1216
1238
|
MonkeyEcxFormatNumberPipe,
|
|
1217
1239
|
MonkeyEcxFormatPhonePipe,
|
|
1218
1240
|
MonkeyEcxFormatSizePipe,
|
|
1219
1241
|
MonkeyEcxFormatTaxPipe,
|
|
1220
|
-
MonkeyEcxFormatDocumentTypePipe,
|
|
1221
1242
|
MonkeyEcxFormatValue,
|
|
1222
1243
|
MonkeyEcxFormatZipCodePipe,
|
|
1223
1244
|
MonkeyEcxTextTruncatePipe,
|
|
1224
|
-
MonkeyEcxTruncateQtdPipe,
|
|
1225
|
-
|
|
1226
|
-
MonkeyEcxFormatDateUnixTimelapsePipe], exports: [MonkeyEcxDisplayFirstNamePipe,
|
|
1245
|
+
MonkeyEcxTruncateQtdPipe], exports: [MonkeyEcxDisplayFirstNamePipe,
|
|
1246
|
+
MonkeyEcxDisplayInitialsPipe,
|
|
1227
1247
|
MonkeyEcxFormatAddressPipe,
|
|
1248
|
+
MonkeyEcxFormatBeaufityJSONPipe,
|
|
1228
1249
|
MonkeyEcxFormatCurrencyPipe,
|
|
1229
|
-
MonkeyEcxFormatDateTimelapsePipe,
|
|
1230
1250
|
MonkeyEcxFormatDateGroupPipe,
|
|
1251
|
+
MonkeyEcxFormatDateTimelapsePipe,
|
|
1252
|
+
MonkeyEcxFormatDateUnixTimelapsePipe,
|
|
1231
1253
|
MonkeyEcxFormatDocumentPipe,
|
|
1254
|
+
MonkeyEcxFormatDocumentTypePipe,
|
|
1232
1255
|
MonkeyEcxFormatNumberPipe,
|
|
1233
1256
|
MonkeyEcxFormatPhonePipe,
|
|
1234
1257
|
MonkeyEcxFormatSizePipe,
|
|
1235
1258
|
MonkeyEcxFormatTaxPipe,
|
|
1236
|
-
MonkeyEcxFormatDocumentTypePipe,
|
|
1237
1259
|
MonkeyEcxFormatValue,
|
|
1238
1260
|
MonkeyEcxFormatZipCodePipe,
|
|
1239
1261
|
MonkeyEcxTextTruncatePipe,
|
|
1240
|
-
MonkeyEcxTruncateQtdPipe
|
|
1241
|
-
MonkeyEcxFormatBeaufityJSONPipe,
|
|
1242
|
-
MonkeyEcxFormatDateUnixTimelapsePipe] });
|
|
1262
|
+
MonkeyEcxTruncateQtdPipe] });
|
|
1243
1263
|
MonkeyEcxPipesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPipesModule, providers: [CurrencyPipe] });
|
|
1244
1264
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPipesModule, decorators: [{
|
|
1245
1265
|
type: NgModule,
|
|
1246
1266
|
args: [{
|
|
1247
1267
|
declarations: [
|
|
1248
1268
|
MonkeyEcxDisplayFirstNamePipe,
|
|
1269
|
+
MonkeyEcxDisplayInitialsPipe,
|
|
1249
1270
|
MonkeyEcxFormatAddressPipe,
|
|
1271
|
+
MonkeyEcxFormatBeaufityJSONPipe,
|
|
1250
1272
|
MonkeyEcxFormatCurrencyPipe,
|
|
1251
|
-
MonkeyEcxFormatDateTimelapsePipe,
|
|
1252
1273
|
MonkeyEcxFormatDateGroupPipe,
|
|
1274
|
+
MonkeyEcxFormatDateTimelapsePipe,
|
|
1275
|
+
MonkeyEcxFormatDateUnixTimelapsePipe,
|
|
1253
1276
|
MonkeyEcxFormatDocumentPipe,
|
|
1277
|
+
MonkeyEcxFormatDocumentTypePipe,
|
|
1254
1278
|
MonkeyEcxFormatNumberPipe,
|
|
1255
1279
|
MonkeyEcxFormatPhonePipe,
|
|
1256
1280
|
MonkeyEcxFormatSizePipe,
|
|
1257
1281
|
MonkeyEcxFormatTaxPipe,
|
|
1258
|
-
MonkeyEcxFormatDocumentTypePipe,
|
|
1259
1282
|
MonkeyEcxFormatValue,
|
|
1260
1283
|
MonkeyEcxFormatZipCodePipe,
|
|
1261
1284
|
MonkeyEcxTextTruncatePipe,
|
|
1262
|
-
MonkeyEcxTruncateQtdPipe
|
|
1263
|
-
MonkeyEcxFormatBeaufityJSONPipe,
|
|
1264
|
-
MonkeyEcxFormatDateUnixTimelapsePipe
|
|
1285
|
+
MonkeyEcxTruncateQtdPipe
|
|
1265
1286
|
],
|
|
1266
1287
|
exports: [
|
|
1267
1288
|
MonkeyEcxDisplayFirstNamePipe,
|
|
1289
|
+
MonkeyEcxDisplayInitialsPipe,
|
|
1268
1290
|
MonkeyEcxFormatAddressPipe,
|
|
1291
|
+
MonkeyEcxFormatBeaufityJSONPipe,
|
|
1269
1292
|
MonkeyEcxFormatCurrencyPipe,
|
|
1270
|
-
MonkeyEcxFormatDateTimelapsePipe,
|
|
1271
1293
|
MonkeyEcxFormatDateGroupPipe,
|
|
1294
|
+
MonkeyEcxFormatDateTimelapsePipe,
|
|
1295
|
+
MonkeyEcxFormatDateUnixTimelapsePipe,
|
|
1272
1296
|
MonkeyEcxFormatDocumentPipe,
|
|
1297
|
+
MonkeyEcxFormatDocumentTypePipe,
|
|
1273
1298
|
MonkeyEcxFormatNumberPipe,
|
|
1274
1299
|
MonkeyEcxFormatPhonePipe,
|
|
1275
1300
|
MonkeyEcxFormatSizePipe,
|
|
1276
1301
|
MonkeyEcxFormatTaxPipe,
|
|
1277
|
-
MonkeyEcxFormatDocumentTypePipe,
|
|
1278
1302
|
MonkeyEcxFormatValue,
|
|
1279
1303
|
MonkeyEcxFormatZipCodePipe,
|
|
1280
1304
|
MonkeyEcxTextTruncatePipe,
|
|
1281
|
-
MonkeyEcxTruncateQtdPipe
|
|
1282
|
-
MonkeyEcxFormatBeaufityJSONPipe,
|
|
1283
|
-
MonkeyEcxFormatDateUnixTimelapsePipe
|
|
1305
|
+
MonkeyEcxTruncateQtdPipe
|
|
1284
1306
|
],
|
|
1285
1307
|
providers: [CurrencyPipe]
|
|
1286
1308
|
}]
|
|
@@ -5072,5 +5094,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
5072
5094
|
* Generated bundle index. Do not edit.
|
|
5073
5095
|
*/
|
|
5074
5096
|
|
|
5075
|
-
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, 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 };
|
|
5097
|
+
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, 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 };
|
|
5076
5098
|
//# sourceMappingURL=monkey-front-core.mjs.map
|