ids-enterprise-typings 20.2.1 → 20.2.2
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.
|
@@ -1475,6 +1475,14 @@ interface SohoDataGridSelectedEvent {
|
|
|
1475
1475
|
rowData?: SohoDataGridSelectedRow[] | SohoDataGridSelectedRow;
|
|
1476
1476
|
}
|
|
1477
1477
|
|
|
1478
|
+
type SohoDataGridDeselectedEventType = 'deselectall' | 'deselect' | undefined;
|
|
1479
|
+
|
|
1480
|
+
interface SohoDataGridDeselectedEvent {
|
|
1481
|
+
e: JQuery.TriggeredEvent;
|
|
1482
|
+
deselectedRows: SohoDataGridSelectedRow[];
|
|
1483
|
+
action: SohoDataGridDeselectedEventType;
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1478
1486
|
interface SohoDataGridCellChangeEvent {
|
|
1479
1487
|
api?: any;
|
|
1480
1488
|
rowData?: any;
|