@stemy/ngx-utils 19.2.15 → 19.2.17
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 +84 -43
- package/fesm2022/stemy-ngx-utils.mjs.map +1 -1
- package/ngx-utils/common-types.d.ts +8 -6
- package/ngx-utils/components/dynamic-table/dynamic-table.component.d.ts +22 -5
- package/ngx-utils/ngx-utils.imports.d.ts +3 -2
- package/ngx-utils/ngx-utils.module.d.ts +44 -43
- package/ngx-utils/pipes/includes.pipe.d.ts +8 -0
- package/ngx-utils/services/base-dialog.service.d.ts +5 -5
- package/package.json +1 -1
- package/public_api.d.ts +1 -0
|
@@ -141,11 +141,11 @@ export interface IConfirmDialogConfig {
|
|
|
141
141
|
cancelText?: string;
|
|
142
142
|
cancelClasses?: string;
|
|
143
143
|
}
|
|
144
|
-
export interface IDialogService {
|
|
145
|
-
dialog(config: IDialogConfig):
|
|
146
|
-
confirm(config: IConfirmDialogConfig):
|
|
144
|
+
export interface IDialogService<DR = any> {
|
|
145
|
+
dialog(config: IDialogConfig): DR;
|
|
146
|
+
confirm(config: IConfirmDialogConfig): DR;
|
|
147
147
|
}
|
|
148
|
-
export declare const DIALOG_SERVICE: InjectionToken<IDialogService
|
|
148
|
+
export declare const DIALOG_SERVICE: InjectionToken<IDialogService<any>>;
|
|
149
149
|
export declare const SOCKET_IO_PATH: InjectionToken<string>;
|
|
150
150
|
export interface IPromiseService {
|
|
151
151
|
zone: NgZone;
|
|
@@ -360,7 +360,9 @@ export interface ITableColumn {
|
|
|
360
360
|
title?: string;
|
|
361
361
|
sort?: string;
|
|
362
362
|
filter?: boolean;
|
|
363
|
-
filterType?: "text" | "checkbox";
|
|
363
|
+
filterType?: "text" | "enum" | "checkbox";
|
|
364
|
+
enum?: string[];
|
|
365
|
+
enumPrefix?: string;
|
|
364
366
|
[key: string]: any;
|
|
365
367
|
}
|
|
366
368
|
export interface ITableColumns {
|
|
@@ -376,7 +378,7 @@ export interface ITableTemplates {
|
|
|
376
378
|
[column: string]: ITableTemplate;
|
|
377
379
|
}
|
|
378
380
|
export interface ITableDataQuery {
|
|
379
|
-
[column: string]: string | boolean;
|
|
381
|
+
[column: string]: string | string[] | boolean;
|
|
380
382
|
}
|
|
381
383
|
export type TableDataLoader = (page: number, rowsPerPage: number, orderBy: string, orderDescending: boolean, filter: string, query: ITableDataQuery) => Promise<IPaginationData>;
|
|
382
384
|
export type DragDropEvent<K extends string = "item", T = any> = {
|
|
@@ -5,8 +5,6 @@ import { PaginationDirective } from "../../directives/pagination.directive";
|
|
|
5
5
|
import { DropdownDirective } from "../../directives/dropdown.directive";
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class DynamicTableComponent implements AfterContentInit, AfterViewInit, OnChanges {
|
|
8
|
-
label: string;
|
|
9
|
-
placeholder: string;
|
|
10
8
|
dataLoader: TableDataLoader;
|
|
11
9
|
data: any[];
|
|
12
10
|
selected: any;
|
|
@@ -14,7 +12,25 @@ export declare class DynamicTableComponent implements AfterContentInit, AfterVie
|
|
|
14
12
|
urlParam: string;
|
|
15
13
|
parallelData: any[];
|
|
16
14
|
columns: TableColumns;
|
|
15
|
+
/**
|
|
16
|
+
* Parameter for displaying a simple filter search box
|
|
17
|
+
*/
|
|
17
18
|
showFilter: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Parameter for specifying a label for filter
|
|
21
|
+
*/
|
|
22
|
+
filterLabel: string;
|
|
23
|
+
/**
|
|
24
|
+
* Parameter for specifying a placeholder for filter
|
|
25
|
+
*/
|
|
26
|
+
placeholder: string;
|
|
27
|
+
/**
|
|
28
|
+
* Parameter for displaying an item per page selector dropdown with the specified numbers
|
|
29
|
+
*/
|
|
30
|
+
showItems: number[];
|
|
31
|
+
/**
|
|
32
|
+
* Parameter for setting how many items should be displayed by default
|
|
33
|
+
*/
|
|
18
34
|
itemsPerPage: number;
|
|
19
35
|
updateTime: number;
|
|
20
36
|
filterTime: number;
|
|
@@ -56,10 +72,11 @@ export declare class DynamicTableComponent implements AfterContentInit, AfterVie
|
|
|
56
72
|
onDrop(ev: DragEvent, elem: HTMLElement, item: any): void;
|
|
57
73
|
refresh(time?: number): void;
|
|
58
74
|
setFilter(filter: string): void;
|
|
59
|
-
setSorting(column: string, toggle: DropdownDirective):
|
|
60
|
-
|
|
75
|
+
setSorting(column: string, toggle: DropdownDirective): void;
|
|
76
|
+
setQueryValue(c: string, value: string | boolean): void;
|
|
77
|
+
setItemsPerPage(count: number): void;
|
|
61
78
|
loadData: (page: number, itemsPerPage: number) => Promise<IPaginationData>;
|
|
62
79
|
protected loadLocalData(page: number, rowsPerPage: number, orderBy: string, orderDescending: boolean, filter: string): Promise<IPaginationData>;
|
|
63
80
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTableComponent, never>;
|
|
64
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTableComponent, "dynamic-table", never, { "
|
|
81
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTableComponent, "dynamic-table", never, { "dataLoader": { "alias": "dataLoader"; "required": false; }; "data": { "alias": "data"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "page": { "alias": "page"; "required": false; }; "urlParam": { "alias": "urlParam"; "required": false; }; "parallelData": { "alias": "parallelData"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "showFilter": { "alias": "showFilter"; "required": false; }; "filterLabel": { "alias": "filterLabel"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "showItems": { "alias": "showItems"; "required": false; }; "itemsPerPage": { "alias": "itemsPerPage"; "required": false; }; "updateTime": { "alias": "updateTime"; "required": false; }; "filterTime": { "alias": "filterTime"; "required": false; }; "maxPages": { "alias": "maxPages"; "required": false; }; "directionLinks": { "alias": "directionLinks"; "required": false; }; "boundaryLinks": { "alias": "boundaryLinks"; "required": false; }; "orderBy": { "alias": "orderBy"; "required": false; }; "orderDescending": { "alias": "orderDescending"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "titlePrefix": { "alias": "titlePrefix"; "required": false; }; "dragStartFn": { "alias": "dragStartFn"; "required": false; }; "dragEnterFn": { "alias": "dragEnterFn"; "required": false; }; "dropFn": { "alias": "dropFn"; "required": false; }; }, {}, ["rowTemplate", "wrapperTemplate", "filterTemplate", "templateDirectives"], ["[table-features]", "[table-top]", "[table-bottom]"], false, never>;
|
|
65
82
|
}
|
|
@@ -47,6 +47,7 @@ import { UnorderedListTemplateDirective } from "./directives/unordered-list-temp
|
|
|
47
47
|
import { FilterPipe } from "./pipes/filter.pipe";
|
|
48
48
|
import { FormatNumberPipe } from "./pipes/format-number.pipe";
|
|
49
49
|
import { GlobalTemplatePipe } from "./pipes/global-template.pipe";
|
|
50
|
+
import { IncludesPipe } from "./pipes/includes.pipe";
|
|
50
51
|
import { ReducePipe } from "./pipes/reduce.pipe";
|
|
51
52
|
import { RoundPipe } from "./pipes/round.pipe";
|
|
52
53
|
import { SafeHtmlPipe } from "./pipes/safe-html.pipe";
|
|
@@ -56,10 +57,10 @@ import { FakeModuleComponent } from "./components/fake-module/fake-module.compon
|
|
|
56
57
|
import { PaginationMenuComponent } from "./components/pagination-menu/pagination-menu.component";
|
|
57
58
|
import { UnorderedListComponent } from "./components/unordered-list/unordered-list.component";
|
|
58
59
|
import { UploadComponent } from "./components/upload/upload.component";
|
|
59
|
-
export declare const pipes: (typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | typeof ReducePipe | typeof RoundPipe | typeof SafeHtmlPipe | typeof TranslatePipe)[];
|
|
60
|
+
export declare const pipes: (typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | typeof IncludesPipe | typeof ReducePipe | typeof RoundPipe | typeof SafeHtmlPipe | typeof TranslatePipe)[];
|
|
60
61
|
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
62
|
export declare const components: (typeof DropListComponent | typeof FakeModuleComponent | typeof PaginationMenuComponent | typeof UnorderedListComponent | typeof UploadComponent)[];
|
|
62
|
-
export declare const providers: (typeof
|
|
63
|
+
export declare const providers: (typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | typeof IncludesPipe | 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 ComponentLoaderService | typeof TranslatedUrlSerializer | typeof UniversalService | typeof WasmService | typeof DeviceDetectorService | {
|
|
63
64
|
provide: import("@angular/core").InjectionToken<import("@angular/platform-browser").EventManagerPlugin[]>;
|
|
64
65
|
useClass: typeof DragDropEventPlugin;
|
|
65
66
|
multi: boolean;
|
|
@@ -12,48 +12,49 @@ import * as i8 from "./pipes/get-type.pipe";
|
|
|
12
12
|
import * as i9 from "./pipes/get-value.pipe";
|
|
13
13
|
import * as i10 from "./pipes/global-template.pipe";
|
|
14
14
|
import * as i11 from "./pipes/group-by.pipe";
|
|
15
|
-
import * as i12 from "./pipes/
|
|
16
|
-
import * as i13 from "./pipes/
|
|
17
|
-
import * as i14 from "./pipes/
|
|
18
|
-
import * as i15 from "./pipes/
|
|
19
|
-
import * as i16 from "./pipes/
|
|
20
|
-
import * as i17 from "./pipes/
|
|
21
|
-
import * as i18 from "./pipes/
|
|
22
|
-
import * as i19 from "./pipes/
|
|
23
|
-
import * as i20 from "./pipes/
|
|
24
|
-
import * as i21 from "./pipes/
|
|
25
|
-
import * as i22 from "./pipes/
|
|
26
|
-
import * as i23 from "./pipes/
|
|
27
|
-
import * as i24 from "./pipes/
|
|
28
|
-
import * as i25 from "./pipes/
|
|
29
|
-
import * as i26 from "./pipes/
|
|
30
|
-
import * as i27 from "./pipes/
|
|
31
|
-
import * as i28 from "./pipes/
|
|
32
|
-
import * as i29 from "./
|
|
33
|
-
import * as i30 from "./directives/async-method.
|
|
34
|
-
import * as i31 from "./directives/
|
|
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/
|
|
41
|
-
import * as i38 from "./directives/pagination
|
|
42
|
-
import * as i39 from "./directives/
|
|
43
|
-
import * as i40 from "./directives/
|
|
44
|
-
import * as i41 from "./directives/sticky
|
|
45
|
-
import * as i42 from "./directives/
|
|
46
|
-
import * as i43 from "./directives/dropdown
|
|
47
|
-
import * as i44 from "./directives/
|
|
48
|
-
import * as i45 from "./directives/unordered-list-
|
|
49
|
-
import * as i46 from "./
|
|
50
|
-
import * as i47 from "./components/
|
|
51
|
-
import * as i48 from "./components/
|
|
52
|
-
import * as i49 from "./components/
|
|
53
|
-
import * as i50 from "./components/
|
|
54
|
-
import * as i51 from "./components/
|
|
55
|
-
import * as i52 from "
|
|
56
|
-
import * as i53 from "@angular/
|
|
15
|
+
import * as i12 from "./pipes/includes.pipe";
|
|
16
|
+
import * as i13 from "./pipes/is-type.pipe";
|
|
17
|
+
import * as i14 from "./pipes/join.pipe";
|
|
18
|
+
import * as i15 from "./pipes/keys.pipe";
|
|
19
|
+
import * as i16 from "./pipes/map.pipe";
|
|
20
|
+
import * as i17 from "./pipes/max.pipe";
|
|
21
|
+
import * as i18 from "./pipes/min.pipe";
|
|
22
|
+
import * as i19 from "./pipes/pop.pipe";
|
|
23
|
+
import * as i20 from "./pipes/reduce.pipe";
|
|
24
|
+
import * as i21 from "./pipes/remap.pipe";
|
|
25
|
+
import * as i22 from "./pipes/replace.pipe";
|
|
26
|
+
import * as i23 from "./pipes/reverse.pipe";
|
|
27
|
+
import * as i24 from "./pipes/round.pipe";
|
|
28
|
+
import * as i25 from "./pipes/safe-html.pipe";
|
|
29
|
+
import * as i26 from "./pipes/shift.pipe";
|
|
30
|
+
import * as i27 from "./pipes/split.pipe";
|
|
31
|
+
import * as i28 from "./pipes/translate.pipe";
|
|
32
|
+
import * as i29 from "./pipes/values.pipe";
|
|
33
|
+
import * as i30 from "./directives/async-method.base";
|
|
34
|
+
import * as i31 from "./directives/async-method.directive";
|
|
35
|
+
import * as i32 from "./directives/background.directive";
|
|
36
|
+
import * as i33 from "./directives/component-loader.directive";
|
|
37
|
+
import * as i34 from "./directives/dynamic-table-template.directive";
|
|
38
|
+
import * as i35 from "./directives/global-template.directive";
|
|
39
|
+
import * as i36 from "./directives/icon.directive";
|
|
40
|
+
import * as i37 from "./directives/ngx-template-outlet.directive";
|
|
41
|
+
import * as i38 from "./directives/pagination.directive";
|
|
42
|
+
import * as i39 from "./directives/pagination-item.directive";
|
|
43
|
+
import * as i40 from "./directives/resource-if.directive";
|
|
44
|
+
import * as i41 from "./directives/sticky.directive";
|
|
45
|
+
import * as i42 from "./directives/sticky-class.directive";
|
|
46
|
+
import * as i43 from "./directives/dropdown.directive";
|
|
47
|
+
import * as i44 from "./directives/dropdown-toggle.directive";
|
|
48
|
+
import * as i45 from "./directives/unordered-list-item.directive";
|
|
49
|
+
import * as i46 from "./directives/unordered-list-template.directive";
|
|
50
|
+
import * as i47 from "./components/drop-list/drop-list.component";
|
|
51
|
+
import * as i48 from "./components/dynamic-table/dynamic-table.component";
|
|
52
|
+
import * as i49 from "./components/fake-module/fake-module.component";
|
|
53
|
+
import * as i50 from "./components/pagination-menu/pagination-menu.component";
|
|
54
|
+
import * as i51 from "./components/unordered-list/unordered-list.component";
|
|
55
|
+
import * as i52 from "./components/upload/upload.component";
|
|
56
|
+
import * as i53 from "@angular/common";
|
|
57
|
+
import * as i54 from "@angular/forms";
|
|
57
58
|
export declare function loadBaseUrl(): string;
|
|
58
59
|
export declare function loadBaseHref(baseUrl: string): string;
|
|
59
60
|
export declare class NgxUtilsModule {
|
|
@@ -63,6 +64,6 @@ export declare class NgxUtilsModule {
|
|
|
63
64
|
static useDynamic(moduleInfo: DynamicModuleInfo): ModuleWithProviders<NgxUtilsModule>;
|
|
64
65
|
constructor();
|
|
65
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgxUtilsModule, never>;
|
|
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.
|
|
67
|
+
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.DropdownToggleDirective, typeof i45.UnorderedListItemDirective, typeof i46.UnorderedListTemplateDirective, typeof i47.DropListComponent, typeof i48.DynamicTableComponent, typeof i49.FakeModuleComponent, typeof i50.PaginationMenuComponent, typeof i51.UnorderedListComponent, typeof i52.UploadComponent], [typeof i53.CommonModule, typeof i54.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.DropdownToggleDirective, typeof i45.UnorderedListItemDirective, typeof i46.UnorderedListTemplateDirective, typeof i47.DropListComponent, typeof i48.DynamicTableComponent, typeof i49.FakeModuleComponent, typeof i50.PaginationMenuComponent, typeof i51.UnorderedListComponent, typeof i52.UploadComponent, typeof i54.FormsModule]>;
|
|
67
68
|
static ɵinj: i0.ɵɵInjectorDeclaration<NgxUtilsModule>;
|
|
68
69
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare function defaultFilter(): boolean;
|
|
4
|
+
export declare class IncludesPipe implements PipeTransform {
|
|
5
|
+
transform(array: any, ...values: any[]): boolean;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IncludesPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<IncludesPipe, "includes", false>;
|
|
8
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { IConfirmDialogConfig, IDialogConfig, IDialogService, IToasterService } from "../common-types";
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class BaseDialogService implements IDialogService {
|
|
3
|
+
export declare class BaseDialogService<DR = any> implements IDialogService<DR> {
|
|
4
4
|
readonly toaster: IToasterService;
|
|
5
5
|
constructor(toaster: IToasterService);
|
|
6
|
-
dialog(config: IDialogConfig):
|
|
7
|
-
confirm(config: IConfirmDialogConfig):
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BaseDialogService
|
|
9
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<BaseDialogService
|
|
6
|
+
dialog(config: IDialogConfig): DR;
|
|
7
|
+
confirm(config: IConfirmDialogConfig): DR;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseDialogService<any>, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BaseDialogService<any>>;
|
|
10
10
|
}
|
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export { GetTypePipe } from "./ngx-utils/pipes/get-type.pipe";
|
|
|
65
65
|
export { GetValuePipe } from "./ngx-utils/pipes/get-value.pipe";
|
|
66
66
|
export { GlobalTemplatePipe } from "./ngx-utils/pipes/global-template.pipe";
|
|
67
67
|
export { GroupByPipe } from "./ngx-utils/pipes/group-by.pipe";
|
|
68
|
+
export { IncludesPipe } from "./ngx-utils/pipes/includes.pipe";
|
|
68
69
|
export { IsTypePipe } from "./ngx-utils/pipes/is-type.pipe";
|
|
69
70
|
export { JoinPipe } from "./ngx-utils/pipes/join.pipe";
|
|
70
71
|
export { KeysPipe } from "./ngx-utils/pipes/keys.pipe";
|