ids-enterprise-typings 17.5.2 → 17.5.5
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,9 +32,6 @@ 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
|
-
|
|
38
35
|
/** Settings to pass through to the modal */
|
|
39
36
|
modalSettings?: SohoModalOptions;
|
|
40
37
|
|
|
@@ -98,6 +98,7 @@ interface SohoDataGridOptions {
|
|
|
98
98
|
|
|
99
99
|
/** Initial dataset. */
|
|
100
100
|
dataset?: Object[];
|
|
101
|
+
data?: Object[];
|
|
101
102
|
|
|
102
103
|
/** set frozen columns */
|
|
103
104
|
frozenColumns?: SohoDataGridFrozenColumns;
|
|
@@ -1090,6 +1091,9 @@ interface SohoDataGridStatic {
|
|
|
1090
1091
|
/** Updates the dataset displayed by the data grid. */
|
|
1091
1092
|
updateDataset(dataset: Object[], pagerInfo?: SohoPagerPagingInfo): void;
|
|
1092
1093
|
|
|
1094
|
+
data?: Object[];
|
|
1095
|
+
columns?: Object[];
|
|
1096
|
+
|
|
1093
1097
|
/** Sets the row height on the datagrid. */
|
|
1094
1098
|
rowHeight(rowHeight: SohoDataGridRowHeight): void;
|
|
1095
1099
|
|