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.
Files changed (28) hide show
  1. package/esm2020/lib/core/directives/index.mjs +3 -1
  2. package/esm2020/lib/core/directives/monkeyecx-directives-module.mjs +19 -6
  3. package/esm2020/lib/core/directives/monkeyecx-popover-options.directive.mjs +39 -0
  4. package/esm2020/lib/core/directives/monkeyecx-popover.directive.mjs +198 -0
  5. package/esm2020/lib/core/pipes/index.mjs +3 -1
  6. package/esm2020/lib/core/pipes/monkeyecx-format-beautify-json.mjs +38 -0
  7. package/esm2020/lib/core/pipes/monkeyecx-format-date-timelapse.mjs +2 -2
  8. package/esm2020/lib/core/pipes/monkeyecx-format-date-unix-timelapse.mjs +36 -0
  9. package/esm2020/lib/core/pipes/monkeyecx-pipes.module.mjs +14 -4
  10. package/esm2020/lib/core/specification-search/monkeyecx-specification-search.mjs +8 -4
  11. package/esm2020/lib/monkey-front-core.module.mjs +6 -6
  12. package/fesm2015/monkey-front-core.mjs +364 -39
  13. package/fesm2015/monkey-front-core.mjs.map +1 -1
  14. package/fesm2020/monkey-front-core.mjs +360 -39
  15. package/fesm2020/monkey-front-core.mjs.map +1 -1
  16. package/lib/core/directives/index.d.ts +2 -0
  17. package/lib/core/directives/monkeyecx-directives-module.d.ts +5 -1
  18. package/lib/core/directives/monkeyecx-popover-options.directive.d.ts +19 -0
  19. package/lib/core/directives/monkeyecx-popover.directive.d.ts +38 -0
  20. package/lib/core/pipes/index.d.ts +2 -0
  21. package/lib/core/pipes/monkeyecx-format-beautify-json.d.ts +8 -0
  22. package/lib/core/pipes/monkeyecx-format-date-unix-timelapse.d.ts +7 -0
  23. package/lib/core/pipes/monkeyecx-pipes.module.d.ts +3 -1
  24. package/lib/core/specification-search/monkeyecx-specification-search.d.ts +1 -1
  25. package/lib/monkey-front-core.module.d.ts +4 -4
  26. package/monkey-front-core-0.0.149.tgz +0 -0
  27. package/package.json +2 -1
  28. 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, NgZone, ErrorHandler, Optional, SkipSelf } from '@angular/core';
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$4 from '@angular/common/http';
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$5 from '@angular/service-worker';
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
 
@@ -239,14 +242,14 @@ class MonkeyEcxUtils {
239
242
  }
240
243
  }
241
244
 
242
- const moment$3 = moment_;
245
+ const moment$4 = moment_;
243
246
  class MonkeyEcxFormatDateTimelapsePipe {
244
247
  transform(date, showTime = false, useUtc = true, format = '- HH:mm') {
245
248
  if (!MonkeyEcxUtils.persistNullEmptyUndefined(date))
246
249
  return '';
247
- let stillUtc = moment$3.default.utc(date).toDate();
250
+ let stillUtc = moment$4.default.utc(date).toDate();
248
251
  if (!useUtc)
249
- stillUtc = moment$3.default(date).toDate();
252
+ stillUtc = moment$4.default(date).toDate();
250
253
  if (date.toString().indexOf(':') <= -1) {
251
254
  if (typeof date === 'string') {
252
255
  stillUtc = date;
@@ -255,7 +258,7 @@ class MonkeyEcxFormatDateTimelapsePipe {
255
258
  }
256
259
  const formatFrom = `YYYY/MM/DD${showTime ? ` ${format}` : ''}`;
257
260
  const formatTo = `DD/MM/YYYY${showTime ? ` ${format}` : ''}`;
258
- return `${moment$3.default(stillUtc, formatFrom).format(formatTo)}`;
261
+ return `${moment$4.default(stillUtc, formatFrom).format(formatTo)}`;
259
262
  }
260
263
  }
261
264
  MonkeyEcxFormatDateTimelapsePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateTimelapsePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
@@ -263,7 +266,7 @@ MonkeyEcxFormatDateTimelapsePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12
263
266
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateTimelapsePipe, decorators: [{
264
267
  type: Pipe,
265
268
  args: [{
266
- name: 'monkeyecxFormatDateTimelapse',
269
+ name: 'monkeyecxFormatDateTimelapse'
267
270
  }]
268
271
  }] });
