type AppCellContext<TFeatures, TData, TValue, TCellComponents> = object;Defined in: createTableHook.tsx:40
Enhanced CellContext with pre-bound cell components. The cell property includes the registered cellComponents.
TFeatures extends TableFeatures
TData extends RowData
TValue extends CellData
TCellComponents extends Record<string, ComponentType<any>>
cell: Cell<TFeatures, TData, TValue> & TCellComponents & object;Defined in: createTableHook.tsx:46
FlexRender: () => JSXElement;JSXElement
column: Column<TFeatures, TData, TValue>;Defined in: createTableHook.tsx:48
getValue: CellContext<TFeatures, TData, TValue>["getValue"];Defined in: createTableHook.tsx:49
renderValue: CellContext<TFeatures, TData, TValue>["renderValue"];Defined in: createTableHook.tsx:50
row: Row<TFeatures, TData>;Defined in: createTableHook.tsx:51
table: Table<TFeatures, TData>;Defined in: createTableHook.tsx:52