ids-enterprise-typings 17.1.2 → 17.2.0-beta.0
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;
|
|
@@ -644,6 +644,7 @@ interface SohoStatic {
|
|
|
644
644
|
Status: SohoDataGridColumnFormatterFunction;
|
|
645
645
|
TargetedAchievement: SohoDataGridColumnFormatterFunction;
|
|
646
646
|
Fileupload: SohoDataGridColumnFormatterFunction;
|
|
647
|
+
MultiSelect: SohoDataGridColumnFormatterFunction;
|
|
647
648
|
};
|
|
648
649
|
Editors: {
|
|
649
650
|
// Supports, Text, Numeric, Integer via mask
|
|
@@ -725,6 +726,7 @@ declare var Formatters: {
|
|
|
725
726
|
Status: SohoDataGridColumnFormatterFunction;
|
|
726
727
|
TargetedAchievement: SohoDataGridColumnFormatterFunction;
|
|
727
728
|
Fileupload: SohoDataGridColumnFormatterFunction;
|
|
729
|
+
MultiSelect: SohoDataGridColumnFormatterFunction;
|
|
728
730
|
};
|
|
729
731
|
|
|
730
732
|
type SohoDataGridColumnHrefFunction = (
|
|
@@ -1023,6 +1025,9 @@ interface SohoDataGridColumn {
|
|
|
1023
1025
|
/** call back to handle custom tooltips for the column header */
|
|
1024
1026
|
tooltip?: (row: number, cell: number, value: any, col: SohoDataGridColumn, rowData: Object, api: SohoDataGridStatic) => string;
|
|
1025
1027
|
|
|
1028
|
+
/** Disable tooltip for this column */
|
|
1029
|
+
disableTooltip?: boolean;
|
|
1030
|
+
|
|
1026
1031
|
/** Placeholder text to display in the field **/
|
|
1027
1032
|
placeholder?: string | Function;
|
|
1028
1033
|
|
|
@@ -1181,6 +1186,9 @@ interface SohoDataGridStatic {
|
|
|
1181
1186
|
/** Clear and reset the filter */
|
|
1182
1187
|
clearFilter(): void;
|
|
1183
1188
|
|
|
1189
|
+
/** Hides the contextual toolbar */
|
|
1190
|
+
hideContextualToolbar(): void;
|
|
1191
|
+
|
|
1184
1192
|
selectedRows(): SohoDataGridSelectedRow[];
|
|
1185
1193
|
|
|
1186
1194
|
selectAllRows(): void;
|
|
@@ -26,6 +26,9 @@ interface SohoModuleNavOptions {
|
|
|
26
26
|
mobileBehavior?: boolean;
|
|
27
27
|
breakpoint?: SohoModuleNavBreakPoint,
|
|
28
28
|
showOverlay?: boolean;
|
|
29
|
+
showModuleSwitcher?: boolean;
|
|
30
|
+
showGuestSection?: boolean;
|
|
31
|
+
showSearchBar?: boolean;
|
|
29
32
|
enableOutsideClick?: boolean;
|
|
30
33
|
}
|
|
31
34
|
|