269
272
 
@@ -545,7 +548,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
545
548
  }]
546
549
  }] });
547
550
 
548
- const moment$2 = moment_;
551
+ const moment$3 = moment_;
549
552
  class MonkeyEcxFormatDateGroupPipe {
550
553
  constructor(injector) {
551
554
  this.injector = injector;
@@ -556,12 +559,12 @@ class MonkeyEcxFormatDateGroupPipe {
556
559
  format(date) {
557
560
  if (!MonkeyEcxUtils.persistNullEmptyUndefined(date))
558
561
  return '';
559
- let stillUtc = moment$2.default.utc(date).toDate();
562
+ let stillUtc = moment$3.default.utc(date).toDate();
560
563
  if (date.toString()?.indexOf(':') <= -1) {
561
564
  stillUtc = date;
562
565
  }
563
566
  const formatFrom = 'YYYY/MM/DD';
564
- const fmt = moment$2.default(stillUtc, formatFrom).locale(this.lang);
567
+ const fmt = moment$3.default(stillUtc, formatFrom).locale(this.lang);
565
568
  const dayFormated = fmt.format('DD/');
566
569
  const monthFormated = MonkeyEcxUtils.capitalize(fmt.format('MMMM'));
567
570
  const yearFormated = fmt.format('YYYY');
@@ -586,15 +589,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
586
589
  }], ctorParameters: function () { return [{ type: i0.Injector }]; } });
587
590
 
588
591
  /* eslint-disable max-classes-per-file */
