ids-enterprise-typings 18.0.2 → 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
- row?: any;
1431
- cell?: any;
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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ids-enterprise-typings",
3
3
  "slug": "ids-enterprise-typings",
4
- "version": "18.0.2",
4
+ "version": "18.1.0",
5
5
  "declaration": true,
6
6
  "types": "index.d.ts",
7
7
  "dependencies": {