@stemy/ngx-utils 19.9.46 → 19.9.49
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 -89
- package/fesm2022/stemy-ngx-utils.mjs.map +1 -1
- package/ngx-utils/common-types.d.ts +7 -6
- package/ngx-utils/components/calendar/calendar-inputs.d.ts +1 -2
- package/ngx-utils/components/chips/chips.component.d.ts +5 -5
- package/ngx-utils/components/code-editor/code-editor.component.d.ts +17 -15
- package/ngx-utils/components/date-picker/date-picker.component.d.ts +5 -3
- package/ngx-utils/components/drop-list/drop-list.component.d.ts +3 -3
- package/ngx-utils/components/upload/upload.component.d.ts +3 -3
- package/ngx-utils/components/wysiwyg/wysiwyg.component.d.ts +3 -2
- package/ngx-utils/ngx-utils.imports.d.ts +1 -2
- package/package.json +1 -1
- package/public_api.d.ts +1 -1
|
@@ -538,7 +538,7 @@ export interface DiscriminatorOptions {
|
|
|
538
538
|
* A holder that defines the schema discriminator
|
|
539
539
|
*/
|
|
540
540
|
export interface Discriminator {
|
|
541
|
-
discriminator
|
|
541
|
+
discriminator?: DiscriminatorOptions;
|
|
542
542
|
discriminatorFn?: DiscriminatorFn;
|
|
543
543
|
}
|
|
544
544
|
/**
|
|
@@ -556,23 +556,23 @@ export interface OpenApiSchemaRef {
|
|
|
556
556
|
$ref?: string;
|
|
557
557
|
}
|
|
558
558
|
export interface OpenApiSchemaProperty extends DynamicSchemaRef, OpenApiSchemaRef, Discriminator {
|
|
559
|
-
id
|
|
559
|
+
id?: string;
|
|
560
560
|
type?: string;
|
|
561
561
|
format?: string;
|
|
562
562
|
column?: boolean;
|
|
563
563
|
additionalProperties?: any;
|
|
564
|
-
allOf?: ReadonlyArray<
|
|
565
|
-
oneOf?: ReadonlyArray<
|
|
564
|
+
allOf?: ReadonlyArray<OpenApiSchemaProperty>;
|
|
565
|
+
oneOf?: ReadonlyArray<OpenApiSchemaProperty>;
|
|
566
566
|
items?: OpenApiSchemaProperty;
|
|
567
567
|
enum?: string[];
|
|
568
568
|
[key: string]: any;
|
|
569
569
|
}
|
|
570
570
|
export interface OpenApiSchema {
|
|
571
|
-
name?: string;
|
|
572
571
|
properties: {
|
|
573
572
|
[name: string]: OpenApiSchemaProperty;
|
|
574
573
|
};
|
|
575
|
-
|
|
574
|
+
name?: string;
|
|
575
|
+
required?: string[];
|
|
576
576
|
[key: string]: any;
|
|
577
577
|
}
|
|
578
578
|
export interface OpenApiSchemas {
|
|
@@ -580,6 +580,7 @@ export interface OpenApiSchemas {
|
|
|
580
580
|
}
|
|
581
581
|
export type OpenApiSchemaSelector = (name: string, schemas: OpenApiSchemas, injector: Injector) => OpenApiSchema;
|
|
582
582
|
export declare const EDITOR_TYPES: ReadonlyArray<string>;
|
|
583
|
+
export type ControlValueAccesFn<T = any> = (value?: T) => void;
|
|
583
584
|
export type TableFilterType = "text" | "enum" | "checkbox";
|
|
584
585
|
export interface ITableOrders {
|
|
585
586
|
[column: string]: string;
|
|
@@ -5,7 +5,6 @@ export declare class CalendarInputs {
|
|
|
5
5
|
readonly max: import("@angular/core").InputSignal<string | Date>;
|
|
6
6
|
readonly disabledDates: import("@angular/core").InputSignal<(string | Date)[]>;
|
|
7
7
|
readonly disabledDays: import("@angular/core").InputSignal<number[]>;
|
|
8
|
-
readonly disabled: import("@angular/core").ModelSignal<boolean>;
|
|
9
8
|
readonly strict: import("@angular/core").InputSignal<boolean>;
|
|
10
9
|
readonly testId: import("@angular/core").InputSignalWithTransform<string, unknown>;
|
|
11
10
|
protected readonly minDate: import("@angular/core").Signal<Date>;
|
|
@@ -15,5 +14,5 @@ export declare class CalendarInputs {
|
|
|
15
14
|
protected readonly validatedValue: import("@angular/core").Signal<Date | Date[]>;
|
|
16
15
|
constructor();
|
|
17
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarInputs, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarInputs, "ng-component", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "disabledDates": { "alias": "disabledDates"; "required": false; "isSignal": true; }; "disabledDays": { "alias": "disabledDays"; "required": false; "isSignal": true; }; "
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarInputs, "ng-component", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "disabledDates": { "alias": "disabledDates"; "required": false; "isSignal": true; }; "disabledDays": { "alias": "disabledDays"; "required": false; "isSignal": true; }; "strict": { "alias": "strict"; "required": false; "isSignal": true; }; "testId": { "alias": "testId"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
19
18
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, SimpleChanges } from "@angular/core";
|
|
2
2
|
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
-
import { ChipOption, ChipStatus, ChipValue } from "../../common-types";
|
|
3
|
+
import { ChipOption, ChipStatus, ChipValue, ControlValueAccesFn } from "../../common-types";
|
|
4
4
|
import { AutoPlacementOptions } from "@floating-ui/dom";
|
|
5
5
|
import { DropdownDirective } from "../../directives/dropdown.directive";
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
@@ -31,10 +31,10 @@ export declare class ChipsComponent implements ControlValueAccessor, OnChanges {
|
|
|
31
31
|
filteredOptions: ChipOption[];
|
|
32
32
|
statuses: ChipStatus[];
|
|
33
33
|
autoPlacement: AutoPlacementOptions;
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
onChange:
|
|
37
|
-
onTouched:
|
|
34
|
+
protected readonly undoList: Function[];
|
|
35
|
+
protected previousValue: string;
|
|
36
|
+
onChange: ControlValueAccesFn<ChipValue | ChipValue[]>;
|
|
37
|
+
onTouched: ControlValueAccesFn;
|
|
38
38
|
constructor(cdr: ChangeDetectorRef);
|
|
39
39
|
registerOnChange(fn: any): void;
|
|
40
40
|
registerOnTouched(fn: any): void;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { AfterViewInit, ChangeDetectorRef, ElementRef
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef } from "@angular/core";
|
|
2
2
|
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
+
import { ControlValueAccesFn } from "../../common-types";
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
interface CodeEditorView {
|
|
5
6
|
readonly value: string;
|
|
@@ -10,30 +11,31 @@ interface CodeEditorCompartment {
|
|
|
10
11
|
of(ext: Object): Object;
|
|
11
12
|
reconfigure(ext: Object): Object[];
|
|
12
13
|
}
|
|
13
|
-
export declare class CodeEditorComponent implements ControlValueAccessor,
|
|
14
|
-
readonly
|
|
15
|
-
readonly
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
onTouched: Function;
|
|
14
|
+
export declare class CodeEditorComponent implements ControlValueAccessor, AfterViewInit {
|
|
15
|
+
readonly value: import("@angular/core").ModelSignal<string | Object>;
|
|
16
|
+
readonly lang: import("@angular/core").InputSignal<string>;
|
|
17
|
+
readonly disabled: import("@angular/core").ModelSignal<boolean>;
|
|
18
|
+
protected onChange: ControlValueAccesFn<string | Object>;
|
|
19
|
+
protected onTouched: ControlValueAccesFn;
|
|
20
|
+
protected readonly cdr: ChangeDetectorRef;
|
|
21
|
+
protected readonly element: ElementRef<any>;
|
|
22
22
|
protected langCompartment: CodeEditorCompartment;
|
|
23
|
+
protected editableCompartment: CodeEditorCompartment;
|
|
23
24
|
protected extensions: Record<string, Object>;
|
|
24
25
|
protected rootElem: DocumentOrShadowRoot;
|
|
25
|
-
protected editor: CodeEditorView
|
|
26
|
-
protected editorElem: ElementRef<HTMLDivElement
|
|
26
|
+
protected readonly editor: import("@angular/core").WritableSignal<CodeEditorView>;
|
|
27
|
+
protected readonly editorElem: import("@angular/core").Signal<ElementRef<HTMLDivElement>>;
|
|
27
28
|
get root(): DocumentOrShadowRoot;
|
|
28
29
|
get rootNode(): Node;
|
|
29
|
-
constructor(
|
|
30
|
+
constructor();
|
|
30
31
|
getLangExtension(): Object;
|
|
31
32
|
ngAfterViewInit(): void;
|
|
32
|
-
ngOnChanges(): void;
|
|
33
33
|
registerOnChange(fn: any): void;
|
|
34
34
|
registerOnTouched(fn: any): void;
|
|
35
35
|
writeValue(value: string): void;
|
|
36
|
+
setDisabledState(isDisabled: boolean): void;
|
|
37
|
+
protected initEditor(): void;
|
|
36
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<CodeEditorComponent, never>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CodeEditorComponent, "code-editor", never, { "value": { "alias": "value"; "required": false; }; "lang": { "alias": "lang"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CodeEditorComponent, "code-editor", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "lang": { "alias": "lang"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "disabled": "disabledChange"; }, never, never, false, never>;
|
|
38
40
|
}
|
|
39
41
|
export {};
|
|
@@ -2,13 +2,15 @@ import { ControlValueAccessor } from "@angular/forms";
|
|
|
2
2
|
import { AutoPlacementOptions } from "@floating-ui/dom";
|
|
3
3
|
import { CalendarInputs } from "../calendar/calendar-inputs";
|
|
4
4
|
import { DropdownDirective } from "../../directives/dropdown.directive";
|
|
5
|
+
import { ControlValueAccesFn } from "../../common-types";
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class DatePickerComponent extends CalendarInputs implements ControlValueAccessor {
|
|
8
|
+
readonly disabled: import("@angular/core").ModelSignal<boolean>;
|
|
7
9
|
readonly autoPlacement: AutoPlacementOptions;
|
|
8
10
|
readonly inputValue: import("@angular/core").Signal<any>;
|
|
9
11
|
readonly pickerDropdown: import("@angular/core").Signal<DropdownDirective>;
|
|
10
|
-
onChange:
|
|
11
|
-
onTouched:
|
|
12
|
+
onChange: ControlValueAccesFn<Date | Date[] | string | null>;
|
|
13
|
+
onTouched: ControlValueAccesFn;
|
|
12
14
|
registerOnChange(fn: any): void;
|
|
13
15
|
registerOnTouched(fn: any): void;
|
|
14
16
|
writeValue(value: Date): void;
|
|
@@ -18,5 +20,5 @@ export declare class DatePickerComponent extends CalendarInputs implements Contr
|
|
|
18
20
|
onBlur(ev: FocusEvent): void;
|
|
19
21
|
clear(): void;
|
|
20
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "date-picker", never, {}, {}, never, never, false, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "date-picker", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "disabled": "disabledChange"; }, never, never, false, never>;
|
|
22
24
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef, OnChanges, SimpleChanges, TemplateRef } from "@angular/core";
|
|
2
2
|
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
-
import { DragEventHandler } from "../../common-types";
|
|
3
|
+
import { DragEventHandler, ControlValueAccesFn } from "../../common-types";
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
type DropListItem = Record<string, any>;
|
|
6
6
|
type DropListId = string | number;
|
|
@@ -17,8 +17,8 @@ export declare class DropListComponent implements OnChanges, ControlValueAccesso
|
|
|
17
17
|
checkFn: DragEventHandler<boolean, "data">;
|
|
18
18
|
dropFn: DragEventHandler<boolean, "data">;
|
|
19
19
|
itemTemplate: TemplateRef<any>;
|
|
20
|
-
onChange:
|
|
21
|
-
onTouched:
|
|
20
|
+
onChange: ControlValueAccesFn<DropListId[]>;
|
|
21
|
+
onTouched: ControlValueAccesFn;
|
|
22
22
|
valueMap: Record<DropListId, DropListItem>;
|
|
23
23
|
remove: (index: number) => void;
|
|
24
24
|
constructor(cdr: ChangeDetectorRef);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, OnChanges } from "@angular/core";
|
|
2
2
|
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
-
import { IApiService, IBaseHttpClient, IFileUploadProcess, IFileUploadResult, IToasterService, UploadType } from "../../common-types";
|
|
3
|
+
import { ControlValueAccesFn, IApiService, IBaseHttpClient, IFileUploadProcess, IFileUploadResult, IToasterService, UploadType } from "../../common-types";
|
|
4
4
|
import { BtnComponent } from "../btn/btn.component";
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UploadComponent implements ControlValueAccessor, OnChanges {
|
|
@@ -26,8 +26,8 @@ export declare class UploadComponent implements ControlValueAccessor, OnChanges
|
|
|
26
26
|
isImage: boolean;
|
|
27
27
|
dropAllowed: boolean;
|
|
28
28
|
processing: IFileUploadProcess[];
|
|
29
|
-
onChange:
|
|
30
|
-
onTouched:
|
|
29
|
+
onChange: ControlValueAccesFn<UploadType | UploadType[]>;
|
|
30
|
+
onTouched: ControlValueAccesFn;
|
|
31
31
|
protected rootElem: DocumentOrShadowRoot;
|
|
32
32
|
protected fileImageCache: Map<Blob, string>;
|
|
33
33
|
protected acceptTypes: string[];
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges } from "@angular/core";
|
|
2
2
|
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
+
import { ControlValueAccesFn } from "../../common-types";
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
interface Pell {
|
|
5
6
|
content: HTMLElement;
|
|
@@ -10,8 +11,8 @@ export declare class WysiwygComponent implements ControlValueAccessor, OnChanges
|
|
|
10
11
|
value: string;
|
|
11
12
|
disabled: boolean;
|
|
12
13
|
valueChange: EventEmitter<string>;
|
|
13
|
-
onChange:
|
|
14
|
-
onTouched:
|
|
14
|
+
onChange: ControlValueAccesFn<string>;
|
|
15
|
+
onTouched: ControlValueAccesFn;
|
|
15
16
|
protected rootElem: DocumentOrShadowRoot;
|
|
16
17
|
protected editor: Pell;
|
|
17
18
|
protected editorElem: ElementRef<HTMLDivElement>;
|
|
@@ -59,7 +59,6 @@ import { SyncAsyncPipe } from "./pipes/sync-async.pipe";
|
|
|
59
59
|
import { TranslatePipe } from "./pipes/translate.pipe";
|
|
60
60
|
import { ChipsComponent } from "./components/chips/chips.component";
|
|
61
61
|
import { CloseBtnComponent } from "./components/close-btn/close-btn.component";
|
|
62
|
-
import { CodeEditorComponent } from "./components/code-editor/code-editor.component";
|
|
63
62
|
import { DropListComponent } from "./components/drop-list/drop-list.component";
|
|
64
63
|
import { DynamicTableComponent } from "./components/dynamic-table/dynamic-table.component";
|
|
65
64
|
import { PaginationMenuComponent } from "./components/pagination-menu/pagination-menu.component";
|
|
@@ -68,7 +67,7 @@ import { UploadComponent } from "./components/upload/upload.component";
|
|
|
68
67
|
import { WysiwygComponent } from "./components/wysiwyg/wysiwyg.component";
|
|
69
68
|
export declare const pipes: (typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | typeof IncludesPipe | typeof ReducePipe | typeof RoundPipe | typeof SafeHtmlPipe | typeof SyncAsyncPipe | typeof TranslatePipe)[];
|
|
70
69
|
export declare const directives: (typeof AsyncMethodBase | typeof AsyncMethodDirective | 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 DropdownToggleDirective | typeof TabsItemDirective | typeof UnorderedListItemDirective | typeof UnorderedListTemplateDirective)[];
|
|
71
|
-
export declare const components: (typeof ChipsComponent | typeof CloseBtnComponent | typeof
|
|
70
|
+
export declare const components: (typeof ChipsComponent | typeof CloseBtnComponent | typeof DropListComponent | typeof DynamicTableComponent | typeof PaginationMenuComponent | typeof UnorderedListComponent | typeof UploadComponent | typeof WysiwygComponent)[];
|
|
72
71
|
export declare const providers: (typeof UniversalService | typeof StateService | typeof AuthGuard | typeof EventsService | typeof AclService | typeof BaseHttpClient | typeof StorageService | typeof CacheService | typeof BaseHttpService | typeof StaticAuthService | typeof ConfigService | typeof BaseDialogService | typeof ErrorHandlerService | typeof FormatterService | typeof GlobalTemplateService | typeof HrefSerializer | 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 SyncAsyncPipe | typeof TranslatePipe | typeof DeviceDetectorService | {
|
|
73
72
|
provide: import("@angular/core").InjectionToken<import("@angular/platform-browser").EventManagerPlugin[]>;
|
|
74
73
|
useClass: typeof DragDropEventPlugin;
|
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "zone.js";
|
|
2
2
|
export { MaybePromise, MaybeArray, KeysOfType, ObjOfType, StringKeys, CapitalizeFirst, CamelJoin, PrefixedPick, RequireAtLeastOne } from "./ngx-utils/helper-types";
|
|
3
|
-
export { DurationUnit, TypedFactoryProvider, TypedValueProvider, TypedExistingProvider, TypedClassProvider, TypedTokenProvider, TypedProvider, CachedFactory, ResolveFactory, IResolveFactory, CanvasColor, IIconService, ITranslation, ITranslations, GlobalTranslations, ILanguageSetting, ILanguageSettings, ILanguageService, IUserData, IAuthService, RouteValidator, IRouteData, IRoute, IDialogButtonConfig, IDialogConfig, IConfirmMessageConfig, IConfirmDialogConfig, IDialogService, IPromiseService, IRouteStateInfo, MenuItem, IAclComponent, IAclService, NavigationUrlParam, StorageMode, ToastType, IToasterService, IAsyncMessage, AsyncMethod, IconMap, IconProps, ButtonType, ButtonSize, ButtonProps, TabValue, TabOption, ChipValue, ChipStatus, ChipOption, DropdownAttachTo, UnorderedListTemplate, UnorderedListTemplates, UnorderedListStyle, UploadType, IFileUploadResult, IFileUploadProcess, IAjaxRequestDetails, AjaxRequestCallback, ScriptType, LoadableElement, LoaderPromises, ISearchObservable, FactoryDependencies, ObjectType, ITimer, IExtraProperties, IGroupMap, TranslationQuery, IPageInfo, IPaginationData, PaginationDataLoader, PaginationItemContext, IPoint, ShapeIntersection, IShape, CanvasResizeMode, CanvasItemDirection, CanvasPaintFunc, RangeCoords, RectCoords, InteractiveCanvasParams, InteractiveCanvasArea, InteractiveCanvasItem, InteractiveCanvasItems, InteractiveCanvas, InteractiveCanvasRenderer, InteractivePanEvent, InteractiveCanvasPointer, HttpRequestHeaders, HttpRequestQuery, HttpClientRequestOptions, HttpRequestOptions, UploadData, IIssueContext, IProgress, ProgressListener, CacheExpireMode, IHttpService, SvgSourceModifier, IBaseHttpClient, IApiService, DiscriminatorFn, DiscriminatorOptions, Discriminator, DynamicSchemaRef, OpenApiSchemaProperty, OpenApiSchema, OpenApiSchemas, OpenApiSchemaSelector, EDITOR_TYPES, TableFilterType, ITableOrders, ITableColumn, ITableColumns, TableColumns, ITableTemplate, ITableTemplates, ITableDataQuery, TableDataItems, TableDataLoader, DragDropEvent, DragEventHandler, ITableDragEvent, DynamicTableDragHandler, ResourceIfContext, CssSelector, CssSelectorList, DynamicComponentLocation, DynamicModuleInfo, DynamicEntryComponents, IConfiguration, IConfigService, ResizeEventStrategy, ErrorHandlerCallback, GlobalComponentModifier, AppInitializerFunc, IModuleConfig, ValuedPromise } from "./ngx-utils/common-types";
|
|
3
|
+
export { DurationUnit, TypedFactoryProvider, TypedValueProvider, TypedExistingProvider, TypedClassProvider, TypedTokenProvider, TypedProvider, CachedFactory, ResolveFactory, IResolveFactory, CanvasColor, ControlValueAccesFn, IIconService, ITranslation, ITranslations, GlobalTranslations, ILanguageSetting, ILanguageSettings, ILanguageService, IUserData, IAuthService, RouteValidator, IRouteData, IRoute, IDialogButtonConfig, IDialogConfig, IConfirmMessageConfig, IConfirmDialogConfig, IDialogService, IPromiseService, IRouteStateInfo, MenuItem, IAclComponent, IAclService, NavigationUrlParam, StorageMode, ToastType, IToasterService, IAsyncMessage, AsyncMethod, IconMap, IconProps, ButtonType, ButtonSize, ButtonProps, TabValue, TabOption, ChipValue, ChipStatus, ChipOption, DropdownAttachTo, UnorderedListTemplate, UnorderedListTemplates, UnorderedListStyle, UploadType, IFileUploadResult, IFileUploadProcess, IAjaxRequestDetails, AjaxRequestCallback, ScriptType, LoadableElement, LoaderPromises, ISearchObservable, FactoryDependencies, ObjectType, ITimer, IExtraProperties, IGroupMap, TranslationQuery, IPageInfo, IPaginationData, PaginationDataLoader, PaginationItemContext, IPoint, ShapeIntersection, IShape, CanvasResizeMode, CanvasItemDirection, CanvasPaintFunc, RangeCoords, RectCoords, InteractiveCanvasParams, InteractiveCanvasArea, InteractiveCanvasItem, InteractiveCanvasItems, InteractiveCanvas, InteractiveCanvasRenderer, InteractivePanEvent, InteractiveCanvasPointer, HttpRequestHeaders, HttpRequestQuery, HttpClientRequestOptions, HttpRequestOptions, UploadData, IIssueContext, IProgress, ProgressListener, CacheExpireMode, IHttpService, SvgSourceModifier, IBaseHttpClient, IApiService, DiscriminatorFn, DiscriminatorOptions, Discriminator, DynamicSchemaRef, OpenApiSchemaProperty, OpenApiSchema, OpenApiSchemas, OpenApiSchemaSelector, EDITOR_TYPES, TableFilterType, ITableOrders, ITableColumn, ITableColumns, TableColumns, ITableTemplate, ITableTemplates, ITableDataQuery, TableDataItems, TableDataLoader, DragDropEvent, DragEventHandler, ITableDragEvent, DynamicTableDragHandler, ResourceIfContext, CssSelector, CssSelectorList, DynamicComponentLocation, DynamicModuleInfo, DynamicEntryComponents, IConfiguration, IConfigService, ResizeEventStrategy, ErrorHandlerCallback, GlobalComponentModifier, AppInitializerFunc, IModuleConfig, ValuedPromise } from "./ngx-utils/common-types";
|
|
4
4
|
export { ICON_TYPE, ICON_MAP, BUTTON_TYPE, ERROR_HANDLER, STATIC_SCHEMAS, SCHEMA_SELECTOR, RESIZE_STRATEGY, RESIZE_DELAY, ROOT_ELEMENT, SCRIPT_PARAMS, BASE_CONFIG, CONFIG_SERVICE, APP_BASE_URL, API_SERVICE, EXPRESS_REQUEST, PROMISE_SERVICE, DIALOG_SERVICE, TOASTER_SERVICE, AUTH_SERVICE, LANGUAGE_SERVICE, ICON_SERVICE, OPTIONS_TOKEN } from "./ngx-utils/tokens";
|
|
5
5
|
export { AjaxRequestHandler } from "./ngx-utils/utils/ajax-request-handler";
|
|
6
6
|
export { ArrayUtils } from "./ngx-utils/utils/array.utils";
|