Primitives
The Pagination primitives provide a set of directives to create a pagination control. The pagination control is used to navigate through a set of data that is split into multiple pages.
Import the Pagination primitives from ng-primitives/pagination
.
import {
NgpPagination,
NgpPaginationButton,
NgpPaginationFirst,
NgpPaginationNext,
NgpPaginationPrevious,
NgpPaginationLast,
} from 'ng-primitives/pagination';
Assemble the pagination directives in your template.
<nav
[(ngpPaginationPage)]="page"
ngpPagination
ngpPaginationPageCount="5"
aria-label="Pagination Navigation"
>
<ul>
<li>
<a ngpPaginationFirst aria-label="First Page">
<ng-icon name="heroChevronDoubleLeft" />
</a>
</li>
<li>
<a ngpPaginationPrevious aria-label="Previous Page">
<ng-icon name="heroChevronLeft" />
</a>
</li>
<li>
<a ngpPaginationButton ngpPaginationButtonPage="1" aria-label="Page 1">1</a>
</li>
<li>
<a ngpPaginationButton ngpPaginationButtonPage="2" aria-label="Page 2">2</a>
</li>
<li>
<a ngpPaginationButton ngpPaginationButtonPage="3" aria-label="Page 3">3</a>
</li>
<li>
<a ngpPaginationButton ngpPaginationButtonPage="4" aria-label="Page 4">4</a>
</li>
<li>
<a ngpPaginationButton ngpPaginationButtonPage="5" aria-label="Page 5">5</a>
</li>
<li>
<a ngpPaginationNext aria-label="Next Page">
<ng-icon name="heroChevronRight" />
</a>
</li>
<li>
<a ngpPaginationLast aria-label="Last Page">
<ng-icon name="heroChevronDoubleRight" />
</a>
</li>
</ul>
</nav>
The following directives are available to import from the ng-primitives/pagination
package:
The NgpPagination
directive is used to create a pagination control.
[ngpPagination]
ngpPagination
The following data attributes are applied to the ngpPagination
directive:
Attribute | Description | Value |
---|---|---|
data-page |
The current page number. | number |
data-page-count |
The total number of pages. | number |
data-disabled |
Disables the pagination control. | boolean |
data-first-page |
Whether the current page is the first page. | boolean |
data-last-page |
Whether the current page is the last page. | boolean |
The NgpPaginationButton
directive is used to create a pagination button.
[ngpPaginationButton]
ngpPaginationButton
The following data attributes are applied to the ngpPaginationButton
directive:
Attribute | Description | Value |
---|---|---|
data-page |
The page number that the button navigates to. | number |
data-selected |
Applied when the button is selected. | - |
data-hover |
Applied when the button is hovered. | - |
data-focus-visible |
Applied when the button is focused. | - |
data-press |
Applied when the button is pressed. | - |
data-disabled |
Disables the pagination button. | - |
The NgpPaginationFirst
directive is used to create a pagination button that navigates to the first page.
[ngpPaginationFirst]
ngpPaginationFirst
The following data attributes are applied to the ngpPaginationFirst
directive:
Attribute | Description |
---|---|
data-first-page |
Applied when the current page is the first page. |
data-hover |
Applied when the button is hovered. |
data-focus-visible |
Applied when the button is focused. |
data-press |
Applied when the button is pressed. |
data-disabled |
Applied when the button is disabled. |
The NgpPaginationPrevious
directive is used to create a pagination button that navigates to the previous page.
[ngpPaginationPrevious]
ngpPaginationPrevious
The following data attributes are applied to the ngpPaginationPrevious
directive:
Attribute | Description |
---|---|
data-first-page |
Applied when the current page is the first page. |
data-hover |
Applied when the button is hovered. |
data-focus-visible |
Applied when the button is focused. |
data-press |
Applied when the button is pressed. |
data-disabled |
Applied when the button is disabled. |
The NgpPaginationNext
directive is used to create a pagination button that navigates to the next page.
[ngpPaginationNext]
ngpPaginationNext
The following data attributes are applied to the ngpPaginationNext
directive:
Attribute | Description |
---|---|
data-last-page |
Applied when the current page is the last page. |
data-hover |
Applied when the button is hovered. |
data-focus-visible |
Applied when the button is focused. |
data-press |
Applied when the button is pressed. |
data-disabled |
Applied when the button is disabled. |
The NgpPaginationLast
directive is used to create a pagination button that navigates to the last page.
[ngpPaginationLast]
ngpPaginationLast
The following data attributes are applied to the ngpPaginationLast
directive:
Attribute | Description |
---|---|
data-last-page |
Applied when the current page is the last page. |
data-hover |
Applied when the button is hovered. |
data-focus-visible |
Applied when the button is focused. |
data-press |
Applied when the button is pressed. |
data-disabled |
Applied when the button is disabled. |
Copyright © 2024 Angular Primitives