589
- const moment$1 = moment_;
592
+ const moment$2 = moment_;
590
593
  class DateValidator {
591
594
  static do(control) {
592
595
  if (!control.parent || !control)
593
596
  return null;
594
597
  if (control && control.value) {
595
598
  const dateFormat = 'MM-DD-YYYY';
596
- if (!moment$1
597
- .default(moment$1.default(control.value).format(dateFormat), ['DD/MM/YYYY', 'MM-DD-YYYY', 'YYYY-MM-DD'], true)
599
+ if (!moment$2
600
+ .default(moment$2.default(control.value).format(dateFormat), ['DD/MM/YYYY', 'MM-DD-YYYY', 'YYYY-MM-DD'], true)
598
601
  .isValid()) {
599
602
  return {
600
603
  invalidDate: true,
@@ -899,7 +902,7 @@ var decoratorsUtils = /*#__PURE__*/Object.freeze({
899
902
  hasMonkeyEcxServiceAndHandlingProperties: hasMonkeyEcxServiceAndHandlingProperties
900
903
  });
901
904
 
902
- const moment = moment_;
905
+ const moment$1 = moment_;
903
906
  const EMAIL_REGEXP = /^[\w-.]+@([\w-]+\.)+[\w-]{1,64}$/;
904
907
  function isEmptyInputValue(value) {
905
908
  return value == null || value.length === 0;
@@ -1041,8 +1044,8 @@ function dateValidator(control) {
1041
1044
  if (!control.parent || !control || isEmptyInputValue(control.value))
1042
1045
  return null;
1043
1046
  const dateFormat = 'MM-DD-YYYY';
1044
- if (!moment
1045
- .default(moment.default(control.value).format(dateFormat), ['DD/MM/YYYY', 'MM-DD-YYYY', 'YYYY-MM-DD'], true)
1047
+ if (!moment$1
1048
+ .default(moment$1.default(control.value).format(dateFormat), ['DD/MM/YYYY', 'MM-DD-YYYY', 'YYYY-MM-DD'], true)
1046
1049
  .isValid()) {
1047
1050
  return {
1048
1051
  invalidDate: true,
@@ -1127,6 +1130,74 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
1127
1130
  }]
1128
1131
  }] });
1129
1132
 
1133
+ class MonkeyEcxFormatBeaufityJSONPipe {
1134
+ constructor() {
1135
+ // not to do
1136
+ }
1137
+ transform(value) {
1138
+ const jsonLine = /^( *)("[\w]+": )?("[^"]*"|[\w.+-]*)?([,[{])?$/gm;
1139
+ const replacer = (match, pIndent, pKey, pVal, pEnd) => {
1140
+ const key = '<span class="json-key" style="color: brown">';
1141
+ const val = '<span class="json-value" style="color: navy">';
1142
+ const str = '<span class="json-string" style="color: olive">';
1143
+ let r = pIndent || '';
1144
+ if (pKey) {
1145
+ r = `${r + key + pKey.replace(/[": ]/g, '')}</span>: `;
1146
+ }
1147
+ if (pVal) {
1148
+ r = `${r + (pVal[0] === '"' ? str : val) + pVal}</span>`;
1149
+ }
1150
+ return r + (pEnd || '');
1151
+ };
1152
+ return JSON.stringify(value, null, 3)
1153
+ .replace(/&/g, '&amp;')
1154
+ .replace(/\\"/g, '&quot;')
1155
+ .replace(/</g, '&lt;')
1156
+ .replace(/>/g, '&gt;')
1157
+ .replace(jsonLine, replacer);
1158
+ }
1159
+ }
1160
+ MonkeyEcxFormatBeaufityJSONPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1161
+ MonkeyEcxFormatBeaufityJSONPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, name: "monkeyecxFormatBeautifyJSON" });
1162
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatBeaufityJSONPipe, decorators: [{
1163
+ type: Pipe,
1164
+ args: [{
1165
+ name: 'monkeyecxFormatBeautifyJSON'
1166
+ }]
1167
+ }], ctorParameters: function () { return []; } });
1168
+
1169
+ const moment = moment_;
1170
+ class MonkeyEcxFormatDateUnixTimelapsePipe {
1171
+ transform(date, showTime = false, useUtc = true, format = '- HH:mm') {
1172
+ if (!MonkeyEcxUtils.persistNullEmptyUndefined(date))
1173
+ return '';
1174
+ let stillUtc = moment.default.utc(date).toDate();
1175
+ if (!useUtc)
1176
+ stillUtc = moment.default(date).toDate();
1177
+ if (moment.default
1178
+ .utc(date)
1179
+ .toDate()
1180
+ .toLocaleString()
1181
+ .indexOf(':') <= -1) {
1182
+ if (typeof date === 'string') {
1183
+ stillUtc = date;
1184
+ showTime = false;
1185
+ }
1186
+ }
1187
+ const formatFrom = `YYYY/MM/DD${showTime ? ` ${format}` : ''}`;
1188
+ const formatTo = `DD/MM/YYYY${showTime ? ` ${format}` : ''}`;
1189
+ return `${moment.default(stillUtc, formatFrom).format(formatTo)}`;
1190
+ }
1191
+ }
1192
+ MonkeyEcxFormatDateUnixTimelapsePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateUnixTimelapsePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
1193
+ MonkeyEcxFormatDateUnixTimelapsePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateUnixTimelapsePipe, name: "monkeyecxFormatDateUnixTimelapse" });
1194
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFormatDateUnixTimelapsePipe, decorators: [{
1195
+ type: Pipe,
1196
+ args: [{
1197
+ name: 'monkeyecxFormatDateUnixTimelapse'
1198
+ }]
1199
+ }] });
1200
+
1130
1201
  class MonkeyEcxPipesModule {
1131
1202
  }
1132
1203
  MonkeyEcxPipesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPipesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -1144,7 +1215,9 @@ MonkeyEcxPipesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", ve
1144
1215
  MonkeyEcxFormatValue,
1145
1216
  MonkeyEcxFormatZipCodePipe,
1146
1217
  MonkeyEcxTextTruncatePipe,
