* Returns the ARIA description of the Table as an alternative to aria-multiselectable.
()
| 110 | * Returns the ARIA description of the Table as an alternative to aria-multiselectable. |
| 111 | */ |
| 112 | getAriaDescriptionForTable(): string | undefined { |
| 113 | if (!this._table || !this._table.rows.length) { |
| 114 | return undefined; |
| 115 | } |
| 116 | |
| 117 | const i18nBundle = (this._table.constructor as typeof Table).i18nBundle; |
| 118 | return i18nBundle.getText(this.isMultiSelectable() ? TABLE_MULTI_SELECTABLE : TABLE_SINGLE_SELECTABLE); |
| 119 | } |
| 120 | |
| 121 | /** |
| 122 | * Returns the ARIA description of the selection component displayed in the column header. |
nothing calls this directly
no test coverage detected
searching dependent graphs…