ids-enterprise-typings 17.2.1 → 17.3.0-beta.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.
|
@@ -10,17 +10,17 @@
|
|
|
10
10
|
*/
|
|
11
11
|
interface SohoBusyIndicatorOptions {
|
|
12
12
|
/** Blocks UI events to the attached components whilst the indictor is active. */
|
|
13
|
-
|
|
13
|
+
blockUI?: boolean;
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
/** Text to display, will show 'Loading...' if left undefined. */
|
|
16
|
+
text?: string;
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
/** Number of milliseconds to wait befre the indicator is dislayed, if 0 it is displayed immediately. */
|
|
19
|
+
displayDelay?: number;
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
/** Number of milliseconds before the indicator is removed, if 0 does indefinitely. */
|
|
22
|
+
// Is this correct? Should the indicator not close.
|
|
23
|
+
timeToComplete?: number;
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
26
|
* If true, allows the "blockUI" setting to display an overlay that prevents interaction,
|
|
@@ -57,7 +57,7 @@ interface SohoBusyIndicatorStatic {
|
|
|
57
57
|
close(fromEvent: boolean): void;
|
|
58
58
|
|
|
59
59
|
/** Updates the busy indicator with any new seettings. */
|
|
60
|
-
updated(): void;
|
|
60
|
+
updated(settings?: SohoBusyIndicatorOptions): void;
|
|
61
61
|
|
|
62
62
|
/** whether or not the busy indicator is displaying or not */
|
|
63
63
|
isActive(): boolean | undefined;
|
|
@@ -1025,6 +1025,9 @@ interface SohoDataGridColumn {
|
|
|
1025
1025
|
/** call back to handle custom tooltips for the column header */
|
|
1026
1026
|
tooltip?: (row: number, cell: number, value: any, col: SohoDataGridColumn, rowData: Object, api: SohoDataGridStatic) => string;
|
|
1027
1027
|
|
|
1028
|
+
/** Disable tooltip for this column */
|
|
1029
|
+
disableTooltip?: boolean;
|
|
1030
|
+
|
|
1028
1031
|
/** Placeholder text to display in the field **/
|
|
1029
1032
|
placeholder?: string | Function;
|
|
1030
1033
|
|
|
@@ -1183,6 +1186,9 @@ interface SohoDataGridStatic {
|
|
|
1183
1186
|
/** Clear and reset the filter */
|
|
1184
1187
|
clearFilter(): void;
|
|
1185
1188
|
|
|
1189
|
+
/** Hides the contextual toolbar */
|
|
1190
|
+
hideContextualToolbar(): void;
|
|
1191
|
+
|
|
1186
1192
|
selectedRows(): SohoDataGridSelectedRow[];
|
|
1187
1193
|
|
|
1188
1194
|
selectAllRows(): void;
|