@stemy/ngx-utils 19.2.12 → 19.2.14

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,131 @@ 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
+ this.typeMap.push([entryComponents.moduleId || moduleId, def.selectors, type]);
3999
+ });
4000
+ });
4001
+ }
4002
+ async loadModule(moduleInfo) {
4003
+ if (this.moduleMap.has(moduleInfo.moduleId)) {
4004
+ return this.moduleMap.get(moduleInfo.moduleId);
4005
+ }
4006
+ this.moduleMap.set(moduleInfo.moduleId, new Promise(async (resolve) => {
4007
+ const router = this.injector.get(Router);
4008
+ const loader = router["navigationTransitions"].configLoader;
4009
+ const loaded = await firstValueFrom(loader.loadChildren(this.injector, {
4010
+ loadChildren: moduleInfo.loadChildren
4011
+ }));
4012
+ if (moduleInfo.routes) {
4013
+ router.resetConfig(moduleInfo.routes);
4014
+ if (moduleInfo.initialNavigation !== false) {
4015
+ router.initialNavigation();
4016
+ }
4017
+ }
4018
+ this.populateTypeMap(moduleInfo.moduleId, loaded.injector);
4019
+ resolve(loaded.injector);
4020
+ }));
4021
+ return this.moduleMap.get(moduleInfo.moduleId);
4022
+ }
4023
+ 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 }); }
4024
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: ComponentLoaderService }); }
4025
+ }
4026
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: ComponentLoaderService, decorators: [{
4027
+ type: Injectable
4028
+ }], ctorParameters: () => [{ type: i0.ApplicationRef }, { type: i0.NgModuleRef }, { type: HTMLElement, decorators: [{
4029
+ type: Inject,
4030
+ args: [ROOT_ELEMENT]
4031
+ }] }, { type: undefined, decorators: [{
4032
+ type: Optional
4033
+ }, {
4034
+ type: Inject,
4035
+ args: [DYNAMIC_MODULE_INFO]
4036
+ }] }] });
4037
+
3855
4038
  class TranslatedUrlSerializer extends DefaultUrlSerializer {
3856
4039
  constructor(language) {
3857
4040
  super();
@@ -5113,6 +5296,50 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
5113
5296
  type: Input
5114
5297
  }] } });
5115
5298
 
5299
+ class ComponentLoaderDirective {
5300
+ constructor(vcr, loader) {
5301
+ this.vcr = vcr;
5302
+ this.loader = loader;
5303
+ }
5304
+ ngOnChanges(changes) {
5305
+ if (!this.module || !this.selector)
5306
+ return;
5307
+ this.ngOnDestroy();
5308
+ this.loader.getComponentType({
5309
+ moduleId: this.module,
5310
+ selector: this.selector
5311
+ }).then(type => {
5312
+ this.cr = this.vcr.createComponent(type);
5313
+ this.cr.changeDetectorRef.markForCheck();
5314
+ this.cr.changeDetectorRef.detectChanges();
5315
+ });
5316
+ }
5317
+ ngOnDestroy() {
5318
+ if (!this.cr)
5319
+ return;
5320
+ this.cr.destroy();
5321
+ const index = this.vcr.indexOf(this.cr.hostView);
5322
+ if (index >= 0) {
5323
+ this.vcr.remove(index);
5324
+ }
5325
+ this.cr.hostView.destroy();
5326
+ }
5327
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: ComponentLoaderDirective, deps: [{ token: i0.ViewContainerRef }, { token: ComponentLoaderService }], target: i0.ɵɵFactoryTarget.Directive }); }
5328
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.3", type: ComponentLoaderDirective, isStandalone: false, selector: "[loadComponent]", inputs: { module: "module", selector: ["loadComponent", "selector"] }, usesOnChanges: true, ngImport: i0 }); }
5329
+ }
5330
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: ComponentLoaderDirective, decorators: [{
5331
+ type: Directive,
5332
+ args: [{
5333
+ standalone: false,
5334
+ selector: "[loadComponent]"
5335
+ }]
5336
+ }], ctorParameters: () => [{ type: i0.ViewContainerRef }, { type: ComponentLoaderService }], propDecorators: { module: [{
5337
+ type: Input
5338
+ }], selector: [{
5339
+ type: Input,
5340
+ args: ["loadComponent"]
5341
+ }] } });
5342
+
5116
5343
  class DynamicTableTemplateDirective {
5117
5344
  constructor(ref) {
5118
5345
  this.ref = ref;
@@ -6291,6 +6518,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
6291
6518
  args: [DynamicTableTemplateDirective]
6292
6519
  }] } });
