@stemy/ngx-utils 13.4.2 → 13.5.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 (42) hide show
  1. package/bundles/stemy-ngx-utils.umd.js +195 -85
  2. package/bundles/stemy-ngx-utils.umd.js.map +1 -1
  3. package/esm2015/ngx-utils/common-types.js +6 -1
  4. package/esm2015/ngx-utils/pipes/filter.pipe.js +6 -11
  5. package/esm2015/ngx-utils/pipes/find.pipe.js +9 -9
  6. package/esm2015/ngx-utils/services/api.service.js +6 -2
  7. package/esm2015/ngx-utils/services/base-http.service.js +8 -9
  8. package/esm2015/ngx-utils/services/config.service.js +14 -1
  9. package/esm2015/ngx-utils/services/language.service.js +16 -4
  10. package/esm2015/ngx-utils/services/universal.service.js +10 -7
  11. package/esm2015/ngx-utils/utils/object.utils.js +76 -30
  12. package/esm2015/public_api.js +2 -2
  13. package/esm2015/stemy-ngx-utils.js +3 -2
  14. package/esm2020/ngx-utils/common-types.mjs +6 -1
  15. package/esm2020/ngx-utils/components/dynamic-table/dynamic-table.component.mjs +6 -3
  16. package/esm2020/ngx-utils/directives/pagination-item.directive.mjs +3 -2
  17. package/esm2020/ngx-utils/pipes/filter.pipe.mjs +6 -11
  18. package/esm2020/ngx-utils/pipes/find.pipe.mjs +9 -9
  19. package/esm2020/ngx-utils/services/api.service.mjs +6 -2
  20. package/esm2020/ngx-utils/services/base-http.service.mjs +7 -8
  21. package/esm2020/ngx-utils/services/config.service.mjs +14 -1
  22. package/esm2020/ngx-utils/services/language.service.mjs +15 -4
  23. package/esm2020/ngx-utils/services/universal.service.mjs +10 -7
  24. package/esm2020/ngx-utils/utils/object.utils.mjs +76 -28
  25. package/esm2020/public_api.mjs +2 -2
  26. package/fesm2015/stemy-ngx-utils.js +143 -65
  27. package/fesm2015/stemy-ngx-utils.js.map +1 -1
  28. package/fesm2015/stemy-ngx-utils.mjs +149 -66
  29. package/fesm2015/stemy-ngx-utils.mjs.map +1 -1
  30. package/fesm2020/stemy-ngx-utils.mjs +148 -66
  31. package/fesm2020/stemy-ngx-utils.mjs.map +1 -1
  32. package/ngx-utils/common-types.d.ts +10 -1
  33. package/ngx-utils/components/dynamic-table/dynamic-table.component.d.ts +2 -1
  34. package/ngx-utils/pipes/find.pipe.d.ts +1 -1
  35. package/ngx-utils/services/base-http.service.d.ts +1 -0
  36. package/ngx-utils/services/config.service.d.ts +1 -0
  37. package/ngx-utils/services/language.service.d.ts +3 -3
  38. package/ngx-utils/services/universal.service.d.ts +3 -2
  39. package/ngx-utils/utils/object.utils.d.ts +3 -0
  40. package/package.json +2 -2
  41. package/public_api.d.ts +1 -1
  42. package/stemy-ngx-utils.metadata.json +1 -1
