igniteui-angular 16.0.19 → 16.0.20
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.
|
@@ -603,9 +603,11 @@ export interface GridType extends IGridDataBindable {
|
|
|
603
603
|
deselectAllRows(onlyFilterData?: boolean): void;
|
|
604
604
|
setUpPaginator(): void;
|
|
605
605
|
createFilterDropdown(column: ColumnType, options: OverlaySettings): any;
|
|
606
|
+
updateCell(value: any, rowSelector: any, column: string): void;
|
|
606
607
|
createRow?(index: number, data?: any): RowType;
|
|
607
608
|
deleteRow(id: any): any;
|
|
608
609
|
deleteRowById(id: any): any;
|
|
610
|
+
updateRow(value: any, rowSelector: any): void;
|
|
609
611
|
collapseRow(id: any): void;
|
|
610
612
|
notifyChanges(repaint?: boolean): void;
|
|
611
613
|
resetColumnCollections(): void;
|
package/package.json
CHANGED