@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
@@ -21,7 +21,12 @@ import elementResizeDetectorMaker from 'element-resize-detector';
21
21
  import * as i4 from '@angular/forms';
22
22
  import { FormsModule } from '@angular/forms';
23
23
 
24
- const defaultPredicate = () => true;
24
+ function defaultPredicate(value, key, target, source) {
25
+ return true;
26
+ }
27
+ function shouldCopyDefault(key, value) {
28
+ return true;
29
+ }
25
30
  const hasBlob = typeof Blob !== "undefined" && !!Blob;
26
31
  const hasFile = typeof File !== "undefined" && !!File;
27
32
  class ObjectUtils {
@@ -181,17 +186,19 @@ class ObjectUtils {
181
186
  return isNaN(key) || isArray ? target : Object.values(target);
182
187
  }
183
188
  static filter(obj, predicate) {
184
- return ObjectUtils.copyRecursive(null, obj, predicate, new Map());
189
+ return ObjectUtils.copyRecursive(null, obj, predicate || defaultPredicate, new Map());
185
190
  }
186
191
  static copy(obj) {
187
- return ObjectUtils.copyRecursive(null, obj, null, new Map());
192
+ return ObjectUtils.copyRecursive(null, obj, defaultPredicate, new Map());
188
193
  }
189
194
  static assign(target, source, predicate) {
190
- return ObjectUtils.copyRecursive(target, source, predicate, new Map());
195
+ return ObjectUtils.copyRecursive(target, source, predicate || defaultPredicate, new Map());
191
196
  }
192
197
  static getType(obj) {
193
198
  const regex = new RegExp("\\s([a-zA-Z]+)");
194
- return Object.prototype.toString.call(obj).match(regex)[1].toLowerCase();
199
+ const target = !obj ? null : obj.constructor;
200
+ const type = !target ? null : Reflect.getMetadata("objectType", target);
201
+ return (type || Object.prototype.toString.call(obj).match(regex)[1]).toLowerCase();
195
202
  }
196
203
  static isPrimitive(value) {
197
204
  const type = typeof value;
@@ -238,6 +245,9 @@ class ObjectUtils {
238
245
  static isSet(value) {
239
246
  return value instanceof Set;
240
247
  }
248
+ static isConstructor(value) {
249
+ return (value && typeof value === "function" && value.prototype && value.prototype.constructor) === value && value.name !== "Object";
250
+ }
241
251
  static checkInterface(obj, interFaceObject) {
242
252
  return ObjectUtils.isInterface(obj, interFaceObject);
243
253
  }
@@ -263,33 +273,71 @@ class ObjectUtils {
263
273
  return str.length >= width ? str : new Array(width - str.length + 1).join(chr) + str;
264
274
  }
265
275
  static copyRecursive(target, source, predicate, copies) {
266
- predicate = predicate || defaultPredicate;
267
276
  if (ObjectUtils.isPrimitive(source) || ObjectUtils.isDate(source) || ObjectUtils.isBlob(source) || ObjectUtils.isFunction(source))
268
277
  return source;
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
- });
278
+ if (copies.has(source))
279
+ return copies.get(source);
280
+ if (ObjectUtils.isArray(source)) {
281
+ target = ObjectUtils.isArray(target) ? Array.from(target) : [];
282
+ copies.set(source, target);
283
+ for (let index = 0; index < source.length; index++) {
284
+ const item = source[index];
285
+ if (!predicate(item, index, target, source))
286
+ continue;
287
+ if (target.length > index)
288
+ target[index] = ObjectUtils.copyRecursive(target[index], item, predicate, copies);
289
+ else
290
+ target.push(ObjectUtils.copyRecursive(null, item, predicate, copies));
281
291
  }
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
- });
292
+ return target;
293
+ }
294
+ // If object defines __shouldCopy as false, then don't copy it
295
+ if (source.__shouldCopy === false)
296
+ return source;
297
+ // Copy object
298
+ const shouldCopy = ObjectUtils.isFunction(source.__shouldCopy) ? source.__shouldCopy : shouldCopyDefault;
299
+ if (ObjectUtils.isConstructor(source.constructor)) {
300
+ if (!target) {
301
+ try {
302
+ target = new source.constructor();
303
+ }
304
+ catch (e) {
305
+ const proto = source.constructor.prototype || source.prototype;
306
+ target = Object.create(proto);
307
+ }
290
308
  }
291
309
  }
