@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
@@ -54,7 +54,10 @@ class ObjectUtils {
54
54
  Object.getOwnPropertyNames(obj).forEach(p => props.add(p));
55
55
  return Array.from(props);
56
56
  }
57
- static equals(a, b) {
57
+ static equals(a, b, visited = null) {
58
+ visited = visited || new Set();
59
+ if (visited.has(a) && visited.has(b))
60
+ return true;
58
61
  if (a === b)
59
62
  return true;
60
63
  if (a === null || b === null)
@@ -64,12 +67,14 @@ class ObjectUtils {
64
67
  const at = typeof a, bt = typeof b;
65
68
  let length, key, keySet;
66
69
  if (at == bt && at == "object") {
70
+ visited.add(a);
71
+ visited.add(b);
67
72
  if (Array.isArray(a)) {
68
73
  if (!Array.isArray(b))
69
74
  return false;
70
75
  if ((length = a.length) == b.length) {
71
76
  for (key = 0; key < length; key++) {
72
- if (!ObjectUtils.equals(a[key], b[key]))
77
+ if (!ObjectUtils.equals(a[key], b[key], visited))
73
78
  return false;
74
79
  }
75
80
  return true;
@@ -82,7 +87,7 @@ class ObjectUtils {
82
87
  keySet = Object.create(null);
83
88
  for (key in a) {
84
89
  if (a.hasOwnProperty(key)) {
85
- if (!ObjectUtils.equals(a[key], b[key])) {
90
+ if (!ObjectUtils.equals(a[key], b[key], visited)) {
86
91
  return false;
87
92
  }
88
93
  keySet[key] = true;
@@ -176,13 +181,13 @@ class ObjectUtils {
176
181
  return isNaN(key) || isArray ? target : Object.values(target);
177
182
  }
178
183
  static filter(obj, predicate) {
179
- return ObjectUtils.copyRecursive(null, obj, predicate);
184
+ return ObjectUtils.copyRecursive(null, obj, predicate, new Map());
180
185
  }
181
186
  static copy(obj) {
182
- return ObjectUtils.copyRecursive(null, obj);
187
+ return ObjectUtils.copyRecursive(null, obj, null, new Map());
183
188
  }
184
189
  static assign(target, source, predicate) {
185
- return ObjectUtils.copyRecursive(target, source, predicate);
190
+ return ObjectUtils.copyRecursive(target, source, predicate, new Map());
186
191
  }
187
192
  static getType(obj) {
188
193
  const regex = new RegExp("\\s([a-zA-Z]+)");
@@ -257,28 +262,34 @@ class ObjectUtils {
257
262
  const str = ObjectUtils.isDefined(obj) ? obj.toString() : "";
258
263
  return str.length >= width ? str : new Array(width - str.length + 1).join(chr) + str;
259
264
  }
260
- static copyRecursive(target, source, predicate) {
265
+ static copyRecursive(target, source, predicate, copies) {
261
266
  predicate = predicate || defaultPredicate;
262
267
  if (ObjectUtils.isPrimitive(source) || ObjectUtils.isDate(source) || ObjectUtils.isBlob(source) || ObjectUtils.isFunction(source))
263
268
  return source;
264
- if (ObjectUtils.isArray(source)) {
265
- target = ObjectUtils.isArray(target) ? Array.from(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);
271
- else
272
- target.push(ObjectUtils.copyRecursive(null, item, predicate));
273
- });
274
- return target;
269
+ if (!copies.has(source)) {
270
+ if (ObjectUtils.isArray(source)) {
271
+ target = ObjectUtils.isArray(target) ? Array.from(target) : [];
272
+ copies.set(source, target);
273
+ source.forEach((item, index) => {
274
+ if (!predicate(item, index, target, source))
275
+ return;
276
+ if (target.length > index)
277
+ target[index] = ObjectUtils.copyRecursive(target[index], item, predicate, copies);
278
+ else
279
+ target.push(ObjectUtils.copyRecursive(null, item, predicate, copies));
280
+ });
281
+ }
282
+ else {
283
+ target = Object.assign({}, target);
284
+ copies.set(source, target);
285
+ Object.keys(source).forEach((key) => {
286
+ if (!predicate(source[key], key, target, source))
287
+ return;
288
+ target[key] = ObjectUtils.copyRecursive(target[key], source[key], predicate, copies);
289
+ });
290
+ }
275
291
  }
276
- return Object.keys(source).reduce((result, key) => {
277
- if (!predicate(source[key], key, result, source))
278
- return result;
279
- result[key] = ObjectUtils.copyRecursive(result[key], source[key], predicate);
280
- return result;
281
- }, Object.assign({}, target));
292
+ return copies.get(source);
282
293
  }
283
294
  }
284
295
 
@@ -987,6 +998,31 @@ class GenericValue extends Subject {
987
998
  }
988
999
  }
989
1000
 
1001
+ class FileSystemEntry {
1002
+ constructor(label, meta, image, data, parent, openCb) {
1003
+ this.label = label;
1004
+ this.meta = meta;
1005
+ this.image = image;
1006
+ this.data = data;
1007
+ this.parent = parent;
1008
+ this.openCb = openCb;
1009
+ this.path = !parent ? [this] : parent.path.concat([this]);
1010
+ this.level = this.path.length - 1;
1011
+ this.classes = this.path
1012
+ .filter(t => typeof t.data === "string" && t.data.length > 0).map(t => t.data)
1013
+ .concat([`level-${this.level}`]);
1014
+ }
1015
+ open() {
1016
+ this.result = this.result || this.openCb(this.data, this);
1017
+ this.result.then(res => {
1018
+ if (Array.isArray(res))
1019
+ return;
1020
+ this.result = null;
1021
+ });
1022
+ return this.result;
1023
+ }
1024
+ }
1025
+
990
1026
  class Rect {
991
1027
  constructor(x, y, width, height, rotation = 0) {
992
1028
  this.x = x;
@@ -1195,7 +1231,7 @@ LoaderUtils.stylePromises = {};
1195
1231
 
1196
1232
  class MathUtils {
1197
1233
  static equal(a, b, epsilon = null) {
1198
- epsilon = ObjectUtils.isNumber(epsilon) ? epsilon : Math.E;
1234
+ epsilon = ObjectUtils.isNumber(epsilon) ? epsilon : MathUtils.EPSILON;
1199
1235
  return Math.abs(a - b) < epsilon;
1200
1236
  }
1201
1237
  static clamp(value, min, max) {
@@ -1205,7 +1241,37 @@ class MathUtils {
1205
1241
  precision = Math.pow(10, precision);
1206
1242
  return Math.round(value * precision / divider) / precision;
1207
1243
  }
1208
- }
1244
+ static approxIndex(x, values, epsilon = null) {
1245
+ if (!Array.isArray(values) || values.length == 0) {
1246
+ return -1;
1247
+ }
1248
+ let s = 0;
1249
+ let e = values.length - 1;
1250
+ while (s <= e) {
1251
+ const i = Math.floor((s + e) / 2);
1252
+ const v = values[i];
1253
+ if (MathUtils.equal(v, x, epsilon)) {
1254
+ return i;
1255
+ }
1256
+ if (v < x) {
1257
+ s = i + 1;
1258
+ }
1259
+ else {
1260
+ e = i - 1;
1261
+ }
1262
+ }
1263
+ const m = Math.max(e, 0);
1264
+ const a = values[s];
1265
+ const b = values[m];
1266
+ return Math.abs(a - x) < Math.abs(b - x) ? s : m;
1267
+ }
1268
+ static approximate(x, values, epsilon = null) {
1269
+ var _a;
1270
+ const index = MathUtils.approxIndex(x, values, epsilon);
1271
+ return (_a = values[index]) !== null && _a !== void 0 ? _a : null;
1272
+ }
1273
+ }
1274
+ MathUtils.EPSILON = 1e-9;
1209
1275
 
1210
1276
  /**
1211
1277
  * Use this service to determine which is the current environment
@@ -1886,6 +1952,13 @@ class ArrayUtils {
1886
1952
  }
1887
1953
  return result;
1888
1954
  }
1955
+ static unique(arr) {
1956
+ if (!ObjectUtils.isArray(arr))
1957
+ return [];
1958
+ return arr.filter((value, index, self) => {
1959
+ return self.indexOf(value) === index;
1960
+ });
1961
+ }
1889
1962
  }
1890
1963
 
1891
1964
  class SetUtils {
@@ -2025,6 +2098,8 @@ class AclService {
2025
2098
  return;
2026
2099
  info.dirty = false;
2027
2100
  const component = info.component;
2101
+ if (!info.component)
2102
+ return;
2028
2103
  if (info.first) {
2029
2104
  if (ObjectUtils.isFunction(component.onUserInitialized)) {
2030
2105
  component.onUserInitialized();
@@ -2510,9 +2585,10 @@ class StaticAuthService {
2510
2585
  }
2511
2586
 
2512
2587
  class ConfigService {
2513
- constructor(http, universal, rootElement, baseUrl, baseConfig = null, scriptParams = null) {
2588
+ constructor(http, universal, injector, rootElement, baseUrl, baseConfig = null, scriptParams = null) {
2514
2589
  this.http = http;
2515
2590
  this.universal = universal;
2591
+ this.injector = injector;
2516
2592
  this.rootElement = rootElement;
2517
2593
  this.baseUrl = baseUrl;
2518
2594
  for (const key in []) {
@@ -2596,12 +2672,12 @@ class ConfigService {
2596
2672
  return decodeURIComponent(results[2].replace(/\+/g, " "));
2597
2673
  }
2598
2674
  }
2599
- 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 });
2675
+ 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 });
2600
2676
  ConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConfigService });
2601
2677
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ConfigService, decorators: [{
2602
2678
  type: Injectable
2603
2679
  }], ctorParameters: function () {
2604
- return [{ type: i1$1.HttpClient }, { type: UniversalService }, { type: undefined, decorators: [{
2680
+ return [{ type: i1$1.HttpClient }, { type: UniversalService }, { type: i0.Injector }, { type: undefined, decorators: [{
2605
2681
  type: Inject,
2606
2682
  args: [ROOT_ELEMENT]
2607
2683
  }] }, { type: undefined, decorators: [{
@@ -2711,7 +2787,8 @@ class FormatterService {
2711
2787
  const num = ObjectUtils.isNumber(value) ? value : parseFloat(value) || 0;
2712
2788
  const str = (num / divider).toLocaleString(this.language.currentLanguage, {
2713
2789
  minimumFractionDigits: precision,
2714
- maximumFractionDigits: precision
2790
+ maximumFractionDigits: precision,
2791
+ useGrouping: false
2715
2792
  });
2716
2793
  return ObjectUtils.evaluate(format || this.defaultNumberFormat, { num: str });
2717
2794
  }
@@ -3720,6 +3797,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
3720
3797
  }]
3721
3798
  }] });
3722
3799
 
3800
+ class PopPipe {
3801
+ transform(value) {
3802
+ return !Array.isArray(value) ? null : Array.from(value).pop();
3803
+ }
3804
+ }
3805
+ PopPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PopPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3806
+ PopPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PopPipe, name: "pop" });
3807
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: PopPipe, decorators: [{
3808
+ type: Pipe,
3809
+ args: [{
3810
+ name: "pop"
3811
+ }]
3812
+ }] });
3813
+
3723
3814
  function defaultReducer(result) {
3724
3815
  return result;
3725
3816
  }
@@ -3858,6 +3949,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
3858
3949
  }]
3859
3950
  }], ctorParameters: function () { return [{ type: i1$2.DomSanitizer }]; } });
3860
3951
 
3952
+ class ShiftPipe {
3953
+ transform(value) {
3954
+ return !Array.isArray(value) ? null : Array.from(value).shift();
3955
+ }
3956
+ }
3957
+ ShiftPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ShiftPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3958
+ ShiftPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ShiftPipe, name: "shift" });
3959
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ShiftPipe, decorators: [{
3960
+ type: Pipe,
3961
+ args: [{
3962
+ name: "shift"
3963
+ }]
3964
+ }] });
3965
+
3966
+ class SplitPipe {
3967
+ transform(value, separator = ".") {
3968
+ return `${value}`.split(separator);
3969
+ }
3970
+ }
3971
+ SplitPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: SplitPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
3972
+ SplitPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: SplitPipe, name: "split" });
3973
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: SplitPipe, decorators: [{
3974
+ type: Pipe,
3975
+ args: [{
3976
+ name: "split"
3977
+ }]
3978
+ }] });
3979
+
3861
3980
  class TranslatePipe {
3862
3981
  constructor(cdr, language) {
3863
3982
  this.cdr = cdr;
@@ -4654,10 +4773,10 @@ class UnorderedListComponent {
4654
4773
  }
4655
4774
  }
4656
4775
  UnorderedListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
4657
- 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 } });
4776
+ 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 } });
4658
4777
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: UnorderedListComponent, decorators: [{
4659
4778
  type: Component,
4660
- 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" }]
4779
+ 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" }]
4661
4780
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { data: [{
4662
4781
  type: Input
4663
4782
  }], keyPrefix: [{
@@ -4958,12 +5077,15 @@ const pipes = [
4958
5077
  MapPipe,
4959
5078
  MaxPipe,
4960
5079
  MinPipe,
5080
+ PopPipe,
4961
5081
  ReducePipe,
4962
5082
  RemapPipe,
4963
5083
  ReplacePipe,
4964
5084
  ReversePipe,
4965
5085
  RoundPipe,
4966
5086
  SafeHtmlPipe,
5087
+ ShiftPipe,
5088
+ SplitPipe,
4967
5089
  TranslatePipe,
4968
5090
  ValuesPipe
4969
5091
  ];
@@ -5132,8 +5254,8 @@ class NgxUtilsModule {
5132
5254
  }
5133
5255
  }
5134
5256
  NgxUtilsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxUtilsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
5135
- 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,
5136
- 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] });
5257
+ 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,
5258
+ 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] });
5137
5259
  NgxUtilsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NgxUtilsModule, providers: pipes, imports: [[
5138
5260
  CommonModule,
5139
5261
  FormsModule
@@ -5164,5 +5286,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
5164
5286
  * Generated bundle index. Do not edit.
5165
5287
  */
5166
5288
 
5167
- 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 };
5289
+ 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 };
5168
5290
  //# sourceMappingURL=stemy-ngx-utils.mjs.map