@stemy/ngx-utils 19.2.12 → 19.2.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/stemy-ngx-utils.mjs +275 -5
- package/fesm2022/stemy-ngx-utils.mjs.map +1 -1
- package/ngx-utils/common-types.d.ts +19 -1
- package/ngx-utils/components/fake-module/fake-module.component.d.ts +5 -0
- package/ngx-utils/directives/component-loader.directive.d.ts +15 -0
- package/ngx-utils/ngx-utils.imports.d.ts +6 -4
- package/ngx-utils/ngx-utils.module.d.ts +25 -22
- package/ngx-utils/services/component-loader.service.d.ts +23 -0
- package/ngx-utils/utils/misc.d.ts +6 -0
- package/package.json +1 -1
- package/public_api.d.ts +5 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, InjectionToken, Injector, NgZone, Provider, TemplateRef, Type } from "@angular/core";
|
|
2
2
|
import { HttpClient, HttpErrorResponse, HttpHeaders } from "@angular/common/http";
|
|
3
|
-
import { ActivatedRouteSnapshot, Data, Route, UrlTree } from "@angular/router";
|
|
3
|
+
import { ActivatedRouteSnapshot, Data, LoadChildrenCallback, Route, Routes, UrlTree } from "@angular/router";
|
|
4
4
|
import { Request } from "express";
|
|
5
5
|
export interface TypedFactoryProvider<T> {
|
|
6
6
|
useFactory: (...args: any[]) => T;
|
|
@@ -393,6 +393,24 @@ export declare class ResourceIfContext {
|
|
|
393
393
|
resource: string;
|
|
394
394
|
url: string;
|
|
395
395
|
}
|
|
396
|
+
export type CssSelector = [tagName: string, attrName?: string, attrValue?: string];
|
|
397
|
+
export type CssSelectorList = CssSelector[];
|
|
398
|
+
export interface DynamicModuleInfo {
|
|
399
|
+
moduleId: string;
|
|
400
|
+
loadChildren: LoadChildrenCallback;
|
|
401
|
+
routes?: Routes;
|
|
402
|
+
initialNavigation?: boolean;
|
|
403
|
+
}
|
|
404
|
+
export interface DynamicComponentLocation {
|
|
405
|
+
moduleId: string;
|
|
406
|
+
selector: string;
|
|
407
|
+
}
|
|
408
|
+
export interface DynamicEntryComponents {
|
|
409
|
+
components: Type<any>[];
|
|
410
|
+
moduleId: string;
|
|
411
|
+
}
|
|
412
|
+
export declare const DYNAMIC_ENTRY_COMPONENTS: InjectionToken<DynamicEntryComponents[]>;
|
|
413
|
+
export declare const DYNAMIC_MODULE_INFO: InjectionToken<DynamicModuleInfo[]>;
|
|
396
414
|
export declare const APP_BASE_URL: InjectionToken<string>;
|
|
397
415
|
export declare class IConfiguration {
|
|
398
416
|
cdnUrl?: string;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FakeModuleComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FakeModuleComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FakeModuleComponent, "fake-module-component", never, {}, {}, never, never, false, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ViewContainerRef, OnChanges, SimpleChanges, OnDestroy } from "@angular/core";
|
|
2
|
+
import { ComponentLoaderService } from "../services/component-loader.service";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ComponentLoaderDirective implements OnChanges, OnDestroy {
|
|
5
|
+
private vcr;
|
|
6
|
+
private loader;
|
|
7
|
+
module: string;
|
|
8
|
+
selector: string;
|
|
9
|
+
private cr;
|
|
10
|
+
constructor(vcr: ViewContainerRef, loader: ComponentLoaderService);
|
|
11
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
12
|
+
ngOnDestroy(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentLoaderDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ComponentLoaderDirective, "[loadComponent]", never, { "module": { "alias": "module"; "required": false; }; "selector": { "alias": "loadComponent"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -21,6 +21,7 @@ import { StateService } from "./services/state.service";
|
|
|
21
21
|
import { StaticLanguageService } from "./services/static-language.service";
|
|
22
22
|
import { StorageService } from "./services/storage.service";
|
|
23
23
|
import { BaseToasterService } from "./services/base-toaster.service";
|
|
24
|
+
import { ComponentLoaderService } from "./services/component-loader.service";
|
|
24
25
|
import { TranslatedUrlSerializer } from "./services/translated-url.serializer";
|
|
25
26
|
import { UniversalService } from "./services/universal.service";
|
|
26
27
|
import { WasmService } from "./services/wasm.service";
|
|
@@ -29,6 +30,7 @@ import { ResizeEventPlugin } from "./plugins/resize-event.plugin";
|
|
|
29
30
|
import { ScrollEventPlugin } from "./plugins/scroll-event.plugin";
|
|
30
31
|
import { AsyncMethodBase } from "./directives/async-method.base";
|
|
31
32
|
import { BackgroundDirective } from "./directives/background.directive";
|
|
33
|
+
import { ComponentLoaderDirective } from "./directives/component-loader.directive";
|
|
32
34
|
import { DynamicTableTemplateDirective } from "./directives/dynamic-table-template.directive";
|
|
33
35
|
import { GlobalTemplateDirective } from "./directives/global-template.directive";
|
|
34
36
|
import { IconDirective } from "./directives/icon.directive";
|
|
@@ -50,14 +52,14 @@ import { RoundPipe } from "./pipes/round.pipe";
|
|
|
50
52
|
import { SafeHtmlPipe } from "./pipes/safe-html.pipe";
|
|
51
53
|
import { TranslatePipe } from "./pipes/translate.pipe";
|
|
52
54
|
import { DropListComponent } from "./components/drop-list/drop-list.component";
|
|
53
|
-
import {
|
|
55
|
+
import { FakeModuleComponent } from "./components/fake-module/fake-module.component";
|
|
54
56
|
import { PaginationMenuComponent } from "./components/pagination-menu/pagination-menu.component";
|
|
55
57
|
import { UnorderedListComponent } from "./components/unordered-list/unordered-list.component";
|
|
56
58
|
import { UploadComponent } from "./components/upload/upload.component";
|
|
57
59
|
export declare const pipes: (typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | typeof ReducePipe | typeof RoundPipe | typeof SafeHtmlPipe | typeof TranslatePipe)[];
|
|
58
|
-
export declare const directives: (typeof AsyncMethodBase | typeof BackgroundDirective | typeof DynamicTableTemplateDirective | typeof GlobalTemplateDirective | typeof IconDirective | typeof NgxTemplateOutletDirective | typeof PaginationDirective | typeof PaginationItemDirective | typeof ResourceIfDirective | typeof StickyDirective | typeof StickyClassDirective | typeof DropdownDirective | typeof DropdownToggleDirective | typeof UnorderedListItemDirective | typeof UnorderedListTemplateDirective)[];
|
|
59
|
-
export declare const components: (typeof DropListComponent | typeof
|
|
60
|
-
export declare const providers: (typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | 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 TranslatedUrlSerializer | typeof UniversalService | typeof WasmService | typeof DeviceDetectorService | {
|
|
60
|
+
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 DropdownToggleDirective | typeof UnorderedListItemDirective | typeof UnorderedListTemplateDirective)[];
|
|
61
|
+
export declare const components: (typeof DropListComponent | typeof FakeModuleComponent | typeof PaginationMenuComponent | typeof UnorderedListComponent | typeof UploadComponent)[];
|
|
62
|
+
export declare const providers: (typeof ComponentLoaderService | typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | 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 TranslatedUrlSerializer | typeof UniversalService | typeof WasmService | typeof DeviceDetectorService | {
|
|
61
63
|
provide: import("@angular/core").InjectionToken<import("@angular/platform-browser").EventManagerPlugin[]>;
|
|
62
64
|
useClass: typeof DragDropEventPlugin;
|
|
63
65
|
multi: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EnvironmentProviders, ModuleWithProviders } from "@angular/core";
|
|
2
|
-
import { IModuleConfig } from "./common-types";
|
|
2
|
+
import { DynamicModuleInfo, IModuleConfig } from "./common-types";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
import * as i1 from "./pipes/chunk.pipe";
|
|
5
5
|
import * as i2 from "./pipes/entries.pipe";
|
|
@@ -32,34 +32,37 @@ import * as i28 from "./pipes/values.pipe";
|
|
|
32
32
|
import * as i29 from "./directives/async-method.base";
|
|
33
33
|
import * as i30 from "./directives/async-method.directive";
|
|
34
34
|
import * as i31 from "./directives/background.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/pagination
|
|
41
|
-
import * as i38 from "./directives/
|
|
42
|
-
import * as i39 from "./directives/
|
|
43
|
-
import * as i40 from "./directives/sticky
|
|
44
|
-
import * as i41 from "./directives/
|
|
45
|
-
import * as i42 from "./directives/dropdown
|
|
46
|
-
import * as i43 from "./directives/
|
|
47
|
-
import * as i44 from "./directives/unordered-list-
|
|
48
|
-
import * as i45 from "./
|
|
49
|
-
import * as i46 from "./components/
|
|
50
|
-
import * as i47 from "./components/
|
|
51
|
-
import * as i48 from "./components/
|
|
52
|
-
import * as i49 from "./components/
|
|
53
|
-
import * as i50 from "
|
|
54
|
-
import * as i51 from "
|
|
35
|
+
import * as i32 from "./directives/component-loader.directive";
|
|
36
|
+
import * as i33 from "./directives/dynamic-table-template.directive";
|
|
37
|
+
import * as i34 from "./directives/global-template.directive";
|
|
38
|
+
import * as i35 from "./directives/icon.directive";
|
|
39
|
+
import * as i36 from "./directives/ngx-template-outlet.directive";
|
|
40
|
+
import * as i37 from "./directives/pagination.directive";
|
|
41
|
+
import * as i38 from "./directives/pagination-item.directive";
|
|
42
|
+
import * as i39 from "./directives/resource-if.directive";
|
|
43
|
+
import * as i40 from "./directives/sticky.directive";
|
|
44
|
+
import * as i41 from "./directives/sticky-class.directive";
|
|
45
|
+
import * as i42 from "./directives/dropdown.directive";
|
|
46
|
+
import * as i43 from "./directives/dropdown-toggle.directive";
|
|
47
|
+
import * as i44 from "./directives/unordered-list-item.directive";
|
|
48
|
+
import * as i45 from "./directives/unordered-list-template.directive";
|
|
49
|
+
import * as i46 from "./components/drop-list/drop-list.component";
|
|
50
|
+
import * as i47 from "./components/dynamic-table/dynamic-table.component";
|
|
51
|
+
import * as i48 from "./components/fake-module/fake-module.component";
|
|
52
|
+
import * as i49 from "./components/pagination-menu/pagination-menu.component";
|
|
53
|
+
import * as i50 from "./components/unordered-list/unordered-list.component";
|
|
54
|
+
import * as i51 from "./components/upload/upload.component";
|
|
55
|
+
import * as i52 from "@angular/common";
|
|
56
|
+
import * as i53 from "@angular/forms";
|
|
55
57
|
export declare function loadBaseUrl(): string;
|
|
56
58
|
export declare function loadBaseHref(baseUrl: string): string;
|
|
57
59
|
export declare class NgxUtilsModule {
|
|
58
60
|
private static getProviders;
|
|
59
61
|
static forRoot(config?: IModuleConfig): ModuleWithProviders<NgxUtilsModule>;
|
|
60
62
|
static provideUtils(config?: IModuleConfig): EnvironmentProviders;
|
|
63
|
+
static useDynamic(moduleInfo: DynamicModuleInfo): ModuleWithProviders<NgxUtilsModule>;
|
|
61
64
|
constructor();
|
|
62
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgxUtilsModule, never>;
|
|
63
|
-
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.IsTypePipe, typeof i13.JoinPipe, typeof i14.KeysPipe, typeof i15.MapPipe, typeof i16.MaxPipe, typeof i17.MinPipe, typeof i18.PopPipe, typeof i19.ReducePipe, typeof i20.RemapPipe, typeof i21.ReplacePipe, typeof i22.ReversePipe, typeof i23.RoundPipe, typeof i24.SafeHtmlPipe, typeof i25.ShiftPipe, typeof i26.SplitPipe, typeof i27.TranslatePipe, typeof i28.ValuesPipe, typeof i29.AsyncMethodBase, typeof i30.AsyncMethodDirective, typeof i31.BackgroundDirective, typeof i32.
|
|
66
|
+
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.IsTypePipe, typeof i13.JoinPipe, typeof i14.KeysPipe, typeof i15.MapPipe, typeof i16.MaxPipe, typeof i17.MinPipe, typeof i18.PopPipe, typeof i19.ReducePipe, typeof i20.RemapPipe, typeof i21.ReplacePipe, typeof i22.ReversePipe, typeof i23.RoundPipe, typeof i24.SafeHtmlPipe, typeof i25.ShiftPipe, typeof i26.SplitPipe, typeof i27.TranslatePipe, typeof i28.ValuesPipe, typeof i29.AsyncMethodBase, typeof i30.AsyncMethodDirective, typeof i31.BackgroundDirective, typeof i32.ComponentLoaderDirective, typeof i33.DynamicTableTemplateDirective, typeof i34.GlobalTemplateDirective, typeof i35.IconDirective, typeof i36.NgxTemplateOutletDirective, typeof i37.PaginationDirective, typeof i38.PaginationItemDirective, typeof i39.ResourceIfDirective, typeof i40.StickyDirective, typeof i41.StickyClassDirective, typeof i42.DropdownDirective, typeof i43.DropdownToggleDirective, typeof i44.UnorderedListItemDirective, typeof i45.UnorderedListTemplateDirective, typeof i46.DropListComponent, typeof i47.DynamicTableComponent, typeof i48.FakeModuleComponent, typeof i49.PaginationMenuComponent, typeof i50.UnorderedListComponent, typeof i51.UploadComponent], [typeof i52.CommonModule, typeof i53.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.IsTypePipe, typeof i13.JoinPipe, typeof i14.KeysPipe, typeof i15.MapPipe, typeof i16.MaxPipe, typeof i17.MinPipe, typeof i18.PopPipe, typeof i19.ReducePipe, typeof i20.RemapPipe, typeof i21.ReplacePipe, typeof i22.ReversePipe, typeof i23.RoundPipe, typeof i24.SafeHtmlPipe, typeof i25.ShiftPipe, typeof i26.SplitPipe, typeof i27.TranslatePipe, typeof i28.ValuesPipe, typeof i29.AsyncMethodBase, typeof i30.AsyncMethodDirective, typeof i31.BackgroundDirective, typeof i32.ComponentLoaderDirective, typeof i33.DynamicTableTemplateDirective, typeof i34.GlobalTemplateDirective, typeof i35.IconDirective, typeof i36.NgxTemplateOutletDirective, typeof i37.PaginationDirective, typeof i38.PaginationItemDirective, typeof i39.ResourceIfDirective, typeof i40.StickyDirective, typeof i41.StickyClassDirective, typeof i42.DropdownDirective, typeof i43.DropdownToggleDirective, typeof i44.UnorderedListItemDirective, typeof i45.UnorderedListTemplateDirective, typeof i46.DropListComponent, typeof i47.DynamicTableComponent, typeof i48.FakeModuleComponent, typeof i49.PaginationMenuComponent, typeof i50.UnorderedListComponent, typeof i51.UploadComponent, typeof i53.FormsModule]>;
|
|
64
67
|
static ɵinj: i0.ɵɵInjectorDeclaration<NgxUtilsModule>;
|
|
65
68
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ApplicationRef, ComponentRef, Injector, NgModuleRef, Type, ViewRef } from "@angular/core";
|
|
2
|
+
import { DynamicComponentLocation, DynamicModuleInfo } from "../common-types";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ComponentLoaderService {
|
|
5
|
+
protected appRef: ApplicationRef;
|
|
6
|
+
protected ngModule: NgModuleRef<any>;
|
|
7
|
+
protected rootElement: HTMLElement;
|
|
8
|
+
private readonly typeMap;
|
|
9
|
+
private readonly moduleRegistry;
|
|
10
|
+
private readonly moduleMap;
|
|
11
|
+
get injector(): Injector;
|
|
12
|
+
constructor(appRef: ApplicationRef, ngModule: NgModuleRef<any>, rootElement: HTMLElement, moduleRegistry: DynamicModuleInfo[]);
|
|
13
|
+
findComponentType<T>(selector: string, moduleId?: string): Type<T>;
|
|
14
|
+
getComponentType(location: DynamicComponentLocation): Promise<Type<any>>;
|
|
15
|
+
createComponent(componentType: Type<any>, projectableNodes?: any[], injector?: Injector, split?: boolean): ComponentRef<any>;
|
|
16
|
+
bootstrap<T>(componentType: Type<T>, rootSelectorOrNode?: string | any): ComponentRef<T>;
|
|
17
|
+
attachView(viewRef: ViewRef): void;
|
|
18
|
+
detachView(viewRef: ViewRef): void;
|
|
19
|
+
private populateTypeMap;
|
|
20
|
+
private loadModule;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentLoaderService, [null, null, null, { optional: true; }]>;
|
|
22
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ComponentLoaderService>;
|
|
23
|
+
}
|
|
@@ -1 +1,7 @@
|
|
|
1
|
+
import { Type, ValueProvider, ɵComponentDef as ComponentDef } from "@angular/core";
|
|
2
|
+
import { CssSelector, CssSelectorList } from "../common-types";
|
|
1
3
|
export declare function checkTransitions(el: HTMLElement, cb: () => any): void;
|
|
4
|
+
export declare function getComponentDef<T>(type: Type<T>): ComponentDef<T>;
|
|
5
|
+
export declare function parseSelector(selector: string | CssSelector): CssSelector;
|
|
6
|
+
export declare function selectorMatchesList(list: CssSelectorList, selector: CssSelector): boolean;
|
|
7
|
+
export declare function provideEntryComponents(components: Type<any>[], moduleId?: string): ValueProvider;
|
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, IFileUploadProcess, IFileUploadResult, 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, ITableOrders, ITableColumn, ITableColumns, TableColumns, ITableTemplate, ITableTemplates, ITableDataQuery, TableDataLoader, DragDropEvent, DragEventHandler, ITableDragEvent, DynamicTableDragHandler, ResourceIfContext, 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";
|
|
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, IFileUploadProcess, IFileUploadResult, 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, 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";
|
|
@@ -14,7 +14,7 @@ export { JSONfn } from "./ngx-utils/utils/jsonfn";
|
|
|
14
14
|
export { ReflectUtils } from "./ngx-utils/utils/reflect.utils";
|
|
15
15
|
export { LoaderUtils } from "./ngx-utils/utils/loader.utils";
|
|
16
16
|
export { MathUtils } from "./ngx-utils/utils/math.utils";
|
|
17
|
-
export { checkTransitions } from "./ngx-utils/utils/misc";
|
|
17
|
+
export { checkTransitions, getComponentDef, parseSelector, selectorMatchesList, provideEntryComponents } from "./ngx-utils/utils/misc";
|
|
18
18
|
export { ObjectUtils } from "./ngx-utils/utils/object.utils";
|
|
19
19
|
export { ObservableUtils, ISubscriberInfo } from "./ngx-utils/utils/observable.utils";
|
|
20
20
|
export { CancelablePromise, cancelablePromise, impatientPromise } from "./ngx-utils/utils/promise.utils";
|
|
@@ -46,6 +46,7 @@ export { IStateInfo, StateService } from "./ngx-utils/services/state.service";
|
|
|
46
46
|
export { StaticLanguageService } from "./ngx-utils/services/static-language.service";
|
|
47
47
|
export { StorageService } from "./ngx-utils/services/storage.service";
|
|
48
48
|
export { BaseToasterService } from "./ngx-utils/services/base-toaster.service";
|
|
49
|
+
export { ComponentLoaderService } from "./ngx-utils/services/component-loader.service";
|
|
49
50
|
export { IUrlDictionary, TranslatedUrlSerializer } from "./ngx-utils/services/translated-url.serializer";
|
|
50
51
|
export { PromiseService } from "./ngx-utils/services/promise.service";
|
|
51
52
|
export { SocketService } from "./ngx-utils/services/socket.service";
|
|
@@ -84,6 +85,7 @@ export { ValuesPipe } from "./ngx-utils/pipes/values.pipe";
|
|
|
84
85
|
export { AsyncMethodBase } from "./ngx-utils/directives/async-method.base";
|
|
85
86
|
export { AsyncMethodDirective } from "./ngx-utils/directives/async-method.directive";
|
|
86
87
|
export { BackgroundDirective } from "./ngx-utils/directives/background.directive";
|
|
88
|
+
export { ComponentLoaderDirective } from "./ngx-utils/directives/component-loader.directive";
|
|
87
89
|
export { DynamicTableTemplateDirective } from "./ngx-utils/directives/dynamic-table-template.directive";
|
|
88
90
|
export { GlobalTemplateDirective } from "./ngx-utils/directives/global-template.directive";
|
|
89
91
|
export { IconDirective } from "./ngx-utils/directives/icon.directive";
|
|
@@ -99,6 +101,7 @@ export { UnorderedListItemDirective } from "./ngx-utils/directives/unordered-lis
|
|
|
99
101
|
export { UnorderedListTemplateDirective } from "./ngx-utils/directives/unordered-list-template.directive";
|
|
100
102
|
export { DropListComponent } from "./ngx-utils/components/drop-list/drop-list.component";
|
|
101
103
|
export { DynamicTableComponent } from "./ngx-utils/components/dynamic-table/dynamic-table.component";
|
|
104
|
+
export { FakeModuleComponent } from "./ngx-utils/components/fake-module/fake-module.component";
|
|
102
105
|
export { PaginationMenuComponent } from "./ngx-utils/components/pagination-menu/pagination-menu.component";
|
|
103
106
|
export { UnorderedListComponent } from "./ngx-utils/components/unordered-list/unordered-list.component";
|
|
104
107
|
export { UploadComponent } from "./ngx-utils/components/upload/upload.component";
|