@stemy/ngx-utils 19.2.12 → 19.2.13

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.
@@ -1,8 +1,8 @@
1
1
  import * as i0 from '@angular/core';
2
- import { InjectionToken, PLATFORM_ID, Injectable, Inject, Optional, Injector, EventEmitter, isDevMode, ErrorHandler, NgZone, Pipe, Directive, Input, Output, HostBinding, HostListener, forwardRef, Component, ViewEncapsulation, ContentChild, ViewChild, ContentChildren, APP_INITIALIZER, makeEnvironmentProviders, NgModule } from '@angular/core';
2
+ import { InjectionToken, PLATFORM_ID, Injectable, Inject, Optional, Injector, EventEmitter, isDevMode, ErrorHandler, createComponent, NgZone, Pipe, Directive, Input, Output, HostBinding, HostListener, forwardRef, Component, ViewEncapsulation, ContentChild, ViewChild, ContentChildren, APP_INITIALIZER, makeEnvironmentProviders, NgModule } from '@angular/core';
3
3
  import 'reflect-metadata';
4
4
  import * as i2 from '@angular/router';
5
- import { ActivatedRouteSnapshot, Scroll, NavigationEnd, DefaultUrlSerializer, UrlTree, UrlSegmentGroup, UrlSegment, UrlSerializer } from '@angular/router';
5
+ import { ActivatedRouteSnapshot, Scroll, NavigationEnd, Router, DefaultUrlSerializer, UrlTree, UrlSegmentGroup, UrlSegment, UrlSerializer, ROUTES } from '@angular/router';
6
6
  import { BehaviorSubject, Observable, firstValueFrom, Subject, Subscription, from, TimeoutError, combineLatest, lastValueFrom } from 'rxjs';
7
7
  import { skipWhile, debounceTime, distinctUntilChanged, map, filter, mergeMap, timeout } from 'rxjs/operators';
8
8
  import * as i1$3 from '@angular/common';
@@ -478,6 +478,8 @@ const API_SERVICE = new InjectionToken("api-service");
478
478
  // --- Resource if ---
479
479
  class ResourceIfContext {
480
480
  }
481
+ const DYNAMIC_ENTRY_COMPONENTS = new InjectionToken("dynamic-entry-components");
482
+ const DYNAMIC_MODULE_INFO = new InjectionToken("dynamic-module-info");
481
483
  // --- ConfigService ---
482
484
  const APP_BASE_URL = new InjectionToken("app-base-url");
483
485
  class IConfiguration {
@@ -2005,6 +2007,62 @@ function checkTransitions(el, cb) {
2005
2007
  end();
2006
2008
  }, 100);
2007
2009
  }
2010
+ function getComponentDef(type) {
2011
+ const def = type["ɵcmp"];
2012
+ if (!def) {
2013
+ throw new Error(`No Angular definition found for ${type.name}`);
2014
+ }
2015
+ return def;
2016
+ }
2017
+ // Helper function to match a search selector to a stored selector
2018
+ function parseSelector(selector) {
2019
+ if (Array.isArray(selector)) {
2020
+ if (selector.length !== 1 && selector.length !== 3) {
2021
+ throw new Error("CSSSelector should contain 1 or 3 parts!");
2022
+ }
2023
+ if (selector.some(t => typeof t !== "string")) {
2024
+ throw new Error("CSSSelector parts can only be strings");
2025
+ }
2026
+ return selector;
2027
+ }
2028
+ if (selector.indexOf("#") > 0) {
2029
+ const parts = selector.split("#");
2030
+ selector = `${parts[0]}[id=${parts[1]}]`;
2031
+ }
2032
+ if (selector.indexOf(".") > 0) {
2033
+ const parts = selector.split(".");
2034
+ selector = `${parts[0]}[class=${parts[1]}]`;
2035
+ }
2036
+ const start = selector.indexOf("[");
2037
+ const end = Math.max(selector.indexOf("]"), Math.min(selector.length, start + 1));
2038
+ if (start >= 0) {
2039
+ const parts = selector.substring(start + 1, end).split("=");
2040
+ return [
2041
+ selector.substring(0, start),
2042
+ parts[0],
2043
+ parts[1] || ""
2044
+ ];
2045
+ }
2046
+ return [selector];
2047
+ }
2048
+ function selectorMatchesList(list, selector) {
2049
+ for (const item of list) {
2050
+ if (selector.length === item.length && selector.every((s, i) => s === item[i])) {
2051
+ return true;
2052
+ }
2053
+ }
2054
+ return false;
2055
+ }
2056
+ function provideEntryComponents(components, moduleId) {
2057
+ return {
2058
+ provide: DYNAMIC_ENTRY_COMPONENTS,
2059
+ useValue: {
2060
+ components,
2061
+ moduleId
2062
+ },
2063
+ multi: true
2064
+ };
2065
+ }
2008
2066
 
