@stemy/ngx-utils 13.4.2 → 13.4.3

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 (39) 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/pipes/filter.pipe.mjs +6 -11
  16. package/esm2020/ngx-utils/pipes/find.pipe.mjs +9 -9
  17. package/esm2020/ngx-utils/services/api.service.mjs +6 -2
  18. package/esm2020/ngx-utils/services/base-http.service.mjs +7 -8
  19. package/esm2020/ngx-utils/services/config.service.mjs +14 -1
  20. package/esm2020/ngx-utils/services/language.service.mjs +15 -4
  21. package/esm2020/ngx-utils/services/universal.service.mjs +10 -7
  22. package/esm2020/ngx-utils/utils/object.utils.mjs +76 -28
  23. package/esm2020/public_api.mjs +2 -2
  24. package/fesm2015/stemy-ngx-utils.js +143 -65
  25. package/fesm2015/stemy-ngx-utils.js.map +1 -1
  26. package/fesm2015/stemy-ngx-utils.mjs +142 -63
  27. package/fesm2015/stemy-ngx-utils.mjs.map +1 -1
  28. package/fesm2020/stemy-ngx-utils.mjs +141 -63
  29. package/fesm2020/stemy-ngx-utils.mjs.map +1 -1
  30. package/ngx-utils/common-types.d.ts +10 -1
  31. package/ngx-utils/pipes/find.pipe.d.ts +1 -1
  32. package/ngx-utils/services/base-http.service.d.ts +1 -0
  33. package/ngx-utils/services/config.service.d.ts +1 -0
  34. package/ngx-utils/services/language.service.d.ts +3 -3
  35. package/ngx-utils/services/universal.service.d.ts +3 -2
  36. package/ngx-utils/utils/object.utils.d.ts +3 -0
  37. package/package.json +1 -1
  38. package/public_api.d.ts +1 -1
  39. package/stemy-ngx-utils.metadata.json +1 -1
@@ -20,7 +20,12 @@ import elementResizeDetectorMaker from 'element-resize-detector';
20
20
  import * as i4 from '@angular/forms';
21
21
  import { FormsModule } from '@angular/forms';
22
22
 
23
- const defaultPredicate = () => true;
23
+ function defaultPredicate(value, key, target, source) {
24
+ return true;
25
+ }
26
+ function shouldCopyDefault(key, value) {
27
+ return true;
28
+ }
24
29
  const hasBlob = typeof Blob !== "undefined" && !!Blob;
25
30
  const hasFile = typeof File !== "undefined" && !!File;
