ids-enterprise-typings 14.3.1 → 14.3.2
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.
|
@@ -580,6 +580,11 @@ interface SohoDataGridCellEditor {
|
|
|
580
580
|
focus(): void;
|
|
581
581
|
}
|
|
582
582
|
|
|
583
|
+
type SohoDataGridAriaDescribedByFunction = (
|
|
584
|
+
row?: any,
|
|
585
|
+
cell?: any
|
|
586
|
+
) => string;
|
|
587
|
+
|
|
583
588
|
type SohoDataGridColumnEditorFunction = (
|
|
584
589
|
row?: any,
|
|
585
590
|
cell?: any,
|
|
@@ -955,6 +960,9 @@ interface SohoDataGridColumn {
|
|
|
955
960
|
/** Adds an extra class to the header for formatting */
|
|
956
961
|
headerCssClass?: string;
|
|
957
962
|
|
|
963
|
+
/** Adds the ability to set/override the aria-describedby attribute on the cells. */
|
|
964
|
+
ariaDescribedBy?: SohoDataGridAriaDescribedByFunction;
|
|
965
|
+
|
|
958
966
|
/** Content visible function*/
|
|
959
967
|
contentVisible?: SohoDataGridColumnContentVisibleFunction;
|
|
960
968
|
|