2009
2067
  class TimerUtils {
2010
2068
  static createTimeout(func, time) {
@@ -3852,6 +3910,132 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
3852
3910
  args: [LANGUAGE_SERVICE]
3853
3911
  }] }] });
3854
3912
 
3913
+ class ComponentLoaderService {
3914
+ get injector() {
3915
+ return this.ngModule.injector;
3916
+ }
3917
+ constructor(appRef, ngModule, rootElement, moduleRegistry) {
3918
+ this.appRef = appRef;
3919
+ this.ngModule = ngModule;
3920
+ this.rootElement = rootElement;
3921
+ this.typeMap = [];
3922
+ this.moduleRegistry = moduleRegistry || [];
3923
+ this.moduleMap = new Map();
3924
+ this.populateTypeMap("root", this.ngModule.injector);
3925
+ }
3926
+ findComponentType(selector, moduleId = "root") {
3927
+ const cssSelector = parseSelector(selector);
3928
+ const results = new Map();
3929
+ for (const item of this.typeMap) {
3930
+ if (selectorMatchesList(item[1], cssSelector)) {
3931
+ results.set(item[0], item[2]);
3932
+ }
3933
+ }
3934
+ const keys = Array.from(results.keys());
3935
+ const result = results.get(moduleId) || results.get(keys[0]);
3936
+ if (!result) {
3937
+ throw new Error(`Cannot find component by selector: ${selector} in module '${moduleId}' nor in any other module`);
3938
+ }
3939
+ return result;
3940
+ }
3941
+ async getComponentType(location) {
3942
+ // Find module info
3943
+ const moduleInfoList = this.moduleRegistry
3944
+ .filter(info => info.moduleId === location.moduleId);
3945
+ if (moduleInfoList.length > 1) {
3946
+ throw new Error(`Module with id '${location.moduleId}' has been declared more than once.`);
3947
+ }
3948
+ const moduleInfo = moduleInfoList[0];
3949
+ if (!moduleInfo) {
3950
+ throw new Error(`Module with id '${location.moduleId}' not found.`);
3951
+ }
3952
+ await this.loadModule(moduleInfo);
3953
+ return this.findComponentType(location.selector, location.moduleId);
3954
+ }
3955
+ createComponent(componentType, projectableNodes, injector, split) {
3956
+ if (projectableNodes) {
3957
+ projectableNodes = split ? projectableNodes.filter(node => {
3958
+ return node && node.nodeType !== Node.COMMENT_NODE;
3959
+ }).map(node => [node]) : [projectableNodes];
3960
+ }
3961
+ else {
3962
+ projectableNodes = [];
3963
+ }
3964
+ return createComponent(componentType, {
3965
+ environmentInjector: this.appRef.injector,
3966
+ elementInjector: injector || this.injector,
3967
+ projectableNodes
3968
+ });
3969
+ }
3970
+ bootstrap(componentType, rootSelectorOrNode) {
3971
+ rootSelectorOrNode = rootSelectorOrNode || this.rootElement;
3972
+ return !rootSelectorOrNode ? null : this.appRef.bootstrap(componentType, rootSelectorOrNode);
3973
+ }
3974
+ attachView(viewRef) {
3975
+ if (!viewRef)
3976
+ return;
3977
+ this.appRef.attachView(viewRef);
3978
+ }
3979
+ detachView(viewRef) {
3980
+ if (!viewRef)
3981
+ return;
3982
+ this.appRef.detachView(viewRef);
3983
+ try {
3984
+ viewRef.destroy();
3985
+ }
3986
+ catch (e) {
3987
+ console.log(`Can't destroy view, maybe it is already destroyed?`);
3988
+ }
3989
+ }
3990
+ populateTypeMap(moduleId, injector) {
3991
+ const entries = injector.get(DYNAMIC_ENTRY_COMPONENTS) || [];
3992
+ if (entries.length == 0) {
3993
+ console.warn("Entry components not found in the module", injector);
3994
+ }
3995
+ entries.forEach(entryComponents => {
3996
+ entryComponents.components.forEach(type => {
3997
+ const def = getComponentDef(type);
3998
+ console.log(def.selectors, type.name);
3999
+ this.typeMap.push([entryComponents.moduleId || moduleId, def.selectors, type]);
4000
+ });
4001
+ });
4002
+ }
4003
+ async loadModule(moduleInfo) {
4004
+ if (this.moduleMap.has(moduleInfo.moduleId)) {
4005
+ return this.moduleMap.get(moduleInfo.moduleId);
4006
+ }
4007
+ this.moduleMap.set(moduleInfo.moduleId, new Promise(async (resolve) => {
4008
+ const router = this.injector.get(Router);
4009
+ const loader = router["navigationTransitions"].configLoader;
4010
+ const loaded = await firstValueFrom(loader.loadChildren(this.injector, {
4011
+ loadChildren: moduleInfo.loadChildren
4012
+ }));
4013
+ if (moduleInfo.routes) {
4014
+ router.resetConfig(moduleInfo.routes);
4015
+ if (moduleInfo.initialNavigation !== false) {
4016
+ router.initialNavigation();
4017
+ }
4018
+ }
4019
+ this.populateTypeMap(moduleInfo.moduleId, loaded.injector);
4020
+ resolve(loaded.injector);
4021
+ }));
4022
+ return this.moduleMap.get(moduleInfo.moduleId);
4023
+ }
4024
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: ComponentLoaderService, deps: [{ token: i0.ApplicationRef }, { token: i0.NgModuleRef }, { token: ROOT_ELEMENT }, { token: DYNAMIC_MODULE_INFO, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
4025
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: ComponentLoaderService }); }
4026
+ }
4027
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: ComponentLoaderService, decorators: [{
4028
+ type: Injectable
4029
+ }], ctorParameters: () => [{ type: i0.ApplicationRef }, { type: i0.NgModuleRef }, { type: HTMLElement, decorators: [{
4030
+ type: Inject,
4031
+ args: [ROOT_ELEMENT]
4032
+ }] }, { type: undefined, decorators: [{
4033
+ type: Optional
4034
+ }, {
4035
+ type: Inject,
4036
+ args: [DYNAMIC_MODULE_INFO]
4037
+ }] }] });
4038
+
3855
4039
  class TranslatedUrlSerializer extends DefaultUrlSerializer {
3856
4040
  constructor(language) {
3857
4041
  super();
@@ -6291,6 +6475,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
6291
6475
  args: [DynamicTableTemplateDirective]
6292
6476
  }] } });