292
- return copies.get(source);
310
+ else {
311
+ target = Object.assign({}, target || {});
312
+ }
313
+ // Set to copies to prevent circular references
314
+ copies.set(source, target);
315
+ // Copy map entries
316
+ if (target instanceof Map) {
317
+ if (source instanceof Map) {
318
+ for (const [key, value] of source.entries()) {
319
+ if (!predicate(value, key, target, source))
320
+ continue;
321
+ target.set(key, !shouldCopy(key, value) ? value : ObjectUtils.copyRecursive(target.get(key), value, predicate, copies));
322
+ }
323
+ }
324
+ return target;
325
+ }
326
+ // Copy object members
327
+ const keys = Object.keys(source);
328
+ for (const key of keys) {
329
+ if (!predicate(source[key], key, target, source))
330
+ continue;
331
+ target[key] = !shouldCopy(key, source[key]) ? source[key] : ObjectUtils.copyRecursive(target[key], source[key], predicate, copies);
332
+ }
333
+ // Copy object properties
334
+ const descriptors = Object.getOwnPropertyDescriptors(source);
335
+ for (const key of Object.keys(descriptors)) {
336
+ if (keys.indexOf(key) >= 0)
337
+ continue;
338
+ Object.defineProperty(target, key, descriptors[key]);
339
+ }
340
+ return target;
293
341
  }
294
342
  }
295
343
 
@@ -353,6 +401,11 @@ function FactoryDependencies(...dependencies) {
353
401
  ReflectUtils.defineMetadata("factoryDependencies", dependencies, target, method);
354
402
  };
355
403
  }
404
+ function ObjectType(type) {
405
+ return function (target) {
406
+ ReflectUtils.defineMetadata("objectType", type, target);
407
+ };
408
+ }
356
409
  class PaginationItemContext {
357
410
  constructor(item, parallelItem, count, index, dataIndex) {
358
411
  this.item = item;
@@ -1352,25 +1405,25 @@ class UniversalService {
1352
1405
  : this.dds.getDeviceInfo();
1353
1406
  }
1354
1407
  get browserName() {
1355
- return this.dds.browser;
1408
+ return (this.dds.browser || "").toLowerCase();
1356
1409
  }
1357
1410
  get browserVersion() {
1358
1411
  return this.dds.browser_version;
1359
1412
  }
1360
1413
  get isExplorer() {
1361
- return this.dds.browser == "ie";
1414
+ return this.checkBrowser("ie");
1362
1415
  }
1363
1416
  get isEdge() {
1364
- return this.dds.browser == "ms-edge";
1417
+ return this.checkBrowser("edge");
1365
1418
  }
1366
1419
  get isChrome() {
1367
- return this.dds.browser == "chrome";
1420
+ return this.checkBrowser("chrome");
1368
1421
  }
1369
1422
  get isFirefox() {
1370
- return this.dds.browser == "firefox";
1423
+ return this.checkBrowser("firefox");
1371
1424
  }
1372
1425
  get isSafari() {
1373
- return this.dds.browser == "safari";
1426
+ return this.checkBrowser("safari");
1374
1427
  }
1375
1428
  get isTablet() {
1376
1429
  return this.dds.isTablet();
@@ -1384,6 +1437,9 @@ class UniversalService {
1384
1437
  get isCrawler() {
1385
1438
  return this.crawler;
1386
1439
  }
1440
+ checkBrowser(name) {
1441
+ return this.browserName.includes(name) || false;
1442
+ }
1387
1443
  }
1388
1444
  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 });
1389
1445
  UniversalService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: UniversalService });
