@one-paragon/angular-utilities 2.2.0 → 2.2.2
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/one-paragon-angular-utilities.mjs +2437 -2340
- package/fesm2022/one-paragon-angular-utilities.mjs.map +1 -1
- package/http-request-state/directives/HttpStateDirectiveBase.d.ts +2 -2
- package/http-request-state/directives/http-error-state-directive.d.ts +2 -1
- package/http-request-state/directives/http-inProgress-state-directive.d.ts +2 -1
- package/http-request-state/directives/http-notStarted-state-directive.d.ts +2 -1
- package/http-request-state/directives/http-success-state-directive.d.ts +2 -1
- package/http-request-state/directives/request-state-directive.d.ts +2 -2
- package/package.json +1 -1
- package/table-builder/classes/table-builder-general-settings.d.ts +2 -2
- package/table-builder/classes/table-builder.d.ts +1 -1
- package/table-builder/components/column-builder/column-builder.component.d.ts +3 -3
- package/table-builder/components/generic-table/generic-table.component.d.ts +1 -1
- package/table-builder/components/index.d.ts +1 -1
- package/table-builder/components/reset-menu/reset-menu.component.d.ts +1 -1
- package/table-builder/components/table-header-menu/table-header-menu.component.d.ts +1 -1
- package/table-builder/directives/custom-cell-directive.d.ts +6 -6
- package/table-builder/directives/tb-filter.directive.d.ts +9 -9
- package/table-builder/interfaces/report-def.d.ts +1 -1
- package/table-builder/services/table-template-service.d.ts +1 -1
- package/table-builder/table-builder.module.d.ts +1 -1
- package/utilities/module.d.ts +1 -1
- /package/table-builder/components/initialization-component/{initialization-component.d.ts → initialization.component.d.ts} +0 -0
- /package/table-builder/components/table-container/{table-container.d.ts → table-container.component.d.ts} +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { TemplateRef, ViewContainerRef } from '@angular/core';
|
|
1
|
+
import { TemplateRef, ViewContainerRef, OnInit } from '@angular/core';
|
|
2
2
|
import { RequestState } from '../types';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare abstract class HttpStateDirectiveBase<V, R = null> {
|
|
4
|
+
export declare abstract class HttpStateDirectiveBase<V, R = null> implements OnInit {
|
|
5
5
|
hasView: boolean;
|
|
6
6
|
private injector;
|
|
7
7
|
protected templateRef: TemplateRef<any>;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { RequestState } from '../types';
|
|
2
3
|
import { HttpStateDirectiveBase } from './HttpStateDirectiveBase';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class HttpErrorStateDirective<V, R = null> extends HttpStateDirectiveBase<V, R> {
|
|
5
|
+
export declare class HttpErrorStateDirective<V, R = null> extends HttpStateDirectiveBase<V, R> implements OnInit {
|
|
5
6
|
render: (state: RequestState<any>) => boolean;
|
|
6
7
|
ngOnInit(): void;
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<HttpErrorStateDirective<any, any>, never>;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { HttpStateDirectiveBase } from './HttpStateDirectiveBase';
|
|
2
3
|
import { RequestState } from '../types';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class HttpInProgressStateDirective<V, R = null> extends HttpStateDirectiveBase<V, R> {
|
|
5
|
+
export declare class HttpInProgressStateDirective<V, R = null> extends HttpStateDirectiveBase<V, R> implements OnInit {
|
|
5
6
|
render: (state: RequestState<any>) => boolean;
|
|
6
7
|
ngOnInit(): void;
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<HttpInProgressStateDirective<any, any>, never>;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { RequestState } from '../types';
|
|
2
3
|
import { HttpStateDirectiveBase } from './HttpStateDirectiveBase';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class HttpNotStartedStateDirective<V, R = null> extends HttpStateDirectiveBase<V, R> {
|
|
5
|
+
export declare class HttpNotStartedStateDirective<V, R = null> extends HttpStateDirectiveBase<V, R> implements OnInit {
|
|
5
6
|
render: (state: RequestState<any>) => boolean;
|
|
6
7
|
ngOnInit(): void;
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<HttpNotStartedStateDirective<any, any>, never>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { HttpStateDirectiveBase } from './HttpStateDirectiveBase';
|
|
2
3
|
import { RequestState } from '../types';
|
|
3
4
|
import { RequestStateStore } from '../RequestStateStore';
|
|
@@ -6,7 +7,7 @@ import * as i0 from "@angular/core";
|
|
|
6
7
|
export interface HttpSuccessStateViewContext<T> {
|
|
7
8
|
$implicit: T;
|
|
8
9
|
}
|
|
9
|
-
export declare class HttpSuccessStateDirective<V, R = null> extends HttpStateDirectiveBase<V, R> {
|
|
10
|
+
export declare class HttpSuccessStateDirective<V, R = null> extends HttpStateDirectiveBase<V, R> implements OnInit {
|
|
10
11
|
httpSuccessStateTypeSafety?: RequestStateStore<any, V, R> | Observable<RequestState<V>>;
|
|
11
12
|
render: (state: RequestState<R extends null ? V : R>) => boolean;
|
|
12
13
|
ngOnInit(): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TemplateRef, ViewContainerRef } from '@angular/core';
|
|
1
|
+
import { TemplateRef, ViewContainerRef, OnDestroy } from '@angular/core';
|
|
2
2
|
import { Observable, Subject, Unsubscribable } from 'rxjs';
|
|
3
3
|
import { RequestStateStore } from '../RequestStateStore';
|
|
4
4
|
import { RequestState, RequestStatus } from '../types';
|
|
@@ -13,7 +13,7 @@ export interface HttpRequestStateViewContext<T> {
|
|
|
13
13
|
error: boolean;
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
|
-
export declare class HttpRequestStateDirective<TParam extends any[], V, R, T = R extends null ? V : R> {
|
|
16
|
+
export declare class HttpRequestStateDirective<TParam extends any[], V, R, T = R extends null ? V : R> implements OnDestroy {
|
|
17
17
|
private viewContainer;
|
|
18
18
|
readonly ViewContext: HttpRequestStateViewContext<T>;
|
|
19
19
|
subject: Subject<Observable<RequestState<T>>>;
|
package/package.json
CHANGED
|
@@ -50,7 +50,7 @@ export declare class TableSettings<T = any> {
|
|
|
50
50
|
minColumnWidth: TbSize | undefined;
|
|
51
51
|
rowClasses: Dictionary<Predicate<T> | true> | undefined;
|
|
52
52
|
rowStyles: StylerStyle<T> | undefined;
|
|
53
|
-
rowClick: ((row: T) => void) | undefined;
|
|
53
|
+
rowClick: ((row: T, event?: MouseEvent) => void) | undefined;
|
|
54
54
|
}
|
|
55
55
|
export declare class PersistedTableSettings {
|
|
56
56
|
constructor(tableSettings?: NonFunctionProperties<PersistedTableSettings>);
|
|
@@ -78,7 +78,7 @@ export declare class NotPersistedTableSettings {
|
|
|
78
78
|
minColumnWidth?: TbSize | undefined;
|
|
79
79
|
rowClasses?: Dictionary<Predicate<any> | true> | undefined;
|
|
80
80
|
rowStyles?: StylerStyle | undefined;
|
|
81
|
-
rowClick?: ((row: any) => void) | undefined;
|
|
81
|
+
rowClick?: ((row: any, event?: MouseEvent) => void) | undefined;
|
|
82
82
|
}
|
|
83
83
|
export declare class VirtualScrollOptions {
|
|
84
84
|
rowHeight: TbSize;
|
|
@@ -2,7 +2,7 @@ import { Observable } from 'rxjs';
|
|
|
2
2
|
import { MetaData, ReportDef } from '../interfaces/report-def';
|
|
3
3
|
import { TableBuilderSettings } from './table-builder-general-settings';
|
|
4
4
|
import { Injector, Signal } from '@angular/core';
|
|
5
|
-
import { TableContainerComponent } from '../components/table-container/table-container';
|
|
5
|
+
import { TableContainerComponent } from '../components/table-container/table-container.component';
|
|
6
6
|
export declare class TableBuilder<T = any> {
|
|
7
7
|
#private;
|
|
8
8
|
private data;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { TemplateRef, Predicate, Injector, Signal } from '@angular/core';
|
|
1
|
+
import { TemplateRef, Predicate, Injector, Signal, AfterViewInit } from '@angular/core';
|
|
2
2
|
import { FieldType, MetaData } from '../../interfaces/report-def';
|
|
3
3
|
import { MatColumnDef } from '@angular/material/table';
|
|
4
4
|
import { CustomCellDirective } from '../../directives';
|
|
5
5
|
import { Dictionary } from '@ngrx/entity';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class ColumnBuilderComponent {
|
|
7
|
+
export declare class ColumnBuilderComponent implements AfterViewInit {
|
|
8
8
|
FieldType: typeof FieldType;
|
|
9
9
|
private config;
|
|
10
10
|
private table;
|
|
@@ -34,7 +34,7 @@ export declare class ColumnBuilderComponent {
|
|
|
34
34
|
ngAfterViewInit(): void;
|
|
35
35
|
private onViewInit;
|
|
36
36
|
whenViewInited: (callback: () => void) => void;
|
|
37
|
-
cellClicked(element: any, key: string): void;
|
|
37
|
+
cellClicked(element: any, key: string, event: MouseEvent): void;
|
|
38
38
|
getTooltip: (element: any) => string | undefined;
|
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnBuilderComponent, never>;
|
|
40
40
|
static ɵcmp: i0.ɵɵComponentDeclaration<ColumnBuilderComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
@@ -43,7 +43,7 @@ export declare class GenericTableComponent {
|
|
|
43
43
|
$useVirtualScroll: import("@angular/core").Signal<boolean>;
|
|
44
44
|
$virtualStart: import("@angular/core").Signal<number>;
|
|
45
45
|
$offsetIndex: import("@angular/core").Signal<number>;
|
|
46
|
-
rowClicked(t: any): void;
|
|
46
|
+
rowClicked(t: any, event?: MouseEvent): void;
|
|
47
47
|
isGroupHeader(_: number, row: {
|
|
48
48
|
isGroupHeader: boolean;
|
|
49
49
|
}): boolean;
|
|
@@ -4,6 +4,6 @@ export * from './gen-col-displayer/gen-col-displayer.component';
|
|
|
4
4
|
export * from './table-container-filter/gen-filter-displayer/gen-filter-displayer.component';
|
|
5
5
|
export * from './table-container-filter/filter-list/filter-list.component';
|
|
6
6
|
export * from './generic-table/generic-table.component';
|
|
7
|
-
export * from './table-container/table-container';
|
|
7
|
+
export * from './table-container/table-container.component';
|
|
8
8
|
export * from './generic-table/paginator.component';
|
|
9
9
|
export * from './group-by-list/group-by-list.component';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MatMenu } from '@angular/material/menu';
|
|
2
|
-
import { TableContainerComponent } from '../table-container/table-container';
|
|
2
|
+
import { TableContainerComponent } from '../table-container/table-container.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ResetMenuComponent {
|
|
5
5
|
menu: import("@angular/core").Signal<MatMenu>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MatMenu } from '@angular/material/menu';
|
|
2
|
-
import { TableContainerComponent } from '../table-container/table-container';
|
|
2
|
+
import { TableContainerComponent } from '../table-container/table-container.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TableHeaderMenuComponent {
|
|
5
5
|
menu: import("@angular/core").Signal<MatMenu>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TemplateRef } from '@angular/core';
|
|
1
|
+
import { TemplateRef, OnInit } from '@angular/core';
|
|
2
2
|
import { CdkColumnDef } from '@angular/cdk/table';
|
|
3
3
|
import { CustomCellMeta, SortDef } from '../interfaces/report-def';
|
|
4
4
|
import { TableBuilder } from '../classes/table-builder';
|
|
@@ -7,7 +7,7 @@ interface CustomCellContext<T> {
|
|
|
7
7
|
$implicit: T;
|
|
8
8
|
element: T;
|
|
9
9
|
}
|
|
10
|
-
export declare class CustomCellDirective<T = any> {
|
|
10
|
+
export declare class CustomCellDirective<T = any> implements OnInit {
|
|
11
11
|
private templateRef;
|
|
12
12
|
columnDef: CdkColumnDef | null;
|
|
13
13
|
$customCell: import("@angular/core").InputSignal<string>;
|
|
@@ -17,12 +17,12 @@ export declare class CustomCellDirective<T = any> {
|
|
|
17
17
|
$customCellOrder: import("@angular/core").InputSignal<number | undefined>;
|
|
18
18
|
$customCellWidth: import("@angular/core").InputSignal<string | undefined>;
|
|
19
19
|
/**
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
* for type safety, this is a reference to the table builder instance.
|
|
21
|
+
*/
|
|
22
22
|
$customCellTableRef: import("@angular/core").InputSignal<TableBuilder<T> | undefined>;
|
|
23
23
|
/**
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
* true if column not mapped to a property in the data source. Default is false.
|
|
25
|
+
*/
|
|
26
26
|
$customCellNotMapped: import("@angular/core").InputSignalWithTransform<boolean, any>;
|
|
27
27
|
$metaData: import("@angular/core").Signal<CustomCellMeta | undefined>;
|
|
28
28
|
$inited: import("@angular/core").WritableSignal<boolean>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Predicate, Signal, SimpleChanges } from "@angular/core";
|
|
1
|
+
import { Predicate, Signal, SimpleChanges, OnChanges, OnInit, OnDestroy } from "@angular/core";
|
|
2
2
|
import { Observable, ReplaySubject } from "rxjs";
|
|
3
3
|
import { CustomFilter, FilterInfo } from "../classes/filter-info";
|
|
4
4
|
import { FilterType } from "../enums/filterTypes";
|
|
@@ -16,7 +16,7 @@ export declare abstract class TableCustomFilterDirective {
|
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableCustomFilterDirective, never>;
|
|
17
17
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TableCustomFilterDirective, "tb-abstract", never, {}, {}, never, never, true, never>;
|
|
18
18
|
}
|
|
19
|
-
export declare class TableFilterDirective {
|
|
19
|
+
export declare class TableFilterDirective implements OnChanges, OnInit {
|
|
20
20
|
protected model: NgControl | null;
|
|
21
21
|
private wrapper;
|
|
22
22
|
constructor();
|
|
@@ -40,7 +40,7 @@ export declare class TableFilterDirective {
|
|
|
40
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableFilterDirective, never>;
|
|
41
41
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TableFilterDirective, "[tbFilter]", never, { "filterType": { "alias": "filterType"; "required": false; }; "key": { "alias": "key"; "required": false; }; "fieldType": { "alias": "fieldType"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; "active": { "alias": "active"; "required": false; }; "filterValue": { "alias": "filterValue"; "required": false; }; }, {}, never, never, true, never>;
|
|
42
42
|
}
|
|
43
|
-
export declare class TableFilterStringContainsDirective extends TableFilterDirective {
|
|
43
|
+
export declare class TableFilterStringContainsDirective extends TableFilterDirective implements OnChanges {
|
|
44
44
|
constructor();
|
|
45
45
|
reset(): void;
|
|
46
46
|
setFilter(filter: FilterInfo): void;
|
|
@@ -48,7 +48,7 @@ export declare class TableFilterStringContainsDirective extends TableFilterDirec
|
|
|
48
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableFilterStringContainsDirective, never>;
|
|
49
49
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TableFilterStringContainsDirective, "[tbFilterStringContains]", never, { "key": { "alias": "tbFilterStringContains"; "required": false; }; "filterValue": { "alias": "filterValue"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, {}, never, never, true, never>;
|
|
50
50
|
}
|
|
51
|
-
export declare abstract class TableCustomFilterDirectiveBase<T = any> extends TableCustomFilterDirective {
|
|
51
|
+
export declare abstract class TableCustomFilterDirectiveBase<T = any> extends TableCustomFilterDirective implements OnInit {
|
|
52
52
|
filter$: ReplaySubject<CustomFilter<any>>;
|
|
53
53
|
$filter: Signal<CustomFilter<any> | undefined>;
|
|
54
54
|
filter: CustomFilter;
|
|
@@ -63,7 +63,7 @@ export declare abstract class TableCustomFilterDirectiveBase<T = any> extends Ta
|
|
|
63
63
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableCustomFilterDirectiveBase<any>, never>;
|
|
64
64
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TableCustomFilterDirectiveBase<any>, "[tbCustomFilter]", never, { "predicate": { "alias": "tbCustomFilter"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, {}, never, never, true, never>;
|
|
65
65
|
}
|
|
66
|
-
export declare abstract class TbSelectedFilterDirective extends TableCustomFilterDirectiveBase {
|
|
66
|
+
export declare abstract class TbSelectedFilterDirective extends TableCustomFilterDirectiveBase implements OnDestroy, OnInit {
|
|
67
67
|
private change;
|
|
68
68
|
private isActive;
|
|
69
69
|
protected wrapper: TableWrapperDirective | null;
|
|
@@ -82,7 +82,7 @@ export declare class MatCheckboxTbFilterDirective extends TbSelectedFilterDirect
|
|
|
82
82
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatCheckboxTbFilterDirective, never>;
|
|
83
83
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MatCheckboxTbFilterDirective, "mat-checkbox[tbCustomFilter]", never, { "predicate": { "alias": "tbCustomFilter"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; }, {}, never, never, true, never>;
|
|
84
84
|
}
|
|
85
|
-
export declare class MatSlideToggleTbFilterDirective extends TbSelectedFilterDirective {
|
|
85
|
+
export declare class MatSlideToggleTbFilterDirective extends TbSelectedFilterDirective implements OnInit {
|
|
86
86
|
private matSlideToggle;
|
|
87
87
|
set active(val: boolean);
|
|
88
88
|
constructor();
|
|
@@ -90,7 +90,7 @@ export declare class MatSlideToggleTbFilterDirective extends TbSelectedFilterDir
|
|
|
90
90
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatSlideToggleTbFilterDirective, never>;
|
|
91
91
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MatSlideToggleTbFilterDirective, "mat-slide-toggle[tbCustomFilter]", never, { "predicate": { "alias": "tbCustomFilter"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; }, {}, never, never, true, never>;
|
|
92
92
|
}
|
|
93
|
-
export declare class MatRadioButtonTbFilterDirective extends TbSelectedFilterDirective {
|
|
93
|
+
export declare class MatRadioButtonTbFilterDirective extends TbSelectedFilterDirective implements OnInit {
|
|
94
94
|
private matRadioButton;
|
|
95
95
|
set active(val: boolean);
|
|
96
96
|
constructor();
|
|
@@ -98,7 +98,7 @@ export declare class MatRadioButtonTbFilterDirective extends TbSelectedFilterDir
|
|
|
98
98
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatRadioButtonTbFilterDirective, never>;
|
|
99
99
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MatRadioButtonTbFilterDirective, "mat-radio-button[tbCustomFilter]", never, { "predicate": { "alias": "tbCustomFilter"; "required": false; }; }, {}, never, never, true, never>;
|
|
100
100
|
}
|
|
101
|
-
export declare class MatOptionTbFilterDirective extends TbSelectedFilterDirective {
|
|
101
|
+
export declare class MatOptionTbFilterDirective extends TbSelectedFilterDirective implements OnInit {
|
|
102
102
|
private matOption;
|
|
103
103
|
set active(val: boolean);
|
|
104
104
|
constructor();
|
|
@@ -106,7 +106,7 @@ export declare class MatOptionTbFilterDirective extends TbSelectedFilterDirectiv
|
|
|
106
106
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatOptionTbFilterDirective, never>;
|
|
107
107
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MatOptionTbFilterDirective, "mat-option[tbCustomFilter]", never, { "predicate": { "alias": "tbCustomFilter"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; }, {}, never, never, true, never>;
|
|
108
108
|
}
|
|
109
|
-
export declare class MatButtonToggleFilterDirective extends TbSelectedFilterDirective {
|
|
109
|
+
export declare class MatButtonToggleFilterDirective extends TbSelectedFilterDirective implements OnInit {
|
|
110
110
|
private matButtonToggle;
|
|
111
111
|
set active(val: boolean);
|
|
112
112
|
constructor();
|
|
@@ -65,7 +65,7 @@ interface BaseMeta<T = any> {
|
|
|
65
65
|
* @deprecated Please use map instead
|
|
66
66
|
*/
|
|
67
67
|
transform?: ((o: T, ...args: any[]) => any) | ((o: string, ...args: any[]) => any) | PipeTransform;
|
|
68
|
-
click?: (element: T, key
|
|
68
|
+
click?: (element: T, key?: string, event?: MouseEvent) => void;
|
|
69
69
|
template?: TemplateRef<any>;
|
|
70
70
|
classes?: Dictionary<Predicate<T> | true>;
|
|
71
71
|
toolTip?: string | ((t: T) => string);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EnvironmentInjector } from "@angular/core";
|
|
2
2
|
import { TemplateRef } from "@angular/core";
|
|
3
3
|
import { MetaData } from "../interfaces/report-def";
|
|
4
|
-
import { InitializationComponent } from "../components/initialization-component/initialization
|
|
4
|
+
import { InitializationComponent } from "../components/initialization-component/initialization.component";
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class TableTemplateService {
|
|
7
7
|
environmentInjector: EnvironmentInjector;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ModuleWithProviders } from '@angular/core';
|
|
2
2
|
import { TableBuilderConfig } from './classes/TableBuilderConfig';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "./components/table-container/table-container";
|
|
4
|
+
import * as i1 from "./components/table-container/table-container.component";
|
|
5
5
|
import * as i2 from "./directives/custom-cell-directive";
|
|
6
6
|
import * as i3 from "./directives/tb-filter.directive";
|
|
7
7
|
import * as i4 from "./directives/table-wrapper.directive";
|
package/utilities/module.d.ts
CHANGED
|
@@ -14,6 +14,6 @@ import * as i12 from "./directives/mat-toggle-group-directive";
|
|
|
14
14
|
import * as i13 from "./directives/conditional-classes.directive";
|
|
15
15
|
export declare class UtilitiesModule {
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<UtilitiesModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UtilitiesModule, never, [typeof i1.SpaceCasePipe, typeof i2.PhoneNumberPipe, typeof i3.FunctionPipe, typeof i4.StopPropagationDirective, typeof i5.StylerDirective, typeof i6.PreventEnterDirective, typeof i7.AutoFocusDirective, typeof i8.TrimWhitespaceDirective, typeof i9.ClickSubjectDirective, typeof i10.ClickEmitterDirective, typeof i11.DialogDirective, typeof i12.MatSlideToggleGroupDirective, typeof i13.ConditionalClassesDirective], [typeof i4.StopPropagationDirective, typeof i6.PreventEnterDirective, typeof i1.SpaceCasePipe, typeof i2.PhoneNumberPipe, typeof i3.FunctionPipe, typeof
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UtilitiesModule, never, [typeof i1.SpaceCasePipe, typeof i2.PhoneNumberPipe, typeof i3.FunctionPipe, typeof i4.StopPropagationDirective, typeof i5.StylerDirective, typeof i6.PreventEnterDirective, typeof i7.AutoFocusDirective, typeof i8.TrimWhitespaceDirective, typeof i9.ClickSubjectDirective, typeof i10.ClickEmitterDirective, typeof i11.DialogDirective, typeof i12.MatSlideToggleGroupDirective, typeof i13.ConditionalClassesDirective], [typeof i4.StopPropagationDirective, typeof i6.PreventEnterDirective, typeof i1.SpaceCasePipe, typeof i2.PhoneNumberPipe, typeof i3.FunctionPipe, typeof i8.TrimWhitespaceDirective, typeof i5.StylerDirective, typeof i7.AutoFocusDirective, typeof i9.ClickSubjectDirective, typeof i10.ClickEmitterDirective, typeof i11.DialogDirective, typeof i12.MatSlideToggleGroupDirective, typeof i13.ConditionalClassesDirective]>;
|
|
18
18
|
static ɵinj: i0.ɵɵInjectorDeclaration<UtilitiesModule>;
|
|
19
19
|
}
|
|
File without changes
|
|
File without changes
|