Defined in: angularReactivityFeature.ts:55
Fine-grained configuration for Angular reactivity.
Each key controls whether prototype methods/getters on the corresponding TanStack Table objects are wrapped with signal-aware access.
const table = injectTable(() => {
// ...table options,
reactivity: {
// fine-grained control over which table objects have reactive properties,
// and which properties are wrapped
header: true,
column: true,
row: true,
cell: true,
}
})
cell: boolean | SkipPropertyFn;
Defined in: angularReactivityFeature.ts:63
Controls reactive wrapping for Cell instances.
column: boolean | SkipPropertyFn;
Defined in: angularReactivityFeature.ts:59
Controls reactive wrapping for Column instances.
header: boolean | SkipPropertyFn;
Defined in: angularReactivityFeature.ts:57
Controls reactive wrapping for Header instances.
row: boolean | SkipPropertyFn;
Defined in: angularReactivityFeature.ts:61
Controls reactive wrapping for Row instances.