ids-enterprise-typings 17.5.5 → 17.5.6
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.
|
@@ -32,6 +32,9 @@ interface SohoContextualActionPanelOptions {
|
|
|
32
32
|
/** The string used as the title for the panel - not defaulted. */
|
|
33
33
|
title?: string;
|
|
34
34
|
|
|
35
|
+
/** The id of the detail element that will be used to display the detail content. */
|
|
36
|
+
detailRefId?: string | undefined;
|
|
37
|
+
|
|
35
38
|
/** Settings to pass through to the modal */
|
|
36
39
|
modalSettings?: SohoModalOptions;
|
|
37
40
|
|
|
@@ -98,7 +98,6 @@ interface SohoDataGridOptions {
|
|
|
98
98
|
|
|
99
99
|
/** Initial dataset. */
|
|
100
100
|
dataset?: Object[];
|
|
101
|
-
data?: Object[];
|
|
102
101
|
|
|
103
102
|
/** set frozen columns */
|
|
104
103
|
frozenColumns?: SohoDataGridFrozenColumns;
|
|
@@ -1091,9 +1090,6 @@ interface SohoDataGridStatic {
|
|
|
1091
1090
|
/** Updates the dataset displayed by the data grid. */
|
|
1092
1091
|
updateDataset(dataset: Object[], pagerInfo?: SohoPagerPagingInfo): void;
|
|
1093
1092
|
|
|
1094
|
-
data?: Object[];
|
|
1095
|
-
columns?: Object[];
|
|
1096
|
-
|
|
1097
1093
|
/** Sets the row height on the datagrid. */
|
|
1098
1094
|
rowHeight(rowHeight: SohoDataGridRowHeight): void;
|
|
1099
1095
|
|