type AppCellContext<TFeatures, TData, TValue, TCellComponents> = object;
Defined in: createTableHook.tsx:41
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:47
FlexRender: () => ReactNode;
ReactNode
column: Column<TFeatures, TData, TValue>;
Defined in: createTableHook.tsx:49
getValue: CellContext<TFeatures, TData, TValue>["getValue"];
Defined in: createTableHook.tsx:50
renderValue: CellContext<TFeatures, TData, TValue>["renderValue"];
Defined in: createTableHook.tsx:51
row: Row<TFeatures, TData>;
Defined in: createTableHook.tsx:52
table: Table<TFeatures, TData>;
Defined in: createTableHook.tsx:53