1147
- MonkeyEcxTruncateQtdPipe], exports: [MonkeyEcxDisplayFirstNamePipe,
1218
+ MonkeyEcxTruncateQtdPipe,
1219
+ MonkeyEcxFormatBeaufityJSONPipe,
1220
+ MonkeyEcxFormatDateUnixTimelapsePipe], exports: [MonkeyEcxDisplayFirstNamePipe,
1148
1221
  MonkeyEcxFormatAddressPipe,
1149
1222
  MonkeyEcxFormatCurrencyPipe,
1150
1223
  MonkeyEcxFormatDateTimelapsePipe,
@@ -1158,7 +1231,9 @@ MonkeyEcxPipesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", ve
1158
1231
  MonkeyEcxFormatValue,
1159
1232
  MonkeyEcxFormatZipCodePipe,
1160
1233
  MonkeyEcxTextTruncatePipe,
1161
- MonkeyEcxTruncateQtdPipe] });
1234
+ MonkeyEcxTruncateQtdPipe,
1235
+ MonkeyEcxFormatBeaufityJSONPipe,
1236
+ MonkeyEcxFormatDateUnixTimelapsePipe] });
1162
1237
  MonkeyEcxPipesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPipesModule, providers: [CurrencyPipe] });
1163
1238
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPipesModule, decorators: [{
1164
1239
  type: NgModule,
@@ -1179,6 +1254,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
1179
1254
  MonkeyEcxFormatZipCodePipe,
1180
1255
  MonkeyEcxTextTruncatePipe,
1181
1256
  MonkeyEcxTruncateQtdPipe,
1257
+ MonkeyEcxFormatBeaufityJSONPipe,
1258
+ MonkeyEcxFormatDateUnixTimelapsePipe
1182
1259
  ],
1183
1260
  exports: [
1184
1261
  MonkeyEcxDisplayFirstNamePipe,
@@ -1196,8 +1273,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
1196
1273
  MonkeyEcxFormatZipCodePipe,
1197
1274
  MonkeyEcxTextTruncatePipe,
1198
1275
  MonkeyEcxTruncateQtdPipe,
1276
+ MonkeyEcxFormatBeaufityJSONPipe,
1277
+ MonkeyEcxFormatDateUnixTimelapsePipe
1199
1278
  ],
1200
- providers: [CurrencyPipe],
1279
+ providers: [CurrencyPipe]
1201
1280
  }]
1202
1281
  }] });
1203
1282
 
@@ -1765,6 +1844,235 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
1765
1844
  args: ['input', ['$event']]
1766
1845
  }] } });
1767
1846
 
