ids-enterprise-typings 17.2.0 → 17.2.1-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.
|
@@ -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;
|