igniteui-angular 15.1.21 → 15.1.22
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.
|
@@ -572,9 +572,11 @@ export interface GridType extends IGridDataBindable {
|
|
|
572
572
|
deselectAllRows(onlyFilterData?: boolean): void;
|
|
573
573
|
setUpPaginator(): void;
|
|
574
574
|
createFilterDropdown(column: ColumnType, options: OverlaySettings): any;
|
|
575
|
+
updateCell(value: any, rowSelector: any, column: string): void;
|
|
575
576
|
createRow?(index: number, data?: any): RowType;
|
|
576
577
|
deleteRow(id: any): any;
|
|
577
578
|
deleteRowById(id: any): any;
|
|
579
|
+
updateRow(value: any, rowSelector: any): void;
|
|
578
580
|
collapseRow(id: any): void;
|
|
579
581
|
notifyChanges(repaint?: boolean): void;
|
|
580
582
|
resetColumnCollections(): void;
|
package/package.json
CHANGED