1847
+ const POPOVER_OPTIONS = new InjectionToken('POPOVER_OPTIONS');
1848
+ class MonkeyEcxPopoverOptionsDirective {
1849
+ set options(options) {
1850
+ Object.entries(options).forEach(([k, v]) => {
1851
+ this[k] = v;
1852
+ });
1853
+ }
1854
+ }
1855
+ MonkeyEcxPopoverOptionsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPopoverOptionsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1856
+ MonkeyEcxPopoverOptionsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: MonkeyEcxPopoverOptionsDirective, selector: "[monkeyecxPopoverOptions]", inputs: { options: ["monkeyecxPopoverOptions", "options"] }, providers: [
1857
+ {
1858
+ provide: POPOVER_OPTIONS,
1859
+ useExisting: forwardRef(() => {
1860
+ // eslint-disable-next-line no-use-before-define
1861
+ return MonkeyEcxPopoverOptionsDirective;
1862
+ })
1863
+ }
1864
+ ], ngImport: i0 });
1865
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPopoverOptionsDirective, decorators: [{
1866
+ type: Directive,
1867
+ args: [{
1868
+ selector: '[monkeyecxPopoverOptions]',
1869
+ providers: [
1870
+ {
1871
+ provide: POPOVER_OPTIONS,
1872
+ useExisting: forwardRef(() => {
1873
+ // eslint-disable-next-line no-use-before-define
1874
+ return MonkeyEcxPopoverOptionsDirective;
1875
+ })
1876
+ }
1877
+ ]
1878
+ }]
1879
+ }], propDecorators: { options: [{
1880
+ type: Input,
1881
+ args: ['monkeyecxPopoverOptions']
1882
+ }] } });
1883
+
1884
+ class MonkeyEcxPopoverDirective {
1885
+ constructor(tpl, vcr, el, zone, _viewContainerRef, _cd, overlay, overlayPositionBuilder, options) {
1886
+ this.tpl = tpl;
1887
+ this.vcr = vcr;
1888
+ this.el = el;
1889
+ this.zone = zone;
1890
+ this._viewContainerRef = _viewContainerRef;
1891
+ this._cd = _cd;
1892
+ this.overlay = overlay;
1893
+ this.overlayPositionBuilder = overlayPositionBuilder;
1894
+ this.options = options;
1895
+ this.minwidth = false;
1896
+ this.backdrop = true;
1897
+ this.watch = false;
1898
+ this.dir = 'ltr';
1899
+ this.contextmenu = false;
1900
+ this.subs = new Subscription();
1901
+ // not to do
1902
+ }
1903
+ get popover() {
1904
+ return this._popover;
1905
+ }
1906
+ set popover(show) {
1907
+ this._popover = show;
1908
+ if (show) {
1909
+ this.createPopover();
1910
+ }
1911
+ else if (this.overlayRef) {
1912
+ this.overlayRef.dispose();
1913
+ }
1914
+ }
1915
+ get target() {
1916
+ return this._target;
1917
+ }
1918
+ set target(target) {
1919
+ this._target = target;
1920
+ }
1921
+ getDirPositions(dir) {
1922
+ const revert = {
1923
+ start: 'end', end: 'start', bottom: 'top', top: 'bottom', center: 'center'
1924
+ };
1925
+ const centerY = (pos) => {
1926
+ return {
1927
+ originX: 'center', originY: pos, overlayX: 'center', overlayY: revert[pos]
1928
+ };
1929
+ };
1930
+ const centerX = (pos) => {
1931
+ return {
1932
+ originX: revert[pos], originY: 'center', overlayX: pos, overlayY: 'center'
1933
+ };
1934
+ };
1935
+ const ltr = (axis) => {
1936
+ return {
1937
+ originX: 'start', originY: axis, overlayX: 'start', overlayY: revert[axis]
1938
+ };
1939
+ };
1940
+ const rtl = (axis) => {
1941
+ return {
1942
+ originX: 'end', originY: axis, overlayX: 'end', overlayY: revert[axis]
1943
+ };
1944
+ };
1945
+ const side = (axis, axis2) => {
1946
+ return {
1947
+ originX: axis, originY: axis2, overlayX: revert[axis], overlayY: axis2
1948
+ };
1949
+ };
1950
+ const cmp = dir || this.options?.dir || this.dir;
1951
+ if (cmp === 'ct') {
1952
+ return [centerY('top'), centerY('bottom'), centerX('start'), centerX('end')];
1953
+ }
1954
+ if (cmp === 'cr') {
1955
+ return [centerX('end'), centerX('start'), centerY('top'), centerY('bottom')];
1956
+ }
1957
+ if (cmp === 'cc') {
1958
+ return [centerX('center')];
1959
+ }
1960
+ if (cmp === 'ltr') {
1961
+ return [ltr('bottom'), ltr('top')];
1962
+ }
1963
+ if (cmp === 'rtl') {
1964
+ return [rtl('bottom'), rtl('top')];
1965
+ }
1966
+ if (cmp === 'tltr') {
1967
+ return [ltr('top'), ltr('bottom')];
1968
+ }
1969
+ if (cmp === 'trtl') {
1970
+ return [rtl('top'), rtl('bottom')];
1971
+ }
1972
+ if (cmp === 'rt') {
1973
+ return [side('end', 'top'), side('end', 'bottom'), ltr('top')];
1974
+ }
1975
+ if (cmp === 'rb') {
1976
+ return [side('end', 'bottom'), side('end', 'top'), ltr('bottom'), rtl('bottom')];
1977
+ }
1978
+ if (cmp === 'lt') {
1979
+ return [side('start', 'top'), side('start', 'bottom'), rtl('top')];
1980
+ }
1981
+ if (cmp === 'lb') {
1982
+ return [side('start', 'bottom'), side('start', 'top'), rtl('bottom')];
1983
+ }
1984
+ return [];
1985
+ }
1986
+ createPopover(origin, options) {
1987
+ this.templatePortal = new TemplatePortal(this.tpl, this._viewContainerRef);
1988
+ this.positionStrategy = this.overlayPositionBuilder
1989
+ .flexibleConnectedTo(origin || this.target)
1990
+ .withPush(true)
1991
+ .withGrowAfterOpen(true)
1992
+ .withPositions(this.getDirPositions(options?.dir));
1993
+ this.overlayRef = this.overlay.create({
1994
+ positionStrategy: this.positionStrategy,
1995
+ disposeOnNavigation: true,
1996
+ direction: 'ltr',
1997
+ hasBackdrop: this.backdrop,
1998
+ scrollStrategy: this.overlay.scrollStrategies.reposition({}),
1999
+ backdropClass: 'cdk-overlay-transparent-backdrop',
2000
+ width: (this.options?.minwidth || this.minwidth) ? (this.target.offsetWidth - 2) : undefined,
2001
+ maxHeight: '95%',
2002
+ height: this.height
2003
+ });
2004
+ let resizeObserver;
2005
+ const subs = this.overlayRef.backdropClick().subscribe((e) => {
2006
+ this.popover = false;
2007
+ subs.unsubscribe();
2008
+ resizeObserver?.disconnect();
2009
+ this.zone.run(() => {
2010
+ if (this.closed) {
2011
+ this.closed(e);
2012
+ }
2013
+ });
2014
+ });
2015
+ const attached = this.overlayRef.attach(this.templatePortal);
2016
+ if (this.watch) {
2017
+ try {
2018
+ if ('ResizeObserver' in window) {
2019
+ resizeObserver = new ResizeObserver(([{ contentRect }]) => {
2020
+ this.overlayRef.updatePosition();
2021
+ })
2022
+ .observe(attached.rootNodes[0]);
2023
+ }
2024
+ }
2025
+ catch (e) {
2026
+ // not to do
2027
+ }
2028
+ }
2029
+ }
2030
+ ngOnDestroy() {
2031
+ this.popover = false;
2032
+ this.subs.unsubscribe();
2033
+ }
2034
+ }
2035
+ 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 });
2036
+ 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 });
2037
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPopoverDirective, decorators: [{
2038
+ type: Directive,
2039
+ args: [{
2040
+ selector: '[monkeyecxPopover]'
2041
+ }]
2042
+ }], ctorParameters: function () { 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: [{
2043
+ type: Inject,
2044
+ args: [POPOVER_OPTIONS]
2045
+ }, {
2046
+ type: Optional
2047
+ }] }]; }, propDecorators: { popover: [{
2048
+ type: Input,
2049
+ args: ['monkeyecxPopover']
2050
+ }], closed: [{
2051
+ type: Input,
2052
+ args: ['monkeyecxPopoverClosed']
2053
+ }], target: [{
2054
+ type: Input,
2055
+ args: ['monkeyecxPopoverTarget']
2056
+ }], minwidth: [{
2057
+ type: Input,
2058
+ args: ['monkeyecxPopoverMinwidth']
2059
+ }], backdrop: [{
2060
+ type: Input,
2061
+ args: ['monkeyecxPopoverBackdrop']
2062
+ }], watch: [{
2063
+ type: Input,
2064
+ args: ['monkeyecxPopoverWatch']
2065
+ }], dir: [{
2066
+ type: Input,
2067
+ args: ['monkeyecxPopoverDir']
2068
+ }], contextmenu: [{
2069
+ type: Input,
2070
+ args: ['monkeyecxPopoverContextmenu']
2071
+ }], height: [{
2072
+ type: Input,
2073
+ args: ['monkeyecxPopoverHeight']
2074
+ }] } });
2075
+
1768
2076
  class MonkeyEcxRequestPagedHandling {
1769
2077
  constructor(url, pagedParams, links, samePage = false) {
1770
2078
  this.samePage = false;
@@ -2266,14 +2574,14 @@ class MonkeyEcxService {
2266
2574
  }));