6293
6477
 
6478
+ class FakeModuleComponent {
6479
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: FakeModuleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6480
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.3", type: FakeModuleComponent, isStandalone: false, selector: "fake-module-component", ngImport: i0, template: "", isInline: true, encapsulation: i0.ViewEncapsulation.None }); }
6481
+ }
6482
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: FakeModuleComponent, decorators: [{
6483
+ type: Component,
6484
+ args: [{
6485
+ standalone: false,
6486
+ encapsulation: ViewEncapsulation.None,
6487
+ selector: "fake-module-component",
6488
+ template: "",
6489
+ }]
6490
+ }] });
6491
+
6294
6492
  class UnorderedListComponent {
6295
6493
  constructor(cdr) {
6296
6494
  this.cdr = cdr;
@@ -6634,6 +6832,7 @@ const directives = [
6634
6832
  const components = [
6635
6833
  DropListComponent,
6636
6834
  DynamicTableComponent,
6835
+ FakeModuleComponent,
6637
6836
  PaginationMenuComponent,
6638
6837
  UnorderedListComponent,
6639
6838
  UploadComponent
@@ -6662,6 +6861,7 @@ const providers = [
6662
6861
  StaticLanguageService,
6663
6862
  StorageService,
6664
6863
  BaseToasterService,
6864
+ ComponentLoaderService,
6665
6865
  TranslatedUrlSerializer,
6666
6866
  UniversalService,
6667
6867
  WasmService,
@@ -6975,11 +7175,37 @@ class NgxUtilsModule {
6975
7175
  static provideUtils(config) {
6976
7176
  return makeEnvironmentProviders(NgxUtilsModule.getProviders(config));
6977
7177
  }
7178
+ static useDynamic(moduleInfo) {
7179
+ return {
7180
+ ngModule: NgxUtilsModule,
7181
+ providers: [
7182
+ {
7183
+ provide: ROUTES,
7184
+ multi: true,
7185
+ useValue: [
7186
+ {
7187
+ loadChildren: moduleInfo.loadChildren,
7188
+ matcher: AuthGuard.noRouteMatch
7189
+ },
7190
+ {
7191
+ component: FakeModuleComponent,
7192
+ matcher: AuthGuard.wildRouteMatch
7193
+ }
7194
+ ]
7195
+ },
7196
+ {
7197
+ provide: DYNAMIC_MODULE_INFO,
7198
+ useValue: moduleInfo,
7199
+ multi: true
7200
+ }
7201
+ ]
7202
+ };
7203
+ }
6978
7204
  constructor() {
6979
7205
  }
6980
7206
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: NgxUtilsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
6981
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.3", ngImport: i0, type: NgxUtilsModule, declarations: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GetValuePipe, 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, DropdownDirective, DropdownToggleDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, DropListComponent, DynamicTableComponent, PaginationMenuComponent, UnorderedListComponent, UploadComponent], imports: [CommonModule,
6982
- FormsModule], exports: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GetValuePipe, 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, DropdownDirective, DropdownToggleDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, DropListComponent, DynamicTableComponent, PaginationMenuComponent, UnorderedListComponent, UploadComponent, FormsModule] }); }
7207
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.3", ngImport: i0, type: NgxUtilsModule, declarations: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GetValuePipe, 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, DropdownDirective, DropdownToggleDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, DropListComponent, DynamicTableComponent, FakeModuleComponent, PaginationMenuComponent, UnorderedListComponent, UploadComponent], imports: [CommonModule,
7208
+ FormsModule], exports: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GetValuePipe, 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, DropdownDirective, DropdownToggleDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, DropListComponent, DynamicTableComponent, FakeModuleComponent, PaginationMenuComponent, UnorderedListComponent, UploadComponent, FormsModule] }); }
6983
7209
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: NgxUtilsModule, providers: pipes, imports: [CommonModule,
6984
7210
  FormsModule, FormsModule] }); }
