ids-enterprise-typings 15.1.2 → 15.2.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.
|
@@ -146,6 +146,9 @@ interface SohoDropDownOptions {
|
|
|
146
146
|
*/
|
|
147
147
|
onKeyDown?: SohoDropDownKeyDownFunction;
|
|
148
148
|
|
|
149
|
+
/** Settings to where should tooltip be appended **/
|
|
150
|
+
appendTo?: string;
|
|
151
|
+
|
|
149
152
|
/** If defined, passes along 'clickHandler' and 'dismissHandler' functions to any Tags **/
|
|
150
153
|
tagSettings?: any;
|
|
151
154
|
|
|
@@ -5,7 +5,7 @@ interface SohoTooltipOptions {
|
|
|
5
5
|
trigger?: string; // supports click and immediate and hover (and maybe in future focus)
|
|
6
6
|
title?: string; // Title for Infor Tips
|
|
7
7
|
beforeShow?: any; // Call back for ajax tooltip
|
|
8
|
-
popover?: boolean
|
|
8
|
+
popover?: boolean; // force it to be a popover (no content)
|
|
9
9
|
closebutton?: boolean; // Show X close button next to title in popover
|
|
10
10
|
isError?: boolean; // Add error classes
|
|
11
11
|
isErrorColor?: boolean; // Add error color only not description
|
|
@@ -19,6 +19,7 @@ interface SohoTooltipOptions {
|
|
|
19
19
|
keepOpen?: boolean; // Forces the tooltip to stay open in situations where it would normally close.
|
|
20
20
|
extraClass?: string; // Extra css class
|
|
21
21
|
maxWidth?: number; // Tooltip max width
|
|
22
|
+
appendTo?: string; // Settings to where should tooltip be appended
|
|
22
23
|
|
|
23
24
|
/** If the object with the tooltip is tabbed to, will also show the tooltip. **/
|
|
24
25
|
showOnKeyboardFocus?: boolean;
|