@acorex/data-grid 16.0.9 → 16.0.11
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/lib/data-grid/datagrid.component.mjs +39 -32
- package/esm2022/lib/data-lov/data-lov-popup/data-lov-popup.component.mjs +3 -3
- package/fesm2022/acorex-data-grid.mjs +40 -33
- package/fesm2022/acorex-data-grid.mjs.map +1 -1
- package/lib/data-grid/datagrid.component.d.ts +10 -8
- package/package.json +1 -1
@@ -46,6 +46,7 @@ export declare class AXDataGridComponent {
|
|
46
46
|
gridView: boolean;
|
47
47
|
groupSelectsChildren: boolean;
|
48
48
|
oldSelectionNodes: any[];
|
49
|
+
autoGroupColumnDef: any;
|
49
50
|
paginationAutoPageSize: boolean;
|
50
51
|
paginationPageSize: number;
|
51
52
|
cacheBlockSize: number;
|
@@ -58,7 +59,6 @@ export declare class AXDataGridComponent {
|
|
58
59
|
floatingFilter: boolean;
|
59
60
|
autoExpand: boolean;
|
60
61
|
rowSelectableConditionField: string;
|
61
|
-
autoGroupColumnDef: any;
|
62
62
|
selectionMode: 'single' | 'multiple';
|
63
63
|
pagination: boolean;
|
64
64
|
selectRow: any[];
|
@@ -67,6 +67,13 @@ export declare class AXDataGridComponent {
|
|
67
67
|
enableRangeSelection: boolean;
|
68
68
|
keyField: string;
|
69
69
|
hasChildField: string;
|
70
|
+
rowHeight: number;
|
71
|
+
groupHideOpenParents: boolean;
|
72
|
+
maxConcurrentDatasourceRequests: number;
|
73
|
+
blockLoadDebounceMillis: number;
|
74
|
+
showRefreshButton: boolean;
|
75
|
+
rowClass?: (params: AXGridRowParams) => (string | string[]) | (string | string[]);
|
76
|
+
rtl: boolean;
|
70
77
|
private _searchText;
|
71
78
|
get searchText(): string;
|
72
79
|
set searchText(v: string);
|
@@ -79,7 +86,6 @@ export declare class AXDataGridComponent {
|
|
79
86
|
get columns(): AXGridDataColumn[];
|
80
87
|
set columns(val: AXGridDataColumn[]);
|
81
88
|
defaultColDef: any;
|
82
|
-
rowHeight: number;
|
83
89
|
searchInput: AXToolbarSearchComponent;
|
84
90
|
toolbar: AXToolbarComponent;
|
85
91
|
rowTemplate: AXDataGridRowTemplateComponent;
|
@@ -88,9 +94,6 @@ export declare class AXDataGridComponent {
|
|
88
94
|
private _dataSource;
|
89
95
|
get dataSource(): AXDataSourceComponent;
|
90
96
|
set dataSource(v: AXDataSourceComponent);
|
91
|
-
groupHideOpenParents: boolean;
|
92
|
-
maxConcurrentDatasourceRequests: number;
|
93
|
-
blockLoadDebounceMillis: number;
|
94
97
|
cellClick: EventEmitter<AXDataGridCellEvent>;
|
95
98
|
cellDbClick: EventEmitter<AXDataGridCellEvent>;
|
96
99
|
cellFocuse: EventEmitter<AXDataGridCellEvent>;
|
@@ -99,8 +102,6 @@ export declare class AXDataGridComponent {
|
|
99
102
|
selectionChanged: EventEmitter<AXDataGridSelectionChangeEvent>;
|
100
103
|
rowSelectionChange: EventEmitter<AXDataGridSelectionChangeEvent>;
|
101
104
|
onRowSelectionChanged: EventEmitter<AXDataGridRowSelectionChangeEvent>;
|
102
|
-
rowClass?: (params: AXGridRowParams) => (string | string[]) | (string | string[]);
|
103
|
-
rtl: boolean;
|
104
105
|
constructor(ref: ElementRef<HTMLDivElement>, cdr: ChangeDetectorRef);
|
105
106
|
private calcHeight;
|
106
107
|
private get intenalGridDataSource();
|
@@ -145,6 +146,7 @@ export declare class AXDataGridComponent {
|
|
145
146
|
private handlePageSize;
|
146
147
|
private headerHeightSetter;
|
147
148
|
private headerHeightGetter;
|
149
|
+
private makeRefreshBtn;
|
148
150
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDataGridComponent, never>;
|
149
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDataGridComponent, "ax-data-grid", never, { "paginationAutoPageSize": { "alias": "paginationAutoPageSize"; "required": false; }; "paginationPageSize": { "alias": "paginationPageSize"; "required": false; }; "remoteOperation": { "alias": "remoteOperation"; "required": false; }; "rowMultiSelectWithClick": { "alias": "rowMultiSelectWithClick"; "required": false; }; "suppressRowClickSelection": { "alias": "suppressRowClickSelection"; "required": false; }; "suppressCellSelection": { "alias": "suppressCellSelection"; "required": false; }; "sizeColumnsToFit": { "alias": "sizeColumnsToFit"; "required": false; }; "showCheckBox": { "alias": "showCheckBox"; "required": false; }; "floatingFilter": { "alias": "floatingFilter"; "required": false; }; "autoExpand": { "alias": "autoExpand"; "required": false; }; "rowSelectableConditionField": { "alias": "rowSelectableConditionField"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "pagination": { "alias": "pagination"; "required": false; }; "selectRow": { "alias": "selectRow"; "required": false; }; "rowGroupPanelShow": { "alias": "rowGroupPanelShow"; "required": false; }; "loadOnInit": { "alias": "loadOnInit"; "required": false; }; "enableRangeSelection": { "alias": "enableRangeSelection"; "required": false; }; "keyField": { "alias": "keyField"; "required": false; }; "hasChildField": { "alias": "hasChildField"; "required": false; }; "
|
151
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDataGridComponent, "ax-data-grid", never, { "paginationAutoPageSize": { "alias": "paginationAutoPageSize"; "required": false; }; "paginationPageSize": { "alias": "paginationPageSize"; "required": false; }; "remoteOperation": { "alias": "remoteOperation"; "required": false; }; "rowMultiSelectWithClick": { "alias": "rowMultiSelectWithClick"; "required": false; }; "suppressRowClickSelection": { "alias": "suppressRowClickSelection"; "required": false; }; "suppressCellSelection": { "alias": "suppressCellSelection"; "required": false; }; "sizeColumnsToFit": { "alias": "sizeColumnsToFit"; "required": false; }; "showCheckBox": { "alias": "showCheckBox"; "required": false; }; "floatingFilter": { "alias": "floatingFilter"; "required": false; }; "autoExpand": { "alias": "autoExpand"; "required": false; }; "rowSelectableConditionField": { "alias": "rowSelectableConditionField"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "pagination": { "alias": "pagination"; "required": false; }; "selectRow": { "alias": "selectRow"; "required": false; }; "rowGroupPanelShow": { "alias": "rowGroupPanelShow"; "required": false; }; "loadOnInit": { "alias": "loadOnInit"; "required": false; }; "enableRangeSelection": { "alias": "enableRangeSelection"; "required": false; }; "keyField": { "alias": "keyField"; "required": false; }; "hasChildField": { "alias": "hasChildField"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "groupHideOpenParents": { "alias": "groupHideOpenParents"; "required": false; }; "maxConcurrentDatasourceRequests": { "alias": "maxConcurrentDatasourceRequests"; "required": false; }; "blockLoadDebounceMillis": { "alias": "blockLoadDebounceMillis"; "required": false; }; "showRefreshButton": { "alias": "showRefreshButton"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "searchText": { "alias": "searchText"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; }, { "columnsChange": "columnsChange"; "cellClick": "cellClick"; "cellDbClick": "cellDbClick"; "cellFocuse": "cellFocuse"; "rowClick": "rowClick"; "rowDbClick": "rowDbClick"; "selectionChanged": "selectionChanged"; "rowSelectionChange": "rowSelectionChange"; "onRowSelectionChanged": "onRowSelectionChanged"; }, ["searchInput", "toolbar", "rowTemplate", "gridDetailTemplate", "_contentDataSource", "_inlineColumns"], ["ax-toolbar"], false, never>;
|
150
152
|
}
|