Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

Releases: IvyApp/ivy-tabs

v4.0.0

13 Aug 00:30
Compare
Choose a tag to compare

4.0.0 (2020-08-13)

Bug Fixes

  • address linting errors (044dffd)
  • remove role presentation from li, update readme (7c748bf)

Build System

  • bump ember-cli from 3.9.0 to 3.10.1 (e5051e0)

BREAKING CHANGES

  • Drops support for Node 6

v3.3.0

17 Mar 21:07
911ee07
Compare
Choose a tag to compare
  • Add "aria-live" to tablists for reporting tab changes to the user.
  • Add optional "aria-label" to tablists to improve screenreader reporting.
  • Give active tabpanels tabindex 0 to allow keyboard navigation to the active panel content.
  • Use a temporary "presentation" role for tablists until tabs are inserted and the "tablist" role is then allowed. See emberjs/ember.js#16379.

v3.2.0

08 Mar 00:57
51c753c
Compare
Choose a tag to compare
  • No longer trigger selection actions during Component destruction.
  • #33 Remove jQuery usage. Thanks to @smfoote and @dxprog.
  • #37 Move to modules API. Thanks to @sutori.

v3.1.0

08 Mar 00:58
Compare
Choose a tag to compare
  • #32 Add Ember 2.10 support.

v3.0.2

08 Mar 00:59
Compare
Choose a tag to compare
  • Remove throw when a tab is not found by index or model. Add "dynamic tabs" example page to the dummy app.
  • Switch from globals to modules.

v3.0.1

08 Mar 00:59
Compare
Choose a tag to compare
  • #25 Fix a deprecation warning when tab panels are defined before the tab list.

v3.0.0

08 Sep 14:59
Compare
Choose a tag to compare

This release introduces several breaking changes from the 2.x series. Refer
to the README for current usage.

  • #24 "Namespace" components under ivy-tabs-*
  • #23 Remove tagName values except for tabs, which are now anchor tags by default.
  • #21 Select tabs by a (now required) model value, rather than tab index.
    • Rename selectedIndex on ivy-tabs to selection.
    • Move on-select action from ivy-tabs to individual tabs.
  • #22 Remove isVisible manipulation and rely on application styles for presentation management.

v2.0.0

08 Sep 15:02
Compare
Choose a tag to compare

This release drops support for Ember < 2.3.

  • #13 Data down, Actions up.
  • #15 Add aria-hidden to ivy-tab-panel.
  • #12 Convert to contextual components.