@stemy/ngx-utils 19.5.11 → 19.5.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,7 +1,7 @@
1
1
  import 'zone.js';
2
2
  import 'reflect-metadata';
3
3
  import * as i0 from '@angular/core';
4
- import { InjectionToken, PLATFORM_ID, Inject, Injectable, Optional, Injector, EventEmitter, isDevMode, ErrorHandler, createComponent, NgZone, Pipe, HostListener, HostBinding, Output, Input, Directive, ElementRef, input, inject, computed, ChangeDetectionStrategy, ViewEncapsulation, Component, ViewChild, forwardRef, ContentChild, ContentChildren, model, contentChildren, Renderer2, APP_INITIALIZER, makeEnvironmentProviders, NgModule } from '@angular/core';
4
+ import { InjectionToken, PLATFORM_ID, Inject, Injectable, Optional, Injector, EventEmitter, isDevMode, ErrorHandler, createComponent, NgZone, Pipe, signal, input, output, inject, ChangeDetectorRef, Renderer2, ElementRef, effect, HostListener, Directive, Input, HostBinding, Output, computed, ChangeDetectionStrategy, ViewEncapsulation, Component, ViewChild, forwardRef, ContentChild, ContentChildren, model, contentChildren, APP_INITIALIZER, makeEnvironmentProviders, NgModule } from '@angular/core';
5
5
  import * as i2 from '@angular/router';
6
6
  import { ActivatedRouteSnapshot, Scroll, NavigationEnd, Router, DefaultUrlSerializer, UrlTree, UrlSegmentGroup, UrlSegment, UrlSerializer, ROUTES } from '@angular/router';
7
7
  import { BehaviorSubject, Observable, firstValueFrom, Subject, Subscription, from, TimeoutError, combineLatest, lastValueFrom } from 'rxjs';
@@ -5278,17 +5278,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
5278
5278
  }] });
5279
5279
 
5280
5280
  class AsyncMethodBase {
5281
- get isDisabled() {
5282
- return this.disabled;
5283
- }
5284
- get isLoading() {
5285
- return this.loading;
5286
- }
5287
- constructor(toaster, cdr) {
5288
- this.toaster = toaster;
5289
- this.cdr = cdr;
5290
- this.onSuccess = new EventEmitter();
5291
- this.onError = new EventEmitter();
5281
+ constructor() {
5282
+ this.disabled = signal(false);
5283
+ this.context = input({});
5284
+ this.onSuccess = output();
5285
+ this.onError = output();
5286
+ this.toaster = inject(TOASTER_SERVICE);
5287
+ this.cdr = inject(ChangeDetectorRef);
5288
+ this.renderer = inject(Renderer2);
5289
+ this.element = inject(ElementRef);
5290
+ this.loading = signal(false);
5291
+ this.target = signal(this.element.nativeElement);
5292
+ effect(() => {
5293
+ const disabled = this.disabled();
5294
+ const loading = this.loading();
5295
+ const target = this.target();
5296
+ if (!target)
5297
+ return;
5298
+ if (disabled) {
5299
+ this.renderer.addClass(target, "disabled");
5300
+ }
5301
+ else {
5302
+ this.renderer.removeClass(target, "disabled");
5303
+ }
5304
+ if (loading) {
5305
+ this.renderer.addClass(target, "loading");
5306
+ }
5307
+ else {
5308
+ this.renderer.removeClass(target, "loading");
5309
+ }
5310
+ });
5292
5311
  }
5293
5312
  getMethod() {
5294
5313
  return async () => null;
@@ -5298,31 +5317,34 @@ class AsyncMethodBase {
5298
5317
  }
5299
5318
  click(ev) {
5300
5319
  ev?.preventDefault();
5301
- if (this.disabled)
5320
+ if (this.disabled())
5302
5321
  return true;
5303
5322
  this.callMethod(ev);
5304
5323
  return true;
5305
5324
  }
5306
5325
  callMethod(ev) {
5307
- if (this.loading)
5326
+ if (this.loading())
5308
5327
  return true;
5309
- this.loading = true;
5328
+ this.loading.set(true);
5310
5329
  const method = this.getMethod();
5311
- const result = !method ? null : method(this.context, ev);
5330
+ const result = !method ? null : method(this.context(), ev);
5331
+ console.log("Call", result);
5312
5332
  if (!(result instanceof Promise)) {
5313
- this.loading = false;
5333
+ this.loading.set(false);
5314
5334
  return false;
5315
5335
  }
5316
5336
  result.then(result => {
5317
- this.loading = false;
5337
+ console.log("result", result);
5338
+ this.loading.set(false);
5318
5339
  if (result) {
5319
5340
  this.onSuccess.emit(result);
5320
5341
  this.toaster.success(result.message, result.context);
5321
5342
  }
5322
5343
  }, reason => {
5344
+ console.log("result", reason);
5323
5345
  if (!reason || !reason.message)
5324
5346
  throw new Error("Reason must implement IAsyncMessage interface");
5325
- this.loading = false;
5347
+ this.loading.set(false);
5326
5348
  this.onError.emit(reason);
5327
5349
  this.toaster.error(reason.message, reason.context);
5328
5350
  }).finally(() => {
@@ -5332,8 +5354,8 @@ class AsyncMethodBase {
5332
5354
  });
5333
5355
  return true;
5334
5356
  }
5335
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodBase, deps: [{ token: TOASTER_SERVICE }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive }); }
5336
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.14", type: AsyncMethodBase, isStandalone: false, selector: "[__asmb__]", inputs: { disabled: "disabled", context: "context" }, outputs: { onSuccess: "onSuccess", onError: "onError" }, host: { listeners: { "click": "click($event)" }, properties: { "class.disabled": "this.isDisabled", "class.loading": "this.isLoading" } }, usesOnChanges: true, ngImport: i0 }); }
5357
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodBase, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
5358
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "19.2.14", type: AsyncMethodBase, isStandalone: false, selector: "[__asmb__]", inputs: { context: { classPropertyName: "context", publicName: "context", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onSuccess: "onSuccess", onError: "onError" }, host: { listeners: { "click": "click($event)" } }, usesOnChanges: true, ngImport: i0 }); }
5337
5359
  }
