Skip to content

Latest commit

 

History

History
140 lines (91 loc) · 3.58 KB

HISTORY.md

File metadata and controls

140 lines (91 loc) · 3.58 KB

>= 6.3.2

  • Bump dependency 'mixin-deep' from 1.3.1 to 1.3.2 (see: AdeleD#283).

>= 6.3.1

  • Handle 'forcePage' value if set from outside (see: AdeleD#272).

>= 6.3.0

  • Add the ariaLabelBuilder feature to customize aria-label attributes (see: AdeleD#260).

>= 6.2.1

  • Fix the breakLabel prop type in the BreakView component (see: AdeleD#257).

>= 6.2.0

  • Add the breakLinkClassName prop.

>= 6.1.0

  • Add aria-disabled prop to anchors for accessibility (AdeleD#254)
  • Setup eslint and prettier for dev

>= 6.0.0

  • Implement forward/backward jump when clicking on a breakview (ellipsis).
  • The 'breakLabel' prop should not receive an <a> tag anymore. Otherwise, a warning will appear in the JS console: validateDOMNesting(...): <a> cannot appear as a descendant of <a>.

>= 5.3.1

  • Tests improvements + fix package release (AdeleD#245).

>= 5.3.0

  • Add the activeLinkClassName property.

>= 5.2.5

  • Upgrade webpack dev dependencies (Fix "Cannot read property 'properties' of undefined" from webpack-cli).

>= 5.2.4

  • Use ES6 export in react_components/index.js (AdeleD#203).

>= 5.2.3

  • Add a role="button" on <a> tags to let screen readers know explicitly that links (without href) are intended to be interactive elements (AdeleD#212).

>= 5.2.2

  • Remove the useless node_modules folder from the previous release (AdeleD#208).

>= 5.2.1

  • Fix disabledClassName not used in previous and next classnames (AdeleD#204).

>= 5.2.0

  • Delete the dependency on react-addons-create-fragment.
  • Delete the dependency on classnames.

>= 5.1.0

  • Refactor using destructuring.
  • Upgrade react-hot-loader to version 3.0.0 (dev dependency).

>= 5.0.0

  • Compatibility with React v16.0

>= 4.3.0

  • The HTML attribute aria-label has been added.
  • A new prop extraAriaContext allows to add some extra text to the end of the aria-label to provide additional context to the users.

>= 4.2.0

  • A new prop hrefBuilder has been added. It allows to add custom href attributes on <a> tags of the component.
  • Packages react and react-addons-create-fragment are now dependencies (see package.json).

>= 4.0.0

  • Some variable have been renamed:

    • clickCallback -> onPageChange
    • initialSelected -> initialPage
    • forceSelected -> forcePage
    • pageNum -> pageCount
  • onClick events have been moved on <a> tags (previously on <li>s).

>= 3.0.0

clickCallback (onPageChange) isn't called during initialization anymore.

>= 1.0.0

HTML Structure:

<ul class="pagination">
  <li class="disabled">
    <a href="#"><span>«</span></a>
  </li>
  <li class="active"><a href="#">1</a></li>
  <li><a href="#">2</a></li>
  <li><a href="#">3</a></li>
  <li><a href="#">4</a></li>
  <li><a href="#">5</a></li>
  <li>
    <a href="#"><span>»</span></a>
  </li>
</ul>

<= 0.5.7

HTML Structure:

<ul>
  <li class="disabled">
    <a href="#"><span>«</span></a>
  </li>
  <li>
    <ul>
      <li class="active"><a href="#">1</a></li>
      <li><a href="#">2</a></li>
      <li><a href="#">3</a></li>
      <li><a href="#">4</a></li>
      <li><a href="#">5</a></li>
    </ul>
  </li>
  <li>
    <a href="#"><span>»</span></a>
  </li>
</ul>