@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
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ElementRef } from "@angular/core";
|
|
2
|
+
import { AsyncMethodBase } from "./async-method.base";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AsyncMethodTargetDirective {
|
|
5
|
+
protected element: ElementRef;
|
|
6
|
+
protected asyncMethod: AsyncMethodBase;
|
|
7
|
+
constructor(element: ElementRef, asyncMethod: AsyncMethodBase);
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AsyncMethodTargetDirective, [null, { optional: true; }]>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AsyncMethodTargetDirective, "[async-method-target]", never, {}, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -1,21 +1,22 @@
|
|
|
1
|
-
import { ChangeDetectorRef,
|
|
2
|
-
import { AsyncMethod, IAsyncMessage
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, OnChanges, Renderer2 } from "@angular/core";
|
|
2
|
+
import { AsyncMethod, IAsyncMessage } from "../common-types";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class AsyncMethodBase implements OnChanges {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
5
|
+
readonly disabled: import("@angular/core").WritableSignal<boolean>;
|
|
6
|
+
readonly context: import("@angular/core").InputSignal<any>;
|
|
7
|
+
readonly onSuccess: import("@angular/core").OutputEmitterRef<IAsyncMessage>;
|
|
8
|
+
readonly onError: import("@angular/core").OutputEmitterRef<IAsyncMessage>;
|
|
9
|
+
readonly toaster: import("../common-types").IToasterService;
|
|
10
|
+
readonly cdr: ChangeDetectorRef;
|
|
11
|
+
readonly renderer: Renderer2;
|
|
12
|
+
readonly element: ElementRef<HTMLElement>;
|
|
13
|
+
readonly loading: import("@angular/core").WritableSignal<boolean>;
|
|
14
|
+
readonly target: import("@angular/core").WritableSignal<HTMLElement>;
|
|
15
|
+
constructor();
|
|
15
16
|
protected getMethod(): AsyncMethod;
|
|
16
17
|
ngOnChanges(): void;
|
|
17
18
|
click(ev: MouseEvent): boolean;
|
|
18
19
|
callMethod(ev?: MouseEvent): boolean;
|
|
19
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<AsyncMethodBase, never>;
|
|
20
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AsyncMethodBase, "[__asmb__]", never, { "
|
|
21
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AsyncMethodBase, "[__asmb__]", never, { "context": { "alias": "context"; "required": false; "isSignal": true; }; }, { "onSuccess": "onSuccess"; "onError": "onError"; }, never, never, false, never>;
|
|
21
22
|
}
|
|
@@ -2,8 +2,8 @@ import { AsyncMethod } from "../common-types";
|
|
|
2
2
|
import { AsyncMethodBase } from "./async-method.base";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class AsyncMethodDirective extends AsyncMethodBase {
|
|
5
|
-
method: AsyncMethod
|
|
5
|
+
readonly method: import("@angular/core").InputSignal<AsyncMethod>;
|
|
6
6
|
protected getMethod(): AsyncMethod;
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<AsyncMethodDirective, never>;
|
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AsyncMethodDirective, "[async-method]", ["async-method"], { "method": { "alias": "async-method"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AsyncMethodDirective, "[async-method]", ["async-method"], { "method": { "alias": "async-method"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
9
9
|
}
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
import { ChangeDetectorRef, ElementRef } from "@angular/core";
|
|
2
1
|
import { DropdownDirective } from "./dropdown.directive";
|
|
3
2
|
import { AsyncMethodBase } from "./async-method.base";
|
|
4
|
-
import { AsyncMethod
|
|
3
|
+
import { AsyncMethod } from "../common-types";
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
export declare class DropdownToggleDirective extends AsyncMethodBase {
|
|
7
|
-
readonly
|
|
6
|
+
readonly beforeOpen: import("@angular/core").InputSignal<AsyncMethod>;
|
|
7
|
+
readonly switch: import("@angular/core").InputSignal<boolean>;
|
|
8
8
|
readonly dropdown: DropdownDirective;
|
|
9
|
-
beforeOpen: AsyncMethod;
|
|
10
|
-
switch: boolean;
|
|
11
|
-
constructor(element: ElementRef, dropdown: DropdownDirective, toaster: IToasterService, cdr: ChangeDetectorRef);
|
|
12
9
|
protected getMethod(): AsyncMethod;
|
|
13
10
|
callMethod(ev: MouseEvent): boolean;
|
|
14
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownToggleDirective, never>;
|
|
15
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownToggleDirective, "[dropdownToggle]", ["dropdown-toggle"], { "beforeOpen": { "alias": "beforeOpen"; "required": false; }; "switch": { "alias": "switch"; "required": false; }; }, {}, never, never, false, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownToggleDirective, "[dropdownToggle]", ["dropdown-toggle"], { "beforeOpen": { "alias": "beforeOpen"; "required": false; "isSignal": true; }; "switch": { "alias": "switch"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
16
13
|
}
|
|
@@ -29,6 +29,7 @@ import { DragDropEventPlugin } from "./plugins/drag-drop-event.plugin";
|
|
|
29
29
|
import { ResizeEventPlugin } from "./plugins/resize-event.plugin";
|
|
30
30
|
import { ScrollEventPlugin } from "./plugins/scroll-event.plugin";
|
|
31
31
|
import { AsyncMethodBase } from "./directives/async-method.base";
|
|
32
|
+
import { AsyncMethodTargetDirective } from "./directives/async-method-target.directive";
|
|
32
33
|
import { BackgroundDirective } from "./directives/background.directive";
|
|
33
34
|
import { ComponentLoaderDirective } from "./directives/component-loader.directive";
|
|
34
35
|
import { DynamicTableTemplateDirective } from "./directives/dynamic-table-template.directive";
|
|
@@ -42,7 +43,6 @@ import { StickyDirective } from "./directives/sticky.directive";
|
|
|
42
43
|
import { StickyClassDirective } from "./directives/sticky-class.directive";
|
|
43
44
|
import { DropdownDirective } from "./directives/dropdown.directive";
|
|
44
45
|
import { DropdownContentDirective } from "./directives/dropdown-content.directive";
|
|
45
|
-
import { DropdownToggleDirective } from "./directives/dropdown-toggle.directive";
|
|
46
46
|
import { TabsItemDirective } from "./directives/tabs-item.directive";
|
|
47
47
|
import { UnorderedListItemDirective } from "./directives/unordered-list-item.directive";
|
|
48
48
|
import { UnorderedListTemplateDirective } from "./directives/unordered-list-template.directive";
|
|
@@ -65,7 +65,7 @@ import { PaginationMenuComponent } from "./components/pagination-menu/pagination
|
|
|
65
65
|
import { UnorderedListComponent } from "./components/unordered-list/unordered-list.component";
|
|
66
66
|
import { UploadComponent } from "./components/upload/upload.component";
|
|
67
67
|
export declare const pipes: (typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | typeof IncludesPipe | typeof ReducePipe | typeof RoundPipe | typeof SafeHtmlPipe | typeof TranslatePipe)[];
|
|
68
|
-
export declare const directives: (typeof AsyncMethodBase | typeof BackgroundDirective | typeof ComponentLoaderDirective | typeof DynamicTableTemplateDirective | typeof GlobalTemplateDirective | typeof IconDirective | typeof NgxTemplateOutletDirective | typeof PaginationDirective | typeof PaginationItemDirective | typeof ResourceIfDirective | typeof StickyDirective | typeof StickyClassDirective | typeof DropdownDirective | typeof DropdownContentDirective | typeof
|
|
68
|
+
export declare const directives: (typeof AsyncMethodBase | typeof AsyncMethodTargetDirective | typeof BackgroundDirective | typeof ComponentLoaderDirective | typeof DynamicTableTemplateDirective | typeof GlobalTemplateDirective | typeof IconDirective | typeof NgxTemplateOutletDirective | typeof PaginationDirective | typeof PaginationItemDirective | typeof ResourceIfDirective | typeof StickyDirective | typeof StickyClassDirective | typeof DropdownDirective | typeof DropdownContentDirective | typeof TabsItemDirective | typeof UnorderedListItemDirective | typeof UnorderedListTemplateDirective)[];
|
|
69
69
|
export declare const components: (typeof ChipsComponent | typeof DropListComponent | typeof DynamicTableComponent | typeof FakeModuleComponent | typeof PaginationMenuComponent | typeof InteractiveCanvasComponent | typeof InteractiveCircleComponent | typeof InteractiveRectComponent | typeof UnorderedListComponent | typeof UploadComponent)[];
|
|
70
70
|
export declare const providers: (typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | typeof IncludesPipe | typeof ReducePipe | typeof RoundPipe | typeof SafeHtmlPipe | typeof TranslatePipe | typeof BaseHttpClient | typeof BaseHttpService | typeof AuthGuard | typeof AclService | typeof StaticAuthService | typeof ConfigService | typeof BaseDialogService | typeof ErrorHandlerService | typeof EventsService | typeof FormatterService | typeof GlobalTemplateService | typeof IconService | typeof StaticLanguageService | typeof OpenApiService | typeof PromiseService | typeof SocketService | typeof StateService | typeof StorageService | typeof BaseToasterService | typeof ComponentLoaderService | typeof TranslatedUrlSerializer | typeof UniversalService | typeof WasmService | typeof DeviceDetectorService | {
|
|
71
71
|
provide: import("@angular/core").InjectionToken<import("@angular/platform-browser").EventManagerPlugin[]>;
|
|
@@ -32,42 +32,43 @@ import * as i28 from "./pipes/translate.pipe";
|
|
|
32
32
|
import * as i29 from "./pipes/values.pipe";
|
|
33
33
|
import * as i30 from "./directives/async-method.base";
|
|
34
34
|
import * as i31 from "./directives/async-method.directive";
|
|
35
|
-
import * as i32 from "./directives/
|
|
36
|
-
import * as i33 from "./directives/
|
|
37
|
-
import * as i34 from "./directives/
|
|
38
|
-
import * as i35 from "./directives/
|
|
39
|
-
import * as i36 from "./directives/
|
|
40
|
-
import * as i37 from "./directives/
|
|
41
|
-
import * as i38 from "./directives/
|
|
42
|
-
import * as i39 from "./directives/pagination
|
|
43
|
-
import * as i40 from "./directives/
|
|
44
|
-
import * as i41 from "./directives/
|
|
45
|
-
import * as i42 from "./directives/sticky
|
|
46
|
-
import * as i43 from "./directives/
|
|
47
|
-
import * as i44 from "./directives/dropdown
|
|
48
|
-
import * as i45 from "./directives/dropdown-
|
|
49
|
-
import * as i46 from "./directives/
|
|
50
|
-
import * as i47 from "./directives/
|
|
51
|
-
import * as i48 from "./directives/unordered-list-
|
|
52
|
-
import * as i49 from "./
|
|
53
|
-
import * as i50 from "./components/btn
|
|
54
|
-
import * as i51 from "./components/
|
|
55
|
-
import * as i52 from "./components/
|
|
56
|
-
import * as i53 from "./components/
|
|
57
|
-
import * as i54 from "./components/
|
|
58
|
-
import * as i55 from "./components/
|
|
59
|
-
import * as i56 from "./components/
|
|
60
|
-
import * as i57 from "./components/
|
|
61
|
-
import * as i58 from "./components/icon
|
|
62
|
-
import * as i59 from "./components/
|
|
63
|
-
import * as i60 from "./components/interactive-canvas/interactive-
|
|
64
|
-
import * as i61 from "./components/interactive-canvas/interactive-
|
|
65
|
-
import * as i62 from "./components/interactive-canvas/interactive-
|
|
66
|
-
import * as i63 from "./components/
|
|
67
|
-
import * as i64 from "./components/
|
|
68
|
-
import * as i65 from "./components/
|
|
69
|
-
import * as i66 from "
|
|
70
|
-
import * as i67 from "@angular/
|
|
35
|
+
import * as i32 from "./directives/async-method-target.directive";
|
|
36
|
+
import * as i33 from "./directives/background.directive";
|
|
37
|
+
import * as i34 from "./directives/component-loader.directive";
|
|
38
|
+
import * as i35 from "./directives/dynamic-table-template.directive";
|
|
39
|
+
import * as i36 from "./directives/global-template.directive";
|
|
40
|
+
import * as i37 from "./directives/icon.directive";
|
|
41
|
+
import * as i38 from "./directives/ngx-template-outlet.directive";
|
|
42
|
+
import * as i39 from "./directives/pagination.directive";
|
|
43
|
+
import * as i40 from "./directives/pagination-item.directive";
|
|
44
|
+
import * as i41 from "./directives/resource-if.directive";
|
|
45
|
+
import * as i42 from "./directives/sticky.directive";
|
|
46
|
+
import * as i43 from "./directives/sticky-class.directive";
|
|
47
|
+
import * as i44 from "./directives/dropdown.directive";
|
|
48
|
+
import * as i45 from "./directives/dropdown-content.directive";
|
|
49
|
+
import * as i46 from "./directives/dropdown-toggle.directive";
|
|
50
|
+
import * as i47 from "./directives/tabs-item.directive";
|
|
51
|
+
import * as i48 from "./directives/unordered-list-item.directive";
|
|
52
|
+
import * as i49 from "./directives/unordered-list-template.directive";
|
|
53
|
+
import * as i50 from "./components/btn/btn.component";
|
|
54
|
+
import * as i51 from "./components/btn-default/btn-default.component";
|
|
55
|
+
import * as i52 from "./components/chips/chips.component";
|
|
56
|
+
import * as i53 from "./components/drop-list/drop-list.component";
|
|
57
|
+
import * as i54 from "./components/dropdown-box/dropdown-box.component";
|
|
58
|
+
import * as i55 from "./components/dynamic-table/dynamic-table.component";
|
|
59
|
+
import * as i56 from "./components/fake-module/fake-module.component";
|
|
60
|
+
import * as i57 from "./components/pagination-menu/pagination-menu.component";
|
|
61
|
+
import * as i58 from "./components/icon/icon.component";
|
|
62
|
+
import * as i59 from "./components/icon-default/icon-default.component";
|
|
63
|
+
import * as i60 from "./components/interactive-canvas/interactive-canvas.component";
|
|
64
|
+
import * as i61 from "./components/interactive-canvas/interactive-item.component";
|
|
65
|
+
import * as i62 from "./components/interactive-canvas/interactive-circle.component";
|
|
66
|
+
import * as i63 from "./components/interactive-canvas/interactive-rect.component";
|
|
67
|
+
import * as i64 from "./components/tabs/tabs.component";
|
|
68
|
+
import * as i65 from "./components/unordered-list/unordered-list.component";
|
|
69
|
+
import * as i66 from "./components/upload/upload.component";
|
|
70
|
+
import * as i67 from "@angular/common";
|
|
71
|
+
import * as i68 from "@angular/forms";
|
|
71
72
|
export declare function loadBaseUrl(): string;
|
|
72
73
|
export declare function loadBaseHref(baseUrl: string): string;
|
|
73
74
|
export declare function getRootElement(): HTMLElement;
|
|
@@ -78,6 +79,6 @@ export declare class NgxUtilsModule {
|
|
|
78
79
|
static useDynamic(moduleInfo: DynamicModuleInfo): ModuleWithProviders<NgxUtilsModule>;
|
|
79
80
|
constructor();
|
|
80
81
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgxUtilsModule, never>;
|
|
81
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NgxUtilsModule, [typeof i1.ChunkPipe, typeof i2.EntriesPipe, typeof i3.ExtraItemPropertiesPipe, typeof i4.FilterPipe, typeof i5.FindPipe, typeof i6.FormatNumberPipe, typeof i7.GetOffsetPipe, typeof i8.GetTypePipe, typeof i9.GetValuePipe, typeof i10.GlobalTemplatePipe, typeof i11.GroupByPipe, typeof i12.IncludesPipe, typeof i13.IsTypePipe, typeof i14.JoinPipe, typeof i15.KeysPipe, typeof i16.MapPipe, typeof i17.MaxPipe, typeof i18.MinPipe, typeof i19.PopPipe, typeof i20.ReducePipe, typeof i21.RemapPipe, typeof i22.ReplacePipe, typeof i23.ReversePipe, typeof i24.RoundPipe, typeof i25.SafeHtmlPipe, typeof i26.ShiftPipe, typeof i27.SplitPipe, typeof i28.TranslatePipe, typeof i29.ValuesPipe, typeof i30.AsyncMethodBase, typeof i31.AsyncMethodDirective, typeof i32.
|
|
82
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NgxUtilsModule, [typeof i1.ChunkPipe, typeof i2.EntriesPipe, typeof i3.ExtraItemPropertiesPipe, typeof i4.FilterPipe, typeof i5.FindPipe, typeof i6.FormatNumberPipe, typeof i7.GetOffsetPipe, typeof i8.GetTypePipe, typeof i9.GetValuePipe, typeof i10.GlobalTemplatePipe, typeof i11.GroupByPipe, typeof i12.IncludesPipe, typeof i13.IsTypePipe, typeof i14.JoinPipe, typeof i15.KeysPipe, typeof i16.MapPipe, typeof i17.MaxPipe, typeof i18.MinPipe, typeof i19.PopPipe, typeof i20.ReducePipe, typeof i21.RemapPipe, typeof i22.ReplacePipe, typeof i23.ReversePipe, typeof i24.RoundPipe, typeof i25.SafeHtmlPipe, typeof i26.ShiftPipe, typeof i27.SplitPipe, typeof i28.TranslatePipe, typeof i29.ValuesPipe, typeof i30.AsyncMethodBase, typeof i31.AsyncMethodDirective, typeof i32.AsyncMethodTargetDirective, typeof i33.BackgroundDirective, typeof i34.ComponentLoaderDirective, typeof i35.DynamicTableTemplateDirective, typeof i36.GlobalTemplateDirective, typeof i37.IconDirective, typeof i38.NgxTemplateOutletDirective, typeof i39.PaginationDirective, typeof i40.PaginationItemDirective, typeof i41.ResourceIfDirective, typeof i42.StickyDirective, typeof i43.StickyClassDirective, typeof i44.DropdownDirective, typeof i45.DropdownContentDirective, typeof i46.DropdownToggleDirective, typeof i47.TabsItemDirective, typeof i48.UnorderedListItemDirective, typeof i49.UnorderedListTemplateDirective, typeof i50.BtnComponent, typeof i51.BtnDefaultComponent, typeof i52.ChipsComponent, typeof i53.DropListComponent, typeof i54.DropdownBoxComponent, typeof i55.DynamicTableComponent, typeof i56.FakeModuleComponent, typeof i57.PaginationMenuComponent, typeof i58.IconComponent, typeof i59.IconDefaultComponent, typeof i60.InteractiveCanvasComponent, typeof i61.InteractiveItemComponent, typeof i62.InteractiveCircleComponent, typeof i63.InteractiveRectComponent, typeof i64.TabsComponent, typeof i65.UnorderedListComponent, typeof i66.UploadComponent], [typeof i67.CommonModule, typeof i68.FormsModule], [typeof i1.ChunkPipe, typeof i2.EntriesPipe, typeof i3.ExtraItemPropertiesPipe, typeof i4.FilterPipe, typeof i5.FindPipe, typeof i6.FormatNumberPipe, typeof i7.GetOffsetPipe, typeof i8.GetTypePipe, typeof i9.GetValuePipe, typeof i10.GlobalTemplatePipe, typeof i11.GroupByPipe, typeof i12.IncludesPipe, typeof i13.IsTypePipe, typeof i14.JoinPipe, typeof i15.KeysPipe, typeof i16.MapPipe, typeof i17.MaxPipe, typeof i18.MinPipe, typeof i19.PopPipe, typeof i20.ReducePipe, typeof i21.RemapPipe, typeof i22.ReplacePipe, typeof i23.ReversePipe, typeof i24.RoundPipe, typeof i25.SafeHtmlPipe, typeof i26.ShiftPipe, typeof i27.SplitPipe, typeof i28.TranslatePipe, typeof i29.ValuesPipe, typeof i30.AsyncMethodBase, typeof i31.AsyncMethodDirective, typeof i32.AsyncMethodTargetDirective, typeof i33.BackgroundDirective, typeof i34.ComponentLoaderDirective, typeof i35.DynamicTableTemplateDirective, typeof i36.GlobalTemplateDirective, typeof i37.IconDirective, typeof i38.NgxTemplateOutletDirective, typeof i39.PaginationDirective, typeof i40.PaginationItemDirective, typeof i41.ResourceIfDirective, typeof i42.StickyDirective, typeof i43.StickyClassDirective, typeof i44.DropdownDirective, typeof i45.DropdownContentDirective, typeof i46.DropdownToggleDirective, typeof i47.TabsItemDirective, typeof i48.UnorderedListItemDirective, typeof i49.UnorderedListTemplateDirective, typeof i50.BtnComponent, typeof i51.BtnDefaultComponent, typeof i52.ChipsComponent, typeof i53.DropListComponent, typeof i54.DropdownBoxComponent, typeof i55.DynamicTableComponent, typeof i56.FakeModuleComponent, typeof i57.PaginationMenuComponent, typeof i58.IconComponent, typeof i59.IconDefaultComponent, typeof i60.InteractiveCanvasComponent, typeof i61.InteractiveItemComponent, typeof i62.InteractiveCircleComponent, typeof i63.InteractiveRectComponent, typeof i64.TabsComponent, typeof i65.UnorderedListComponent, typeof i66.UploadComponent, typeof i68.FormsModule]>;
|
|
82
83
|
static ɵinj: i0.ɵɵInjectorDeclaration<NgxUtilsModule>;
|
|
83
84
|
}
|
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -89,6 +89,7 @@ export { TranslatePipe } from "./ngx-utils/pipes/translate.pipe";
|
|
|
89
89
|
export { ValuesPipe } from "./ngx-utils/pipes/values.pipe";
|
|
90
90
|
export { AsyncMethodBase } from "./ngx-utils/directives/async-method.base";
|
|
91
91
|
export { AsyncMethodDirective } from "./ngx-utils/directives/async-method.directive";
|
|
92
|
+
export { AsyncMethodTargetDirective } from "./ngx-utils/directives/async-method-target.directive";
|
|
92
93
|
export { BackgroundDirective } from "./ngx-utils/directives/background.directive";
|
|
93
94
|
export { ComponentLoaderDirective } from "./ngx-utils/directives/component-loader.directive";
|
|
94
95
|
export { DynamicTableTemplateDirective } from "./ngx-utils/directives/dynamic-table-template.directive";
|