@stemy/ngx-utils 19.5.11 → 19.5.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.
- package/fesm2022/stemy-ngx-utils.mjs +94 -66
- package/fesm2022/stemy-ngx-utils.mjs.map +1 -1
- package/ngx-utils/directives/async-method-target.directive.d.ts +10 -0
- package/ngx-utils/directives/async-method.base.d.ts +14 -13
- package/ngx-utils/directives/async-method.directive.d.ts +2 -2
- package/ngx-utils/directives/dropdown-toggle.directive.d.ts +4 -7
- package/ngx-utils/ngx-utils.imports.d.ts +2 -2
- package/ngx-utils/ngx-utils.module.d.ts +38 -37
- package/package.json +1 -1
- package/public_api.d.ts +1 -0
|
@@ -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,
|
|
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
|
-
|
|
5282
|
-
|
|
5283
|
-
|
|
5284
|
-
|
|
5285
|
-
|
|
5286
|
-
|
|
5287
|
-
|
|
5288
|
-
this.
|
|
5289
|
-
this.
|
|
5290
|
-
this.
|
|
5291
|
-
this.
|
|
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,23 +5317,23 @@ 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
|
|
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);
|
|
5312
5331
|
if (!(result instanceof Promise)) {
|
|
5313
|
-
this.loading
|
|
5332
|
+
this.loading.set(false);
|
|
5314
5333
|
return false;
|
|
5315
5334
|
}
|
|
5316
5335
|
result.then(result => {
|
|
5317
|
-
this.loading
|
|
5336
|
+
this.loading.set(false);
|
|
5318
5337
|
if (result) {
|
|
5319
5338
|
this.onSuccess.emit(result);
|
|
5320
5339
|
this.toaster.success(result.message, result.context);
|
|
@@ -5322,7 +5341,7 @@ class AsyncMethodBase {
|
|
|
5322
5341
|
}, reason => {
|
|
5323
5342
|
if (!reason || !reason.message)
|
|
5324
5343
|
throw new Error("Reason must implement IAsyncMessage interface");
|
|
5325
|
-
this.loading
|
|
5344
|
+
this.loading.set(false);
|
|
5326
5345
|
this.onError.emit(reason);
|
|
5327
5346
|
this.toaster.error(reason.message, reason.context);
|
|
5328
5347
|
}).finally(() => {
|
|
@@ -5332,8 +5351,8 @@ class AsyncMethodBase {
|
|
|
5332
5351
|
});
|
|
5333
5352
|
return true;
|
|
5334
5353
|
}
|
|
5335
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodBase, deps: [
|
|
5336
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
5354
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodBase, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5355
|
+
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
5356
|
}
|
|
5338
5357
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodBase, decorators: [{
|
|
5339
5358
|
type: Directive,
|
|
@@ -5341,46 +5360,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
5341
5360
|
standalone: false,
|
|
5342
5361
|
selector: "[__asmb__]"
|
|
5343
5362
|
}]
|
|
5344
|
-
}], ctorParameters: () => [
|
|
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: [{
|
|
5363
|
+
}], ctorParameters: () => [], propDecorators: { click: [{
|
|
5362
5364
|
type: HostListener,
|
|
5363
5365
|
args: ["click", ["$event"]]
|
|
5364
5366
|
}] } });
|
|
5365
5367
|
|
|
5366
5368
|
class AsyncMethodDirective extends AsyncMethodBase {
|
|
5369
|
+
constructor() {
|
|
5370
|
+
super(...arguments);
|
|
5371
|
+
this.method = input(null, { alias: "async-method" });
|
|
5372
|
+
}
|
|
5367
5373
|
getMethod() {
|
|
5368
|
-
return this.method;
|
|
5374
|
+
return this.method();
|
|
5369
5375
|
}
|
|
5370
5376
|
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: "
|
|
5377
|
+
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: [
|
|
5378
|
+
{ provide: AsyncMethodBase, useExisting: AsyncMethodDirective }
|
|
5379
|
+
], exportAs: ["async-method"], usesInheritance: true, ngImport: i0 }); }
|
|
5372
5380
|
}
|
|
5373
5381
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodDirective, decorators: [{
|
|
5374
5382
|
type: Directive,
|
|
5375
5383
|
args: [{
|
|
5376
5384
|
standalone: false,
|
|
5377
5385
|
selector: "[async-method]",
|
|
5378
|
-
exportAs: "async-method"
|
|
5386
|
+
exportAs: "async-method",
|
|
5387
|
+
providers: [
|
|
5388
|
+
{ provide: AsyncMethodBase, useExisting: AsyncMethodDirective }
|
|
5389
|
+
]
|
|
5379
5390
|
}]
|
|
5380
|
-
}]
|
|
5381
|
-
|
|
5382
|
-
|
|
5383
|
-
|
|
5391
|
+
}] });
|
|
5392
|
+
|
|
5393
|
+
class AsyncMethodTargetDirective {
|
|
5394
|
+
constructor(element, asyncMethod) {
|
|
5395
|
+
this.element = element;
|
|
5396
|
+
this.asyncMethod = asyncMethod;
|
|
5397
|
+
if (!asyncMethod)
|
|
5398
|
+
return;
|
|
5399
|
+
asyncMethod.target.set(element.nativeElement);
|
|
5400
|
+
}
|
|
5401
|
+
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 }); }
|
|
5402
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.14", type: AsyncMethodTargetDirective, isStandalone: false, selector: "[async-method-target]", ngImport: i0 }); }
|
|
5403
|
+
}
|
|
5404
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodTargetDirective, decorators: [{
|
|
5405
|
+
type: Directive,
|
|
5406
|
+
args: [{
|
|
5407
|
+
standalone: false,
|
|
5408
|
+
selector: "[async-method-target]"
|
|
5409
|
+
}]
|
|
5410
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: AsyncMethodBase, decorators: [{
|
|
5411
|
+
type: Optional
|
|
5412
|
+
}] }] });
|
|
5384
5413
|
|
|
5385
5414
|
const defaultClass = "default-image";
|
|
5386
5415
|
const loadingClass = "loading-image";
|
|
@@ -6276,18 +6305,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
6276
6305
|
}] }] });
|
|
6277
6306
|
|
|
6278
6307
|
class DropdownToggleDirective extends AsyncMethodBase {
|
|
6279
|
-
constructor(
|
|
6280
|
-
super(
|
|
6281
|
-
this.
|
|
6282
|
-
this.
|
|
6283
|
-
this.
|
|
6308
|
+
constructor() {
|
|
6309
|
+
super(...arguments);
|
|
6310
|
+
this.beforeOpen = input(null);
|
|
6311
|
+
this.switch = input(true);
|
|
6312
|
+
this.dropdown = inject(DropdownDirective);
|
|
6284
6313
|
}
|
|
6285
6314
|
getMethod() {
|
|
6286
|
-
return this.beforeOpen;
|
|
6315
|
+
return this.beforeOpen();
|
|
6287
6316
|
}
|
|
6288
6317
|
callMethod(ev) {
|
|
6289
6318
|
if (this.dropdown.isOpened) {
|
|
6290
|
-
if (!this.switch)
|
|
6319
|
+
if (!this.switch())
|
|
6291
6320
|
return true;
|
|
6292
6321
|
this.dropdown.hide();
|
|
6293
6322
|
}
|
|
@@ -6296,8 +6325,10 @@ class DropdownToggleDirective extends AsyncMethodBase {
|
|
|
6296
6325
|
}
|
|
6297
6326
|
return true;
|
|
6298
6327
|
}
|
|
6299
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DropdownToggleDirective, deps:
|
|
6300
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
6328
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DropdownToggleDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6329
|
+
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: [
|
|
6330
|
+
{ provide: AsyncMethodBase, useExisting: DropdownToggleDirective }
|
|
6331
|
+
], exportAs: ["dropdown-toggle"], usesInheritance: true, ngImport: i0 }); }
|
|
6301
6332
|
}
|
|
6302
6333
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DropdownToggleDirective, decorators: [{
|
|
6303
6334
|
type: Directive,
|
|
@@ -6305,15 +6336,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
6305
6336
|
standalone: false,
|
|
6306
6337
|
selector: "[dropdownToggle]",
|
|
6307
6338
|
exportAs: "dropdown-toggle",
|
|
6339
|
+
providers: [
|
|
6340
|
+
{ provide: AsyncMethodBase, useExisting: DropdownToggleDirective }
|
|
6341
|
+
]
|
|
6308
6342
|
}]
|
|
6309
|
-
}]
|
|
6310
|
-
type: Inject,
|
|
6311
|
-
args: [TOASTER_SERVICE]
|
|
6312
|
-
}] }, { type: i0.ChangeDetectorRef }], propDecorators: { beforeOpen: [{
|
|
6313
|
-
type: Input
|
|
6314
|
-
}], switch: [{
|
|
6315
|
-
type: Input
|
|
6316
|
-
}] } });
|
|
6343
|
+
}] });
|
|
6317
6344
|
|
|
6318
6345
|
class TabsItemDirective {
|
|
6319
6346
|
constructor() {
|
|
@@ -8174,6 +8201,7 @@ const pipes = [
|
|
|
8174
8201
|
const directives = [
|
|
8175
8202
|
AsyncMethodBase,
|
|
8176
8203
|
AsyncMethodDirective,
|
|
8204
|
+
AsyncMethodTargetDirective,
|
|
8177
8205
|
BackgroundDirective,
|
|
8178
8206
|
ComponentLoaderDirective,
|
|
8179
8207
|
DynamicTableTemplateDirective,
|
|
@@ -8594,8 +8622,8 @@ class NgxUtilsModule {
|
|
|
8594
8622
|
constructor() {
|
|
8595
8623
|
}
|
|
8596
8624
|
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] }); }
|
|
8625
|
+
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,
|
|
8626
|
+
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
8627
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: NgxUtilsModule, providers: pipes, imports: [CommonModule,
|
|
8600
8628
|
FormsModule, FormsModule] }); }
|
|
8601
8629
|
}
|
|
@@ -8625,5 +8653,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
8625
8653
|
* Generated bundle index. Do not edit.
|
|
8626
8654
|
*/
|
|
8627
8655
|
|
|
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 };
|
|
8656
|
+
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
8657
|
//# sourceMappingURL=stemy-ngx-utils.mjs.map
|