TanStack
Cell API Reference

AppCellContext

Interface: AppCellContext<TFeatures, TData, TValue, TCellComponents>

Defined in: types.ts:341

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, TableComponentType>

Properties

cell

ts
cell: Cell_Core<TFeatures, TData, TValue> & ExtractFeatureMapTypes<TFeatures, Cell_FeatureMap> & TCellComponents & object;

Defined in: types.ts:347

Type Declaration

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

unknown


column

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

Defined in: types.ts:349


getValue

ts
getValue: Getter<TValue>;

Defined in: types.ts:350


renderValue

ts
renderValue: Getter<TValue | null>;

Defined in: types.ts:351


row

ts
row: Row<TFeatures, TData>;

Defined in: types.ts:352


table

ts
table: Table<TFeatures, TData>;

Defined in: types.ts:353