ids-enterprise-typings 16.8.4 → 16.9.0-dev.1
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.
|
@@ -660,6 +660,7 @@ interface SohoStatic {
|
|
|
660
660
|
Autocomplete: SohoDataGridColumnEditorFunction;
|
|
661
661
|
Spinbox: SohoDataGridColumnEditorFunction;
|
|
662
662
|
Favorite: SohoDataGridColumnEditorFunction;
|
|
663
|
+
MultiSelect: SohoDataGridColumnEditorFunction;
|
|
663
664
|
};
|
|
664
665
|
}
|
|
665
666
|
|
|
@@ -1340,8 +1341,17 @@ interface SohoDataGridStatic {
|
|
|
1340
1341
|
/**
|
|
1341
1342
|
* Expand Detail Row Or Tree Row
|
|
1342
1343
|
* @param {number} dataRowIndex The row to toggle
|
|
1344
|
+
* @param {boolean} expandOnly Set the toggle to expand only
|
|
1343
1345
|
*/
|
|
1344
|
-
toggleRowDetail(dataRowIndex: number): void;
|
|
1346
|
+
toggleRowDetail(dataRowIndex: number, expandOnly?: boolean | undefined): void;
|
|
1347
|
+
|
|
1348
|
+
/**
|
|
1349
|
+
* Function to update the summary row
|
|
1350
|
+
* @private
|
|
1351
|
+
* @param {object} col The column data
|
|
1352
|
+
* @param {number} cell The cell index
|
|
1353
|
+
*/
|
|
1354
|
+
updateSummaryRow(col: object, cell: number): void;
|
|
1345
1355
|
|
|
1346
1356
|
/**
|
|
1347
1357
|
* Update the component with new settings.
|