Defined in: core/table/coreTablesFeature.types.ts:115
TFeatures extends TableFeatures
TData extends RowData
optional _cellPrototype: object;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;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;_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;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>;_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>;_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;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>>;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>;initialState: TableState<TFeatures>;Defined in: core/table/coreTablesFeature.types.ts:104
This is the resolved initial state of the table.
Table_CoreProperties.initialState
readonly options: TableOptions<TFeatures, TData>;readonly options: TableOptions<TFeatures, TData>;Defined in: core/table/coreTablesFeature.types.ts:108
A read-only reference to the table's current options.
optionsStore: Store<TableOptions<TFeatures, TData>>;optionsStore: Store<TableOptions<TFeatures, TData>>;Defined in: core/table/coreTablesFeature.types.ts:100
The base store for the table options.
Table_CoreProperties.optionsStore
reset: () => void;reset: () => void;Defined in: core/table/coreTablesFeature.types.ts:122
Call this function to reset the table state to the initial state.
void
setOptions: (newOptions) => void;setOptions: (newOptions) => void;Defined in: core/table/coreTablesFeature.types.ts:126
This function can be used to update the table options.
Updater<TableOptions<TFeatures, TData>>
void
store: ReadonlyStore<TableState<TFeatures>>;store: ReadonlyStore<TableState<TFeatures>>;Defined in: core/table/coreTablesFeature.types.ts:112
Where the table state is stored.