5338
5360
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodBase, decorators: [{
5339
5361
  type: Directive,
@@ -5341,46 +5363,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
5341
5363
  standalone: false,
5342
5364
  selector: "[__asmb__]"
5343
5365
  }]
5344
- }], ctorParameters: () => [{ type: undefined, decorators: [{
5345
- type: Inject,
5346
- args: [TOASTER_SERVICE]
5347
- }] }, { type: i0.ChangeDetectorRef }], propDecorators: { disabled: [{
5348
- type: Input
5349
- }], context: [{
5350
- type: Input
5351
- }], onSuccess: [{
5352
- type: Output
5353
- }], onError: [{
5354
- type: Output
5355
- }], isDisabled: [{
5356
- type: HostBinding,
5357
- args: ["class.disabled"]
5358
- }], isLoading: [{
5359
- type: HostBinding,
5360
- args: ["class.loading"]
5361
- }], click: [{
5366
+ }], ctorParameters: () => [], propDecorators: { click: [{
5362
5367
  type: HostListener,
5363
5368
  args: ["click", ["$event"]]
5364
5369
  }] } });
5365
5370
 
5366
5371
  class AsyncMethodDirective extends AsyncMethodBase {
5372
+ constructor() {
5373
+ super(...arguments);
5374
+ this.method = input(null, { alias: "async-method" });
5375
+ }
5367
5376
  getMethod() {
5368
- return this.method;
5377
+ return this.method();
5369
5378
  }
5370
5379
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
5371
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.14", type: AsyncMethodDirective, isStandalone: false, selector: "[async-method]", inputs: { method: ["async-method", "method"] }, exportAs: ["async-method"], usesInheritance: true, ngImport: i0 }); }
5380
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "19.2.14", type: AsyncMethodDirective, isStandalone: false, selector: "[async-method]", inputs: { method: { classPropertyName: "method", publicName: "async-method", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
5381
+ { provide: AsyncMethodBase, useExisting: AsyncMethodDirective }
5382
+ ], exportAs: ["async-method"], usesInheritance: true, ngImport: i0 }); }
5372
5383
  }
