@stemy/ngx-utils 13.1.4 → 13.2.0

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 (44) hide show
  1. package/bundles/stemy-ngx-utils.umd.js +138 -29
  2. package/bundles/stemy-ngx-utils.umd.js.map +1 -1
  3. package/esm2015/ngx-utils/components/unordered-list/unordered-list.component.js +2 -2
  4. package/esm2015/ngx-utils/ngx-utils.module.js +7 -1
  5. package/esm2015/ngx-utils/pipes/pop.pipe.js +12 -0
  6. package/esm2015/ngx-utils/pipes/shift.pipe.js +12 -0
  7. package/esm2015/ngx-utils/pipes/split.pipe.js +12 -0
  8. package/esm2015/ngx-utils/services/config.service.js +5 -3
  9. package/esm2015/ngx-utils/services/formatter.service.js +3 -2
  10. package/esm2015/ngx-utils/utils/array.utils.js +8 -1
  11. package/esm2015/ngx-utils/utils/file-system.js +6 -1
  12. package/esm2015/ngx-utils/utils/math.utils.js +32 -2
  13. package/esm2015/ngx-utils/utils/object.utils.js +36 -25
  14. package/esm2015/public_api.js +4 -1
  15. package/esm2020/ngx-utils/components/unordered-list/unordered-list.component.mjs +3 -3
  16. package/esm2020/ngx-utils/ngx-utils.imports.mjs +7 -1
  17. package/esm2020/ngx-utils/ngx-utils.module.mjs +31 -28
  18. package/esm2020/ngx-utils/pipes/pop.pipe.mjs +16 -0
  19. package/esm2020/ngx-utils/pipes/shift.pipe.mjs +16 -0
  20. package/esm2020/ngx-utils/pipes/split.pipe.mjs +16 -0
  21. package/esm2020/ngx-utils/services/config.service.mjs +6 -5
  22. package/esm2020/ngx-utils/services/formatter.service.mjs +3 -2
  23. package/esm2020/ngx-utils/utils/array.utils.mjs +8 -1
  24. package/esm2020/ngx-utils/utils/file-system.mjs +6 -1
  25. package/esm2020/ngx-utils/utils/math.utils.mjs +31 -2
  26. package/esm2020/ngx-utils/utils/object.utils.mjs +36 -25
  27. package/esm2020/public_api.mjs +4 -1
  28. package/fesm2015/stemy-ngx-utils.js +122 -30
  29. package/fesm2015/stemy-ngx-utils.js.map +1 -1
  30. package/fesm2015/stemy-ngx-utils.mjs +135 -35
  31. package/fesm2015/stemy-ngx-utils.mjs.map +1 -1
  32. package/fesm2020/stemy-ngx-utils.mjs +134 -35
  33. package/fesm2020/stemy-ngx-utils.mjs.map +1 -1
  34. package/ngx-utils/ngx-utils.module.d.ts +31 -28
  35. package/ngx-utils/pipes/pop.pipe.d.ts +7 -0
  36. package/ngx-utils/pipes/shift.pipe.d.ts +7 -0
  37. package/ngx-utils/pipes/split.pipe.d.ts +7 -0
  38. package/ngx-utils/services/config.service.d.ts +4 -2
  39. package/ngx-utils/utils/array.utils.d.ts +1 -0
  40. package/ngx-utils/utils/math.utils.d.ts +3 -0
  41. package/ngx-utils/utils/object.utils.d.ts +1 -1
  42. package/package.json +10 -10
  43. package/public_api.d.ts +3 -0
  44. package/stemy-ngx-utils.metadata.json +1 -1
@@ -47,7 +47,10 @@ class ObjectUtils {
47
47
  Object.getOwnPropertyNames(obj).forEach(p => props.add(p));
48
48
  return Array.from(props);
49
49
  }