26
31
  class ObjectUtils {
@@ -180,17 +185,19 @@ class ObjectUtils {
180
185
  return isNaN(key) || isArray ? target : Object.values(target);
181
186
  }
182
187
  static filter(obj, predicate) {
183
- return ObjectUtils.copyRecursive(null, obj, predicate, new Map());
188
+ return ObjectUtils.copyRecursive(null, obj, predicate || defaultPredicate, new Map());
184
189
  }
185
190
  static copy(obj) {
186
- return ObjectUtils.copyRecursive(null, obj, null, new Map());
191
+ return ObjectUtils.copyRecursive(null, obj, defaultPredicate, new Map());
187
192
  }
188
193
  static assign(target, source, predicate) {
189
- return ObjectUtils.copyRecursive(target, source, predicate, new Map());
194
+ return ObjectUtils.copyRecursive(target, source, predicate || defaultPredicate, new Map());
190
195
  }
191
196
  static getType(obj) {
192
197
  const regex = new RegExp("\\s([a-zA-Z]+)");
193
- return Object.prototype.toString.call(obj).match(regex)[1].toLowerCase();
198
+ const target = !obj ? null : obj.constructor;
199
+ const type = !target ? null : Reflect.getMetadata("objectType", target);
200
+ return (type || Object.prototype.toString.call(obj).match(regex)[1]).toLowerCase();
194
201
  }
195
202
  static isPrimitive(value) {
196
203
  const type = typeof value;
@@ -237,6 +244,9 @@ class ObjectUtils {
237
244
  static isSet(value) {
238
245
  return value instanceof Set;
239
246
  }
247
+ static isConstructor(value) {
248
+ return (value && typeof value === "function" && value.prototype && value.prototype.constructor) === value && value.name !== "Object";
249
+ }
240
250
  static checkInterface(obj, interFaceObject) {
241
251
  return ObjectUtils.isInterface(obj, interFaceObject);
242
252
  }
@@ -262,33 +272,71 @@ class ObjectUtils {
262
272
  return str.length >= width ? str : new Array(width - str.length + 1).join(chr) + str;
263
273
  }
264
274
  static copyRecursive(target, source, predicate, copies) {
265
- predicate = predicate || defaultPredicate;
266
275
  if (ObjectUtils.isPrimitive(source) || ObjectUtils.isDate(source) || ObjectUtils.isBlob(source) || ObjectUtils.isFunction(source))
267
276
  return source;
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
- });
277
+ if (copies.has(source))
278
+ return copies.get(source);
279
+ if (ObjectUtils.isArray(source)) {
280
+ target = ObjectUtils.isArray(target) ? Array.from(target) : [];
281
+ copies.set(source, target);
282
+ for (let index = 0; index < source.length; index++) {
283
+ const item = source[index];
284
+ if (!predicate(item, index, target, source))
285
+ continue;
286
+ if (target.length > index)
287
+ target[index] = ObjectUtils.copyRecursive(target[index], item, predicate, copies);
288
+ else
289
+ target.push(ObjectUtils.copyRecursive(null, item, predicate, copies));
280
290
  }
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
- });
291
+ return target;
292
+ }
293
+ // If object defines __shouldCopy as false, then don't copy it
294
+ if (source.__shouldCopy === false)
295
+ return source;
296
+ // Copy object
297
+ const shouldCopy = ObjectUtils.isFunction(source.__shouldCopy) ? source.__shouldCopy : shouldCopyDefault;
298
+ if (ObjectUtils.isConstructor(source.constructor)) {
299
+ if (!target) {
300
+ try {
301
+ target = new source.constructor();
302
+ }
303
+ catch (e) {
304
+ const proto = source.constructor.prototype || source.prototype;
305
+ target = Object.create(proto);
306
+ }
289
307
  }
290
308
  }
291
- return copies.get(source);
309
+ else {
310
+ target = Object.assign({}, target || {});
311
+ }
312
+ // Set to copies to prevent circular references
313
+ copies.set(source, target);
314
+ // Copy map entries
315
+ if (target instanceof Map) {
316
+ if (source instanceof Map) {
317
+ for (const [key, value] of source.entries()) {
318
+ if (!predicate(value, key, target, source))
319
+ continue;
320
+ target.set(key, !shouldCopy(key, value) ? value : ObjectUtils.copyRecursive(target.get(key), value, predicate, copies));
321
+ }
322
+ }
323
+ return target;
324
+ }
325
+ // Copy object members
326
+ const keys = Object.keys(source);
327
+ for (const key of keys) {
328
+ if (!predicate(source[key], key, target, source))
329
+ continue;
330
+ target[key] = !shouldCopy(key, source[key]) ? source[key] : ObjectUtils.copyRecursive(target[key], source[key], predicate, copies);
331
+ }
332
+ // Copy object properties
333
+ const descriptors = Object.getOwnPropertyDescriptors(source);
334
+ for (const key of Object.keys(descriptors)) {
335
+ if (keys.indexOf(key) >= 0)
336
+ continue;
337
+ Object.defineProperty(target, key, descriptors[key]);
338
+ }
339
+ return target;
292
340
  }
293
341
  }
294
342
 