5373
5384
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodDirective, decorators: [{
5374
5385
  type: Directive,
5375
5386
  args: [{
5376
5387
  standalone: false,
5377
5388
  selector: "[async-method]",
5378
- exportAs: "async-method"
5389
+ exportAs: "async-method",
5390
+ providers: [
5391
+ { provide: AsyncMethodBase, useExisting: AsyncMethodDirective }
5392
+ ]
5379
5393
  }]
5380
- }], propDecorators: { method: [{
5381
- type: Input,
5382
- args: ["async-method"]
5383
- }] } });
5394
+ }] });
5395
+
5396
+ class AsyncMethodTargetDirective {
5397
+ constructor(element, asyncMethod) {
5398
+ this.element = element;
5399
+ this.asyncMethod = asyncMethod;
5400
+ if (!asyncMethod)
5401
+ return;
5402
+ asyncMethod.target.set(element.nativeElement);
5403
+ }
5404
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodTargetDirective, deps: [{ token: i0.ElementRef }, { token: AsyncMethodBase, optional: true }], target: i0.ɵɵFactoryTarget.Directive }); }
5405
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.14", type: AsyncMethodTargetDirective, isStandalone: false, selector: "[async-method-target]", ngImport: i0 }); }
5406
+ }
5407
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodTargetDirective, decorators: [{
5408
+ type: Directive,
5409
+ args: [{
5410
+ standalone: false,
5411
+ selector: "[async-method-target]"
5412
+ }]
5413
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: AsyncMethodBase, decorators: [{
5414
+ type: Optional
5415
+ }] }] });
5384
5416
 
5385
5417
  const defaultClass = "default-image";
5386
5418
  const loadingClass = "loading-image";
@@ -6276,18 +6308,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
6276
6308
  }] }] });
6277
6309
 
6278
6310
  class DropdownToggleDirective extends AsyncMethodBase {
6279
- constructor(element, dropdown, toaster, cdr) {
6280
- super(toaster, cdr);
6281
- this.element = element;
6282
- this.dropdown = dropdown;
6283
- this.switch = true;
6311
+ constructor() {
6312
+ super(...arguments);
6313
+ this.beforeOpen = input(null);
6314
+ this.switch = input(true);
6315
+ this.dropdown = inject(DropdownDirective);
6284
6316
  }
6285
6317
  getMethod() {
6286
- return this.beforeOpen;
6318
+ return this.beforeOpen();
6287
6319
  }
6288
6320
  callMethod(ev) {
6289
6321
  if (this.dropdown.isOpened) {
6290
- if (!this.switch)
6322
+ if (!this.switch())
6291
6323
  return true;
6292
6324
  this.dropdown.hide();
6293
6325
  }
@@ -6296,8 +6328,10 @@ class DropdownToggleDirective extends AsyncMethodBase {
6296
6328
  }
6297
6329
  return true;
6298
6330
  }
6299
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DropdownToggleDirective, deps: [{ token: i0.ElementRef }, { token: DropdownDirective }, { token: TOASTER_SERVICE }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive }); }
6300
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.14", type: DropdownToggleDirective, isStandalone: false, selector: "[dropdownToggle]", inputs: { beforeOpen: "beforeOpen", switch: "switch" }, exportAs: ["dropdown-toggle"], usesInheritance: true, ngImport: i0 }); }
6331
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DropdownToggleDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
6332
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "19.2.14", type: DropdownToggleDirective, isStandalone: false, selector: "[dropdownToggle]", inputs: { beforeOpen: { classPropertyName: "beforeOpen", publicName: "beforeOpen", isSignal: true, isRequired: false, transformFunction: null }, switch: { classPropertyName: "switch", publicName: "switch", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
6333
+ { provide: AsyncMethodBase, useExisting: DropdownToggleDirective }
6334
+ ], exportAs: ["dropdown-toggle"], usesInheritance: true, ngImport: i0 }); }
6301
6335
  }
6302
6336
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DropdownToggleDirective, decorators: [{
6303
6337
  type: Directive,
@@ -6305,15 +6339,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
6305
6339
  standalone: false,
6306
6340
  selector: "[dropdownToggle]",
6307
6341
  exportAs: "dropdown-toggle",
6342
+ providers: [
6343
+ { provide: AsyncMethodBase, useExisting: DropdownToggleDirective }
6344
+ ]
6308
6345
  }]
6309
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: DropdownDirective }, { type: undefined, decorators: [{
6310
- type: Inject,
6311
- args: [TOASTER_SERVICE]
6312
- }] }, { type: i0.ChangeDetectorRef }], propDecorators: { beforeOpen: [{
6313
- type: Input
6314
- }], switch: [{
6315
- type: Input
6316
- }] } });
6346
+ }] });
6317
6347
 