@@ -2495,8 +2551,8 @@ class BaseHttpService {
2495
2551
  // If we use token auth
2496
2552
  if (this.client.renewTokenFunc && headers.has(authKey)) {
2497
2553
  const currentTime = new Date().getTime();
2498
- const userTokenTime = this.storage.get("userTokenTime") || currentTime;
2499
- // And the last request was a long long time ago
2554
+ const userTokenTime = this.getUserTokenTime() || currentTime;
2555
+ // And the last request was a long-long time ago
2500
2556
  if (currentTime - 600000 > userTokenTime) {
2501
2557
  this.client.renewTokenFunc();
2502
2558
  }
@@ -2524,6 +2580,9 @@ class BaseHttpService {
2524
2580
  });
2525
2581
  });
2526
2582
  }
2583
+ getUserTokenTime() {
2584
+ return this.storage.get("userTokenTime");
2585
+ }
2527
2586
  pushFailedRequest(url, options, req) {
2528
2587
  if (url.indexOf("token") >= 0 || url === "user")
2529
2588
  return false;
@@ -2567,11 +2626,7 @@ class BaseHttpService {
2567
2626
  }
2568
2627
  absoluteUrl(url, options) {
2569
2628
  return __awaiter(this, void 0, void 0, function* () {
2570
- const absoluteUrl = this.parseUrl(url);
2571
- if (url == "api-docs") {
2572
- return absoluteUrl.replace("/api", "");
2573
- }
2574
- return absoluteUrl;
2629
+ return this.parseUrl(url);
2575
2630
  });
2576
2631
  }
2577
2632
  expressRequestUrl(url) {
@@ -2780,7 +2835,11 @@ class ApiService extends BaseHttpService {
2780
2835
  return "api";
2781
2836
  }
2782
2837
  url(url) {
2783
- return this.expressRequestUrl(`/api/${url}`);
2838
+ const baseUrl = this.expressRequestUrl(`/api/${url}`);
2839
+ if (url == "api-docs" || url == "socket") {
2840
+ return baseUrl.replace("/api/", "/");
2841
+ }
2842
+ return baseUrl;
2784
2843
  }
2785
2844
  get(url, options, body) {
2786
2845
  return this.getPromise(url, options, body);
@@ -2889,6 +2948,19 @@ class ConfigService {
2889
2948
  prepareConfig(config) {
2890
2949
  return Promise.resolve(config);
2891
2950
  }
2951
+ cloneRootElem() {
2952
+ if (this.rootElement instanceof HTMLElement) {
2953
+ const clone = this.rootElement.cloneNode(true);
2954
+ const children = Array.from(clone.childNodes);
2955
+ children.forEach(child => {
2956
+ if (child instanceof HTMLElement) {
2957
+ child.remove();
2958
+ }
2959
+ });
2960
+ return clone;
2961
+ }
2962
+ return this.rootElement.cloneNode(true);
2963
+ }
2892
2964
  prepareUrl(url, ending) {
2893
2965
  var _a;
2894
2966
  const project = !this.loadedConfig ? "" : this.loadedConfig.project;
@@ -3302,9 +3374,21 @@ class LanguageService extends StaticLanguageService {
3302
3374
  this.languageSettings.next(settings);
3303
3375
  const devLanguages = settings.devLanguages || [];
3304
3376
  this.languageList = (settings.languages || []).filter(lang => {
3377
+ var _a;
3378
+ const unavailable = (_a = settings.settings[lang]) === null || _a === void 0 ? void 0 : _a.unavailable;
3379
+ if (unavailable) {
3380
+ const parts = unavailable.split("/");
3381
+ const value = parts[0] || parts[1];
3382
+ const flags = parts.length > 1 ? parts[parts.length - 1] : "g";
3383
+ if (new RegExp(value, flags).test(this.config.baseDomain))
3384
+ return false;
3385
+ }
3305
3386
  return devLanguages.indexOf(lang) < 0;
3306
3387
  });
3307
- const lang = this.languages.indexOf(defaultLanguage) < 0 ? settings.defaultLanguage : defaultLanguage;
3388
+ if (this.languageList.length === 0) {
3389
+ this.languageList = [defaultLanguage];
3390
+ }
3391
+ const lang = this.languages.indexOf(defaultLanguage) < 0 ? settings.defaultLanguage || this.languageList[0] : defaultLanguage;
3308
3392
  yield this.useLanguage(lang);
3309
3393
  this.events.languageChanged.emit(lang);
3310
3394
  });
@@ -3356,7 +3440,7 @@ class LanguageService extends StaticLanguageService {
3356
3440
  return this.translationRequests[lang];
3357
3441
  }
3358
3442
  loadSettings() {
3359
- this.settingsPromise = this.settingsPromise || this.client.get(`${this.config.translationUrl}languageSettings`).toPromise()
3443
+ this.settingsPromise = this.settingsPromise || (this.client.get(`${this.config.translationUrl}languageSettings`).toPromise())
3360
3444
  .then((settings) => {
3361
3445
  return settings;
3362
3446
  }, () => {
@@ -3367,7 +3451,7 @@ class LanguageService extends StaticLanguageService {
3367
3451
  settings: {
3368
3452
  de: {},
3369
3453
  hu: {},
3370
- end: {}
3454
+ en: {}
3371
3455
  }
3372
3456
  };
3373
3457
  });
@@ -3765,25 +3849,20 @@ class FilterPipe {
3765
3849
  const isObject = ObjectUtils.isObject(values);
3766
3850
  if (!isObject && !ObjectUtils.isArray(values))
3767
3851
  return [];
3768
- const filterFunc = ObjectUtils.isFunction(filter) ? filter : (value, key, params) => {
3769
- return ObjectUtils.evaluate(filter, {
3770
- value: value,
3771
- key: key,
3772
- item: value,
3773
- index: key,
3774
- params: params
3775
- });
3852
+ const filterFunc = ObjectUtils.isFunction(filter) ? filter : (value, key, params, values) => {
3853
+ const index = key;
3854
+ return ObjectUtils.evaluate(filter, { value, key, params, values, index });
3776
3855
  };
3777
3856
  if (isObject) {
3778
3857
  return Object.keys(values).filter(key => {
3779
- return filterFunc(values[key], key, params);
3858
+ return filterFunc(values[key], key, params, values);
3780
3859
  }).reduce((result, key) => {
3781
3860
  result[key] = values[key];
3782
3861
  return result;
3783
3862
  }, {});
3784
3863
  }
3785
3864
  return values.filter((value, key) => {
3786
- return filterFunc(value, key, params);
3865
+ return filterFunc(value, key, params, values);
3787
3866
  });
3788
3867
  }
3789
3868
  }
@@ -3800,17 +3879,17 @@ function defaultFilter() {
3800
3879
  return true;
3801
3880
  }
3802
3881
  class FindPipe {
3803
- transform(values, filter = defaultFilter, params = {}) {
3882
+ transform(values, filter = defaultFilter, params) {
3804
3883
  if (!ObjectUtils.isArray(values))
3805
3884
  return [];
3806
- const filterFunc = ObjectUtils.isFunction(filter) ? filter : (value, index, params) => {
3807
- return ObjectUtils.evaluate(filter, {
3808
- value: value,
3809
- index: index,
3810
- params: params
3811
- });
3885
+ params = params || {};
3886
+ if (ObjectUtils.isObject(params)) {
3887
+ params.values = values;
3888
+ }
3889
+ const filterFunc = ObjectUtils.isFunction(filter) ? filter : (value, index, params, values) => {
3890
+ return ObjectUtils.evaluate(filter, { value, index, params, values });
3812
3891
  };
3813
- return values.find((value, index) => filterFunc(value, index, params));
3892
+ return values.find((value, index) => filterFunc(value, index, params, values));
3814
3893
  }
3815
3894
  }
3816
3895
  FindPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: FindPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
@@ -5703,5 +5782,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
5703
5782
  * Generated bundle index. Do not edit.
5704
5783
  */
5705
5784
 
5706
- 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 };
5785
+ 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 };
5707
5786
  //# sourceMappingURL=stemy-ngx-utils.mjs.map