@trudb/tru-common-lib 0.2.119 → 0.2.121
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.
|
@@ -13,6 +13,7 @@ import { TruTabGroupEventNotifier } from '../layout/tab/services/tru-tab-group-e
|
|
|
13
13
|
import { ITruToolbarDropdownOption } from '../toolbar/classes/tru-toolbar-dropdown-option';
|
|
14
14
|
import { ITruDataGridConfig } from './classes/tru-data-grid-config';
|
|
15
15
|
import { TruDataGridTypes } from './enums/tru-data-grid-types';
|
|
16
|
+
import { TruDataGridClipboard } from './services/tru-data-grid-clipboard';
|
|
16
17
|
import * as i0 from "@angular/core";
|
|
17
18
|
export declare class TruDataGrid implements OnInit, OnChanges, AfterViewInit {
|
|
18
19
|
private dataContext;
|
|
@@ -23,6 +24,7 @@ export declare class TruDataGrid implements OnInit, OnChanges, AfterViewInit {
|
|
|
23
24
|
private uiNotification;
|
|
24
25
|
private connectionHub;
|
|
25
26
|
private windowEventHandler;
|
|
27
|
+
private dataGridClipboard;
|
|
26
28
|
private util;
|
|
27
29
|
private app;
|
|
28
30
|
private cdr;
|
|
@@ -58,7 +60,7 @@ export declare class TruDataGrid implements OnInit, OnChanges, AfterViewInit {
|
|
|
58
60
|
private rowSelectedOnMousedown;
|
|
59
61
|
private rowFocuedOnMousedown;
|
|
60
62
|
private copiedRowData;
|
|
61
|
-
constructor(dataContext: TruDataContext, componentLookup: TruComponentLookup, searchResultViewManager: TruSearchResultViewManager, appEnvironment: TruAppEnvironment, searchViewEventHandler: TruSearchViewEventHandler, uiNotification: TruUiNotification, connectionHub: TruConnectionHub, windowEventHandler: TruWindowEventHandler, util: TruUtil, app: ApplicationRef, cdr: ChangeDetectorRef, tabGroupEventNotifier: TruTabGroupEventNotifier);
|
|
63
|
+
constructor(dataContext: TruDataContext, componentLookup: TruComponentLookup, searchResultViewManager: TruSearchResultViewManager, appEnvironment: TruAppEnvironment, searchViewEventHandler: TruSearchViewEventHandler, uiNotification: TruUiNotification, connectionHub: TruConnectionHub, windowEventHandler: TruWindowEventHandler, dataGridClipboard: TruDataGridClipboard, util: TruUtil, app: ApplicationRef, cdr: ChangeDetectorRef, tabGroupEventNotifier: TruTabGroupEventNotifier);
|
|
62
64
|
private enhanceRowDataForEntity;
|
|
63
65
|
private setNoRowsTemplate;
|
|
64
66
|
private subscribeTo;
|
|
@@ -98,6 +100,6 @@ export declare class TruDataGrid implements OnInit, OnChanges, AfterViewInit {
|
|
|
98
100
|
ngAfterViewInit(): void;
|
|
99
101
|
ngOnChanges(changes: SimpleChanges): void;
|
|
100
102
|
ngOnDestroy(): void;
|
|
101
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TruDataGrid, [null, null, null, null, null, null, null, null, null, null, null, { optional: true; }]>;
|
|
103
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TruDataGrid, [null, null, null, null, null, null, null, null, null, null, null, null, { optional: true; }]>;
|
|
102
104
|
static ɵcmp: i0.ɵɵComponentDeclaration<TruDataGrid, "tru-data-grid", never, { "config": { "alias": "config"; "required": false; }; "entity": { "alias": "entity"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, never, true, never>;
|
|
103
105
|
}
|