6318
6348
  class TabsItemDirective {
6319
6349
  constructor() {
@@ -8174,6 +8204,7 @@ const pipes = [
8174
8204
  const directives = [
8175
8205
  AsyncMethodBase,
8176
8206
  AsyncMethodDirective,
8207
+ AsyncMethodTargetDirective,
8177
8208
  BackgroundDirective,
8178
8209
  ComponentLoaderDirective,
8179
8210
  DynamicTableTemplateDirective,
@@ -8594,8 +8625,8 @@ class NgxUtilsModule {
8594
8625
  constructor() {
8595
8626
  }
8596
8627
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: NgxUtilsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
8597
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.14", ngImport: i0, type: NgxUtilsModule, declarations: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GetValuePipe, GlobalTemplatePipe, GroupByPipe, IncludesPipe, 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, DropdownContentDirective, DropdownToggleDirective, TabsItemDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, BtnComponent, BtnDefaultComponent, ChipsComponent, DropListComponent, DropdownBoxComponent, DynamicTableComponent, FakeModuleComponent, PaginationMenuComponent, IconComponent, IconDefaultComponent, InteractiveCanvasComponent, InteractiveItemComponent, InteractiveCircleComponent, InteractiveRectComponent, TabsComponent, UnorderedListComponent, UploadComponent], imports: [CommonModule,
8598
- FormsModule], exports: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GetValuePipe, GlobalTemplatePipe, GroupByPipe, IncludesPipe, 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, DropdownContentDirective, DropdownToggleDirective, TabsItemDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, BtnComponent, BtnDefaultComponent, ChipsComponent, DropListComponent, DropdownBoxComponent, DynamicTableComponent, FakeModuleComponent, PaginationMenuComponent, IconComponent, IconDefaultComponent, InteractiveCanvasComponent, InteractiveItemComponent, InteractiveCircleComponent, InteractiveRectComponent, TabsComponent, UnorderedListComponent, UploadComponent, FormsModule] }); }
8628
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.14", ngImport: i0, type: NgxUtilsModule, declarations: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GetValuePipe, GlobalTemplatePipe, GroupByPipe, IncludesPipe, IsTypePipe, JoinPipe, KeysPipe, MapPipe, MaxPipe, MinPipe, PopPipe, ReducePipe, RemapPipe, ReplacePipe, ReversePipe, RoundPipe, SafeHtmlPipe, ShiftPipe, SplitPipe, TranslatePipe, ValuesPipe, AsyncMethodBase, AsyncMethodDirective, AsyncMethodTargetDirective, BackgroundDirective, ComponentLoaderDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, DropdownDirective, DropdownContentDirective, DropdownToggleDirective, TabsItemDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, BtnComponent, BtnDefaultComponent, ChipsComponent, DropListComponent, DropdownBoxComponent, DynamicTableComponent, FakeModuleComponent, PaginationMenuComponent, IconComponent, IconDefaultComponent, InteractiveCanvasComponent, InteractiveItemComponent, InteractiveCircleComponent, InteractiveRectComponent, TabsComponent, UnorderedListComponent, UploadComponent], imports: [CommonModule,
8629
+ FormsModule], exports: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GetValuePipe, GlobalTemplatePipe, GroupByPipe, IncludesPipe, IsTypePipe, JoinPipe, KeysPipe, MapPipe, MaxPipe, MinPipe, PopPipe, ReducePipe, RemapPipe, ReplacePipe, ReversePipe, RoundPipe, SafeHtmlPipe, ShiftPipe, SplitPipe, TranslatePipe, ValuesPipe, AsyncMethodBase, AsyncMethodDirective, AsyncMethodTargetDirective, BackgroundDirective, ComponentLoaderDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, DropdownDirective, DropdownContentDirective, DropdownToggleDirective, TabsItemDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, BtnComponent, BtnDefaultComponent, ChipsComponent, DropListComponent, DropdownBoxComponent, DynamicTableComponent, FakeModuleComponent, PaginationMenuComponent, IconComponent, IconDefaultComponent, InteractiveCanvasComponent, InteractiveItemComponent, InteractiveCircleComponent, InteractiveRectComponent, TabsComponent, UnorderedListComponent, UploadComponent, FormsModule] }); }
8599
8630
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: NgxUtilsModule, providers: pipes, imports: [CommonModule,
8600
8631
  FormsModule, FormsModule] }); }
8601
8632
  }
@@ -8625,5 +8656,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
8625
8656
  * Generated bundle index. Do not edit.
8626
8657
  */
8627
8658
 
