Skip to content

Releases: Panenco/panenco-ui

v6.26.1

30 Jan 12:10
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.26.0...v6.26.1

Migration guide

locales prop

New type:

locales?: {
    first: string;
    goToFirstPage: string;
    goToLastPage: string;
    goToNextPage: string;
    goToPage: (page: number) => string;
    goToPreviousPage: string;
    last: string;
    next: string;
    previous: string;
  };

Example:

<Pagination
   locales={
      first: 'First',
      last: 'Last',
      previous: 'Previous',
      next: 'Next',
+     goToFirstPage: 'Go to the first page',
+     goToLastPage: 'Go to the last page',
+     goToNextPage: 'Go to the next page',
+     goToPreviousPage: 'Go to the previous page',
+     goToPage: (pageNumber: number): string => `Go to page ${pageNumber}`,
   }
/>

v6.26.0

30 Jan 12:03
Compare
Choose a tag to compare

What's Changed

  • feat: table pagination rows per page select and page select by @vozbrann in #475

Full Changelog: v6.25.0...v6.26.0

v6.25.0

30 Jan 09:48
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.24.1...v6.25.0

v6.24.1

30 Jan 09:35
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.24.0...v6.24.1

v6.24.0

30 Jan 09:34
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.23.1...v6.24.0

v6.23.1

27 Jan 15:42
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.23.0...v6.23.1

v6.23.0

27 Jan 11:04
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.22.0...v6.23.0

v6.22.0

27 Jan 10:45
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.21.0...v6.22.0

v6.21.0

27 Jan 09:22
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.20.0...v6.21.0

v6.20.0

27 Jan 08:27
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.19.0...v6.20.0