Skip to content

Home > @liquidrazor/list-display > ListState

ListState interface

Full internal state of the list.

Signature:

typescript
export interface ListState<TRow = any>

Properties

Property

Modifiers

Type

Description

error?

unknown

(Optional)

filters

ActiveFilterState

pagination

PaginationState

rawRows

TRow[]

Raw rows as maintained from the data source + local mutations.

rows

TRow[]

Rows actually used for rendering after filters/sort/pagination.

selection

SelectionState

sort?

SortDescriptor<TRow>

(Optional)

status

ListStatus

ui

ListUiState