8628
- export { API_SERVICE, APP_BASE_URL, AUTH_SERVICE, AclService, AjaxRequestHandler, ApiService, ArrayUtils, AsyncMethodBase, AsyncMethodDirective, AuthGuard, BASE_CONFIG, BUTTON_TYPE, BackgroundDirective, BaseDialogService, BaseHttpClient, BaseHttpService, BaseToasterService, BtnComponent, BtnDefaultComponent, CONFIG_SERVICE, CanvasColor, CanvasUtils, ChipsComponent, ChunkPipe, Circle, ComponentLoaderDirective, ComponentLoaderService, ConfigService, DIALOG_SERVICE, DateUtils, DragDropEventPlugin, DropListComponent, DropdownBoxComponent, DropdownContentDirective, DropdownDirective, DropdownToggleDirective, DynamicTableComponent, DynamicTableTemplateDirective, ERROR_HANDLER, EXPRESS_REQUEST, EntriesPipe, ErrorHandlerService, EventsService, ExtraItemPropertiesPipe, FactoryDependencies, FakeModuleComponent, FileSystemEntry, FileUtils, FilterPipe, FindPipe, ForbiddenZone, FormatNumberPipe, FormatterService, GenericValue, GetOffsetPipe, GetTypePipe, GetValuePipe, GlobalTemplateDirective, GlobalTemplatePipe, GlobalTemplateService, GroupByPipe, HttpPromise, ICON_MAP, ICON_SERVICE, ICON_TYPE, IConfiguration, IconComponent, IconDefaultComponent, IconDirective, IconService, IncludesPipe, Initializer, InteractiveCanvasComponent, InteractiveCircleComponent, InteractiveItemComponent, InteractiveRectComponent, 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, TabsComponent, TabsItemDirective, TimerUtils, TranslatePipe, TranslatedUrlSerializer, UniqueUtils, UniversalService, UnorderedListComponent, UnorderedListItemDirective, UnorderedListTemplateDirective, UploadComponent, ValuedPromise, ValuesPipe, Vector, WASI_IMPLEMENTATION, WasmService, cachedFactory, cancelablePromise, checkTransitions, getComponentDef, hashCode, impatientPromise, parseSelector, provideEntryComponents, provideWithOptions, selectorMatchesList };
8659
+ export { API_SERVICE, APP_BASE_URL, AUTH_SERVICE, AclService, AjaxRequestHandler, ApiService, ArrayUtils, AsyncMethodBase, AsyncMethodDirective, AsyncMethodTargetDirective, AuthGuard, BASE_CONFIG, BUTTON_TYPE, BackgroundDirective, BaseDialogService, BaseHttpClient, BaseHttpService, BaseToasterService, BtnComponent, BtnDefaultComponent, CONFIG_SERVICE, CanvasColor, CanvasUtils, ChipsComponent, ChunkPipe, Circle, ComponentLoaderDirective, ComponentLoaderService, ConfigService, DIALOG_SERVICE, DateUtils, DragDropEventPlugin, DropListComponent, DropdownBoxComponent, DropdownContentDirective, DropdownDirective, DropdownToggleDirective, DynamicTableComponent, DynamicTableTemplateDirective, ERROR_HANDLER, EXPRESS_REQUEST, EntriesPipe, ErrorHandlerService, EventsService, ExtraItemPropertiesPipe, FactoryDependencies, FakeModuleComponent, FileSystemEntry, FileUtils, FilterPipe, FindPipe, ForbiddenZone, FormatNumberPipe, FormatterService, GenericValue, GetOffsetPipe, GetTypePipe, GetValuePipe, GlobalTemplateDirective, GlobalTemplatePipe, GlobalTemplateService, GroupByPipe, HttpPromise, ICON_MAP, ICON_SERVICE, ICON_TYPE, IConfiguration, IconComponent, IconDefaultComponent, IconDirective, IconService, IncludesPipe, Initializer, InteractiveCanvasComponent, InteractiveCircleComponent, InteractiveItemComponent, InteractiveRectComponent, 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, TabsComponent, TabsItemDirective, TimerUtils, TranslatePipe, TranslatedUrlSerializer, UniqueUtils, UniversalService, UnorderedListComponent, UnorderedListItemDirective, UnorderedListTemplateDirective, UploadComponent, ValuedPromise, ValuesPipe, Vector, WASI_IMPLEMENTATION, WasmService, cachedFactory, cancelablePromise, checkTransitions, getComponentDef, hashCode, impatientPromise, parseSelector, provideEntryComponents, provideWithOptions, selectorMatchesList };
8629
8660
  //# sourceMappingURL=stemy-ngx-utils.mjs.map