Skip to content

Releases: TahaSh/vue-paginate

v3.6.0

29 Mar 14:33
Compare
Choose a tag to compare
[release] 3.6.0

v3.5.0

18 May 15:08
Compare
Choose a tag to compare
  • #35 add pageItemsCount computed property to display page items count in this format X-Y of Z
  • #37 support setting current page programmatically with goToPage method
  • #39 support async rendering for PaginateLinks
  • #51 remove custom class prop from Paginate

v3.4.0

17 Jan 19:20
Compare
Choose a tag to compare

Main changes:

Changes list:

  • #31 Fix adding multiple classes to PaginateLinks ul element
  • #27 Make next/prev links modifiable
  • #34 Add the ability to hide links if there's only one page
  • #33 Introduce step-links property that allows you to add next/prev links to move one page at a time instead of chunks
  • Make step links optional in limited links (which you can add using :show-step-links="true" prop).

v3.3.1

11 Jan 21:32
Compare
Choose a tag to compare

This release includes:

  • Improve limited links by showing backward ellipses (see issue #30).
  • Add Webpack server with examples directory.
  • Disable limited links when limit prop is 1 or less.

Allow multiple additional classes

12 Dec 19:51
Compare
Choose a tag to compare

This release allows adding multiple classes to PaginateLinks by using an array of class names. For example:

<paginate-links
  for="languages"
  :simple="{
    prev: 'Back',
    next: 'Next'
  }"
  :classes="{
    '.prev > a': ['first-class', 'second-class'] // multiple classes
  }"
></paginate-links>

Support adding additional classes to PaginateLinks

12 Dec 19:12
Compare
Choose a tag to compare

You can now add additional classes to any element in your PaginateLinks components. Check the docs for details.

v3.1.0

18 Nov 14:56
Compare
Choose a tag to compare

Emit change event from PaginateLinks component when the current page changes.

v3.0.0

16 Nov 17:43
Compare
Choose a tag to compare
add demo link to Readme

v2.1.3

21 Oct 19:13
Compare
Choose a tag to compare
update version

v2.1.2

05 Sep 05:13
Compare
Choose a tag to compare

Fixed

  • Limited links update bug