UNPKG

@esri/calcite-components

Version:

Web Components for Esri's Calcite Design System.

12 lines (11 loc) 434 B
import { FocusElementInGroupDestination } from '../../utils/dom'; export interface TableRowFocusEvent { cellPosition: number; rowPosition: number; destination: FocusElementInGroupDestination; lastCell: boolean; } export type RowType = "head" | "body" | "foot"; export type TableLayout = "auto" | "fixed"; export type TableSelectionDisplay = "top" | "none"; export type TableInteractionMode = "interactive" | "static";