* Update the `aria-colcount` attribute by the provided value. * * @param {number} delta The number of columns to add or remove to the aria tag.
(delta: number)
| 2069 | * @param {number} delta The number of columns to add or remove to the aria tag. |
| 2070 | */ |
| 2071 | #updateAriaColcount(delta: number) { |
| 2072 | const colCount = this.#getAriaColcount() + delta; |
| 2073 | |
| 2074 | setAttribute(this.hot.rootElement, [A11Y_COLCOUNT(colCount)]); |
| 2075 | } |
| 2076 | |
| 2077 | /** |
| 2078 | * Updates the class names on the root element based on the presence of scrollbars. |
no test coverage detected