Skip to content

ITableControlsAdapter

Defined in: core/src/types/index.ts:72

Adapter interface for decoupling data-fetching from table controls. Consuming apps provide an adapter to translate between core state and their specific API query format.

TItem

TColumnKey extends string = string

currentPageItems: TItem[]

Defined in: core/src/types/index.ts:84

The current page of items.


getRequestParams: (args) => Record<string, unknown>

Defined in: core/src/types/index.ts:74

Convert filter/sort/pagination state to API request params.

IActiveSortState | null

IFilterValues<TColumnKey>

IPaginationState

Record<string, unknown>


totalItemCount: number

Defined in: core/src/types/index.ts:81

Total item count (for server-side pagination).