@acorex/data-grid 6.5.56 → 6.5.59
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/esm2020/lib/data-grid/datagrid.component.mjs +40 -68
- package/esm2020/lib/data-lov/data-lov-popup/data-lov-popup.component.mjs +1 -1
- package/fesm2015/acorex-data-grid.mjs +40 -68
- package/fesm2015/acorex-data-grid.mjs.map +1 -1
- package/fesm2020/acorex-data-grid.mjs +40 -68
- package/fesm2020/acorex-data-grid.mjs.map +1 -1
- package/lib/data-grid/datagrid.component.d.ts +4 -4
- package/package.json +1 -1
|
@@ -48,6 +48,7 @@ export declare class AXDataGridComponent {
|
|
|
48
48
|
oldSelectionNodes: any[];
|
|
49
49
|
paginationAutoPageSize: boolean;
|
|
50
50
|
paginationPageSize: number;
|
|
51
|
+
cacheBlockSize: number;
|
|
51
52
|
remoteOperation: boolean;
|
|
52
53
|
rowMultiSelectWithClick: boolean;
|
|
53
54
|
suppressRowClickSelection: boolean;
|
|
@@ -55,7 +56,6 @@ export declare class AXDataGridComponent {
|
|
|
55
56
|
sizeColumnsToFit: boolean;
|
|
56
57
|
showCheckBox: boolean;
|
|
57
58
|
floatingFilter: boolean;
|
|
58
|
-
cacheBlockSize: number;
|
|
59
59
|
autoGroupColumnDef: any;
|
|
60
60
|
selectionMode: 'single' | 'multiple';
|
|
61
61
|
pagination: boolean;
|
|
@@ -94,10 +94,9 @@ export declare class AXDataGridComponent {
|
|
|
94
94
|
selectionChanged: EventEmitter<AXDataGridSelectionChangeEvent>;
|
|
95
95
|
rowSelectionChange: EventEmitter<AXDataGridSelectionChangeEvent>;
|
|
96
96
|
onRowSelectionChanged: EventEmitter<AXDataGridRowSelectionChangeEvent>;
|
|
97
|
-
getRowHeight(param: any): any;
|
|
98
97
|
rowClass?: (params: AXGridRowParams) => (string | string[]) | (string | string[]);
|
|
99
98
|
rtl: boolean;
|
|
100
|
-
constructor(ref: ElementRef
|
|
99
|
+
constructor(ref: ElementRef<HTMLDivElement>, cdr: ChangeDetectorRef);
|
|
101
100
|
private calcHeight;
|
|
102
101
|
private get intenalGridDataSource();
|
|
103
102
|
getMainMenuItems(e: any): string[];
|
|
@@ -137,6 +136,7 @@ export declare class AXDataGridComponent {
|
|
|
137
136
|
internalGridSizeChanged(e: GridSizeChangedEvent): void;
|
|
138
137
|
internalGridFirstDataRendered(e: FirstDataRenderedEvent): void;
|
|
139
138
|
private performSizeColumnsToFit;
|
|
139
|
+
private handlePageSize;
|
|
140
140
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDataGridComponent, never>;
|
|
141
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDataGridComponent, "ax-data-grid", never, { "remoteOperation": "remoteOperation"; "rowMultiSelectWithClick": "rowMultiSelectWithClick"; "suppressRowClickSelection": "suppressRowClickSelection"; "suppressCellSelection": "suppressCellSelection"; "sizeColumnsToFit": "sizeColumnsToFit"; "showCheckBox": "showCheckBox"; "floatingFilter": "floatingFilter"; "
|
|
141
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDataGridComponent, "ax-data-grid", never, { "paginationAutoPageSize": "paginationAutoPageSize"; "paginationPageSize": "paginationPageSize"; "remoteOperation": "remoteOperation"; "rowMultiSelectWithClick": "rowMultiSelectWithClick"; "suppressRowClickSelection": "suppressRowClickSelection"; "suppressCellSelection": "suppressCellSelection"; "sizeColumnsToFit": "sizeColumnsToFit"; "showCheckBox": "showCheckBox"; "floatingFilter": "floatingFilter"; "selectionMode": "selectionMode"; "pagination": "pagination"; "selectRow": "selectRow"; "rowGroupPanelShow": "rowGroupPanelShow"; "loadOnInit": "loadOnInit"; "keyField": "keyField"; "hasChildField": "hasChildField"; "searchText": "searchText"; "filter": "filter"; "columns": "columns"; "rowHeight": "rowHeight"; "dataSource": "dataSource"; "groupHideOpenParents": "groupHideOpenParents"; "rowClass": "rowClass"; "rtl": "rtl"; }, { "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"]>;
|
|
142
142
|
}
|