@stemy/ngx-utils 13.1.3 → 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 (130) hide show
  1. package/bundles/stemy-ngx-utils.umd.js +6254 -0
  2. package/bundles/stemy-ngx-utils.umd.js.map +1 -0
  3. package/esm2015/ngx-utils/common-types.js +116 -0
  4. package/esm2015/ngx-utils/components/dynamic-table/dynamic-table.component.js +139 -0
  5. package/esm2015/ngx-utils/components/pagination-menu/pagination-menu.component.js +96 -0
  6. package/esm2015/ngx-utils/components/unordered-list/unordered-list.component.js +51 -0
  7. package/esm2015/ngx-utils/directives/async-method.base.js +54 -0
  8. package/esm2015/ngx-utils/directives/async-method.directive.js +24 -0
  9. package/esm2015/ngx-utils/directives/background.directive.js +51 -0
  10. package/esm2015/ngx-utils/directives/dynamic-table-template.directive.js +19 -0
  11. package/esm2015/ngx-utils/directives/global-template.directive.js +27 -0
  12. package/esm2015/ngx-utils/directives/icon.directive.js +59 -0
  13. package/esm2015/ngx-utils/directives/ngx-template-outlet.directive.js +88 -0
  14. package/esm2015/ngx-utils/directives/pagination-item.directive.js +33 -0
  15. package/esm2015/ngx-utils/directives/pagination.directive.js +76 -0
  16. package/esm2015/ngx-utils/directives/resource-if.directive.js +51 -0
  17. package/esm2015/ngx-utils/directives/sticky-class.directive.js +35 -0
  18. package/esm2015/ngx-utils/directives/sticky.directive.js +48 -0
  19. package/esm2015/ngx-utils/directives/unordered-list-item.directive.js +70 -0
  20. package/esm2015/ngx-utils/directives/unordered-list-template.directive.js +26 -0
  21. package/esm2015/ngx-utils/ngx-utils.module.js +244 -0
  22. package/esm2015/ngx-utils/pipes/chunk.pipe.js +21 -0
  23. package/esm2015/ngx-utils/pipes/entries.pipe.js +24 -0
  24. package/esm2015/ngx-utils/pipes/extra-item-properties.pipe.js +27 -0
  25. package/esm2015/ngx-utils/pipes/filter.pipe.js +38 -0
  26. package/esm2015/ngx-utils/pipes/find.pipe.js +25 -0
  27. package/esm2015/ngx-utils/pipes/format-number.pipe.js +19 -0
  28. package/esm2015/ngx-utils/pipes/get-offset.pipe.js +13 -0
  29. package/esm2015/ngx-utils/pipes/get-type.pipe.js +12 -0
  30. package/esm2015/ngx-utils/pipes/global-template.pipe.js +37 -0
  31. package/esm2015/ngx-utils/pipes/group-by.pipe.js +23 -0
  32. package/esm2015/ngx-utils/pipes/is-type.pipe.js +12 -0
  33. package/esm2015/ngx-utils/pipes/join.pipe.js +15 -0
  34. package/esm2015/ngx-utils/pipes/keys.pipe.js +18 -0
  35. package/esm2015/ngx-utils/pipes/map.pipe.js +25 -0
  36. package/esm2015/ngx-utils/pipes/max.pipe.js +22 -0
  37. package/esm2015/ngx-utils/pipes/min.pipe.js +22 -0
  38. package/esm2015/ngx-utils/pipes/pop.pipe.js +12 -0
  39. package/esm2015/ngx-utils/pipes/reduce.pipe.js +26 -0
  40. package/esm2015/ngx-utils/pipes/remap.pipe.js +28 -0
  41. package/esm2015/ngx-utils/pipes/replace.pipe.js +12 -0
  42. package/esm2015/ngx-utils/pipes/reverse.pipe.js +20 -0
  43. package/esm2015/ngx-utils/pipes/round.pipe.js +19 -0
  44. package/esm2015/ngx-utils/pipes/safe-html.pipe.js +32 -0
  45. package/esm2015/ngx-utils/pipes/shift.pipe.js +12 -0
  46. package/esm2015/ngx-utils/pipes/split.pipe.js +12 -0
  47. package/esm2015/ngx-utils/pipes/translate.pipe.js +81 -0
  48. package/esm2015/ngx-utils/pipes/values.pipe.js +18 -0
  49. package/esm2015/ngx-utils/plugins/resize-event.plugin.js +56 -0
  50. package/esm2015/ngx-utils/plugins/scroll-event.plugin.js +36 -0
  51. package/esm2015/ngx-utils/services/acl.service.js +81 -0
  52. package/esm2015/ngx-utils/services/api.service.js +35 -0
  53. package/esm2015/ngx-utils/services/auth.service.js +14 -0
  54. package/esm2015/ngx-utils/services/base-http.client.js +46 -0
  55. package/esm2015/ngx-utils/services/base-http.service.js +285 -0
  56. package/esm2015/ngx-utils/services/config.service.js +124 -0
  57. package/esm2015/ngx-utils/services/error-handler.service.js +49 -0
  58. package/esm2015/ngx-utils/services/events.service.js +24 -0
  59. package/esm2015/ngx-utils/services/formatter.service.js +45 -0
  60. package/esm2015/ngx-utils/services/global-template.service.js +35 -0
  61. package/esm2015/ngx-utils/services/icon.service.js +24 -0
  62. package/esm2015/ngx-utils/services/language.service.js +117 -0
  63. package/esm2015/ngx-utils/services/open-api.service.js +41 -0
  64. package/esm2015/ngx-utils/services/promise.service.js +52 -0
  65. package/esm2015/ngx-utils/services/state.service.js +181 -0
  66. package/esm2015/ngx-utils/services/static-language.service.js +152 -0
  67. package/esm2015/ngx-utils/services/storage.service.js +48 -0
  68. package/esm2015/ngx-utils/services/toaster.service.js +29 -0
  69. package/esm2015/ngx-utils/services/translated-url.serializer.js +70 -0
  70. package/esm2015/ngx-utils/services/universal.service.js +75 -0
  71. package/esm2015/ngx-utils/utils/ajax-request-handler.js +40 -0
  72. package/esm2015/ngx-utils/utils/array.utils.js +107 -0
  73. package/esm2015/ngx-utils/utils/auth.guard.js +156 -0
  74. package/esm2015/ngx-utils/utils/canvas.utils.js +388 -0
  75. package/esm2015/ngx-utils/utils/date.utils.js +28 -0
  76. package/esm2015/ngx-utils/utils/file-system.js +25 -0
  77. package/esm2015/ngx-utils/utils/file.utils.js +90 -0
  78. package/esm2015/ngx-utils/utils/generic-value.js +20 -0
  79. package/esm2015/ngx-utils/utils/geometry.js +132 -0
  80. package/esm2015/ngx-utils/utils/initializer.js +20 -0
  81. package/esm2015/ngx-utils/utils/loader.utils.js +55 -0
  82. package/esm2015/ngx-utils/utils/math.utils.js +45 -0
  83. package/esm2015/ngx-utils/utils/object.utils.js +274 -0
  84. package/esm2015/ngx-utils/utils/observable.utils.js +63 -0
  85. package/esm2015/ngx-utils/utils/reflect.utils.js +33 -0
  86. package/esm2015/ngx-utils/utils/set.utils.js +20 -0
  87. package/esm2015/ngx-utils/utils/string.utils.js +28 -0
  88. package/esm2015/ngx-utils/utils/timer.utils.js +52 -0
  89. package/esm2015/ngx-utils/utils/unique.utils.js +24 -0
  90. package/esm2015/ngx-utils/utils/vector.js +77 -0
  91. package/esm2015/public_api.js +88 -0
  92. package/esm2015/stemy-ngx-utils.js +7 -0
  93. package/esm2020/ngx-utils/components/unordered-list/unordered-list.component.mjs +3 -3
  94. package/esm2020/ngx-utils/ngx-utils.imports.mjs +7 -1
  95. package/esm2020/ngx-utils/ngx-utils.module.mjs +31 -28
  96. package/esm2020/ngx-utils/pipes/pop.pipe.mjs +16 -0
  97. package/esm2020/ngx-utils/pipes/shift.pipe.mjs +16 -0
  98. package/esm2020/ngx-utils/pipes/split.pipe.mjs +16 -0
  99. package/esm2020/ngx-utils/services/acl.service.mjs +3 -1
  100. package/esm2020/ngx-utils/services/config.service.mjs +6 -5
  101. package/esm2020/ngx-utils/services/formatter.service.mjs +3 -2
  102. package/esm2020/ngx-utils/utils/array.utils.mjs +8 -1
  103. package/esm2020/ngx-utils/utils/file-system.mjs +25 -0
  104. package/esm2020/ngx-utils/utils/math.utils.mjs +31 -2
  105. package/esm2020/ngx-utils/utils/object.utils.mjs +36 -25
  106. package/esm2020/public_api.mjs +5 -1
  107. package/fesm2015/stemy-ngx-utils.js +4974 -0
  108. package/fesm2015/stemy-ngx-utils.js.map +1 -0
  109. package/fesm2015/stemy-ngx-utils.mjs +157 -35
  110. package/fesm2015/stemy-ngx-utils.mjs.map +1 -1
  111. package/fesm2020/stemy-ngx-utils.mjs +156 -35
  112. package/fesm2020/stemy-ngx-utils.mjs.map +1 -1
  113. package/ngx-utils/ngx-utils.module.d.ts +31 -28
  114. package/ngx-utils/pipes/pop.pipe.d.ts +7 -0
  115. package/ngx-utils/pipes/shift.pipe.d.ts +7 -0
  116. package/ngx-utils/pipes/split.pipe.d.ts +7 -0
  117. package/ngx-utils/services/config.service.d.ts +4 -2
  118. package/ngx-utils/utils/array.utils.d.ts +1 -0
  119. package/ngx-utils/utils/file-system.d.ts +16 -0
  120. package/ngx-utils/utils/math.utils.d.ts +3 -0
  121. package/ngx-utils/utils/object.utils.d.ts +1 -1
  122. package/package.json +10 -10
  123. package/public_api.d.ts +4 -0
  124. package/stemy-ngx-utils.metadata.json +1 -0
  125. package/tools/circular.js +117 -0
  126. package/tools/circular.js.map +1 -0
  127. package/tools/config.js +79 -0
  128. package/tools/config.js.map +1 -0
  129. package/tools/icons.js +14 -0
  130. package/tools/icons.js.map +1 -0