@@ -352,6 +400,11 @@ function FactoryDependencies(...dependencies) {
352
400
  ReflectUtils.defineMetadata("factoryDependencies", dependencies, target, method);
353
401
  };
354
402
  }
403
+ function ObjectType(type) {
404
+ return function (target) {
405
+ ReflectUtils.defineMetadata("objectType", type, target);
406
+ };
407
+ }
355
408
  class PaginationItemContext {
356
409
  constructor(item, parallelItem, count, index, dataIndex) {
357
410
  this.item = item;
@@ -1350,25 +1403,25 @@ class UniversalService {
1350
1403
  : this.dds.getDeviceInfo();
1351
1404
  }
1352
1405
  get browserName() {
1353
- return this.dds.browser;
1406
+ return (this.dds.browser || "").toLowerCase();
1354
1407
  }
1355
1408
  get browserVersion() {
1356
1409
  return this.dds.browser_version;
1357
1410
  }
1358
1411
  get isExplorer() {
1359
- return this.dds.browser == "ie";
1412
+ return this.checkBrowser("ie");
1360
1413
  }
1361
1414
  get isEdge() {
1362
- return this.dds.browser == "ms-edge";
1415
+ return this.checkBrowser("edge");
1363
1416
  }
1364
1417
  get isChrome() {
1365
- return this.dds.browser == "chrome";
1418
+ return this.checkBrowser("chrome");
1366
1419
  }
1367
1420
  get isFirefox() {
1368
- return this.dds.browser == "firefox";
1421
+ return this.checkBrowser("firefox");
1369
1422
  }
1370
1423
  get isSafari() {
1371
- return this.dds.browser == "safari";
1424
+ return this.checkBrowser("safari");
1372
1425
  }
1373
1426
  get isTablet() {
1374
1427
  return this.dds.isTablet();
@@ -1382,6 +1435,9 @@ class UniversalService {
1382
1435
  get isCrawler() {
1383
1436
  return this.crawler;
1384
1437
  }
1438
+ checkBrowser(name) {
1439
+ return this.browserName.includes(name) || false;
1440
+ }
1385
1441
  }
1386
1442
  UniversalService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: UniversalService, deps: [{ token: PLATFORM_ID }, { token: i1.DeviceDetectorService }], target: i0.ɵɵFactoryTarget.Injectable });
1387
1443
  UniversalService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: UniversalService });
@@ -2470,8 +2526,8 @@ class BaseHttpService {
2470
2526
  // If we use token auth
2471
2527
  if (this.client.renewTokenFunc && headers.has(authKey)) {
2472
2528
  const currentTime = new Date().getTime();
2473
- const userTokenTime = this.storage.get("userTokenTime") || currentTime;
2474
- // And the last request was a long long time ago
2529
+ const userTokenTime = this.getUserTokenTime() || currentTime;
2530
+ // And the last request was a long-long time ago
2475
2531
  if (currentTime - 600000 > userTokenTime) {
2476
2532
  this.client.renewTokenFunc();
2477
2533
  }
@@ -2499,6 +2555,9 @@ class BaseHttpService {
2499
2555
  });
2500
2556
  });
2501
2557
  }
