ids-enterprise-typings 21.0.1 → 21.0.3
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 {
|
|
@@ -1475,6 +1478,14 @@ interface SohoDataGridSelectedEvent {
|
|
|
1475
1478
|
rowData?: SohoDataGridSelectedRow[] | SohoDataGridSelectedRow;
|
|
1476
1479
|
}
|
|
1477
1480
|
|
|
1481
|
+
type SohoDataGridDeselectedEventType = 'deselectall' | 'deselect' | undefined;
|
|
1482
|
+
|
|
1483
|
+
interface SohoDataGridDeselectedEvent {
|
|
1484
|
+
e: JQuery.TriggeredEvent;
|
|
1485
|
+
deselectedRows: SohoDataGridSelectedRow[];
|
|
1486
|
+
action: SohoDataGridDeselectedEventType;
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1478
1489
|
interface SohoDataGridCellChangeEvent {
|
|
1479
1490
|
api?: any;
|
|
1480
1491
|
rowData?: any;
|
|
@@ -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;
|