2267
2575
  }
2268
2576
  }
2269
- MonkeyEcxService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxService, deps: [{ token: i1$4.HttpClient }, { token: MonkeyEcxHandlingService }], target: i0.ɵɵFactoryTarget.Injectable });
2577
+ 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 });
2270
2578
  MonkeyEcxService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxService, providedIn: 'root' });
2271
2579
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxService, decorators: [{
2272
2580
  type: Injectable,
2273
2581
  args: [{
2274
2582
  providedIn: 'root',
2275
2583
  }]
2276
- }], ctorParameters: function () { return [{ type: i1$4.HttpClient }, { type: MonkeyEcxHandlingService }]; } });
2584
+ }], ctorParameters: function () { return [{ type: i1$5.HttpClient }, { type: MonkeyEcxHandlingService }]; } });
2277
2585
 
2278
2586
  let window$1;
2279
2587
  const text = {
@@ -2488,14 +2796,14 @@ class MonkeyEcxServiceWorkerConfigService {
2488
2796
  this.verify();
2489
2797
  }
2490
2798
  }
2491
- MonkeyEcxServiceWorkerConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxServiceWorkerConfigService, deps: [{ token: i0.ApplicationRef }, { token: i1$5.SwUpdate }, { token: i1.MonkeyStyleGuideModalService }], target: i0.ɵɵFactoryTarget.Injectable });
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 });
2492
2800
  MonkeyEcxServiceWorkerConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxServiceWorkerConfigService, providedIn: 'root' });
