axonyx-ui 0.0.48

Foundry CSS, JavaScript helpers, and Axonyx-native .ax components for Axonyx UI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
page Pagination(current = "", total = "", previous = "", next = "")

<nav class="ax-pagination" aria-label="Pagination">
  <a class="ax-pagination__item" href={previous}>Previous</a>
  <span data-current="true">
    <span>Page</span>
    <span>{current}</span>
    <span>of</span>
    <span>{total}</span>
  </span>
  <a class="ax-pagination__item" href={next}>Next</a>
  <Slot />
</nav>