Skip to content

Latest commit

 

History

History
86 lines (48 loc) · 1.92 KB

File metadata and controls

86 lines (48 loc) · 1.92 KB
id AppCellPropsWithSelector
title AppCellPropsWithSelector

Interface: AppCellPropsWithSelector<TFeatures, TData, TValue, TCellComponents, TSelected>

Defined in: createTableHook.tsx:313

Props for AppCell component - with selector

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData

TValue

TValue extends CellData

TCellComponents

TCellComponents extends Record<string, ComponentType<any>>

TSelected

TSelected

Properties

cell

cell: Cell<TFeatures, TData, TValue>;

Defined in: createTableHook.tsx:320


children()

children: (cell, state) => ReactNode;

Defined in: createTableHook.tsx:321

Parameters

cell

Cell_Cell<TFeatures, TData, TValue> & UnionToIntersection<"columnGroupingFeature" extends keyof TFeatures ? Cell_ColumnGrouping : never> & UnionToIntersection<{ [K in string | number | symbol]: K extends "coreReativityFeature" ? never : TFeatures[K] extends TableFeature<FeatureConstructorOptions> ? "Cell" extends keyof FeatureConstructorOptions ? FeatureConstructorOptions[keyof (...) & "Cell"] : never : any }[keyof TFeatures]> & Cell_Plugins<TFeatures, TData, TValue> & TCellComponents & object

state

TSelected

Returns

ReactNode


selector()

selector: (state) => TSelected;

Defined in: createTableHook.tsx:326

Parameters

state

TableState<TFeatures>

Returns

TSelected