2493
2801
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxServiceWorkerConfigService, decorators: [{
2494
2802
  type: Injectable,
2495
2803
  args: [{
2496
2804
  providedIn: 'root'
2497
2805
  }]
2498
- }], ctorParameters: function () { return [{ type: i0.ApplicationRef }, { type: i1$5.SwUpdate }, { type: i1.MonkeyStyleGuideModalService }]; } });
2806
+ }], ctorParameters: function () { return [{ type: i0.ApplicationRef }, { type: i1$6.SwUpdate }, { type: i1.MonkeyStyleGuideModalService }]; } });
2499
2807
 
2500
2808
  /* eslint-disable no-console */
2501
2809
  class MonkeyEcxSecurityConsoleConfigService extends MonkeyEcxCommonsService {
@@ -3099,15 +3407,19 @@ MonkeyEcxDirectivesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0
3099
3407
  MonkeyEcxOnlyAlphaNumericDirective,
3100
3408
  MonkeyEcxOnlyNumbersDirective,
3101
3409
  MonkeyEcxSecurityDirective,
3102
- MonkeyEcxTooltipDirective], exports: [MonkeyEcxDragDropDirective,
3410
+ MonkeyEcxTooltipDirective,
3411
+ MonkeyEcxPopoverDirective,
3412
+ MonkeyEcxPopoverOptionsDirective], imports: [CommonModule, OverlayModule], exports: [MonkeyEcxDragDropDirective,
3103
3413
  MonkeyEcxFormatCurrency,
3104
3414
  MonkeyEcxFeatureDirective,
3105
3415
  MonkeyEcxFormatUpper,
3106
3416
  MonkeyEcxOnlyAlphaNumericDirective,
3107
3417
  MonkeyEcxOnlyNumbersDirective,
3108
3418
  MonkeyEcxSecurityDirective,
3109
- MonkeyEcxTooltipDirective] });
3110
- MonkeyEcxDirectivesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxDirectivesModule });
3419
+ MonkeyEcxTooltipDirective,
3420
+ MonkeyEcxPopoverDirective,
3421
+ MonkeyEcxPopoverOptionsDirective] });
3422
+ MonkeyEcxDirectivesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxDirectivesModule, imports: [[CommonModule, OverlayModule]] });
3111
3423
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxDirectivesModule, decorators: [{
3112
3424
  type: NgModule,
3113
3425
  args: [{
@@ -3119,8 +3431,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
3119
3431
  MonkeyEcxOnlyAlphaNumericDirective,
3120
3432
  MonkeyEcxOnlyNumbersDirective,
3121
3433
  MonkeyEcxSecurityDirective,
3122
- MonkeyEcxTooltipDirective
3434
+ MonkeyEcxTooltipDirective,
3435
+ MonkeyEcxPopoverDirective,
3436
+ MonkeyEcxPopoverOptionsDirective
3123
3437
  ],
3438
+ imports: [CommonModule, OverlayModule],
3124
3439
  exports: [
3125
3440
  MonkeyEcxDragDropDirective,
3126
3441
  MonkeyEcxFormatCurrency,
@@ -3129,7 +3444,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
3129
3444
  MonkeyEcxOnlyAlphaNumericDirective,
3130
3445
  MonkeyEcxOnlyNumbersDirective,
3131
3446
  MonkeyEcxSecurityDirective,
3132
- MonkeyEcxTooltipDirective
3447
+ MonkeyEcxTooltipDirective,
3448
+ MonkeyEcxPopoverDirective,
3449
+ MonkeyEcxPopoverOptionsDirective
3133
3450
  ]
3134
3451
  }]
3135
3452
  }] });
