@stemy/ngx-utils 19.4.19 → 19.5.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.
@@ -2,6 +2,9 @@ import { ElementRef, EventEmitter, InjectionToken, Injector, NgZone, Provider, T
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";
5
+ import { DurationLikeObject } from "luxon";
6
+ import { StringKeys } from "./helper-types";
7
+ export type DurationUnit = StringKeys<DurationLikeObject>;
5
8
  export interface TypedFactoryProvider<T> {
6
9
  useFactory: (...args: any[]) => T;
7
10
  deps: any[];
@@ -0,0 +1,59 @@
1
+ import { ChangeDetectorRef, ElementRef, EventEmitter } from "@angular/core";
2
+ import { ControlValueAccessor } from "@angular/forms";
3
+ import * as i0 from "@angular/core";
4
+ export type ChipValues = string | number;
5
+ export interface IChipOption {
6
+ value: ChipValues;
7
+ label: string;
8
+ props?: any;
9
+ classes?: string;
10
+ disabled?: boolean;
11
+ }
12
+ export declare class ChipsComponent implements ControlValueAccessor {
13
+ readonly cdr: ChangeDetectorRef;
14
+ value: ChipValues | ChipValues[];
15
+ multiple: boolean;
16
+ disabled: boolean;
17
+ type: string;
18
+ min: number;
19
+ max: number;
20
+ minLength: number;
21
+ maxLength: number;
22
+ step: number;
23
+ placeholder: string;
24
+ unique: boolean;
25
+ options: ReadonlyArray<IChipOption>;
26
+ valueChange: EventEmitter<ChipValues | ChipValues[]>;
27
+ chipContainer: ElementRef<HTMLDivElement>;
28
+ chipButtons: ElementRef<HTMLDivElement>;
29
+ chipInput: ElementRef<HTMLInputElement>;
30
+ inputStyles: {
31
+ [key: string]: string;
32
+ };
33
+ valueOptions: IChipOption[];
34
+ filteredOptions: IChipOption[];
35
+ statuses: Array<"danger" | "primary">;
36
+ private undoList;
37
+ private previousValue;
38
+ onChange: any;
39
+ onTouched: any;
40
+ constructor(cdr: ChangeDetectorRef);
41
+ registerOnChange(fn: any): void;
42
+ registerOnTouched(fn: any): void;
43
+ writeValue(val: ChipValues | ChipValues[]): void;
44
+ updateValues(val: IChipOption[]): void;
45
+ setDisabledState(val: boolean): void;
46
+ removeItem(event: Event, ix: number): void;
47
+ onResize(): void;
48
+ onInput(ev: KeyboardEvent): void;
49
+ onBlur(ev: FocusEvent): void;
50
+ enterOption(value: string): void;
51
+ trackBy(index: number, option: IChipOption): string;
52
+ protected makeUndo(): void;
53
+ protected createOption(value: string | number): IChipOption;
54
+ protected createValueOptions(value: ChipValues[]): IChipOption[];
55
+ protected updateValue(): ChipValues | ChipValues[];
56
+ protected filterOptions(): void;
57
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChipsComponent, never>;
58
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChipsComponent, "chips", never, { "value": { "alias": "value"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "type": { "alias": "type"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "step": { "alias": "step"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "unique": { "alias": "unique"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
59
+ }
@@ -0,0 +1,5 @@
1
+ export type MaybePromise<T> = T | PromiseLike<T>;
2
+ export type MaybeArray<T> = T | T[];
3
+ export type StringKeys<Context extends {
4
+ [key: string]: any;
5
+ }> = Extract<keyof Context, string>;
@@ -53,6 +53,7 @@ import { ReducePipe } from "./pipes/reduce.pipe";
53
53
  import { RoundPipe } from "./pipes/round.pipe";
54
54
  import { SafeHtmlPipe } from "./pipes/safe-html.pipe";
55
55
  import { TranslatePipe } from "./pipes/translate.pipe";
56
+ import { ChipsComponent } from "./components/chips/chips.component";
56
57
  import { DropListComponent } from "./components/drop-list/drop-list.component";
57
58
  import { DynamicTableComponent } from "./components/dynamic-table/dynamic-table.component";
58
59
  import { FakeModuleComponent } from "./components/fake-module/fake-module.component";
@@ -63,8 +64,8 @@ import { PaginationMenuComponent } from "./components/pagination-menu/pagination
63
64
  import { UnorderedListComponent } from "./components/unordered-list/unordered-list.component";
64
65
  import { UploadComponent } from "./components/upload/upload.component";
65
66
  export declare const pipes: (typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | typeof IncludesPipe | typeof ReducePipe | typeof RoundPipe | typeof SafeHtmlPipe | typeof TranslatePipe)[];
66
- export declare const directives: (typeof DynamicTableTemplateDirective | typeof AsyncMethodBase | typeof BackgroundDirective | typeof ComponentLoaderDirective | 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)[];
67
- export declare const components: (typeof DynamicTableComponent | typeof DropListComponent | typeof FakeModuleComponent | typeof InteractiveCanvasComponent | typeof InteractiveCircleComponent | typeof InteractiveRectComponent | typeof PaginationMenuComponent | typeof UnorderedListComponent | typeof UploadComponent)[];
67
+ 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)[];
68
+ export declare const components: (typeof ChipsComponent | typeof DropListComponent | typeof DynamicTableComponent | typeof FakeModuleComponent | typeof InteractiveCanvasComponent | typeof InteractiveCircleComponent | typeof InteractiveRectComponent | typeof PaginationMenuComponent | typeof UnorderedListComponent | typeof UploadComponent)[];
68
69
  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 | {
69
70
  provide: import("@angular/core").InjectionToken<import("@angular/platform-browser").EventManagerPlugin[]>;
70
71
  useClass: typeof DragDropEventPlugin;
@@ -48,19 +48,20 @@ import * as i44 from "./directives/dropdown-content.directive";
48
48
  import * as i45 from "./directives/dropdown-toggle.directive";
49
49
  import * as i46 from "./directives/unordered-list-item.directive";
50
50
  import * as i47 from "./directives/unordered-list-template.directive";
51
- import * as i48 from "./components/drop-list/drop-list.component";
52
- import * as i49 from "./components/dropdown-box/dropdown-box.component";
53
- import * as i50 from "./components/dynamic-table/dynamic-table.component";
54
- import * as i51 from "./components/fake-module/fake-module.component";
55
- import * as i52 from "./components/pagination-menu/pagination-menu.component";
56
- import * as i53 from "./components/interactive-canvas/interactive-canvas.component";
57
- import * as i54 from "./components/interactive-canvas/interactive-item.component";
58
- import * as i55 from "./components/interactive-canvas/interactive-circle.component";
59
- import * as i56 from "./components/interactive-canvas/interactive-rect.component";
60
- import * as i57 from "./components/unordered-list/unordered-list.component";
61
- import * as i58 from "./components/upload/upload.component";
62
- import * as i59 from "@angular/common";
63
- import * as i60 from "@angular/forms";
51
+ import * as i48 from "./components/chips/chips.component";
52
+ import * as i49 from "./components/drop-list/drop-list.component";
53
+ import * as i50 from "./components/dropdown-box/dropdown-box.component";
54
+ import * as i51 from "./components/dynamic-table/dynamic-table.component";
55
+ import * as i52 from "./components/fake-module/fake-module.component";
56
+ import * as i53 from "./components/pagination-menu/pagination-menu.component";
57
+ import * as i54 from "./components/interactive-canvas/interactive-canvas.component";
58
+ import * as i55 from "./components/interactive-canvas/interactive-item.component";
59
+ import * as i56 from "./components/interactive-canvas/interactive-circle.component";
60
+ import * as i57 from "./components/interactive-canvas/interactive-rect.component";
61
+ import * as i58 from "./components/unordered-list/unordered-list.component";
62
+ import * as i59 from "./components/upload/upload.component";
63
+ import * as i60 from "@angular/common";
64
+ import * as i61 from "@angular/forms";
64
65
  export declare function loadBaseUrl(): string;
65
66
  export declare function loadBaseHref(baseUrl: string): string;
66
67
  export declare function getRootElement(): HTMLElement;
@@ -71,6 +72,6 @@ export declare class NgxUtilsModule {
71
72
  static useDynamic(moduleInfo: DynamicModuleInfo): ModuleWithProviders<NgxUtilsModule>;
72
73
  constructor();
73
74
  static ɵfac: i0.ɵɵFactoryDeclaration<NgxUtilsModule, never>;
74
- static ɵmod: i0.ɵɵNgModuleDeclaration<NgxUtilsModule, [typeof i1.ChunkPipe, typeof i2.EntriesPipe, typeof i3.ExtraItemPropertiesPipe, typeof i4.FilterPipe, typeof i5.FindPipe, typeof i6.FormatNumberPipe, typeof i7.GetOffsetPipe, typeof i8.GetTypePipe, typeof i9.GetValuePipe, typeof i10.GlobalTemplatePipe, typeof i11.GroupByPipe, typeof i12.IncludesPipe, typeof i13.IsTypePipe, typeof i14.JoinPipe, typeof i15.KeysPipe, typeof i16.MapPipe, typeof i17.MaxPipe, typeof i18.MinPipe, typeof i19.PopPipe, typeof i20.ReducePipe, typeof i21.RemapPipe, typeof i22.ReplacePipe, typeof i23.ReversePipe, typeof i24.RoundPipe, typeof i25.SafeHtmlPipe, typeof i26.ShiftPipe, typeof i27.SplitPipe, typeof i28.TranslatePipe, typeof i29.ValuesPipe, typeof i30.AsyncMethodBase, typeof i31.AsyncMethodDirective, typeof i32.BackgroundDirective, typeof i33.ComponentLoaderDirective, typeof i34.DynamicTableTemplateDirective, typeof i35.GlobalTemplateDirective, typeof i36.IconDirective, typeof i37.NgxTemplateOutletDirective, typeof i38.PaginationDirective, typeof i39.PaginationItemDirective, typeof i40.ResourceIfDirective, typeof i41.StickyDirective, typeof i42.StickyClassDirective, typeof i43.DropdownDirective, typeof i44.DropdownContentDirective, typeof i45.DropdownToggleDirective, typeof i46.UnorderedListItemDirective, typeof i47.UnorderedListTemplateDirective, typeof i48.DropListComponent, typeof i49.DropdownBoxComponent, typeof i50.DynamicTableComponent, typeof i51.FakeModuleComponent, typeof i52.PaginationMenuComponent, typeof i53.InteractiveCanvasComponent, typeof i54.InteractiveItemComponent, typeof i55.InteractiveCircleComponent, typeof i56.InteractiveRectComponent, typeof i57.UnorderedListComponent, typeof i58.UploadComponent], [typeof i59.CommonModule, typeof i60.FormsModule], [typeof i1.ChunkPipe, typeof i2.EntriesPipe, typeof i3.ExtraItemPropertiesPipe, typeof i4.FilterPipe, typeof i5.FindPipe, typeof i6.FormatNumberPipe, typeof i7.GetOffsetPipe, typeof i8.GetTypePipe, typeof i9.GetValuePipe, typeof i10.GlobalTemplatePipe, typeof i11.GroupByPipe, typeof i12.IncludesPipe, typeof i13.IsTypePipe, typeof i14.JoinPipe, typeof i15.KeysPipe, typeof i16.MapPipe, typeof i17.MaxPipe, typeof i18.MinPipe, typeof i19.PopPipe, typeof i20.ReducePipe, typeof i21.RemapPipe, typeof i22.ReplacePipe, typeof i23.ReversePipe, typeof i24.RoundPipe, typeof i25.SafeHtmlPipe, typeof i26.ShiftPipe, typeof i27.SplitPipe, typeof i28.TranslatePipe, typeof i29.ValuesPipe, typeof i30.AsyncMethodBase, typeof i31.AsyncMethodDirective, typeof i32.BackgroundDirective, typeof i33.ComponentLoaderDirective, typeof i34.DynamicTableTemplateDirective, typeof i35.GlobalTemplateDirective, typeof i36.IconDirective, typeof i37.NgxTemplateOutletDirective, typeof i38.PaginationDirective, typeof i39.PaginationItemDirective, typeof i40.ResourceIfDirective, typeof i41.StickyDirective, typeof i42.StickyClassDirective, typeof i43.DropdownDirective, typeof i44.DropdownContentDirective, typeof i45.DropdownToggleDirective, typeof i46.UnorderedListItemDirective, typeof i47.UnorderedListTemplateDirective, typeof i48.DropListComponent, typeof i49.DropdownBoxComponent, typeof i50.DynamicTableComponent, typeof i51.FakeModuleComponent, typeof i52.PaginationMenuComponent, typeof i53.InteractiveCanvasComponent, typeof i54.InteractiveItemComponent, typeof i55.InteractiveCircleComponent, typeof i56.InteractiveRectComponent, typeof i57.UnorderedListComponent, typeof i58.UploadComponent, typeof i60.FormsModule]>;
75
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NgxUtilsModule, [typeof i1.ChunkPipe, typeof i2.EntriesPipe, typeof i3.ExtraItemPropertiesPipe, typeof i4.FilterPipe, typeof i5.FindPipe, typeof i6.FormatNumberPipe, typeof i7.GetOffsetPipe, typeof i8.GetTypePipe, typeof i9.GetValuePipe, typeof i10.GlobalTemplatePipe, typeof i11.GroupByPipe, typeof i12.IncludesPipe, typeof i13.IsTypePipe, typeof i14.JoinPipe, typeof i15.KeysPipe, typeof i16.MapPipe, typeof i17.MaxPipe, typeof i18.MinPipe, typeof i19.PopPipe, typeof i20.ReducePipe, typeof i21.RemapPipe, typeof i22.ReplacePipe, typeof i23.ReversePipe, typeof i24.RoundPipe, typeof i25.SafeHtmlPipe, typeof i26.ShiftPipe, typeof i27.SplitPipe, typeof i28.TranslatePipe, typeof i29.ValuesPipe, typeof i30.AsyncMethodBase, typeof i31.AsyncMethodDirective, typeof i32.BackgroundDirective, typeof i33.ComponentLoaderDirective, typeof i34.DynamicTableTemplateDirective, typeof i35.GlobalTemplateDirective, typeof i36.IconDirective, typeof i37.NgxTemplateOutletDirective, typeof i38.PaginationDirective, typeof i39.PaginationItemDirective, typeof i40.ResourceIfDirective, typeof i41.StickyDirective, typeof i42.StickyClassDirective, typeof i43.DropdownDirective, typeof i44.DropdownContentDirective, typeof i45.DropdownToggleDirective, typeof i46.UnorderedListItemDirective, typeof i47.UnorderedListTemplateDirective, typeof i48.ChipsComponent, typeof i49.DropListComponent, typeof i50.DropdownBoxComponent, typeof i51.DynamicTableComponent, typeof i52.FakeModuleComponent, typeof i53.PaginationMenuComponent, typeof i54.InteractiveCanvasComponent, typeof i55.InteractiveItemComponent, typeof i56.InteractiveCircleComponent, typeof i57.InteractiveRectComponent, typeof i58.UnorderedListComponent, typeof i59.UploadComponent], [typeof i60.CommonModule, typeof i61.FormsModule], [typeof i1.ChunkPipe, typeof i2.EntriesPipe, typeof i3.ExtraItemPropertiesPipe, typeof i4.FilterPipe, typeof i5.FindPipe, typeof i6.FormatNumberPipe, typeof i7.GetOffsetPipe, typeof i8.GetTypePipe, typeof i9.GetValuePipe, typeof i10.GlobalTemplatePipe, typeof i11.GroupByPipe, typeof i12.IncludesPipe, typeof i13.IsTypePipe, typeof i14.JoinPipe, typeof i15.KeysPipe, typeof i16.MapPipe, typeof i17.MaxPipe, typeof i18.MinPipe, typeof i19.PopPipe, typeof i20.ReducePipe, typeof i21.RemapPipe, typeof i22.ReplacePipe, typeof i23.ReversePipe, typeof i24.RoundPipe, typeof i25.SafeHtmlPipe, typeof i26.ShiftPipe, typeof i27.SplitPipe, typeof i28.TranslatePipe, typeof i29.ValuesPipe, typeof i30.AsyncMethodBase, typeof i31.AsyncMethodDirective, typeof i32.BackgroundDirective, typeof i33.ComponentLoaderDirective, typeof i34.DynamicTableTemplateDirective, typeof i35.GlobalTemplateDirective, typeof i36.IconDirective, typeof i37.NgxTemplateOutletDirective, typeof i38.PaginationDirective, typeof i39.PaginationItemDirective, typeof i40.ResourceIfDirective, typeof i41.StickyDirective, typeof i42.StickyClassDirective, typeof i43.DropdownDirective, typeof i44.DropdownContentDirective, typeof i45.DropdownToggleDirective, typeof i46.UnorderedListItemDirective, typeof i47.UnorderedListTemplateDirective, typeof i48.ChipsComponent, typeof i49.DropListComponent, typeof i50.DropdownBoxComponent, typeof i51.DynamicTableComponent, typeof i52.FakeModuleComponent, typeof i53.PaginationMenuComponent, typeof i54.InteractiveCanvasComponent, typeof i55.InteractiveItemComponent, typeof i56.InteractiveCircleComponent, typeof i57.InteractiveRectComponent, typeof i58.UnorderedListComponent, typeof i59.UploadComponent, typeof i61.FormsModule]>;
75
76
  static ɵinj: i0.ɵɵInjectorDeclaration<NgxUtilsModule>;
76
77
  }
@@ -1,8 +1,8 @@
1
- import { DurationInputArg1, DurationInputArg2 } from "moment";
1
+ import { DurationUnit } from "../common-types";
2
2
  export declare class DateUtils {
3
3
  static isHoliday(date: Date): boolean;
4
4
  static isBusinessDay(date: Date): boolean;
5
- static add(date: Date, amount?: DurationInputArg1, unit?: DurationInputArg2): Date;
6
- static businessAdd(date: Date, amount: number, unit?: DurationInputArg2, freeDays?: Date[]): Date;
7
- static businessSubtract(date: Date, amount: number, unit?: DurationInputArg2): Date;
5
+ static add(date: Date, amount?: number, unit?: DurationUnit): Date;
6
+ static businessAdd(date: Date, amount?: number, unit?: DurationUnit, freeDays?: Date[]): Date;
7
+ static businessSubtract(date: Date, amount?: number, unit?: DurationUnit): Date;
8
8
  }
package/package.json CHANGED
@@ -1,26 +1,26 @@
1
1
  {
2
2
  "name": "@stemy/ngx-utils",
3
- "version": "19.4.19",
3
+ "version": "19.5.0",
4
4
  "license": "MIT",
5
5
  "public": true,
6
6
  "repository": "https://github.com/stemyke/ngx-utils.git",
7
7
  "author": "stemy <balazs.stemler@metrix.co.hu>",
8
8
  "peerDependencies": {
9
- "@angular/animations": "^19.0.0",
10
- "@angular/common": "^19.0.0",
11
- "@angular/compiler": "^19.0.0",
12
- "@angular/core": "^19.0.0",
13
- "@angular/forms": "^19.0.0",
14
- "@angular/router": "^19.0.0",
15
- "@angular/platform-browser": "^19.0.0",
16
- "@angular/platform-server": "^19.0.0",
17
- "express": "^4.21.2",
9
+ "@angular/animations": "^19.2.14",
10
+ "@angular/common": "^19.2.14",
11
+ "@angular/compiler": "^19.2.14",
12
+ "@angular/core": "^19.2.14",
13
+ "@angular/forms": "^19.2.14",
14
+ "@angular/router": "^19.2.14",
15
+ "@angular/platform-browser": "^19.2.14",
16
+ "@angular/platform-server": "^19.2.14",
17
+ "express": "~4.21.2",
18
18
  "element-resize-detector": "^1.2.4",
19
- "rxjs": "^6.6.2 || ~7.8.0",
20
- "moment": "^2.30.1",
19
+ "rxjs": "^7.8.2",
20
+ "luxon": "^3.6.1",
21
21
  "invokable": "^1.0.3",
22
- "ngx-device-detector": "^5.0.1 || ^8.0.0",
23
- "@floating-ui/dom": "^1.6.13",
22
+ "ngx-device-detector": "^9.0.0",
23
+ "@floating-ui/dom": "^1.7.1",
24
24
  "json5": "^2.2.3"
25
25
  },
26
26
  "main": "dist/bundles/stemy-ngx-utils.umd.js",
package/public_api.d.ts CHANGED
@@ -1,4 +1,5 @@
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, ILoadableElement, ILoaderPromises, ISearchObservable, FactoryDependencies, ObjectType, ITimer, IExtraProperties, IGroupMap, TranslationQuery, IPageInfo, IPaginationData, PaginationDataLoader, PaginationItemContext, IPoint, IShape, CanvasItemShape, CanvasItemDirection, InteractiveCanvas, InteractiveCanvasItem, InteractiveDrawFn, InteractivePanEvent, InteractiveCanvasPointer, 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";
1
+ export { MaybePromise, MaybeArray, StringKeys } from "./ngx-utils/helper-types";
2
+ export { DurationUnit, 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, ILoadableElement, ILoaderPromises, ISearchObservable, FactoryDependencies, ObjectType, ITimer, IExtraProperties, IGroupMap, TranslationQuery, IPageInfo, IPaginationData, PaginationDataLoader, PaginationItemContext, IPoint, IShape, CanvasItemShape, CanvasItemDirection, InteractiveCanvas, InteractiveCanvasItem, InteractiveDrawFn, InteractivePanEvent, InteractiveCanvasPointer, 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
3
  export { AjaxRequestHandler } from "./ngx-utils/utils/ajax-request-handler";
3
4
  export { ArrayUtils } from "./ngx-utils/utils/array.utils";
4
5
  export { AuthGuard } from "./ngx-utils/utils/auth.guard";
@@ -101,6 +102,7 @@ export { DropdownContentDirective } from "./ngx-utils/directives/dropdown-conten
101
102
  export { DropdownToggleDirective } from "./ngx-utils/directives/dropdown-toggle.directive";
102
103
  export { UnorderedListItemDirective } from "./ngx-utils/directives/unordered-list-item.directive";
103
104
  export { UnorderedListTemplateDirective } from "./ngx-utils/directives/unordered-list-template.directive";
105
+ export { ChipsComponent } from "./ngx-utils/components/chips/chips.component";
104
106
  export { DropListComponent } from "./ngx-utils/components/drop-list/drop-list.component";
105
107
  export { DropdownBoxComponent } from "./ngx-utils/components/dropdown-box/dropdown-box.component";
106
108
  export { DynamicTableComponent } from "./ngx-utils/components/dynamic-table/dynamic-table.component";