@@ -13,8 +13,12 @@ import { ɵangular_packages_platform_browser_platform_browser_g, DomSanitizer, E
13
13
  import { addListener, removeListener } from 'resize-detector';
14
14
  import { FormsModule } from '@angular/forms';
15
15
 
16
- const defaultPredicate = () => true;
17
- const ɵ0 = defaultPredicate;
16
+ function defaultPredicate(value, key, target, source) {
17
+ return true;
18
+ }
19
+ function shouldCopyDefault(key, value) {
20
+ return true;
21
+ }
18
22
  const hasBlob = typeof Blob !== "undefined" && !!Blob;
19
23
  const hasFile = typeof File !== "undefined" && !!File;
20
24
  class ObjectUtils {
@@ -174,17 +178,19 @@ class ObjectUtils {
174
178
  return isNaN(key) || isArray ? target : Object.values(target);
175
179
  }
176
180
  static filter(obj, predicate) {
177
- return ObjectUtils.copyRecursive(null, obj, predicate, new Map());
181
+ return ObjectUtils.copyRecursive(null, obj, predicate || defaultPredicate, new Map());
178
182
  }
179
183
  static copy(obj) {
180
- return ObjectUtils.copyRecursive(null, obj, null, new Map());
184
+ return ObjectUtils.copyRecursive(null, obj, defaultPredicate, new Map());
181
185
  }
182
186
  static assign(target, source, predicate) {
183
- return ObjectUtils.copyRecursive(target, source, predicate, new Map());
187
+ return ObjectUtils.copyRecursive(target, source, predicate || defaultPredicate, new Map());
184
188
  }
185
189
  static getType(obj) {
186
190
  const regex = new RegExp("\\s([a-zA-Z]+)");
187
- return Object.prototype.toString.call(obj).match(regex)[1].toLowerCase();
191
+ const target = !obj ? null : obj.constructor;
192
+ const type = !target ? null : Reflect.getMetadata("objectType", target);
193
+ return (type || Object.prototype.toString.call(obj).match(regex)[1]).toLowerCase();
188
194
  }
189
195
  static isPrimitive(value) {
190
196
  const type = typeof value;
@@ -231,6 +237,9 @@ class ObjectUtils {
231
237
  static isSet(value) {
232
238
  return value instanceof Set;
233
239
  }
240
+ static isConstructor(value) {
241
+ return (value && typeof value === "function" && value.prototype && value.prototype.constructor) === value && value.name !== "Object";
242
+ }
234
243
  static checkInterface(obj, interFaceObject) {
235
244
  return ObjectUtils.isInterface(obj, interFaceObject);
236
245
  }
@@ -256,33 +265,71 @@ class ObjectUtils {
256
265
  return str.length >= width ? str : new Array(width - str.length + 1).join(chr) + str;
257
266
  }
258
267
  static copyRecursive(target, source, predicate, copies) {
259
- predicate = predicate || defaultPredicate;
260
268
  if (ObjectUtils.isPrimitive(source) || ObjectUtils.isDate(source) || ObjectUtils.isBlob(source) || ObjectUtils.isFunction(source))
261
269
  return source;
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
- });
270
+ if (copies.has(source))
271
+ return copies.get(source);
272
+ if (ObjectUtils.isArray(source)) {
273
+ target = ObjectUtils.isArray(target) ? Array.from(target) : [];
274
+ copies.set(source, target);
275
+ for (let index = 0; index < source.length; index++) {
276
+ const item = source[index];
277
+ if (!predicate(item, index, target, source))
278
+ continue;
279
+ if (target.length > index)
280
+ target[index] = ObjectUtils.copyRecursive(target[index], item, predicate, copies);
281
+ else
282
+ target.push(ObjectUtils.copyRecursive(null, item, predicate, copies));
274
283
  }
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
- });
284
+ return target;
285
+ }
286
+ // If object defines __shouldCopy as false, then don't copy it
287
+ if (source.__shouldCopy === false)
288
+ return source;
289
+ // Copy object
290
+ const shouldCopy = ObjectUtils.isFunction(source.__shouldCopy) ? source.__shouldCopy : shouldCopyDefault;
291
+ if (ObjectUtils.isConstructor(source.constructor)) {
292
+ if (!target) {
293
+ try {
294
+ target = new source.constructor();
295
+ }
296
+ catch (e) {
297
+ const proto = source.constructor.prototype || source.prototype;
298
+ target = Object.create(proto);
299
+ }
283
300
  }
284
301
  }
285
- return copies.get(source);
302
+ else {
303
+ target = Object.assign({}, target || {});
304
+ }
305
+ // Set to copies to prevent circular references
306
+ copies.set(source, target);
307
+ // Copy map entries
308
+ if (target instanceof Map) {
309
+ if (source instanceof Map) {
310
+ for (const [key, value] of source.entries()) {
311
+ if (!predicate(value, key, target, source))
312
+ continue;
313
+ target.set(key, !shouldCopy(key, value) ? value : ObjectUtils.copyRecursive(target.get(key), value, predicate, copies));
314
+ }
315
+ }
316
+ return target;
317
+ }
318
+ // Copy object members
319
+ const keys = Object.keys(source);
320
+ for (const key of keys) {
321
+ if (!predicate(source[key], key, target, source))
322
+ continue;
323
+ target[key] = !shouldCopy(key, source[key]) ? source[key] : ObjectUtils.copyRecursive(target[key], source[key], predicate, copies);
324
+ }
325
+ // Copy object properties
326
+ const descriptors = Object.getOwnPropertyDescriptors(source);
327
+ for (const key of Object.keys(descriptors)) {
328
+ if (keys.indexOf(key) >= 0)
329
+ continue;
330
+ Object.defineProperty(target, key, descriptors[key]);
331
+ }
332
+ return target;
286
333
  }