6985
7211
  }
@@ -7009,5 +7235,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
7009
7235
  * Generated bundle index. Do not edit.
7010
7236
  */
7011
7237
 
7012
- export { API_SERVICE, APP_BASE_URL, AUTH_SERVICE, AclService, AjaxRequestHandler, ApiService, ArrayUtils, AsyncMethodBase, AsyncMethodDirective, AuthGuard, BASE_CONFIG, BackgroundDirective, BaseDialogService, BaseHttpClient, BaseHttpService, BaseToasterService, CONFIG_SERVICE, CanvasColor, CanvasUtils, ChunkPipe, Circle, ConfigService, DIALOG_SERVICE, DateUtils, DragDropEventPlugin, DropListComponent, DropdownDirective, DropdownToggleDirective, DynamicTableComponent, DynamicTableTemplateDirective, ERROR_HANDLER, EXPRESS_REQUEST, EntriesPipe, ErrorHandlerService, EventsService, ExtraItemPropertiesPipe, FactoryDependencies, FileSystemEntry, FileUtils, FilterPipe, FindPipe, FormatNumberPipe, FormatterService, GenericValue, GetOffsetPipe, GetTypePipe, GetValuePipe, 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, OPTIONS_TOKEN, ObjectType, ObjectUtils, ObservableUtils, OpenApiService, PROMISE_SERVICE, PaginationDirective, PaginationItemContext, PaginationItemDirective, PaginationMenuComponent, Point, PopPipe, PromiseService, RESIZE_DELAY, RESIZE_STRATEGY, ROOT_ELEMENT, Rect, ReducePipe, ReflectUtils, RemapPipe, ReplacePipe, ResizeEventPlugin, ResourceIfContext, ResourceIfDirective, ReversePipe, RoundPipe, SCRIPT_PARAMS, SafeHtmlPipe, ScrollEventPlugin, SetUtils, ShiftPipe, SocketClient, SocketService, SplitPipe, StateService, StaticAuthService, StaticLanguageService, StickyClassDirective, StickyDirective, StorageMode, StorageService, StringUtils, TOASTER_SERVICE, TimerUtils, TranslatePipe, TranslatedUrlSerializer, UniqueUtils, UniversalService, UnorderedListComponent, UnorderedListItemDirective, UnorderedListTemplateDirective, UploadComponent, ValuedPromise, ValuesPipe, Vector, WASI_IMPLEMENTATION, WasmService, cachedFactory, cancelablePromise, checkTransitions, impatientPromise, provideWithOptions };
7238
+ export { API_SERVICE, APP_BASE_URL, AUTH_SERVICE, AclService, AjaxRequestHandler, ApiService, ArrayUtils, AsyncMethodBase, AsyncMethodDirective, AuthGuard, BASE_CONFIG, BackgroundDirective, BaseDialogService, BaseHttpClient, BaseHttpService, BaseToasterService, CONFIG_SERVICE, CanvasColor, CanvasUtils, ChunkPipe, Circle, ComponentLoaderService, ConfigService, DIALOG_SERVICE, DateUtils, DragDropEventPlugin, DropListComponent, DropdownDirective, DropdownToggleDirective, DynamicTableComponent, DynamicTableTemplateDirective, ERROR_HANDLER, EXPRESS_REQUEST, EntriesPipe, ErrorHandlerService, EventsService, ExtraItemPropertiesPipe, FactoryDependencies, FakeModuleComponent, FileSystemEntry, FileUtils, FilterPipe, FindPipe, FormatNumberPipe, FormatterService, GenericValue, GetOffsetPipe, GetTypePipe, GetValuePipe, 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, OPTIONS_TOKEN, ObjectType, ObjectUtils, ObservableUtils, OpenApiService, PROMISE_SERVICE, PaginationDirective, PaginationItemContext, PaginationItemDirective, PaginationMenuComponent, Point, PopPipe, PromiseService, RESIZE_DELAY, RESIZE_STRATEGY, ROOT_ELEMENT, Rect, ReducePipe, ReflectUtils, RemapPipe, ReplacePipe, ResizeEventPlugin, ResourceIfContext, ResourceIfDirective, ReversePipe, RoundPipe, SCRIPT_PARAMS, SafeHtmlPipe, ScrollEventPlugin, SetUtils, ShiftPipe, SocketClient, SocketService, SplitPipe, StateService, StaticAuthService, StaticLanguageService, StickyClassDirective, StickyDirective, StorageMode, StorageService, StringUtils, TOASTER_SERVICE, TimerUtils, TranslatePipe, TranslatedUrlSerializer, UniqueUtils, UniversalService, UnorderedListComponent, UnorderedListItemDirective, UnorderedListTemplateDirective, UploadComponent, ValuedPromise, ValuesPipe, Vector, WASI_IMPLEMENTATION, WasmService, cachedFactory, cancelablePromise, checkTransitions, getComponentDef, impatientPromise, parseSelector, provideEntryComponents, provideWithOptions, selectorMatchesList };
7013
7239
  //# sourceMappingURL=stemy-ngx-utils.mjs.map