ids-enterprise-typings 21.0.2 → 21.0.4
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.
|
@@ -399,6 +399,9 @@ interface SohoDataGridOptions {
|
|
|
399
399
|
|
|
400
400
|
/** If true, shows an icon next to ellipsis text to indicate more content. */
|
|
401
401
|
ellipsisWithIcon?: boolean;
|
|
402
|
+
|
|
403
|
+
/** Aria label for the datagrid table element. */
|
|
404
|
+
ariaLabel?: string;
|
|
402
405
|
}
|
|
403
406
|
|
|
404
407
|
interface SohoDataGridModifiedRows {
|
|
@@ -44,7 +44,10 @@ interface SohoMessageOptions {
|
|
|
44
44
|
buttons?: SohoModalButton[];
|
|
45
45
|
|
|
46
46
|
/** Element to focus on return. */
|
|
47
|
-
returnFocus?: JQuery;
|
|
47
|
+
returnFocus?: JQuery | string;
|
|
48
|
+
|
|
49
|
+
/** Skip modal's trigger element to be focused once modal is closed. */
|
|
50
|
+
noRefocus?: boolean
|
|
48
51
|
|
|
49
52
|
/** Adds the ability to control the opacity of the background overlay. **/
|
|
50
53
|
overlayOpacity?: number;
|
|
@@ -127,6 +127,9 @@ interface SohoModalOptions {
|
|
|
127
127
|
|
|
128
128
|
/** Fires when an element gets focus on the modal */
|
|
129
129
|
onFocusChange?: SohoModalFocusChangeFunction;
|
|
130
|
+
|
|
131
|
+
/** A CSS selector string that represents an element to focus on when the modal is opened. */
|
|
132
|
+
initialFocus?: string;
|
|
130
133
|
}
|
|
131
134
|
|
|
132
135
|
type SohoModalFullSize = false | 'responsive' | 'always';
|