50
- static equals(a, b) {
50
+ static equals(a, b, visited = null) {
51
+ visited = visited || new Set();
52
+ if (visited.has(a) && visited.has(b))
53
+ return true;
51
54
  if (a === b)
52
55
  return true;
53
56
  if (a === null || b === null)
@@ -57,12 +60,14 @@ class ObjectUtils {
57
60
  const at = typeof a, bt = typeof b;
58
61
  let length, key, keySet;
59
62
  if (at == bt && at == "object") {
63
+ visited.add(a);
64
+ visited.add(b);
60
65
  if (Array.isArray(a)) {
61
66
  if (!Array.isArray(b))
62
67
  return false;
63
68
  if ((length = a.length) == b.length) {
64
69
  for (key = 0; key < length; key++) {
65
- if (!ObjectUtils.equals(a[key], b[key]))
70
+ if (!ObjectUtils.equals(a[key], b[key], visited))
66
71
  return false;
67
72
  }
68
73
  return true;
@@ -75,7 +80,7 @@ class ObjectUtils {
75
80
  keySet = Object.create(null);
76
81
  for (key in a) {
77
82
  if (a.hasOwnProperty(key)) {
78
- if (!ObjectUtils.equals(a[key], b[key])) {
83
+ if (!ObjectUtils.equals(a[key], b[key], visited)) {
79
84
  return false;
80
85
  }
81
86
  keySet[key] = true;
@@ -169,13 +174,13 @@ class ObjectUtils {
169
174
  return isNaN(key) || isArray ? target : Object.values(target);
170
175
  }
171
176
  static filter(obj, predicate) {
172
- return ObjectUtils.copyRecursive(null, obj, predicate);
177
+ return ObjectUtils.copyRecursive(null, obj, predicate, new Map());
173
178
  }
174
179
  static copy(obj) {
175
- return ObjectUtils.copyRecursive(null, obj);
180
+ return ObjectUtils.copyRecursive(null, obj, null, new Map());
176
181
  }
177
182
  static assign(target, source, predicate) {
178
- return ObjectUtils.copyRecursive(target, source, predicate);
183
+ return ObjectUtils.copyRecursive(target, source, predicate, new Map());
179
184
  }
180
185
  static getType(obj) {
181
186
  const regex = new RegExp("\\s([a-zA-Z]+)");
@@ -250,28 +255,34 @@ class ObjectUtils {
250
255
  const str = ObjectUtils.isDefined(obj) ? obj.toString() : "";
251
256
  return str.length >= width ? str : new Array(width - str.length + 1).join(chr) + str;
252
257
  }
253
- static copyRecursive(target, source, predicate) {
258
+ static copyRecursive(target, source, predicate, copies) {
254
259
  predicate = predicate || defaultPredicate;
255
260
  if (ObjectUtils.isPrimitive(source) || ObjectUtils.isDate(source) || ObjectUtils.isBlob(source) || ObjectUtils.isFunction(source))
256
261
  return source;
257
- if (ObjectUtils.isArray(source)) {
258
- target = ObjectUtils.isArray(target) ? Array.from(target) : [];
259
- source.forEach((item, index) => {
260
- if (!predicate(item, index, target, source))
261
- return;
262
- if (target.length > index)
263
- target[index] = ObjectUtils.copyRecursive(target[index], item, predicate);
264
- else
265
- target.push(ObjectUtils.copyRecursive(null, item, predicate));
266
- });
267
- return target;
262
+ if (!copies.has(source)) {
263
+ if (ObjectUtils.isArray(source)) {
264
+ target = ObjectUtils.isArray(target) ? Array.from(target) : [];
265
+ copies.set(source, target);
266
+ source.forEach((item, index) => {
267
+ if (!predicate(item, index, target, source))
268
+ return;
269
+ if (target.length > index)
270
+ target[index] = ObjectUtils.copyRecursive(target[index], item, predicate, copies);
271
+ else
272
+ target.push(ObjectUtils.copyRecursive(null, item, predicate, copies));
273
+ });
274
+ }
275
+ else {
276
+ target = Object.assign({}, target);
277
+ copies.set(source, target);
278
+ Object.keys(source).forEach((key) => {
279
+ if (!predicate(source[key], key, target, source))
280
+ return;
281
+ target[key] = ObjectUtils.copyRecursive(target[key], source[key], predicate, copies);
282
+ });
283
+ }
268
284
  }
269
- return Object.keys(source).reduce((result, key) => {
270
- if (!predicate(source[key], key, result, source))
271
- return result;
272
- result[key] = ObjectUtils.copyRecursive(result[key], source[key], predicate);
273
- return result;
274
- }, Object.assign({}, target));
285
+ return copies.get(source);
275
286
  }
276
287
  }
277
288
 
@@ -995,6 +1006,11 @@ class FileSystemEntry {
995
1006
  }
996
1007
  open() {
997
1008
  this.result = this.result || this.openCb(this.data, this);
1009
+ this.result.then(res => {
1010
+ if (Array.isArray(res))
1011
+ return;
1012
+ this.result = null;
1013
+ });
998
1014
  return this.result;
999
1015
  }
1000
1016
  }
@@ -1207,7 +1223,7 @@ LoaderUtils.stylePromises = {};
1207
1223
 
1208
1224
  class MathUtils {
1209
1225
  static equal(a, b, epsilon = null) {
1210
- epsilon = ObjectUtils.isNumber(epsilon) ? epsilon : Math.E;
1226
+ epsilon = ObjectUtils.isNumber(epsilon) ? epsilon : MathUtils.EPSILON;
1211
1227
  return Math.abs(a - b) < epsilon;
1212
1228
  }
1213
1229
  static clamp(value, min, max) {
@@ -1217,7 +1233,37 @@ class MathUtils {
1217
1233
  precision = Math.pow(10, precision);
1218
1234
  return Math.round(value * precision / divider) / precision;
1219
1235
  }
1220
- }
1236
+ static approxIndex(x, values, epsilon = null) {
1237
+ if (!Array.isArray(values) || values.length == 0) {
1238
+ return -1;
1239
+ }
1240
+ let s = 0;
1241
+ let e = values.length - 1;
1242
+ while (s <= e) {
1243
+ const i = Math.floor((s + e) / 2);
1244
+ const v = values[i];
1245
+ if (MathUtils.equal(v, x, epsilon)) {
1246
+ return i;
1247
+ }
1248
+ if (v < x) {
1249
+ s = i + 1;
1250
+ }
1251
+ else {
1252
+ e = i - 1;
1253
+ }
1254
+ }
1255
+ const m = Math.max(e, 0);
1256
+ const a = values[s];
1257
+ const b = values[m];
1258
+ return Math.abs(a - x) < Math.abs(b - x) ? s : m;
1259
+ }
1260
+ static approximate(x, values, epsilon = null) {
1261
+ var _a;
1262
+ const index = MathUtils.approxIndex(x, values, epsilon);
1263
+ return (_a = values[index]) !== null && _a !== void 0 ? _a : null;
1264
+ }
1265
+ }
1266
+ MathUtils.EPSILON = 1e-9;
1221
1267
 
1222
1268
  /**
1223
1269
  * Use this service to determine which is the current environment
@@ -1851,6 +1897,13 @@ class ArrayUtils {
1851
1897
  }
1852
1898
  return result;
1853
1899
  }
1900
+ static unique(arr) {
1901
+ if (!ObjectUtils.isArray(arr))
1902
+ return [];
1903
+ return arr.filter((value, index, self) => {
1904
+ return self.indexOf(value) === index;
1905
+ });
1906
+ }
1854
1907
  }
1855
1908
 
1856
1909
  class SetUtils {
@@ -2460,9 +2513,10 @@ class StaticAuthService {
2460
2513
 
2461
2514
  const JSON5 = require("json5");
2462
2515
  class ConfigService {
2463
- constructor(http, universal, rootElement, baseConfig = null, scriptParams = null) {
2516
+ constructor(http, universal, injector, rootElement, baseConfig = null, scriptParams = null) {
2464
2517
  this.http = http;
2465
2518
  this.universal = universal;
2519
+ this.injector = injector;
2466
2520
  this.rootElement = rootElement;
2467
2521
  for (const key in []) {
2468
2522
  Object.defineProperty(Array.prototype, key, {
@@ -2570,6 +2624,7 @@ ConfigService.decorators = [
2570
2624
  ConfigService.ctorParameters = () => [
2571
2625
  { type: HttpClient },
2572
2626
  { type: UniversalService },
2627
+ { type: Injector },
2573
2628
  { type: undefined, decorators: [{ type: Inject, args: [ROOT_ELEMENT,] }] },
2574
2629
  { type: IConfiguration, decorators: [{ type: Optional }, { type: Inject, args: [BASE_CONFIG,] }] },
2575
2630
  { type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [SCRIPT_PARAMS,] }] }
@@ -2666,7 +2721,8 @@ class FormatterService {
2666
2721
  const num = ObjectUtils.isNumber(value) ? value : parseFloat(value) || 0;
2667
2722
  const str = (num / divider).toLocaleString(this.language.currentLanguage, {
2668
2723
  minimumFractionDigits: precision,
2669
- maximumFractionDigits: precision
2724
+ maximumFractionDigits: precision,
2725
+ useGrouping: false
2670
2726
  });
2671
2727
  return ObjectUtils.evaluate(format || this.defaultNumberFormat, { num: str });
2672
2728
  }
@@ -3586,6 +3642,17 @@ MinPipe.decorators = [
3586
3642
  },] }
3587
3643
  ];
3588
3644
 
3645
+ class PopPipe {
3646
+ transform(value) {
3647
+ return !Array.isArray(value) ? null : Array.from(value).pop();
3648
+ }
3649
+ }
3650
+ PopPipe.decorators = [
3651
+ { type: Pipe, args: [{
3652
+ name: "pop"
3653
+ },] }
3654
+ ];
3655
+
3589
3656
  function defaultReducer(result) {
3590
3657
  return result;
3591
3658
  }
@@ -3712,6 +3779,28 @@ SafeHtmlPipe.ctorParameters = () => [
3712
3779
  { type: DomSanitizer }
3713
3780
  ];
3714
3781
 
3782
+ class ShiftPipe {
3783
+ transform(value) {
3784
+ return !Array.isArray(value) ? null : Array.from(value).shift();
3785
+ }
3786
+ }
3787
+ ShiftPipe.decorators = [
3788
+ { type: Pipe, args: [{
3789
+ name: "shift"
3790
+ },] }
3791
+ ];
3792
+
3793
+ class SplitPipe {
3794
+ transform(value, separator = ".") {
3795
+ return `${value}`.split(separator);
3796
+ }
3797
+ }
3798
+ SplitPipe.decorators = [
3799
+ { type: Pipe, args: [{
3800
+ name: "split"
3801
+ },] }
3802
+ ];
3803
+
3715
3804
  class TranslatePipe {
3716
3805
  constructor(cdr, language) {
3717
3806
  this.cdr = cdr;
@@ -4429,7 +4518,7 @@ class UnorderedListComponent {
4429
4518
  UnorderedListComponent.decorators = [
4430
4519
  { type: Component, args: [{
4431
4520
  selector: "unordered-list",
4432
- template: "<ng-template let-keyPrefix=\"keyPrefix\" let-key=\"item.key\" let-isArray=\"isArray\" #defaultKeyTemplate>\r\n {{ (keyPrefix ? keyPrefix + key : key) | translate }}:\r\n</ng-template>\r\n<ng-template let-keyPrefix=\"keyPrefix\" let-listStyle=\"listStyle\" let-val=\"item.value\" let-path=\"path\"\r\n let-templates=\"templates\" let-isObject=\"valueIsObject\" let-isArray=\"valueIsArray\" #defaultValueTemplate>\r\n <ng-template #value>{{ val }}</ng-template>\r\n <unordered-list [data]=\"val\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level + 1\"\r\n [templates]=\"templates\"\r\n *ngIf=\"(isObject || isArray); else value\"></unordered-list>\r\n</ng-template>\r\n<ng-template let-item=\"item\" let-data=\"data\" let-keyPrefix=\"keyPrefix\" let-listStyle=\"listStyle\" let-path=\"path\" let-level=\"level\" let-templates=\"templates\" #defaultItemTemplate>\r\n <ng-template #itemKey>\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"key\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </ng-template>\r\n <ng-template #itemValue>\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"value\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </ng-template>\r\n <ng-container *ngIf=\"!isArray\">\r\n <th *ngIf=\"listStyle == 'table'; else itemKey\">\r\n <ng-container [ngTemplateOutlet]=\"itemKey\"></ng-container>\r\n </th>\r\n </ng-container>\r\n <td *ngIf=\"listStyle == 'table'; else itemValue\">\r\n <ng-container [ngTemplateOutlet]=\"itemValue\"></ng-container>\r\n </td>\r\n</ng-template>\r\n<ng-template #value>\r\n {{ data }}\r\n</ng-template>\r\n<ng-container *ngIf=\"(isObject || isArray); else value\" [ngSwitch]=\"listStyle\">\r\n <ul [ngClass]=\"'level-' + level\" *ngSwitchCase=\"'list'\">\r\n <li *ngFor=\"let item of data | entries\" [ngClass]=\"item.classList\">\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"item\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path ? path + '.' + item.key : item.key\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </li>\r\n </ul>\r\n <table [ngClass]=\"'level-' + level\" *ngSwitchDefault>\r\n <tr *ngFor=\"let item of data | entries\" [ngClass]=\"item.classList\">\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"item\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path ? path + '.' + item.key : item.key\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </tr>\r\n </table>\r\n</ng-container>\r\n"
4521
+ template: "<ng-template let-keyPrefix=\"keyPrefix\" let-key=\"item.key\" let-isArray=\"isArray\" #defaultKeyTemplate>\r\n {{ (keyPrefix ? keyPrefix + key : key) | translate }}:\r\n</ng-template>\r\n<ng-template let-keyPrefix=\"keyPrefix\" let-listStyle=\"listStyle\" let-val=\"item.value\" let-path=\"path\"\r\n let-templates=\"templates\" let-isObject=\"valueIsObject\" let-isArray=\"valueIsArray\" #defaultValueTemplate>\r\n <ng-template #value>\r\n <span [innerHTML]=\"val\"></span>\r\n </ng-template>\r\n <unordered-list [data]=\"val\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level + 1\"\r\n [templates]=\"templates\"\r\n *ngIf=\"(isObject || isArray); else value\"></unordered-list>\r\n</ng-template>\r\n<ng-template let-item=\"item\" let-data=\"data\" let-keyPrefix=\"keyPrefix\" let-listStyle=\"listStyle\" let-path=\"path\" let-level=\"level\" let-templates=\"templates\" #defaultItemTemplate>\r\n <ng-template #itemKey>\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"key\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </ng-template>\r\n <ng-template #itemValue>\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"value\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </ng-template>\r\n <ng-container *ngIf=\"!isArray\">\r\n <th *ngIf=\"listStyle == 'table'; else itemKey\">\r\n <ng-container [ngTemplateOutlet]=\"itemKey\"></ng-container>\r\n </th>\r\n </ng-container>\r\n <td *ngIf=\"listStyle == 'table'; else itemValue\">\r\n <ng-container [ngTemplateOutlet]=\"itemValue\"></ng-container>\r\n </td>\r\n</ng-template>\r\n<ng-template #value>\r\n <span [innerHTML]=\"data\"></span>\r\n</ng-template>\r\n<ng-container *ngIf=\"(isObject || isArray); else value\" [ngSwitch]=\"listStyle\">\r\n <ul [ngClass]=\"'level-' + level\" *ngSwitchCase=\"'list'\">\r\n <li *ngFor=\"let item of data | entries\" [ngClass]=\"item.classList\">\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"item\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path ? path + '.' + item.key : item.key\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </li>\r\n </ul>\r\n <table [ngClass]=\"'level-' + level\" *ngSwitchDefault>\r\n <tr *ngFor=\"let item of data | entries\" [ngClass]=\"item.classList\">\r\n <ng-container [unorderedListItem]=\"item\"\r\n type=\"item\"\r\n [data]=\"data\"\r\n [keyPrefix]=\"keyPrefix\"\r\n [listStyle]=\"listStyle\"\r\n [path]=\"path ? path + '.' + item.key : item.key\"\r\n [level]=\"level\"\r\n [templates]=\"templates\"\r\n [defaultTemplates]=\"defaultTemplates\"></ng-container>\r\n </tr>\r\n </table>\r\n</ng-container>\r\n"
4433
4522
  },] }
4434
4523
  ];
4435
4524
  UnorderedListComponent.ctorParameters = () => [
@@ -4724,12 +4813,15 @@ const pipes = [
4724
4813
  MapPipe,
4725
4814
  MaxPipe,
4726
4815
  MinPipe,
4816
+ PopPipe,
4727
4817
  ReducePipe,
4728
4818
  RemapPipe,
4729
4819
  ReplacePipe,
4730
4820
  ReversePipe,
4731
4821
  RoundPipe,
4732
4822
  SafeHtmlPipe,
4823
+ ShiftPipe,
4824
+ SplitPipe,
4733
4825
  TranslatePipe,
4734
4826
  ValuesPipe
4735
4827
  ];
@@ -4878,5 +4970,5 @@ NgxUtilsModule.decorators = [
4878
4970
  * Generated bundle index. Do not edit.
4879
4971
  */
4880
4972
 
4881
- export { API_SERVICE, AUTH_SERVICE, AclService, AjaxRequestHandler, ApiService, ArrayUtils, AsyncMethodBase, AsyncMethodDirective, AuthGuard, BASE_CONFIG, BackgroundDirective, BaseHttpClient, BaseHttpService, CONFIG_SERVICE, CanvasColor, CanvasUtils, ChunkPipe, Circle, ConfigService, ConsoleToasterService, DateUtils, DynamicTableComponent, DynamicTableTemplateDirective, ERROR_HANDLER, EXPRESS_REQUEST, EntriesPipe, ErrorHandlerService, EventsService, ExtraItemPropertiesPipe, FactoryDependencies, FileSystemEntry, FileUtils, FilterPipe, FindPipe, FormatNumberPipe, FormatterService, GLOBAL_TEMPLATES, GenericValue, GetOffsetPipe, GetTypePipe, GlobalTemplateDirective, GlobalTemplatePipe, GlobalTemplateService, GroupByPipe, HttpPromise, ICON_SERVICE, IConfiguration, IconDirective, IconService, Initializer, IsTypePipe, JoinPipe, KeysPipe, LANGUAGE_SERVICE, LanguageService, LoaderUtils, MapPipe, MathUtils, MaxPipe, MinPipe, NgxTemplateOutletDirective, NgxUtilsModule, ObjectUtils, ObservableUtils, OpenApiService, PROMISE_SERVICE, PaginationDirective, PaginationItemContext, PaginationItemDirective, PaginationMenuComponent, Point, PromiseService, ROOT_ELEMENT, Rect, ReducePipe, ReflectUtils, RemapPipe, ReplacePipe, ResizeEventPlugin, ResourceIfContext, ResourceIfDirective, ReversePipe, RoundPipe, SCRIPT_PARAMS, SafeHtmlPipe, ScrollEventPlugin, SetUtils, StateService, StaticAuthService, StaticLanguageService, StickyDirective, StorageMode, StorageService, StringUtils, TOASTER_SERVICE, TimerUtils, TranslatePipe, TranslatedUrlSerializer, UniqueUtils, UniversalService, UnorderedListComponent, UnorderedListItemDirective, UnorderedListTemplateDirective, UnorederedListTemplate, ValuedPromise, ValuesPipe, Vector, pipes as ɵa, directives as ɵb, components as ɵc, providers as ɵd, loadConfig as ɵe, StickyClassDirective as ɵf };
4973
+ export { API_SERVICE, AUTH_SERVICE, AclService, AjaxRequestHandler, ApiService, ArrayUtils, AsyncMethodBase, AsyncMethodDirective, AuthGuard, BASE_CONFIG, BackgroundDirective, BaseHttpClient, BaseHttpService, CONFIG_SERVICE, CanvasColor, CanvasUtils, ChunkPipe, Circle, ConfigService, ConsoleToasterService, DateUtils, DynamicTableComponent, DynamicTableTemplateDirective, ERROR_HANDLER, EXPRESS_REQUEST, EntriesPipe, ErrorHandlerService, EventsService, ExtraItemPropertiesPipe, FactoryDependencies, FileSystemEntry, FileUtils, FilterPipe, FindPipe, FormatNumberPipe, FormatterService, GLOBAL_TEMPLATES, GenericValue, GetOffsetPipe, GetTypePipe, GlobalTemplateDirective, GlobalTemplatePipe, GlobalTemplateService, GroupByPipe, HttpPromise, ICON_SERVICE, IConfiguration, IconDirective, IconService, Initializer, IsTypePipe, JoinPipe, KeysPipe, LANGUAGE_SERVICE, LanguageService, LoaderUtils, MapPipe, MathUtils, MaxPipe, MinPipe, NgxTemplateOutletDirective, NgxUtilsModule, ObjectUtils, ObservableUtils, OpenApiService, PROMISE_SERVICE, PaginationDirective, PaginationItemContext, PaginationItemDirective, PaginationMenuComponent, Point, PopPipe, PromiseService, ROOT_ELEMENT, Rect, ReducePipe, ReflectUtils, RemapPipe, ReplacePipe, ResizeEventPlugin, ResourceIfContext, ResourceIfDirective, ReversePipe, RoundPipe, SCRIPT_PARAMS, SafeHtmlPipe, ScrollEventPlugin, SetUtils, ShiftPipe, SplitPipe, StateService, StaticAuthService, StaticLanguageService, StickyDirective, StorageMode, StorageService, StringUtils, TOASTER_SERVICE, TimerUtils, TranslatePipe, TranslatedUrlSerializer, UniqueUtils, UniversalService, UnorderedListComponent, UnorderedListItemDirective, UnorderedListTemplateDirective, UnorederedListTemplate, ValuedPromise, ValuesPipe, Vector, pipes as ɵa, directives as ɵb, components as ɵc, providers as ɵd, loadConfig as ɵe, StickyClassDirective as ɵf };
4882
4974
  //# sourceMappingURL=stemy-ngx-utils.js.map