6293
6520
 
6521
+ class FakeModuleComponent {
6522
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: FakeModuleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6523
+ 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 }); }
6524
+ }
6525
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: FakeModuleComponent, decorators: [{
6526
+ type: Component,
6527
+ args: [{
6528
+ standalone: false,
6529
+ encapsulation: ViewEncapsulation.None,
6530
+ selector: "fake-module-component",
6531
+ template: "",
6532
+ }]
6533
+ }] });
6534
+
6294
6535
  class UnorderedListComponent {
6295
6536
  constructor(cdr) {
6296
6537
  this.cdr = cdr;
@@ -6616,6 +6857,7 @@ const directives = [
6616
6857
  AsyncMethodBase,
6617
6858
  AsyncMethodDirective,
6618
6859
  BackgroundDirective,
6860
+ ComponentLoaderDirective,
6619
6861
  DynamicTableTemplateDirective,
6620
6862
  GlobalTemplateDirective,
6621
6863
  IconDirective,
@@ -6634,6 +6876,7 @@ const directives = [
6634
6876
  const components = [
6635
6877
  DropListComponent,
6636
6878
  DynamicTableComponent,
6879
+ FakeModuleComponent,
6637
6880
  PaginationMenuComponent,
6638
6881
  UnorderedListComponent,
6639
6882
  UploadComponent
@@ -6662,6 +6905,7 @@ const providers = [
6662
6905
  StaticLanguageService,
6663
6906
  StorageService,
6664
6907
  BaseToasterService,
6908
+ ComponentLoaderService,
6665
6909
  TranslatedUrlSerializer,
6666
6910
  UniversalService,
6667
6911
  WasmService,
@@ -6975,11 +7219,37 @@ class NgxUtilsModule {
6975
7219
  static provideUtils(config) {
6976
7220
  return makeEnvironmentProviders(NgxUtilsModule.getProviders(config));
6977
7221
  }
7222
+ static useDynamic(moduleInfo) {
7223
+ return {
7224
+ ngModule: NgxUtilsModule,
7225
+ providers: [
7226
+ {
7227
+ provide: ROUTES,
7228
+ multi: true,
7229
+ useValue: [
7230
+ {
7231
+ loadChildren: moduleInfo.loadChildren,
7232
+ matcher: AuthGuard.noRouteMatch
7233
+ },
7234
+ {
7235
+ component: FakeModuleComponent,
7236
+ matcher: AuthGuard.wildRouteMatch
7237
+ }
7238
+ ]
7239
+ },
7240
+ {
7241
+ provide: DYNAMIC_MODULE_INFO,
7242
+ useValue: moduleInfo,
7243
+ multi: true
7244
+ }
7245
+ ]
7246
+ };
7247
+ }
6978
7248
  constructor() {
6979
7249
  }
6980
7250
  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] }); }
7251
+ 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, ComponentLoaderDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, DropdownDirective, DropdownToggleDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, DropListComponent, DynamicTableComponent, FakeModuleComponent, PaginationMenuComponent, UnorderedListComponent, UploadComponent], imports: [CommonModule,
7252
+ 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, ComponentLoaderDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, DropdownDirective, DropdownToggleDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, DropListComponent, DynamicTableComponent, FakeModuleComponent, PaginationMenuComponent, UnorderedListComponent, UploadComponent, FormsModule] }); }
6983
7253
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: NgxUtilsModule, providers: pipes, imports: [CommonModule,
6984
7254
  FormsModule, FormsModule] }); }
6985
7255
  }
@@ -7009,5 +7279,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
7009
7279
  * Generated bundle index. Do not edit.
7010
7280
  */
7011
7281
 
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 };
7282
+ 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, ComponentLoaderDirective, 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
7283
  //# sourceMappingURL=stemy-ngx-utils.mjs.map