* Interface for components that may be slotted inside a `ui5-table` as rows * @public
| 66 | * @public |
| 67 | */ |
| 68 | interface ITableRow extends UI5Element, ITabbable { |
| 69 | mode: `${TableMode}`, |
| 70 | selected: boolean, |
| 71 | forcedBusy: boolean, |
| 72 | forcedAriaPosition?: string, |
| 73 | _columnsInfoString: string, |
| 74 | _columnsInfo?: Array<TableColumnInfo>, |
| 75 | tabbableElements: Array<HTMLElement>, |
| 76 | } |
| 77 | |
| 78 | const GROWING_WITH_SCROLL_DEBOUNCE_RATE = 250; // ms |
| 79 |
nothing calls this directly
no outgoing calls
no test coverage detected