@trudb/tru-common-lib 0.1.260 → 0.1.262
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.
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { TruDataContext } from '../../services/tru-data-context';
|
|
2
2
|
import { TruModelTypeLookup } from '../../services/tru-model-type-lookup';
|
|
3
3
|
import { ITruCardColumnConfig } from './classes/tru-card-column-config';
|
|
4
|
+
import { TruSearchViewEventHandler } from '../../base-views/search/services/tru-search-view-event-handler';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class TruCardColumn {
|
|
6
7
|
private dataContext;
|
|
7
8
|
private modelTypeLookup;
|
|
9
|
+
private searchViewEventHandler;
|
|
8
10
|
config: ITruCardColumnConfig;
|
|
9
11
|
name: any;
|
|
10
12
|
portal: HTMLDivElement;
|
|
@@ -34,11 +36,12 @@ export declare class TruCardColumn {
|
|
|
34
36
|
private columnFilterRefs;
|
|
35
37
|
private cardFilterStr;
|
|
36
38
|
private uniqueId;
|
|
39
|
+
private subs;
|
|
37
40
|
busyMessage: string;
|
|
38
41
|
isBusy: boolean;
|
|
39
42
|
columns: any;
|
|
40
43
|
lockedColumns: any;
|
|
41
|
-
constructor(dataContext: TruDataContext, modelTypeLookup: TruModelTypeLookup);
|
|
44
|
+
constructor(dataContext: TruDataContext, modelTypeLookup: TruModelTypeLookup, searchViewEventHandler: TruSearchViewEventHandler);
|
|
42
45
|
private parentTableModel;
|
|
43
46
|
private userHasParentTableRole;
|
|
44
47
|
private createDataForEntity;
|
|
@@ -49,6 +52,8 @@ export declare class TruCardColumn {
|
|
|
49
52
|
private clear;
|
|
50
53
|
private getValueFromSortPath;
|
|
51
54
|
private updateItemsSource;
|
|
55
|
+
private subscribeTo;
|
|
56
|
+
private onSearch;
|
|
52
57
|
ngOnInit(): void;
|
|
53
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<TruCardColumn, never>;
|
|
54
59
|
static ɵcmp: i0.ɵɵComponentDeclaration<TruCardColumn, "tru-card-column", never, { "config": { "alias": "config"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, never, false, never>;
|