ids-enterprise-typings 18.0.1 → 18.1.0
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.
|
@@ -216,6 +216,9 @@ interface SohoDataGridOptions {
|
|
|
216
216
|
/** If true the dirty indicator will be shown on the rows when they change */
|
|
217
217
|
showDirty?: boolean;
|
|
218
218
|
|
|
219
|
+
/** If set false, will remove datagrid-cell-layout class from expandable rows. */
|
|
220
|
+
addCellLayoutClass?: boolean | undefined;
|
|
221
|
+
|
|
219
222
|
/** Changes the column resize behavior. */
|
|
220
223
|
resizeMode?: SohoDataGridResizeMode;
|
|
221
224
|
|
|
@@ -1426,9 +1429,12 @@ interface SohoDataGridSelectedEvent {
|
|
|
1426
1429
|
rowData?: SohoDataGridSelectedRow[] | SohoDataGridSelectedRow;
|
|
1427
1430
|
}
|
|
1428
1431
|
|
|
1429
|
-
interface SohoDataGridCellChangeEvent {
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
+
interface SohoDataGridCellChangeEvent<T = Object> {
|
|
1433
|
+
api?: any;
|
|
1434
|
+
rowData?: T;
|
|
1435
|
+
row?: number;
|
|
1436
|
+
relativeRow?: number;
|
|
1437
|
+
cell?: number;
|
|
1432
1438
|
target?: any;
|
|
1433
1439
|
value?: any;
|
|
1434
1440
|
oldValue?: any;
|