@stemy/ngx-utils 19.3.5 → 19.4.1
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 +137 -62
- package/fesm2022/stemy-ngx-utils.mjs.map +1 -1
- package/ngx-utils/common-types.d.ts +5 -2
- package/ngx-utils/components/dropdown-box/dropdown-box.component.d.ts +4 -3
- package/ngx-utils/components/upload/upload.component.d.ts +7 -6
- package/ngx-utils/directives/async-method.base.d.ts +2 -2
- package/ngx-utils/directives/dropdown-content.directive.d.ts +4 -1
- package/ngx-utils/directives/dropdown-toggle.directive.d.ts +3 -2
- package/ngx-utils/directives/dropdown.directive.d.ts +9 -4
- package/ngx-utils/directives/pagination.directive.d.ts +5 -3
- package/ngx-utils/ngx-utils.imports.d.ts +1 -1
- package/ngx-utils/ngx-utils.module.d.ts +1 -0
- package/package.json +1 -1
- package/public_api.d.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventEmitter, InjectionToken, Injector, NgZone, Provider, TemplateRef, Type } from "@angular/core";
|
|
1
|
+
import { ElementRef, EventEmitter, InjectionToken, Injector, NgZone, Provider, TemplateRef, Type } from "@angular/core";
|
|
2
2
|
import { HttpClient, HttpErrorResponse, HttpHeaders } from "@angular/common/http";
|
|
3
3
|
import { ActivatedRouteSnapshot, Data, LoadChildrenCallback, Route, Routes, UrlTree } from "@angular/router";
|
|
4
4
|
import { Request } from "express";
|
|
@@ -188,7 +188,8 @@ export interface IAsyncMessage {
|
|
|
188
188
|
message: string;
|
|
189
189
|
context?: any;
|
|
190
190
|
}
|
|
191
|
-
export type AsyncMethod = (context?: any) => Promise<IAsyncMessage>;
|
|
191
|
+
export type AsyncMethod = (context?: any, ev?: MouseEvent) => Promise<IAsyncMessage>;
|
|
192
|
+
export type DropdownAttachTo = "root" | HTMLElement | ElementRef<HTMLElement> | null;
|
|
192
193
|
export interface UnorderedListTemplate {
|
|
193
194
|
readonly type: string;
|
|
194
195
|
readonly selector: string;
|
|
@@ -198,12 +199,14 @@ export interface UnorderedListTemplates {
|
|
|
198
199
|
[type: string]: TemplateRef<any>;
|
|
199
200
|
}
|
|
200
201
|
export type UnorderedListStyle = "table" | "list";
|
|
202
|
+
export type UploadType = string | Blob;
|
|
201
203
|
export interface IFileUploadResult {
|
|
202
204
|
_id?: string;
|
|
203
205
|
id?: string;
|
|
204
206
|
contentType?: string;
|
|
205
207
|
createdAt?: Date;
|
|
206
208
|
filename?: string;
|
|
209
|
+
file?: Blob;
|
|
207
210
|
}
|
|
208
211
|
export interface IFileUploadProcess {
|
|
209
212
|
file: File;
|
|
@@ -2,6 +2,7 @@ import { AfterViewInit, OnChanges } from "@angular/core";
|
|
|
2
2
|
import { Placement } from "@floating-ui/utils";
|
|
3
3
|
import { Alignment, AutoPlacementOptions } from "@floating-ui/dom";
|
|
4
4
|
import { DropdownContentDirective } from "../../directives/dropdown-content.directive";
|
|
5
|
+
import { DropdownAttachTo } from "../../common-types";
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class DropdownBoxComponent implements AfterViewInit, OnChanges {
|
|
7
8
|
/**
|
|
@@ -9,9 +10,9 @@ export declare class DropdownBoxComponent implements AfterViewInit, OnChanges {
|
|
|
9
10
|
*/
|
|
10
11
|
closeInside: boolean;
|
|
11
12
|
/**
|
|
12
|
-
* Determines
|
|
13
|
+
* Determines where the floating element needs to be placed
|
|
13
14
|
*/
|
|
14
|
-
|
|
15
|
+
attachTo: DropdownAttachTo;
|
|
15
16
|
/**
|
|
16
17
|
* Where to place the floating element relative to the reference element.
|
|
17
18
|
*/
|
|
@@ -51,5 +52,5 @@ export declare class DropdownBoxComponent implements AfterViewInit, OnChanges {
|
|
|
51
52
|
ngAfterViewInit(): void;
|
|
52
53
|
ngOnChanges(): void;
|
|
53
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownBoxComponent, never>;
|
|
54
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownBoxComponent, "dropdown-box", never, { "closeInside": { "alias": "closeInside"; "required": false; }; "
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownBoxComponent, "dropdown-box", never, { "closeInside": { "alias": "closeInside"; "required": false; }; "attachTo": { "alias": "attachTo"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "crossAxis": { "alias": "crossAxis"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "autoAlignment": { "alias": "autoAlignment"; "required": false; }; "allowedPlacements": { "alias": "allowedPlacements"; "required": false; }; "componentClass": { "alias": "componentClass"; "required": false; }; }, {}, never, ["[toggle-content]", "*"], false, never>;
|
|
55
56
|
}
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { ChangeDetectorRef, EventEmitter, OnChanges, TemplateRef } from "@angular/core";
|
|
2
2
|
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
-
import { IApiService, IFileUploadProcess, IFileUploadResult, IToasterService } from "../../common-types";
|
|
3
|
+
import { IApiService, IFileUploadProcess, IFileUploadResult, IToasterService, UploadType } from "../../common-types";
|
|
4
4
|
import { BaseHttpClient } from "../../services/base-http.client";
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UploadComponent implements ControlValueAccessor, OnChanges {
|
|
7
7
|
private cdr;
|
|
8
8
|
private api;
|
|
9
9
|
private toaster;
|
|
10
|
-
value:
|
|
10
|
+
value: UploadType | UploadType[];
|
|
11
11
|
disabled: boolean;
|
|
12
|
+
inline: boolean;
|
|
12
13
|
accept: string | string[];
|
|
13
14
|
baseUrl: string;
|
|
14
15
|
message: string;
|
|
@@ -17,7 +18,7 @@ export declare class UploadComponent implements ControlValueAccessor, OnChanges
|
|
|
17
18
|
makeUpload: (f: File) => any;
|
|
18
19
|
preProcess: (f: File) => boolean;
|
|
19
20
|
onUploaded: EventEmitter<IFileUploadResult[]>;
|
|
20
|
-
onRemove: EventEmitter<
|
|
21
|
+
onRemove: EventEmitter<UploadType[]>;
|
|
21
22
|
acceptAttr: string;
|
|
22
23
|
isImage: boolean;
|
|
23
24
|
dropAllowed: boolean;
|
|
@@ -26,7 +27,7 @@ export declare class UploadComponent implements ControlValueAccessor, OnChanges
|
|
|
26
27
|
onTouched: Function;
|
|
27
28
|
remove: (index?: number) => void;
|
|
28
29
|
uploadButton: TemplateRef<any>;
|
|
29
|
-
protected fileImageCache:
|
|
30
|
+
protected fileImageCache: Map<Blob, string>;
|
|
30
31
|
protected acceptTypes: string[];
|
|
31
32
|
get http(): BaseHttpClient;
|
|
32
33
|
constructor(cdr: ChangeDetectorRef, api: IApiService, toaster: IToasterService);
|
|
@@ -35,7 +36,7 @@ export declare class UploadComponent implements ControlValueAccessor, OnChanges
|
|
|
35
36
|
ngOnChanges(): void;
|
|
36
37
|
registerOnChange(fn: any): void;
|
|
37
38
|
registerOnTouched(fn: any): void;
|
|
38
|
-
writeValue(value:
|
|
39
|
+
writeValue(value: UploadType | UploadType[]): void;
|
|
39
40
|
setDisabledState(val: boolean): void;
|
|
40
41
|
onInputClick(ev: MouseEvent): void;
|
|
41
42
|
onInputChange(ev: Event): void;
|
|
@@ -43,5 +44,5 @@ export declare class UploadComponent implements ControlValueAccessor, OnChanges
|
|
|
43
44
|
getBgUrl(image: any): string;
|
|
44
45
|
processFiles(files: File[]): Promise<IFileUploadResult[]>;
|
|
45
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<UploadComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UploadComponent, "upload", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "baseUrl": { "alias": "baseUrl"; "required": false; }; "message": { "alias": "message"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "buttonText": { "alias": "buttonText"; "required": false; }; "makeUpload": { "alias": "makeUpload"; "required": false; }; "preProcess": { "alias": "preProcess"; "required": false; }; }, { "onUploaded": "onUploaded"; "onRemove": "onRemove"; }, ["uploadButton"], never, false, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UploadComponent, "upload", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "baseUrl": { "alias": "baseUrl"; "required": false; }; "message": { "alias": "message"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "buttonText": { "alias": "buttonText"; "required": false; }; "makeUpload": { "alias": "makeUpload"; "required": false; }; "preProcess": { "alias": "preProcess"; "required": false; }; }, { "onUploaded": "onUploaded"; "onRemove": "onRemove"; }, ["uploadButton"], never, false, never>;
|
|
47
48
|
}
|
|
@@ -14,8 +14,8 @@ export declare class AsyncMethodBase implements OnChanges {
|
|
|
14
14
|
constructor(toaster: IToasterService, cdr: ChangeDetectorRef);
|
|
15
15
|
protected getMethod(): AsyncMethod;
|
|
16
16
|
ngOnChanges(): void;
|
|
17
|
-
click(ev:
|
|
18
|
-
callMethod(): boolean;
|
|
17
|
+
click(ev: MouseEvent): boolean;
|
|
18
|
+
callMethod(ev: MouseEvent): boolean;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<AsyncMethodBase, never>;
|
|
20
20
|
static ɵdir: i0.ɵɵDirectiveDeclaration<AsyncMethodBase, "[__asmb__]", never, { "disabled": { "alias": "disabled"; "required": false; }; "context": { "alias": "context"; "required": false; }; }, { "onSuccess": "onSuccess"; "onError": "onError"; }, never, never, false, never>;
|
|
21
21
|
}
|
|
@@ -8,6 +8,8 @@ export declare class DropdownContentDirective implements OnInit, OnDestroy {
|
|
|
8
8
|
protected dropdown: DropdownDirective;
|
|
9
9
|
readonly templateRef: TemplateRef<any>;
|
|
10
10
|
protected subscription: Subscription;
|
|
11
|
+
protected attachTo: HTMLElement;
|
|
12
|
+
protected attachOutside: boolean;
|
|
11
13
|
protected lastPlacement: string;
|
|
12
14
|
protected cleanUp: () => void;
|
|
13
15
|
constructor(vcr: ViewContainerRef, rootElem: HTMLElement, dropdown: DropdownDirective, templateRef: TemplateRef<any>);
|
|
@@ -15,7 +17,8 @@ export declare class DropdownContentDirective implements OnInit, OnDestroy {
|
|
|
15
17
|
ngOnDestroy(): void;
|
|
16
18
|
protected createView(init?: boolean): void;
|
|
17
19
|
protected destroyView(): void;
|
|
18
|
-
protected
|
|
20
|
+
protected whereToAttach(): HTMLElement;
|
|
21
|
+
protected createWrapper(): HTMLDivElement[];
|
|
19
22
|
initialize(): void;
|
|
20
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownContentDirective, [null, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
21
24
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownContentDirective, "[dropdownContent]", ["dropdown-content"], {}, {}, never, never, false, never>;
|
|
@@ -7,9 +7,10 @@ export declare class DropdownToggleDirective extends AsyncMethodBase {
|
|
|
7
7
|
readonly element: ElementRef;
|
|
8
8
|
readonly dropdown: DropdownDirective;
|
|
9
9
|
beforeOpen: AsyncMethod;
|
|
10
|
+
switch: boolean;
|
|
10
11
|
constructor(element: ElementRef, dropdown: DropdownDirective, toaster: IToasterService, cdr: ChangeDetectorRef);
|
|
11
12
|
protected getMethod(): AsyncMethod;
|
|
12
|
-
callMethod(): boolean;
|
|
13
|
+
callMethod(ev: MouseEvent): boolean;
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownToggleDirective, never>;
|
|
14
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownToggleDirective, "[dropdownToggle]", ["dropdown-toggle"], { "beforeOpen": { "alias": "beforeOpen"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownToggleDirective, "[dropdownToggle]", ["dropdown-toggle"], { "beforeOpen": { "alias": "beforeOpen"; "required": false; }; "switch": { "alias": "switch"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
16
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnDestroy } from "@angular/core";
|
|
2
|
-
import { AutoPlacementOptions, Placement } from "@floating-ui/dom";
|
|
2
|
+
import { AutoPlacementOptions, Boundary, Placement } from "@floating-ui/dom";
|
|
3
|
+
import { DropdownAttachTo } from "../common-types";
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class DropdownDirective implements OnDestroy {
|
|
5
6
|
protected element: ElementRef<HTMLElement>;
|
|
@@ -11,9 +12,13 @@ export declare class DropdownDirective implements OnDestroy {
|
|
|
11
12
|
*/
|
|
12
13
|
closeInside: boolean;
|
|
13
14
|
/**
|
|
14
|
-
* Determines
|
|
15
|
+
* Determines where the floating element needs to be placed
|
|
15
16
|
*/
|
|
16
|
-
|
|
17
|
+
attachTo: DropdownAttachTo;
|
|
18
|
+
/**
|
|
19
|
+
* Determines the boundary element of the floating element when shifting
|
|
20
|
+
*/
|
|
21
|
+
boundary: Boundary;
|
|
17
22
|
/**
|
|
18
23
|
* Where to place the floating element relative to the reference element.
|
|
19
24
|
*/
|
|
@@ -52,5 +57,5 @@ export declare class DropdownDirective implements OnDestroy {
|
|
|
52
57
|
show($event?: Event): boolean;
|
|
53
58
|
hide(): boolean;
|
|
54
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownDirective, never>;
|
|
55
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownDirective, "[dd],[drop-down]", ["dropdown"], { "closeInside": { "alias": "closeInside"; "required": false; }; "
|
|
60
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownDirective, "[dd],[drop-down]", ["dropdown"], { "closeInside": { "alias": "closeInside"; "required": false; }; "attachTo": { "alias": "attachTo"; "required": false; }; "boundary": { "alias": "boundary"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "autoPlacement": { "alias": "autoPlacement"; "required": false; }; "mobileViewUnder": { "alias": "mobileViewUnder"; "required": false; }; "keyboardHandler": { "alias": "keyboardHandler"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; }, { "onShown": "onShown"; "onHidden": "onHidden"; "onKeyboard": "onKeyboard"; }, never, never, false, never>;
|
|
56
61
|
}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import { EventEmitter, NgZone, OnChanges, SimpleChanges } from "@angular/core";
|
|
1
|
+
import { ElementRef, EventEmitter, NgZone, OnChanges, Renderer2, SimpleChanges } from "@angular/core";
|
|
2
2
|
import { PaginationDataLoader } from "../common-types";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PaginationDirective implements OnChanges {
|
|
5
|
-
|
|
5
|
+
readonly zone: NgZone;
|
|
6
|
+
readonly renderer: Renderer2;
|
|
7
|
+
readonly element: ElementRef;
|
|
6
8
|
get total(): number;
|
|
7
9
|
get items(): any[];
|
|
8
10
|
loader: PaginationDataLoader;
|
|
@@ -15,7 +17,7 @@ export declare class PaginationDirective implements OnChanges {
|
|
|
15
17
|
maxPage: number;
|
|
16
18
|
private data;
|
|
17
19
|
private updateTimer;
|
|
18
|
-
constructor(zone: NgZone);
|
|
20
|
+
constructor(zone: NgZone, renderer: Renderer2, element: ElementRef);
|
|
19
21
|
ngOnChanges(changes: SimpleChanges): void;
|
|
20
22
|
refresh(time?: number): void;
|
|
21
23
|
paginate(page: number): void;
|
|
@@ -61,7 +61,7 @@ import { UnorderedListComponent } from "./components/unordered-list/unordered-li
|
|
|
61
61
|
import { UploadComponent } from "./components/upload/upload.component";
|
|
62
62
|
export declare const pipes: (typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | typeof IncludesPipe | typeof ReducePipe | typeof RoundPipe | typeof SafeHtmlPipe | typeof TranslatePipe)[];
|
|
63
63
|
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 DropdownToggleDirective | typeof UnorderedListItemDirective | typeof UnorderedListTemplateDirective)[];
|
|
64
|
-
export declare const components: (typeof DropListComponent | typeof DynamicTableComponent | typeof FakeModuleComponent | typeof PaginationMenuComponent | typeof UnorderedListComponent
|
|
64
|
+
export declare const components: (typeof UploadComponent | typeof DropListComponent | typeof DynamicTableComponent | typeof FakeModuleComponent | typeof PaginationMenuComponent | typeof UnorderedListComponent)[];
|
|
65
65
|
export declare const providers: (typeof UniversalService | typeof StateService | typeof AuthGuard | typeof BaseHttpClient | typeof StorageService | typeof BaseHttpService | typeof WasmService | typeof AclService | typeof StaticAuthService | typeof ConfigService | typeof BaseDialogService | typeof ErrorHandlerService | typeof EventsService | typeof FormatterService | typeof GlobalTemplateService | typeof IconService | typeof StaticLanguageService | typeof OpenApiService | typeof BaseToasterService | typeof ComponentLoaderService | typeof TranslatedUrlSerializer | typeof PromiseService | typeof SocketService | typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | typeof IncludesPipe | typeof ReducePipe | typeof RoundPipe | typeof SafeHtmlPipe | typeof TranslatePipe | typeof DeviceDetectorService | {
|
|
66
66
|
provide: import("@angular/core").InjectionToken<import("@angular/platform-browser").EventManagerPlugin[]>;
|
|
67
67
|
useClass: typeof DragDropEventPlugin;
|
|
@@ -59,6 +59,7 @@ import * as i55 from "@angular/common";
|
|
|
59
59
|
import * as i56 from "@angular/forms";
|
|
60
60
|
export declare function loadBaseUrl(): string;
|
|
61
61
|
export declare function loadBaseHref(baseUrl: string): string;
|
|
62
|
+
export declare function getRootElement(): HTMLElement;
|
|
62
63
|
export declare class NgxUtilsModule {
|
|
63
64
|
private static getProviders;
|
|
64
65
|
static forRoot(config?: IModuleConfig): ModuleWithProviders<NgxUtilsModule>;
|
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { TypedFactoryProvider, TypedValueProvider, CachedProvider, CachedFactory, OPTIONS_TOKEN, IResolveFactory, CanvasColor, IIconService, ICON_SERVICE, ITranslation, ITranslations, ILanguageSetting, ILanguageSettings, ILanguageService, LANGUAGE_SERVICE, IAuthService, RouteValidator, IRouteData, IRoute, AUTH_SERVICE, IAclComponent, IDialogButtonConfig, IDialogConfig, IConfirmDialogConfig, IDialogService, DIALOG_SERVICE, IPromiseService, PROMISE_SERVICE, IWasi, IWasmExports, IWasm, IWasmAsync, WASI_IMPLEMENTATION, IRouteStateInfo, NavigationUrlParam, StorageMode, ToastType, IToasterService, TOASTER_SERVICE, IAsyncMessage, AsyncMethod, UnorderedListTemplate, UnorderedListTemplates, UnorderedListStyle,
|
|
1
|
+
export { TypedFactoryProvider, TypedValueProvider, CachedProvider, CachedFactory, OPTIONS_TOKEN, IResolveFactory, CanvasColor, IIconService, ICON_SERVICE, ITranslation, ITranslations, ILanguageSetting, ILanguageSettings, ILanguageService, LANGUAGE_SERVICE, IAuthService, RouteValidator, IRouteData, IRoute, AUTH_SERVICE, IAclComponent, IDialogButtonConfig, IDialogConfig, IConfirmDialogConfig, IDialogService, DIALOG_SERVICE, IPromiseService, PROMISE_SERVICE, IWasi, IWasmExports, IWasm, IWasmAsync, WASI_IMPLEMENTATION, IRouteStateInfo, NavigationUrlParam, StorageMode, ToastType, IToasterService, TOASTER_SERVICE, IAsyncMessage, AsyncMethod, DropdownAttachTo, UnorderedListTemplate, UnorderedListTemplates, UnorderedListStyle, UploadType, IFileUploadResult, IFileUploadProcess, IAjaxRequestDetails, AjaxRequestCallback, ScriptType, IScriptPromises, IStylePromises, ISearchObservable, FactoryDependencies, ObjectType, ITimer, IExtraProperties, IGroupMap, TranslationQuery, IPageInfo, IPaginationData, PaginationDataLoader, PaginationItemContext, IHttpHeaders, IHttpParams, IRequestOptions, IIssueContext, IProgress, ProgressListener, PromiseExecutor, HttpPromise, IHttpService, EXPRESS_REQUEST, IApiService, API_SERVICE, IOpenApiSchemaProperty, IOpenApiSchema, IOpenApiSchemas, TableFilterType, ITableOrders, ITableColumn, ITableColumns, TableColumns, ITableTemplate, ITableTemplates, ITableDataQuery, TableDataLoader, DragDropEvent, DragEventHandler, ITableDragEvent, DynamicTableDragHandler, ResourceIfContext, CssSelector, CssSelectorList, DynamicComponentLocation, DynamicModuleInfo, DynamicEntryComponents, APP_BASE_URL, IConfiguration, IConfigService, CONFIG_SERVICE, BASE_CONFIG, SCRIPT_PARAMS, ROOT_ELEMENT, RESIZE_DELAY, ResizeEventStrategy, RESIZE_STRATEGY, ErrorHandlerCallback, ERROR_HANDLER, GlobalComponentModifier, AppInitializerFunc, IModuleConfig, ValuedPromise } from "./ngx-utils/common-types";
|
|
2
2
|
export { AjaxRequestHandler } from "./ngx-utils/utils/ajax-request-handler";
|
|
3
3
|
export { ArrayUtils } from "./ngx-utils/utils/array.utils";
|
|
4
4
|
export { AuthGuard } from "./ngx-utils/utils/auth.guard";
|