ids-enterprise-typings 21.0.2 → 21.0.3-patch.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.
|
@@ -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;
|