Properties to customize various pagination titles. The following properties should be passed into the pagination component's title property.

interface PaginationTitles {
    currPageAriaLabel?: string;
    items?: string;
    itemsPerPage?: string;
    ofWord?: string;
    optionsToggleAriaLabel?: string;
    page?: string;
    pages?: string;
    paginationAriaLabel?: string;
    perPageSuffix?: string;
    toFirstPageAriaLabel?: string;
    toLastPageAriaLabel?: string;
    toNextPageAriaLabel?: string;
    toPreviousPageAriaLabel?: string;
}

Properties

currPageAriaLabel?: string

Accessible label for the input displaying the current page.

items?: string

The type or title of the items being paginated.

itemsPerPage?: string

The title of the pagination options menu.

ofWord?: string

Label for the English word "of".

optionsToggleAriaLabel?: string

Accessible label for the options toggle.

page?: string

The title of a page displayed beside the page number.

pages?: string

The title of a page displayed beside the page number (plural form).

paginationAriaLabel?: string

Accessible label for the pagination component.

perPageSuffix?: string

The suffix to be displayed after each option on the options menu dropdown.

toFirstPageAriaLabel?: string

Accessible label for the button which moves to the first page.

toLastPageAriaLabel?: string

Accessible label for the button which moves to the last page.

toNextPageAriaLabel?: string

Accessible label for the button which moves to the next page.

toPreviousPageAriaLabel?: string

Accessible label for the button which moves to the previous page.