2558
+ getUserTokenTime() {
2559
+ return this.storage.get("userTokenTime");
2560
+ }
2502
2561
  pushFailedRequest(url, options, req) {
2503
2562
  if (url.indexOf("token") >= 0 || url === "user")
2504
2563
  return false;
@@ -2541,11 +2600,7 @@ class BaseHttpService {
2541
2600
  return this.url(url).replace(/(?:((?!:).\/)\/)/g, "$1");
2542
2601
  }
2543
2602
  async absoluteUrl(url, options) {
2544
- const absoluteUrl = this.parseUrl(url);
2545
- if (url == "api-docs") {
2546
- return absoluteUrl.replace("/api", "");
2547
- }
2548
- return absoluteUrl;
2603
+ return this.parseUrl(url);
2549
2604
  }
2550
2605
  expressRequestUrl(url) {
2551
2606
  const req = this.request;
@@ -2745,7 +2800,11 @@ class ApiService extends BaseHttpService {
2745
2800
  return "api";
2746
2801
  }
2747
2802
  url(url) {
2748
- return this.expressRequestUrl(`/api/${url}`);
2803
+ const baseUrl = this.expressRequestUrl(`/api/${url}`);
2804
+ if (url == "api-docs" || url == "socket") {
2805
+ return baseUrl.replace("/api/", "/");
2806
+ }
2807
+ return baseUrl;
2749
2808
  }
2750
2809
  get(url, options, body) {
2751
2810
  return this.getPromise(url, options, body);
@@ -2852,6 +2911,19 @@ class ConfigService {
2852
2911
  prepareConfig(config) {
2853
2912
  return Promise.resolve(config);
2854
2913
  }
2914
+ cloneRootElem() {
2915
+ if (this.rootElement instanceof HTMLElement) {
2916
+ const clone = this.rootElement.cloneNode(true);
2917
+ const children = Array.from(clone.childNodes);
2918
+ children.forEach(child => {
2919
+ if (child instanceof HTMLElement) {
2920
+ child.remove();
2921
+ }
2922
+ });
2923
+ return clone;
2924
+ }
2925
+ return this.rootElement.cloneNode(true);
2926
+ }
2855
2927
  prepareUrl(url, ending) {
2856
2928
  const project = !this.loadedConfig ? "" : this.loadedConfig.project;
2857
2929
  const needsProtocol = url?.startsWith("//") ?? false;
@@ -3257,9 +3329,20 @@ class LanguageService extends StaticLanguageService {
3257
3329
  this.languageSettings.next(settings);
3258
3330
  const devLanguages = settings.devLanguages || [];
3259
3331
  this.languageList = (settings.languages || []).filter(lang => {
3332
+ const unavailable = settings.settings[lang]?.unavailable;
3333
+ if (unavailable) {
3334
+ const parts = unavailable.split("/");
3335
+ const value = parts[0] || parts[1];
3336
+ const flags = parts.length > 1 ? parts[parts.length - 1] : "g";
3337
+ if (new RegExp(value, flags).test(this.config.baseDomain))
3338
+ return false;
3339
+ }
3260
3340
  return devLanguages.indexOf(lang) < 0;
3261
3341
  });
3262
- const lang = this.languages.indexOf(defaultLanguage) < 0 ? settings.defaultLanguage : defaultLanguage;
3342
+ if (this.languageList.length === 0) {
3343
+ this.languageList = [defaultLanguage];
3344
+ }
3345
+ const lang = this.languages.indexOf(defaultLanguage) < 0 ? settings.defaultLanguage || this.languageList[0] : defaultLanguage;
3263
3346
  await this.useLanguage(lang);
3264
3347
  this.events.languageChanged.emit(lang);
3265
3348
  }
@@ -3306,7 +3389,7 @@ class LanguageService extends StaticLanguageService {
3306
3389
  return this.translationRequests[lang];
3307
3390
  }
3308
3391
  loadSettings() {
3309
- this.settingsPromise = this.settingsPromise || this.client.get(`${this.config.translationUrl}languageSettings`).toPromise()
3392
+ this.settingsPromise = this.settingsPromise || (this.client.get(`${this.config.translationUrl}languageSettings`).toPromise())
3310
3393
  .then((settings) => {
3311
3394
  return settings;
3312
3395
  }, () => {
@@ -3317,7 +3400,7 @@ class LanguageService extends StaticLanguageService {
3317
3400
  settings: {
3318
3401
  de: {},
3319
3402
  hu: {},
3320
- end: {}
3403
+ en: {}
3321
3404
  }
3322
3405
  };
3323
3406
  });
@@ -3700,25 +3783,20 @@ class FilterPipe {
3700
3783
  const isObject = ObjectUtils.isObject(values);
3701
3784
  if (!isObject && !ObjectUtils.isArray(values))
3702
3785
  return [];
3703
- const filterFunc = ObjectUtils.isFunction(filter) ? filter : (value, key, params) => {
3704
- return ObjectUtils.evaluate(filter, {
3705
- value: value,
3706
- key: key,
3707
- item: value,
3708
- index: key,
3709
- params: params
3710
- });
3786
+ const filterFunc = ObjectUtils.isFunction(filter) ? filter : (value, key, params, values) => {
3787
+ const index = key;
3788
+ return ObjectUtils.evaluate(filter, { value, key, params, values, index });
3711
3789
  };
3712
3790
  if (isObject) {
3713
3791
  return Object.keys(values).filter(key => {
3714
- return filterFunc(values[key], key, params);
3792
+ return filterFunc(values[key], key, params, values);
3715
3793
  }).reduce((result, key) => {
3716
3794
  result[key] = values[key];
3717
3795
  return result;
3718
3796
  }, {});
3719
3797
  }
3720
3798
  return values.filter((value, key) => {
3721
- return filterFunc(value, key, params);
3799
+ return filterFunc(value, key, params, values);
3722
3800
  });
3723
3801
  }
3724
3802
  }
@@ -3735,17 +3813,17 @@ function defaultFilter() {
3735
3813
  return true;
3736
3814
  }
3737
3815
  class FindPipe {
3738
- transform(values, filter = defaultFilter, params = {}) {
3816
+ transform(values, filter = defaultFilter, params) {
3739
3817
  if (!ObjectUtils.isArray(values))
3740
3818
  return [];
3741
- const filterFunc = ObjectUtils.isFunction(filter) ? filter : (value, index, params) => {
3742
- return ObjectUtils.evaluate(filter, {
3743
- value: value,
3744
- index: index,
3745
- params: params
3746
- });
3819
+ params = params || {};
3820
+ if (ObjectUtils.isObject(params)) {
3821
+ params.values = values;
3822
+ }
3823
+ const filterFunc = ObjectUtils.isFunction(filter) ? filter : (value, index, params, values) => {
3824
+ return ObjectUtils.evaluate(filter, { value, index, params, values });
3747
3825
  };
3748
- return values.find((value, index) => filterFunc(value, index, params));
3826
+ return values.find((value, index) => filterFunc(value, index, params, values));
3749
3827
  }
3750
3828
  }
3751
3829
  FindPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: FindPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
@@ -5629,5 +5707,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
5629
5707
  * Generated bundle index. Do not edit.
5630
5708
  */
5631
5709
 
5632
- 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, JSONfn, JoinPipe, KeysPipe, LANGUAGE_SERVICE, LanguageService, LoaderUtils, LocalHttpService, MapPipe, MathUtils, MaxPipe, MinPipe, NgxTemplateOutletDirective, NgxUtilsModule, ObjectUtils, ObservableUtils, OpenApiService, PROMISE_SERVICE, PaginationDirective, PaginationItemContext, PaginationItemDirective, PaginationMenuComponent, Point, PopPipe, PromiseService, RESIZE_DELAY, 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, WASI_IMPLEMENTATION, WasmService };
5710
+ 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, JSONfn, JoinPipe, KeysPipe, LANGUAGE_SERVICE, LanguageService, LoaderUtils, LocalHttpService, MapPipe, MathUtils, MaxPipe, MinPipe, NgxTemplateOutletDirective, NgxUtilsModule, ObjectType, ObjectUtils, ObservableUtils, OpenApiService, PROMISE_SERVICE, PaginationDirective, PaginationItemContext, PaginationItemDirective, PaginationMenuComponent, Point, PopPipe, PromiseService, RESIZE_DELAY, 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, WASI_IMPLEMENTATION, WasmService };
5633
5711
  //# sourceMappingURL=stemy-ngx-utils.mjs.map