287
334
  }
288
335
 
@@ -345,6 +392,11 @@ function FactoryDependencies(...dependencies) {
345
392
  ReflectUtils.defineMetadata("factoryDependencies", dependencies, target, method);
346
393
  };
347
394
  }
395
+ function ObjectType(type) {
396
+ return function (target) {
397
+ ReflectUtils.defineMetadata("objectType", type, target);
398
+ };
399
+ }
348
400
  class PaginationItemContext {
349
401
  constructor(item, parallelItem, count, index, dataIndex) {
350
402
  this.item = item;
@@ -1297,25 +1349,25 @@ class UniversalService {
1297
1349
  : this.dds.getDeviceInfo();
1298
1350
  }
1299
1351
  get browserName() {
1300
- return this.dds.browser;
1352
+ return (this.dds.browser || "").toLowerCase();
1301
1353
  }
1302
1354
  get browserVersion() {
1303
1355
  return this.dds.browser_version;
1304
1356
  }
1305
1357
  get isExplorer() {
1306
- return this.dds.browser == "ie";
1358
+ return this.checkBrowser("ie");
1307
1359
  }
1308
1360
  get isEdge() {
1309
- return this.dds.browser == "ms-edge";
1361
+ return this.checkBrowser("edge");
1310
1362
  }
1311
1363
  get isChrome() {
1312
- return this.dds.browser == "chrome";
1364
+ return this.checkBrowser("chrome");
1313
1365
  }
1314
1366
  get isFirefox() {
1315
- return this.dds.browser == "firefox";
1367
+ return this.checkBrowser("firefox");
1316
1368
  }
1317
1369
  get isSafari() {
1318
- return this.dds.browser == "safari";
1370
+ return this.checkBrowser("safari");
1319
1371
  }
1320
1372
  get isTablet() {
1321
1373
  return this.dds.isTablet();
@@ -1329,6 +1381,9 @@ class UniversalService {
1329
1381
  get isCrawler() {
1330
1382
  return this.crawler;
1331
1383
  }
1384
+ checkBrowser(name) {
1385
+ return this.browserName.includes(name) || false;
1386
+ }
1332
1387
  }
1333
1388
  UniversalService.decorators = [
1334
1389
  { type: Injectable }
@@ -2367,8 +2422,8 @@ class BaseHttpService {
2367
2422
  // If we use token auth
2368
2423
  if (this.client.renewTokenFunc && headers.has(authKey)) {
2369
2424
  const currentTime = new Date().getTime();
2370
- const userTokenTime = this.storage.get("userTokenTime") || currentTime;
2371
- // And the last request was a long long time ago
2425
+ const userTokenTime = this.getUserTokenTime() || currentTime;
2426
+ // And the last request was a long-long time ago
2372
2427
  if (currentTime - 600000 > userTokenTime) {
2373
2428
  this.client.renewTokenFunc();
2374
2429
  }
@@ -2380,7 +2435,7 @@ class BaseHttpService {
2380
2435
  }
2381
2436
  const headers = options.headers;
2382
2437
  const authKey = "Authorization";
2383
- // If an authorization header exists and we still have an Unauthorized response prompt the user to log in again
2438
+ // If an authorization header exists, and we still have an Unauthorized response prompt the user to log in again
2384
2439
  if (headers.has(authKey) && response.status == 401) {
2385
2440
  const pushed = this.pushFailedRequest(url, options, () => {
2386
2441
  options.headers = this.makeHeaders(options.originalHeaders);
@@ -2395,6 +2450,9 @@ class BaseHttpService {
2395
2450
  });
2396
2451
  });
2397
2452
  }
2453
+ getUserTokenTime() {
2454
+ return this.storage.get("userTokenTime");
2455
+ }
2398
2456
  pushFailedRequest(url, options, req) {
2399
2457
  if (url.indexOf("tokens") >= 0)
2400
2458
  return false;
@@ -2438,11 +2496,7 @@ class BaseHttpService {
2438
2496
  }
2439
2497
  absoluteUrl(url, options) {
2440
2498
  return __awaiter(this, void 0, void 0, function* () {
2441
- const absoluteUrl = this.parseUrl(url);
2442
- if (url == "api-docs") {
2443
- return absoluteUrl.replace("/api", "");
2444
- }
2445
- return absoluteUrl;
2499
+ return this.parseUrl(url);
2446
2500
  });
2447
2501
  }
2448
2502
  expressRequestUrl(url) {
@@ -2471,7 +2525,11 @@ class ApiService extends BaseHttpService {
2471
2525
  return "api";
2472
2526
  }
2473
2527
  url(url) {
2474
- return this.expressRequestUrl(`/api/${url}`);
2528
+ const baseUrl = this.expressRequestUrl(`/api/${url}`);
2529
+ if (url == "api-docs" || url == "socket") {
2530
+ return baseUrl.replace("/api/", "/");
2531
+ }
2532
+ return baseUrl;
2475
2533
  }
2476
2534
  get(url, options, body) {
2477
2535
  return this.getPromise(url, options, body);
@@ -2597,6 +2655,19 @@ class ConfigService {
2597
2655
  prepareConfig(config) {
2598
2656
  return Promise.resolve(config);
2599
2657
  }
2658
+ cloneRootElem() {
2659
+ if (this.rootElement instanceof HTMLElement) {
2660
+ const clone = this.rootElement.cloneNode(true);
2661
+ const children = Array.from(clone.childNodes);
2662
+ children.forEach(child => {
2663
+ if (child instanceof HTMLElement) {
2664
+ child.remove();
2665
+ }
2666
+ });
2667
+ return clone;
2668
+ }
2669
+ return this.rootElement.cloneNode(true);
2670
+ }
2600
2671
  prepareUrl(url, ending) {
2601
2672
  var _a;
2602
2673
  const project = !this.loadedConfig ? "" : this.loadedConfig.project;
@@ -2980,9 +3051,21 @@ class LanguageService extends StaticLanguageService {
2980
3051
  this.languageSettings.next(settings);
2981
3052
  const devLanguages = settings.devLanguages || [];
2982
3053
  this.languageList = (settings.languages || []).filter(lang => {
3054
+ var _a;
3055
+ const unavailable = (_a = settings.settings[lang]) === null || _a === void 0 ? void 0 : _a.unavailable;
3056
+ if (unavailable) {
3057
+ const parts = unavailable.split("/");
3058
+ const value = parts[0] || parts[1];
3059
+ const flags = parts.length > 1 ? parts[parts.length - 1] : "g";
3060
+ if (new RegExp(value, flags).test(this.config.baseDomain))
3061
+ return false;
3062
+ }
2983
3063
  return devLanguages.indexOf(lang) < 0;
2984
3064
  });
2985
- const lang = this.languages.indexOf(defaultLanguage) < 0 ? settings.defaultLanguage : defaultLanguage;
3065
+ if (this.languageList.length === 0) {
3066
+ this.languageList = [defaultLanguage];
3067
+ }
3068
+ const lang = this.languages.indexOf(defaultLanguage) < 0 ? settings.defaultLanguage || this.languageList[0] : defaultLanguage;
2986
3069
  yield this.useLanguage(lang);
2987
3070
  this.events.languageChanged.emit(lang);
2988
3071
  });
@@ -3034,7 +3117,7 @@ class LanguageService extends StaticLanguageService {
3034
3117
  return this.translationRequests[lang];
3035
3118
  }
3036
3119
  loadSettings() {
3037
- this.settingsPromise = this.settingsPromise || this.client.get(`${this.config.translationUrl}languageSettings`).toPromise()
3120
+ this.settingsPromise = this.settingsPromise || (this.client.get(`${this.config.translationUrl}languageSettings`).toPromise())
3038
3121
  .then((settings) => {
3039
3122
  return settings;
3040
3123
  }, () => {
@@ -3045,7 +3128,7 @@ class LanguageService extends StaticLanguageService {
3045
3128
  settings: {
3046
3129
  de: {},
3047
3130
  hu: {},
3048
- end: {}
3131
+ en: {}
3049
3132
  }
3050
3133
  };
3051
3134
  });
@@ -3397,25 +3480,20 @@ class FilterPipe {
3397
3480
  const isObject = ObjectUtils.isObject(values);
3398
3481
  if (!isObject && !ObjectUtils.isArray(values))
3399
3482
  return [];
3400
- const filterFunc = ObjectUtils.isFunction(filter) ? filter : (value, key, params) => {
3401
- return ObjectUtils.evaluate(filter, {
3402
- value: value,
3403
- key: key,
3404
- item: value,
3405
- index: key,
3406
- params: params
3407
- });
3483
+ const filterFunc = ObjectUtils.isFunction(filter) ? filter : (value, key, params, values) => {
3484
+ const index = key;
3485
+ return ObjectUtils.evaluate(filter, { value, key, params, values, index });
3408
3486
  };
3409
3487
  if (isObject) {
3410
3488
  return Object.keys(values).filter(key => {
3411
- return filterFunc(values[key], key, params);
3489
+ return filterFunc(values[key], key, params, values);
3412
3490
  }).reduce((result, key) => {
3413
3491
  result[key] = values[key];
3414
3492
  return result;
3415
3493
  }, {});
3416
3494
  }
3417
3495
  return values.filter((value, key) => {
3418
- return filterFunc(value, key, params);
3496
+ return filterFunc(value, key, params, values);
3419
3497
  });
3420
3498
  }
3421
3499
  }
@@ -3429,17 +3507,17 @@ function defaultFilter() {
3429
3507
  return true;
3430
3508
  }
3431
3509
  class FindPipe {
3432
- transform(values, filter = defaultFilter, params = {}) {
3510
+ transform(values, filter = defaultFilter, params) {
3433
3511
  if (!ObjectUtils.isArray(values))
3434
3512
  return [];
3435
- const filterFunc = ObjectUtils.isFunction(filter) ? filter : (value, index, params) => {
3436
- return ObjectUtils.evaluate(filter, {
3437
- value: value,
3438
- index: index,
3439
- params: params
3440
- });
3513
+ params = params || {};
3514
+ if (ObjectUtils.isObject(params)) {
3515
+ params.values = values;
3516
+ }
3517
+ const filterFunc = ObjectUtils.isFunction(filter) ? filter : (value, index, params, values) => {
3518
+ return ObjectUtils.evaluate(filter, { value, index, params, values });
3441
3519
  };
3442
- return values.find((value, index) => filterFunc(value, index, params));
3520
+ return values.find((value, index) => filterFunc(value, index, params, values));
3443
3521
  }
3444
3522
  }
3445
3523
  FindPipe.decorators = [
@@ -4978,5 +5056,5 @@ NgxUtilsModule.decorators = [
4978
5056
  * Generated bundle index. Do not edit.
4979
5057
  */
4980
5058
 
4981
- 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, StickyClassDirective, 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 };
5059
+ 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, ObjectType, 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, defaultPredicate as ɵa, pipes as ɵb, directives as ɵc, components as ɵd, providers as ɵe, loadConfig as ɵf };
4982
5060
  //# sourceMappingURL=stemy-ngx-utils.js.map