TanStack
Cell API Reference

AppCellContext

Type Alias: AppCellContext<TFeatures, TData, TValue, TCellComponents>

ts
type AppCellContext<TFeatures, TData, TValue, TCellComponents> = object;

Defined in: react-table/src/createTableHook.tsx:48

Enhanced CellContext with pre-bound cell components. The cell property includes the registered cellComponents.

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData

TValue

TValue extends CellData

TCellComponents

TCellComponents extends Record<string, ComponentType<any>>

Properties

cell

ts
cell: Cell<TFeatures, TData, TValue> & TCellComponents & object;

Defined in: react-table/src/createTableHook.tsx:54

Type Declaration

FlexRender()
ts
FlexRender: () => ReactNode;
Returns

ReactNode


column

ts
column: Column<TFeatures, TData, TValue>;

Defined in: react-table/src/createTableHook.tsx:56


getValue

ts
getValue: CellContext<TFeatures, TData, TValue>["getValue"];

Defined in: react-table/src/createTableHook.tsx:57


renderValue

ts
renderValue: CellContext<TFeatures, TData, TValue>["renderValue"];

Defined in: react-table/src/createTableHook.tsx:58


row

ts
row: Row<TFeatures, TData>;

Defined in: react-table/src/createTableHook.tsx:59


table

ts
table: Table<TFeatures, TData>;

Defined in: react-table/src/createTableHook.tsx:60