Defined in: packages/svelte-table/src/createTableHook.svelte.ts:377
TFeatures extends TableFeatures
TTableComponents extends Record<string, ComponentType<any>>
TCellComponents extends Record<string, ComponentType<any>>
THeaderComponents extends Record<string, ComponentType<any>>
appFeatures: TFeatures;Defined in: packages/svelte-table/src/createTableHook.svelte.ts:384
The features object that was passed to createTableHook.
createAppColumnHelper: <TData>() => AppColumnHelper<TFeatures, TData, TCellComponents, THeaderComponents>;Defined in: packages/svelte-table/src/createTableHook.svelte.ts:389
A column helper pre-bound to TFeatures and the registered components, so the cell/header/footer render props expose the bound components.
TData extends RowData
AppColumnHelper<TFeatures, TData, TCellComponents, THeaderComponents>
createAppTable: <TData>(tableOptions) => AppSvelteTable<TFeatures, TData, TTableComponents, TCellComponents, THeaderComponents>;Defined in: packages/svelte-table/src/createTableHook.svelte.ts:403
Creates a table with the App* wrapper components and registered tableComponents attached. TData is inferred from the data option.
Read table state with table.atoms.<slice>.get() or table.store.get(). These reads participate in Svelte dependency tracking inside templates, $derived, and $effect.
TData extends RowData
Omit<TableOptions<TFeatures, TData>, "features">
AppSvelteTable<TFeatures, TData, TTableComponents, TCellComponents, THeaderComponents>
useCellContext: <TValue>() => Cell_Core<TFeatures, any, TValue> & ExtractFeatureMapTypes<TFeatures, Cell_FeatureMap> & TCellComponents & object;Defined in: packages/svelte-table/src/createTableHook.svelte.ts:428
Reads the cell provided by the nearest <table.AppCell>, extended with your cellComponents and a context-bound FlexRender.
TValue extends unknown = unknown
Cell_Core<TFeatures, any, TValue> & ExtractFeatureMapTypes<TFeatures, Cell_FeatureMap> & TCellComponents & object
useHeaderContext: <TValue>() => Header_Core<TFeatures, any, TValue> & ExtractFeatureMapTypes<TFeatures, Header_FeatureMap> & THeaderComponents & object;Defined in: packages/svelte-table/src/createTableHook.svelte.ts:439
Reads the header provided by the nearest <table.AppHeader> / <table.AppFooter>, extended with your headerComponents and a context-bound FlexRender.
TValue extends unknown = unknown
Header_Core<TFeatures, any, TValue> & ExtractFeatureMapTypes<TFeatures, Header_FeatureMap> & THeaderComponents & object
useTableContext: <TData>() => AppSvelteTable<TFeatures, TData, TTableComponents, TCellComponents, THeaderComponents>;Defined in: packages/svelte-table/src/createTableHook.svelte.ts:417
Reads the table provided by the nearest <table.AppTable>. This is the same extended instance createAppTable returns, so the App* components and your tableComponents are available on it.
TData extends RowData = RowData
AppSvelteTable<TFeatures, TData, TTableComponents, TCellComponents, THeaderComponents>