@stemy/ngx-utils 19.7.29 → 19.8.0
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 +107 -18
- package/fesm2022/stemy-ngx-utils.mjs.map +1 -1
- package/ngx-utils/common-types.d.ts +2 -0
- package/ngx-utils/components/wysiwyg/wysiwyg.component.d.ts +29 -0
- package/ngx-utils/ngx-utils.imports.d.ts +2 -1
- package/ngx-utils/ngx-utils.module.d.ts +4 -3
- package/ngx-utils/services/open-api.service.d.ts +5 -2
- package/ngx-utils/tokens.d.ts +2 -1
- package/package.json +1 -1
- package/public_api.d.ts +3 -2
|
@@ -534,6 +534,7 @@ export interface OpenApiSchema {
|
|
|
534
534
|
export interface OpenApiSchemas {
|
|
535
535
|
[name: string]: OpenApiSchema;
|
|
536
536
|
}
|
|
537
|
+
export type OpenApiSchemaSelector = (name: string, schemas: OpenApiSchemas, injector: Injector) => OpenApiSchema;
|
|
537
538
|
export type TableFilterType = "text" | "enum" | "checkbox";
|
|
538
539
|
export interface ITableOrders {
|
|
539
540
|
[column: string]: string;
|
|
@@ -635,6 +636,7 @@ export interface IModuleConfig {
|
|
|
635
636
|
resizeStrategy?: ResizeEventStrategy;
|
|
636
637
|
socketPath?: string;
|
|
637
638
|
staticSchemas?: OpenApiSchemas;
|
|
639
|
+
schemaSelector?: OpenApiSchemaSelector;
|
|
638
640
|
}
|
|
639
641
|
export declare class ValuedPromise<T> extends Promise<T> {
|
|
640
642
|
value: T;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges } from "@angular/core";
|
|
2
|
+
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
interface Pell {
|
|
5
|
+
content: HTMLElement;
|
|
6
|
+
}
|
|
7
|
+
export declare class WysiwygComponent implements ControlValueAccessor, OnChanges, AfterViewInit {
|
|
8
|
+
readonly cdr: ChangeDetectorRef;
|
|
9
|
+
readonly element: ElementRef<HTMLElement>;
|
|
10
|
+
value: string;
|
|
11
|
+
disabled: boolean;
|
|
12
|
+
valueChange: EventEmitter<string>;
|
|
13
|
+
onChange: Function;
|
|
14
|
+
onTouched: Function;
|
|
15
|
+
protected rootElem: DocumentOrShadowRoot;
|
|
16
|
+
protected editor: Pell;
|
|
17
|
+
protected editorElem: ElementRef<HTMLDivElement>;
|
|
18
|
+
get root(): DocumentOrShadowRoot;
|
|
19
|
+
get rootNode(): Node;
|
|
20
|
+
constructor(cdr: ChangeDetectorRef, element: ElementRef<HTMLElement>);
|
|
21
|
+
ngAfterViewInit(): void;
|
|
22
|
+
ngOnChanges(): void;
|
|
23
|
+
registerOnChange(fn: any): void;
|
|
24
|
+
registerOnTouched(fn: any): void;
|
|
25
|
+
writeValue(value: string): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WysiwygComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WysiwygComponent, "wysiwyg", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
28
|
+
}
|
|
29
|
+
export {};
|
|
@@ -61,9 +61,10 @@ import { DynamicTableComponent } from "./components/dynamic-table/dynamic-table.
|
|
|
61
61
|
import { PaginationMenuComponent } from "./components/pagination-menu/pagination-menu.component";
|
|
62
62
|
import { UnorderedListComponent } from "./components/unordered-list/unordered-list.component";
|
|
63
63
|
import { UploadComponent } from "./components/upload/upload.component";
|
|
64
|
+
import { WysiwygComponent } from "./components/wysiwyg/wysiwyg.component";
|
|
64
65
|
export declare const pipes: (typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | typeof IncludesPipe | typeof ReducePipe | typeof RoundPipe | typeof SafeHtmlPipe | typeof SyncAsyncPipe | typeof TranslatePipe)[];
|
|
65
66
|
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)[];
|
|
66
|
-
export declare const components: (typeof ChipsComponent | typeof CloseBtnComponent | typeof DropListComponent | typeof DynamicTableComponent | typeof PaginationMenuComponent | typeof UnorderedListComponent | typeof UploadComponent)[];
|
|
67
|
+
export declare const components: (typeof ChipsComponent | typeof CloseBtnComponent | typeof DropListComponent | typeof DynamicTableComponent | typeof PaginationMenuComponent | typeof UnorderedListComponent | typeof UploadComponent | typeof WysiwygComponent)[];
|
|
67
68
|
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 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 | {
|
|
68
69
|
provide: import("@angular/core").InjectionToken<import("@angular/platform-browser").EventManagerPlugin[]>;
|
|
69
70
|
useClass: typeof DragDropEventPlugin;
|
|
@@ -70,8 +70,9 @@ import * as i66 from "./components/interactive-canvas/interactive-rect.component
|
|
|
70
70
|
import * as i67 from "./components/tabs/tabs.component";
|
|
71
71
|
import * as i68 from "./components/unordered-list/unordered-list.component";
|
|
72
72
|
import * as i69 from "./components/upload/upload.component";
|
|
73
|
-
import * as i70 from "
|
|
74
|
-
import * as i71 from "@angular/
|
|
73
|
+
import * as i70 from "./components/wysiwyg/wysiwyg.component";
|
|
74
|
+
import * as i71 from "@angular/common";
|
|
75
|
+
import * as i72 from "@angular/forms";
|
|
75
76
|
export declare function loadBaseUrl(): string;
|
|
76
77
|
export declare function loadBaseHref(baseUrl: string): string;
|
|
77
78
|
export declare function getRootElement(): HTMLElement;
|
|
@@ -81,6 +82,6 @@ export declare class NgxUtilsModule {
|
|
|
81
82
|
static provideUtils(config?: IModuleConfig): EnvironmentProviders;
|
|
82
83
|
static useDynamic(moduleInfo: DynamicModuleInfo): ModuleWithProviders<NgxUtilsModule>;
|
|
83
84
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgxUtilsModule, never>;
|
|
84
|
-
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.SyncAsyncPipe, typeof i29.TranslatePipe, typeof i30.ValuesPipe, typeof i31.AsyncMethodBase, typeof i32.AsyncMethodDirective, typeof i33.AsyncMethodTargetDirective, typeof i34.BackgroundDirective, typeof i35.ComponentLoaderDirective, typeof i36.DynamicTableTemplateDirective, typeof i37.GlobalTemplateDirective, typeof i38.IconDirective, typeof i39.NgxTemplateOutletDirective, typeof i40.PaginationDirective, typeof i41.PaginationItemDirective, typeof i42.ResourceIfDirective, typeof i43.StickyDirective, typeof i44.StickyClassDirective, typeof i45.DropdownDirective, typeof i46.DropdownContentDirective, typeof i47.DropdownToggleDirective, typeof i48.TabsItemDirective, typeof i49.TabsTemplateDirective, typeof i50.UnorderedListItemDirective, typeof i51.UnorderedListTemplateDirective, typeof i52.BtnComponent, typeof i53.BtnDefaultComponent, typeof i54.ChipsComponent, typeof i55.CloseBtnComponent, typeof i56.DropListComponent, typeof i57.DropdownBoxComponent, typeof i58.DynamicTableComponent, typeof i59.FakeModuleComponent, typeof i60.PaginationMenuComponent, typeof i61.IconComponent, typeof i62.IconDefaultComponent, typeof i63.InteractiveCanvasComponent, typeof i64.InteractiveItemComponent, typeof i65.InteractiveCircleComponent, typeof i66.InteractiveRectComponent, typeof i67.TabsComponent, typeof i68.UnorderedListComponent, typeof i69.UploadComponent], [typeof
|
|
85
|
+
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.SyncAsyncPipe, typeof i29.TranslatePipe, typeof i30.ValuesPipe, typeof i31.AsyncMethodBase, typeof i32.AsyncMethodDirective, typeof i33.AsyncMethodTargetDirective, typeof i34.BackgroundDirective, typeof i35.ComponentLoaderDirective, typeof i36.DynamicTableTemplateDirective, typeof i37.GlobalTemplateDirective, typeof i38.IconDirective, typeof i39.NgxTemplateOutletDirective, typeof i40.PaginationDirective, typeof i41.PaginationItemDirective, typeof i42.ResourceIfDirective, typeof i43.StickyDirective, typeof i44.StickyClassDirective, typeof i45.DropdownDirective, typeof i46.DropdownContentDirective, typeof i47.DropdownToggleDirective, typeof i48.TabsItemDirective, typeof i49.TabsTemplateDirective, typeof i50.UnorderedListItemDirective, typeof i51.UnorderedListTemplateDirective, typeof i52.BtnComponent, typeof i53.BtnDefaultComponent, typeof i54.ChipsComponent, typeof i55.CloseBtnComponent, typeof i56.DropListComponent, typeof i57.DropdownBoxComponent, typeof i58.DynamicTableComponent, typeof i59.FakeModuleComponent, typeof i60.PaginationMenuComponent, typeof i61.IconComponent, typeof i62.IconDefaultComponent, typeof i63.InteractiveCanvasComponent, typeof i64.InteractiveItemComponent, typeof i65.InteractiveCircleComponent, typeof i66.InteractiveRectComponent, typeof i67.TabsComponent, typeof i68.UnorderedListComponent, typeof i69.UploadComponent, typeof i70.WysiwygComponent], [typeof i71.CommonModule, typeof i72.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.SyncAsyncPipe, typeof i29.TranslatePipe, typeof i30.ValuesPipe, typeof i31.AsyncMethodBase, typeof i32.AsyncMethodDirective, typeof i33.AsyncMethodTargetDirective, typeof i34.BackgroundDirective, typeof i35.ComponentLoaderDirective, typeof i36.DynamicTableTemplateDirective, typeof i37.GlobalTemplateDirective, typeof i38.IconDirective, typeof i39.NgxTemplateOutletDirective, typeof i40.PaginationDirective, typeof i41.PaginationItemDirective, typeof i42.ResourceIfDirective, typeof i43.StickyDirective, typeof i44.StickyClassDirective, typeof i45.DropdownDirective, typeof i46.DropdownContentDirective, typeof i47.DropdownToggleDirective, typeof i48.TabsItemDirective, typeof i49.TabsTemplateDirective, typeof i50.UnorderedListItemDirective, typeof i51.UnorderedListTemplateDirective, typeof i52.BtnComponent, typeof i53.BtnDefaultComponent, typeof i54.ChipsComponent, typeof i55.CloseBtnComponent, typeof i56.DropListComponent, typeof i57.DropdownBoxComponent, typeof i58.DynamicTableComponent, typeof i59.FakeModuleComponent, typeof i60.PaginationMenuComponent, typeof i61.IconComponent, typeof i62.IconDefaultComponent, typeof i63.InteractiveCanvasComponent, typeof i64.InteractiveItemComponent, typeof i65.InteractiveCircleComponent, typeof i66.InteractiveRectComponent, typeof i67.TabsComponent, typeof i68.UnorderedListComponent, typeof i69.UploadComponent, typeof i70.WysiwygComponent, typeof i72.FormsModule]>;
|
|
85
86
|
static ɵinj: i0.ɵɵInjectorDeclaration<NgxUtilsModule>;
|
|
86
87
|
}
|
|
@@ -1,12 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Injector } from "@angular/core";
|
|
2
|
+
import { DynamicSchemaRef, IApiService, OpenApiSchema, OpenApiSchemaProperty, OpenApiSchemas, OpenApiSchemaSelector } from "../common-types";
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class OpenApiService {
|
|
4
5
|
readonly api: IApiService;
|
|
6
|
+
protected readonly schemaSelector: OpenApiSchemaSelector;
|
|
5
7
|
protected readonly staticSchemas: OpenApiSchemas;
|
|
8
|
+
protected readonly injector: Injector;
|
|
6
9
|
private apiDocs;
|
|
7
10
|
private schemas;
|
|
8
11
|
private readonly dynamicSchemas;
|
|
9
|
-
constructor(api: IApiService, staticSchemas: OpenApiSchemas);
|
|
12
|
+
constructor(api: IApiService, schemaSelector: OpenApiSchemaSelector, staticSchemas: OpenApiSchemas, injector: Injector);
|
|
10
13
|
isDynamicSchema(value: any): value is Required<DynamicSchemaRef>;
|
|
11
14
|
getSchemas(): Promise<OpenApiSchemas>;
|
|
12
15
|
getReferences(property: OpenApiSchemaProperty, schema: OpenApiSchema): Promise<OpenApiSchema[]>;
|
package/ngx-utils/tokens.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { InjectionToken, Type } from "@angular/core";
|
|
2
2
|
import { Request } from "express";
|
|
3
|
-
import { ButtonProps, DynamicEntryComponents, DynamicModuleInfo, ErrorHandlerCallback, IApiService, IAuthService, IConfigService, IConfiguration, IconMap, IconProps, IDialogService, IIconService, ILanguageService, IPromiseService, IToasterService, OpenApiSchemas, ResizeEventStrategy } from "./common-types";
|
|
3
|
+
import { ButtonProps, DynamicEntryComponents, DynamicModuleInfo, ErrorHandlerCallback, IApiService, IAuthService, IConfigService, IConfiguration, IconMap, IconProps, IDialogService, IIconService, ILanguageService, IPromiseService, IToasterService, OpenApiSchemas, OpenApiSchemaSelector, ResizeEventStrategy } from "./common-types";
|
|
4
4
|
export declare const ICON_TYPE: InjectionToken<Type<IconProps>>;
|
|
5
5
|
export declare const ICON_MAP: InjectionToken<IconMap>;
|
|
6
6
|
export declare const BUTTON_TYPE: InjectionToken<Type<ButtonProps>>;
|
|
@@ -25,3 +25,4 @@ export declare const RESIZE_DELAY: InjectionToken<number>;
|
|
|
25
25
|
export declare const RESIZE_STRATEGY: InjectionToken<ResizeEventStrategy>;
|
|
26
26
|
export declare const ERROR_HANDLER: InjectionToken<ErrorHandlerCallback>;
|
|
27
27
|
export declare const STATIC_SCHEMAS: InjectionToken<OpenApiSchemas>;
|
|
28
|
+
export declare const SCHEMA_SELECTOR: InjectionToken<OpenApiSchemaSelector>;
|
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "zone.js";
|
|
2
2
|
export { MaybePromise, MaybeArray, KeysOfType, ObjOfType, StringKeys, CapitalizeFirst, CamelJoin, PrefixedPick } 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, IAclComponent, IDialogButtonConfig, IDialogConfig, IConfirmMessageConfig, IConfirmDialogConfig, IDialogService, IPromiseService, IRouteStateInfo, 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, ILoadableElement, ILoaderPromises, ISearchObservable, FactoryDependencies, ObjectType, ITimer, IExtraProperties, IGroupMap, TranslationQuery, IPageInfo, IPaginationData, PaginationDataLoader, PaginationItemContext, IPoint, ShapeIntersection, ShapeDistance, IShape, CanvasResizeMode, CanvasItemDirection, CanvasPaintFunc, RangeCoords, RectCoords, Frame, InteractiveCanvasParams, InteractiveCanvasItem, InteractiveCanvasItems, InteractiveCanvas, InteractiveCanvasRenderer, InteractivePanEvent, InteractiveCanvasPointer, HttpRequestHeaders, HttpRequestQuery, HttpClientRequestOptions, HttpRequestOptions, UploadData, IIssueContext, IProgress, ProgressListener, CacheExpireMode, IHttpService, SvgSourceModifier, IBaseHttpClient, IApiService, DynamicSchemaRef, OpenApiSchemaProperty, OpenApiSchema, OpenApiSchemas, 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
|
-
export { ICON_TYPE, ICON_MAP, BUTTON_TYPE, ERROR_HANDLER, STATIC_SCHEMAS, 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";
|
|
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, IAclComponent, IDialogButtonConfig, IDialogConfig, IConfirmMessageConfig, IConfirmDialogConfig, IDialogService, IPromiseService, IRouteStateInfo, 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, ILoadableElement, ILoaderPromises, ISearchObservable, FactoryDependencies, ObjectType, ITimer, IExtraProperties, IGroupMap, TranslationQuery, IPageInfo, IPaginationData, PaginationDataLoader, PaginationItemContext, IPoint, ShapeIntersection, ShapeDistance, IShape, CanvasResizeMode, CanvasItemDirection, CanvasPaintFunc, RangeCoords, RectCoords, Frame, InteractiveCanvasParams, InteractiveCanvasItem, InteractiveCanvasItems, InteractiveCanvas, InteractiveCanvasRenderer, InteractivePanEvent, InteractiveCanvasPointer, HttpRequestHeaders, HttpRequestQuery, HttpClientRequestOptions, HttpRequestOptions, UploadData, IIssueContext, IProgress, ProgressListener, CacheExpireMode, IHttpService, SvgSourceModifier, IBaseHttpClient, IApiService, DynamicSchemaRef, OpenApiSchemaProperty, OpenApiSchema, OpenApiSchemas, OpenApiSchemaSelector, 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
|
+
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";
|
|
7
7
|
export { AuthGuard } from "./ngx-utils/utils/auth.guard";
|
|
@@ -130,4 +130,5 @@ export { PaginationMenuComponent } from "./ngx-utils/components/pagination-menu/
|
|
|
130
130
|
export { TabsComponent } from "./ngx-utils/components/tabs/tabs.component";
|
|
131
131
|
export { UnorderedListComponent } from "./ngx-utils/components/unordered-list/unordered-list.component";
|
|
132
132
|
export { UploadComponent } from "./ngx-utils/components/upload/upload.component";
|
|
133
|
+
export { WysiwygComponent } from "./ngx-utils/components/wysiwyg/wysiwyg.component";
|
|
133
134
|
export { NgxUtilsModule } from "./ngx-utils/ngx-utils.module";
|