SortedTablePaginatorProps
SortedTablePaginatorProps props are used for components that will be used as a table paginator, such as the SortedTablePaginator component.
{
onChange: (offset: number) => void;
offset?: number;
limit?: number;
total: number;
singular?: string;
plural?: string;
}| Type | Description | |
|---|---|---|
onChange | (offset: number) => void | An event that will fire when the offset is updated, called with the new offset. |
offset? | number | |
limit? | number | |
total | number | |
singular? | string | A noun to use in the pagination label for a single row, defaulting to 'row'. |
plural? | string | A noun to use in the pagination label for multiple rows, defaulting to the value of the singular noun suffixed with the letter 's'. |
Since
v4.1.0