@@ -4301,7 +4618,7 @@ class MonkeyEcxSpecificationSearch {
4301
4618
  throw new Error(`MonkeyEcxSpecificationSearch Error ${e}`);
4302
4619
  }
4303
4620
  }
4304
- buildMoreThanOne(field, op = OpSearch.EQUAL) {
4621
+ buildMoreThanOne(field, op = OpSearch.EQUAL, addSingleQuotes = false) {
4305
4622
  const self = this;
4306
4623
  try {
4307
4624
  if (!self[field])
@@ -4309,7 +4626,11 @@ class MonkeyEcxSpecificationSearch {
4309
4626
  const filters = self[field]?.split(',')?.map((filter) => {
4310
4627
  if (!filter)
4311
4628
  return null;
4312
- return { [field]: { [op]: `${filter}` } };
4629
+ return {
4630
+ [field]: {
4631
+ [op]: addSingleQuotes ? `'${filter}'` : `${filter}`
4632
+ }
4633
+ };
4313
4634
  }).filter((val) => { return val; });
4314
4635
  return filters || [];
4315
4636
  }
@@ -4319,13 +4640,13 @@ class MonkeyEcxSpecificationSearch {
4319
4640
  }
4320
4641
  }
4321
4642
 
4322
- class MonkeyFrontCoreModuleModule {
4643
+ class MonkeyFrontCoreModule {
4323
4644
  }
4324
- MonkeyFrontCoreModuleModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModuleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
4325
- MonkeyFrontCoreModuleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModuleModule, imports: [CommonModule,
4326
- HttpClientModule, i1$1.TranslateModule, MonkeyEcxConfigModule, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxErrorHandlingModule, MonkeyStyleGuideModule, i1$5.ServiceWorkerModule, ClosedToMaintenanceModule,
4645
+ MonkeyFrontCoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
4646
+ MonkeyFrontCoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, imports: [CommonModule,
4647
+ HttpClientModule, i1$1.TranslateModule, MonkeyEcxConfigModule, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxErrorHandlingModule, MonkeyStyleGuideModule, i1$6.ServiceWorkerModule, ClosedToMaintenanceModule,
4327
4648
  VersionChangedModule] });
4328
- MonkeyFrontCoreModuleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModuleModule, providers: [
4649
+ MonkeyFrontCoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, providers: [
4329
4650
  MonkeyStyleGuideModalService,
4330
4651
  MonkeyStyleGuideSettingsService,
4331
4652
  MonkeyStyleGuideSnackbarService
@@ -4341,7 +4662,7 @@ MonkeyFrontCoreModuleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0
4341
4662
  ClosedToMaintenanceModule,
4342
4663
  VersionChangedModule
4343
4664
  ]] });
4344
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModuleModule, decorators: [{
4665
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, decorators: [{
4345
4666
  type: NgModule,
4346
4667
  args: [{
4347
4668
  imports: [
@@ -4372,5 +4693,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
4372
4693
  * Generated bundle index. Do not edit.
4373
4694
  */
4374
4695
 
4375
- 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 };
4696
+ 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 };
4376
4697
  //# sourceMappingURL=monkey-front-core.mjs.map