Defined in: core/table/coreTablesFeature.types.ts:111
TFeatures extends TableFeatures
TData extends RowData
optional _cellPrototype: object;
Defined in: core/table/coreTablesFeature.types.ts:72
Prototype cache for Cell objects - shared by all cells in this table
Table_CoreProperties._cellPrototype
optional _columnPrototype: object;
Defined in: core/table/coreTablesFeature.types.ts:76
Prototype cache for Column objects - shared by all columns in this table
Table_CoreProperties._columnPrototype
_features: Partial<CoreFeatures> & TFeatures;
Defined in: core/table/coreTablesFeature.types.ts:68
The features that are enabled for the table.
Table_CoreProperties._features
optional _headerPrototype: object;
Defined in: core/table/coreTablesFeature.types.ts:80
Prototype cache for Header objects - shared by all headers in this table
Table_CoreProperties._headerPrototype
_rowModelFns: RowModelFns<TFeatures, TData>;
Defined in: core/table/coreTablesFeature.types.ts:84
The row model processing functions that are used to process the data by features.
Table_CoreProperties._rowModelFns
_rowModels: CachedRowModels<TFeatures, TData>;
Defined in: core/table/coreTablesFeature.types.ts:88
The row models that are enabled for the table.
Table_CoreProperties._rowModels
optional _rowPrototype: object;
Defined in: core/table/coreTablesFeature.types.ts:92
Prototype cache for Row objects - shared by all rows in this table
Table_CoreProperties._rowPrototype
baseStore: Store<TableState<TFeatures>>;
Defined in: core/table/coreTablesFeature.types.ts:96
The base store for the table. This can be used to write to the table state.
Table_CoreProperties.baseStore
initialState: TableState<TFeatures>;
Defined in: core/table/coreTablesFeature.types.ts:100
This is the resolved initial state of the table.
Table_CoreProperties.initialState
options: TableOptions<TFeatures, TData>;
Defined in: core/table/coreTablesFeature.types.ts:104
A read-only reference to the table's current options.
reset: () => void;
Defined in: core/table/coreTablesFeature.types.ts:118
Call this function to reset the table state to the initial state.
void
setOptions: (newOptions) => void;
Defined in: core/table/coreTablesFeature.types.ts:122
This function can be used to update the table options.
Updater<TableOptions<TFeatures, TData>>
void
store: ReadonlyStore<TableState<TFeatures>>;
Defined in: core/table/coreTablesFeature.types.ts:108
Where the table state is stored.