@@ -53,7 +53,10 @@ class ObjectUtils {
53
53
  Object.getOwnPropertyNames(obj).forEach(p => props.add(p));
54
54
  return Array.from(props);
55
55
  }
56
- static equals(a, b) {
56
+ static equals(a, b, visited = null) {
57
+ visited = visited || new Set();
58
+ if (visited.has(a) && visited.has(b))
59
+ return true;
57
60
  if (a === b)
58
61
  return true;
59
62
  if (a === null || b === null)
@@ -63,12 +66,14 @@ class ObjectUtils {
63
66
  const at = typeof a, bt = typeof b;
64
67
  let length, key, keySet;
65
68
  if (at == bt && at == "object") {
69
+ visited.add(a);
70
+ visited.add(b);
66
71
  if (Array.isArray(a)) {
67
72
  if (!Array.isArray(b))
68
73
  return false;
69
74
  if ((length = a.length) == b.length) {
70
75
  for (key = 0; key < length; key++) {
71
- if (!ObjectUtils.equals(a[key], b[key]))
76
+ if (!ObjectUtils.equals(a[key], b[key], visited))
72
77
  return false;
73
78
  }
74
79
  return true;
@@ -81,7 +86,7 @@ class ObjectUtils {
81
86
  keySet = Object.create(null);
82
87
  for (key in a) {
83
88
  if (a.hasOwnProperty(key)) {
84
- if (!ObjectUtils.equals(a[key], b[key])) {
89
+ if (!ObjectUtils.equals(a[key], b[key], visited)) {
85
90
  return false;
86
91
  }
87
92
  keySet[key] = true;
@@ -175,13 +180,13 @@ class ObjectUtils {
175
180
  return isNaN(key) || isArray ? target : Object.values(target);
176
181
  }
177
182
  static filter(obj, predicate) {
178
- return ObjectUtils.copyRecursive(null, obj, predicate);
183
+ return ObjectUtils.copyRecursive(null, obj, predicate, new Map());
179
184
  }
180
185
  static copy(obj) {
181
- return ObjectUtils.copyRecursive(null, obj);
186
+ return ObjectUtils.copyRecursive(null, obj, null, new Map());
182
187
  }
183
188
  static assign(target, source, predicate) {
184
- return ObjectUtils.copyRecursive(target, source, predicate);
189
+ return ObjectUtils.copyRecursive(target, source, predicate, new Map());
185
190
  }
186
191
  static getType(obj) {
187
192
  const regex = new RegExp("\\s([a-zA-Z]+)");
@@ -256,28 +261,34 @@ class ObjectUtils {
256
261
  const str = ObjectUtils.isDefined(obj) ? obj.toString() : "";
257
262
  return str.length >= width ? str : new Array(width - str.length + 1).join(chr) + str;
258
263
  }
259
- static copyRecursive(target, source, predicate) {
264
+ static copyRecursive(target, source, predicate, copies) {
260
265
  predicate = predicate || defaultPredicate;
261
266
  if (ObjectUtils.isPrimitive(source) || ObjectUtils.isDate(source) || ObjectUtils.isBlob(source) || ObjectUtils.isFunction(source))
262
267
  return source;
263
- if (ObjectUtils.isArray(source)) {
264
- target = ObjectUtils.isArray(target) ? Array.from(target) : [];
265
- source.forEach((item, index) => {
266
- if (!predicate(item, index, target, source))
267
- return;
268
- if (target.length > index)
269
- target[index] = ObjectUtils.copyRecursive(target[index], item, predicate);
270
- else
271
- target.push(ObjectUtils.copyRecursive(null, item, predicate));
272
- });
273
- return target;
268
+ if (!copies.has(source)) {
269
+ if (ObjectUtils.isArray(source)) {
270
+ target = ObjectUtils.isArray(target) ? Array.from(target) : [];
271
+ copies.set(source, target);
272
+ source.forEach((item, index) => {
273
+ if (!predicate(item, index, target, source))
274
+ return;
275
+ if (target.length > index)
276
+ target[index] = ObjectUtils.copyRecursive(target[index], item, predicate, copies);
277
+ else
278
+ target.push(ObjectUtils.copyRecursive(null, item, predicate, copies));
279
+ });
280
+ }
281
+ else {
282
+ target = Object.assign({}, target);
283
+ copies.set(source, target);
284
+ Object.keys(source).forEach((key) => {
285
+ if (!predicate(source[key], key, target, source))
286
+ return;
287
+ target[key] = ObjectUtils.copyRecursive(target[key], source[key], predicate, copies);
288
+ });
289
+ }
274
290
  }
275
- return Object.keys(source).reduce((result, key) => {
276
- if (!predicate(source[key], key, result, source))
277
- return result;
278
- result[key] = ObjectUtils.copyRecursive(result[key], source[key], predicate);
279
- return result;
280
- }, Object.assign({}, target));
291
+ return copies.get(source);
281
292
  }
282
293
  }
283
294
 
@@ -986,6 +997,31 @@ class GenericValue extends Subject {
986
997
  }
987
998
  }
988
999
 
1000
+ class FileSystemEntry {
1001
+ constructor(label, meta, image, data, parent, openCb) {
1002
+ this.label = label;
1003
+ this.meta = meta;
1004
+ this.image = image;
1005
+ this.data = data;
1006
+ this.parent = parent;
1007
+ this.openCb = openCb;
1008
+ this.path = !parent ? [this] : parent.path.concat([this]);
1009
+ this.level = this.path.length - 1;
1010
+ this.classes = this.path
1011
+ .filter(t => typeof t.data === "string" && t.data.length > 0).map(t => t.data)
1012
+ .concat([`level-${this.level}`]);
1013
+ }
1014
+ open() {
1015
+ this.result = this.result || this.openCb(this.data, this);
1016
+ this.result.then(res => {
1017
+ if (Array.isArray(res))
1018
+ return;
1019
+ this.result = null;
1020
+ });
1021
+ return this.result;
1022
+ }
1023
+ }
1024
+
989
1025
  class Rect {
990
1026
  constructor(x, y, width, height, rotation = 0) {
991
1027
  this.x = x;
@@ -1194,7 +1230,7 @@ LoaderUtils.stylePromises = {};
1194
1230
 
1195
1231
  class MathUtils {
1196
1232
  static equal(a, b, epsilon = null) {
1197
- epsilon = ObjectUtils.isNumber(epsilon) ? epsilon : Math.E;
1233
+ epsilon = ObjectUtils.isNumber(epsilon) ? epsilon : MathUtils.EPSILON;
1198
1234
  return Math.abs(a - b) < epsilon;
1199
1235
  }
1200
1236
  static clamp(value, min, max) {
@@ -1204,7 +1240,36 @@ class MathUtils {
1204
1240
  precision = Math.pow(10, precision);
1205
1241
  return Math.round(value * precision / divider) / precision;
1206
1242
  }
1207
- }
1243
+ static approxIndex(x, values, epsilon = null) {
1244
+ if (!Array.isArray(values) || values.length == 0) {
1245
+ return -1;
1246
+ }
1247
+ let s = 0;
1248
+ let e = values.length - 1;
1249
+ while (s <= e) {
1250
+ const i = Math.floor((s + e) / 2);
1251
+ const v = values[i];
1252
+ if (MathUtils.equal(v, x, epsilon)) {
1253
+ return i;
1254
+ }
1255
+ if (v < x) {
1256
+ s = i + 1;
1257
+ }
1258
+ else {
1259
+ e = i - 1;
1260
+ }
1261
+ }
1262
+ const m = Math.max(e, 0);
1263
+ const a = values[s];
1264
+ const b = values[m];
1265
+ return Math.abs(a - x) < Math.abs(b - x) ? s : m;
1266
+ }
1267
+ static approximate(x, values, epsilon = null) {
1268
+ const index = MathUtils.approxIndex(x, values, epsilon);
1269
+ return values[index] ?? null;
1270
+ }
1271
+ }
1272
+ MathUtils.EPSILON = 1e-9;
1208
1273
 
1209
1274
  /**
1210
1275
  * Use this service to determine which is the current environment
@@ -1866,6 +1931,13 @@ class ArrayUtils {
1866
1931
  }
1867
1932
  return result;
1868
1933
  }
1934
+ static unique(arr) {
1935
+ if (!ObjectUtils.isArray(arr))
1936
+ return [];
1937
+ return arr.filter((value, index, self) => {
1938
+ return self.indexOf(value) === index;
1939
+ });
1940
+ }
1869
1941
  }
1870
1942
 
1871
1943
  class SetUtils {
@@ -2005,6 +2077,8 @@ class AclService {
2005
2077
  return;
2006
2078
  info.dirty = false;
2007
2079
  const component = info.component;
2080
+ if (!info.component)
2081
+ return;
2008
2082
  if (info.first) {
2009
2083
  if (ObjectUtils.isFunction(component.onUserInitialized)) {
2010
2084
  component.onUserInitialized();
@@ -2483,9 +2557,10 @@ class StaticAuthService {
2483
2557
  }
2484
2558
 
2485
2559
  class ConfigService {
2486
- constructor(http, universal, rootElement, baseUrl, baseConfig = null, scriptParams = null) {
2560
+ constructor(http, universal, injector, rootElement, baseUrl, baseConfig = null, scriptParams = null) {
2487
2561
  this.http = http;
2488
2562
  this.universal = universal;
2563
+ this.injector = injector;
2489
2564
  this.rootElement = rootElement;
2490
2565
  this.baseUrl = baseUrl;
2491
2566
  for (const key in []) {
@@ -2566,11 +2641,11 @@ class ConfigService {
2566
2641
  return decodeURIComponent(results[2].replace(/\+/g, " "));
2567
2642
  }
2568
2643
  }
2569
- ConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConfigService, deps: [{ token: i1$1.HttpClient }, { token: UniversalService }, { token: ROOT_ELEMENT }, { token: APP_BASE_URL }, { token: BASE_CONFIG, optional: true }, { token: SCRIPT_PARAMS, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2644
+ ConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConfigService, deps: [{ token: i1$1.HttpClient }, { token: UniversalService }, { token: i0.Injector }, { token: ROOT_ELEMENT }, { token: APP_BASE_URL }, { token: BASE_CONFIG, optional: true }, { token: SCRIPT_PARAMS, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2570
2645
  ConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConfigService });
2571
2646
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConfigService, decorators: [{
2572
2647
  type: Injectable
2573
- }], ctorParameters: function () { return [{ type: i1$1.HttpClient }, { type: UniversalService }, { type: undefined, decorators: [{
2648
+ }], ctorParameters: function () { return [{ type: i1$1.HttpClient }, { type: UniversalService }, { type: i0.Injector }, { type: undefined, decorators: [{
2574
2649
  type: Inject,
2575
2650
  args: [ROOT_ELEMENT]
2576
2651
  }] }, { type: undefined, decorators: [{
@@ -2679,7 +2754,8 @@ class FormatterService {
2679
2754
  const num = ObjectUtils.isNumber(value) ? value : parseFloat(value) || 0;
2680
2755
  const str = (num / divider).toLocaleString(this.language.currentLanguage, {
2681
2756
  minimumFractionDigits: precision,
2682
- maximumFractionDigits: precision
2757
+ maximumFractionDigits: precision,
2758
+ useGrouping: false
2683
2759
  });
2684
2760
  return ObjectUtils.evaluate(format || this.defaultNumberFormat, { num: str });
2685
2761
  }
@@ -3661,6 +3737,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
3661
3737
  }]
3662
3738
  }] });
3663
3739
 
3740
+ class PopPipe {
3741
+ transform(value) {
3742
+ return !Array.isArray(value) ? null : Array.from(value).pop();
3743
+ }
3744
+ }
3745
+ PopPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PopPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3746
+ PopPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PopPipe, name: "pop" });
3747
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PopPipe, decorators: [{
3748
+ type: Pipe,
3749
+ args: [{
3750
+ name: "pop"
3751
+ }]
3752
+ }] });
3753
+
3664
3754
  function defaultReducer(result) {
3665
3755
  return result;
3666
3756
  }
@@ -3799,6 +3889,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
3799
3889
  }]
3800
3890
  }], ctorParameters: function () { return [{ type: i1$2.DomSanitizer }]; } });
3801
3891
 
3892
+ class ShiftPipe {
3893
+ transform(value) {
3894
+ return !Array.isArray(value) ? null : Array.from(value).shift();
3895
+ }
3896
+ }
3897
+ ShiftPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ShiftPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3898
+ ShiftPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ShiftPipe, name: "shift" });
3899
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ShiftPipe, decorators: [{
3900
+ type: Pipe,
3901
+ args: [{
3902
+ name: "shift"
3903
+ }]
3904
+ }] });
3905
+
3906
+ class SplitPipe {
3907
+ transform(value, separator = ".") {
3908
+ return `${value}`.split(separator);
3909
+ }
3910
+ }
3911
+ SplitPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: SplitPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3912
+ SplitPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: SplitPipe, name: "split" });
3913
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: SplitPipe, decorators: [{
3914
+ type: Pipe,
3915
+ args: [{
3916
+ name: "split"
3917
+ }]
3918
+ }] });
3919
+
3802
3920
  class TranslatePipe {
3803
3921
  constructor(cdr, language) {
3804
3922
  this.cdr = cdr;
@@ -4587,10 +4705,10 @@ class UnorderedListComponent {
4587
4705
  }
4588
4706
  }
4589
4707
  UnorderedListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
4590
- UnorderedListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.8", type: UnorderedListComponent, selector: "unordered-list", inputs: { data: "data", keyPrefix: "keyPrefix", listStyle: "listStyle", path: "path", level: "level", templates: "templates" }, queries: [{ propertyName: "templateDirectives", predicate: UnorderedListTemplateDirective }], viewQueries: [{ propertyName: "defaultKeyTemplate", first: true, predicate: ["defaultKeyTemplate"], descendants: true }, { propertyName: "defaultValueTemplate", first: true, predicate: ["defaultValueTemplate"], descendants: true }, { propertyName: "defaultItemTemplate", first: true, predicate: ["defaultItemTemplate"], descendants: true }], usesOnChanges: true, ngImport: i0, 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", components: [{ type: UnorderedListComponent, selector: "unordered-list", inputs: ["data", "keyPrefix", "listStyle", "path", "level", "templates"] }], directives: [{ type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: UnorderedListItemDirective, selector: "[unorderedListItem]", inputs: ["unorderedListItem", "type", "data", "keyPrefix", "listStyle", "path", "level", "templates", "defaultTemplates"] }, { type: i1$3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i1$3.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i1$3.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1$3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1$3.NgSwitchDefault, selector: "[ngSwitchDefault]" }], pipes: { "translate": TranslatePipe, "entries": EntriesPipe } });
4708
+ UnorderedListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.8", type: UnorderedListComponent, selector: "unordered-list", inputs: { data: "data", keyPrefix: "keyPrefix", listStyle: "listStyle", path: "path", level: "level", templates: "templates" }, queries: [{ propertyName: "templateDirectives", predicate: UnorderedListTemplateDirective }], viewQueries: [{ propertyName: "defaultKeyTemplate", first: true, predicate: ["defaultKeyTemplate"], descendants: true }, { propertyName: "defaultValueTemplate", first: true, predicate: ["defaultValueTemplate"], descendants: true }, { propertyName: "defaultItemTemplate", first: true, predicate: ["defaultItemTemplate"], descendants: true }], usesOnChanges: true, ngImport: i0, 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", components: [{ type: UnorderedListComponent, selector: "unordered-list", inputs: ["data", "keyPrefix", "listStyle", "path", "level", "templates"] }], directives: [{ type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: UnorderedListItemDirective, selector: "[unorderedListItem]", inputs: ["unorderedListItem", "type", "data", "keyPrefix", "listStyle", "path", "level", "templates", "defaultTemplates"] }, { type: i1$3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i1$3.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i1$3.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1$3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1$3.NgSwitchDefault, selector: "[ngSwitchDefault]" }], pipes: { "translate": TranslatePipe, "entries": EntriesPipe } });
4591
4709
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListComponent, decorators: [{
4592
4710
  type: Component,
4593
- args: [{ selector: "unordered-list", 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" }]
4711
+ args: [{ selector: "unordered-list", 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" }]
4594
4712
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { data: [{
4595
4713
  type: Input
4596
4714
  }], keyPrefix: [{
@@ -4889,12 +5007,15 @@ const pipes = [
4889
5007
  MapPipe,
4890
5008
  MaxPipe,
4891
5009
  MinPipe,
5010
+ PopPipe,
4892
5011
  ReducePipe,
4893
5012
  RemapPipe,
4894
5013
  ReplacePipe,
4895
5014
  ReversePipe,
4896
5015
  RoundPipe,
4897
5016
  SafeHtmlPipe,
5017
+ ShiftPipe,
5018
+ SplitPipe,
4898
5019
  TranslatePipe,
4899
5020
  ValuesPipe
4900
5021
  ];
@@ -5063,8 +5184,8 @@ class NgxUtilsModule {
5063
5184
  }
5064
5185
  }
5065
5186
  NgxUtilsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxUtilsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
5066
- NgxUtilsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxUtilsModule, declarations: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GlobalTemplatePipe, GroupByPipe, IsTypePipe, JoinPipe, KeysPipe, MapPipe, MaxPipe, MinPipe, ReducePipe, RemapPipe, ReplacePipe, ReversePipe, RoundPipe, SafeHtmlPipe, TranslatePipe, ValuesPipe, AsyncMethodBase, AsyncMethodDirective, BackgroundDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, DynamicTableComponent, PaginationMenuComponent, UnorderedListComponent], imports: [CommonModule,
5067
- FormsModule], exports: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GlobalTemplatePipe, GroupByPipe, IsTypePipe, JoinPipe, KeysPipe, MapPipe, MaxPipe, MinPipe, ReducePipe, RemapPipe, ReplacePipe, ReversePipe, RoundPipe, SafeHtmlPipe, TranslatePipe, ValuesPipe, AsyncMethodBase, AsyncMethodDirective, BackgroundDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, DynamicTableComponent, PaginationMenuComponent, UnorderedListComponent, FormsModule] });
5187
+ NgxUtilsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxUtilsModule, declarations: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GlobalTemplatePipe, GroupByPipe, IsTypePipe, JoinPipe, KeysPipe, MapPipe, MaxPipe, MinPipe, PopPipe, ReducePipe, RemapPipe, ReplacePipe, ReversePipe, RoundPipe, SafeHtmlPipe, ShiftPipe, SplitPipe, TranslatePipe, ValuesPipe, AsyncMethodBase, AsyncMethodDirective, BackgroundDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, DynamicTableComponent, PaginationMenuComponent, UnorderedListComponent], imports: [CommonModule,
5188
+ FormsModule], exports: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GlobalTemplatePipe, GroupByPipe, IsTypePipe, JoinPipe, KeysPipe, MapPipe, MaxPipe, MinPipe, PopPipe, ReducePipe, RemapPipe, ReplacePipe, ReversePipe, RoundPipe, SafeHtmlPipe, ShiftPipe, SplitPipe, TranslatePipe, ValuesPipe, AsyncMethodBase, AsyncMethodDirective, BackgroundDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, DynamicTableComponent, PaginationMenuComponent, UnorderedListComponent, FormsModule] });
5068
5189
  NgxUtilsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxUtilsModule, providers: pipes, imports: [[
5069
5190
  CommonModule,
5070
5191
  FormsModule
@@ -5095,5 +5216,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
5095
5216
  * Generated bundle index. Do not edit.
5096
5217
  */
5097
5218
 
5098
- export { API_SERVICE, APP_BASE_URL, 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, 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, StickyClassDirective, StickyDirective, StorageMode, StorageService, StringUtils, TOASTER_SERVICE, TimerUtils, TranslatePipe, TranslatedUrlSerializer, UniqueUtils, UniversalService, UnorderedListComponent, UnorderedListItemDirective, UnorderedListTemplateDirective, UnorederedListTemplate, ValuedPromise, ValuesPipe, Vector };
5219
+ export { API_SERVICE, APP_BASE_URL, 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, StickyClassDirective, StickyDirective, StorageMode, StorageService, StringUtils, TOASTER_SERVICE, TimerUtils, TranslatePipe, TranslatedUrlSerializer, UniqueUtils, UniversalService, UnorderedListComponent, UnorderedListItemDirective, UnorderedListTemplateDirective, UnorederedListTemplate, ValuedPromise, ValuesPipe, Vector };
5099
5220
  //# sourceMappingURL=stemy-ngx-utils.mjs.map