ids-enterprise-typings 19.2.1 → 19.3.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.
|
@@ -17,6 +17,9 @@ interface SohoInputValidateStatic {
|
|
|
17
17
|
/** Remove the message from the field if there is one and mark the field valid */
|
|
18
18
|
removeMessage(field: any, type: any): void;
|
|
19
19
|
|
|
20
|
+
/** Set icon on parent tabs/expandable */
|
|
21
|
+
setIconOnParent(field: any, type: any): void;
|
|
22
|
+
|
|
20
23
|
/** Trigger validation of the field */
|
|
21
24
|
validate(field: any, showTooltip: any, event: any): void;
|
|
22
25
|
|
|
@@ -198,6 +198,9 @@ interface SohoLookupStatic {
|
|
|
198
198
|
|
|
199
199
|
/** Send in a new data set to display in the datagrid in the lookup. **/
|
|
200
200
|
updateDataset(dataset: Object[], pagerInfo: SohoPagerPagingInfo): void;
|
|
201
|
+
|
|
202
|
+
/** Sets the loading/busy indicator state for the modal element. **/
|
|
203
|
+
setLoadingIndicator(show: boolean, options?: SohoBusyIndicatorOptions): void;
|
|
201
204
|
}
|
|
202
205
|
|
|
203
206
|
/**
|