Skip to content

Releases: purecloudlabs/fixtable-ember

v3.0.0

11 Apr 20:40
Compare
Choose a tag to compare

Changes

New features:

  • You can now add custom row click handlers.

Bug fixes:

  • Row selection now works correctly even when the table is filtered/sorted/paginated.

Miscellaneous:

  • The core Fixtable dependency is now pulled in using NPM instead of Bower, which eliminates this addon's usage of Bower.

Upgrading from versions 1+ to version 3

If you're upgrading from an older version of fixtable-ember to version 3, you should be aware of a few breaking changes:

  • The row selection handler now returns an array of the full selected data rows to the consumer, rather than indices into the visible content.

  • The row selection handler is now called (with an empty array) whenever the onReloadContent handler is called, so that consumers don't have to monitor both events if they only care about selection.

  • The fixtable Bower package is no longer required by this addon. Prior installations of this addon may have added a line for fixtable to your app's bower.json when you ran this addon's blueprint -- you should remove that Bower dependency. (It shouldn't cause problems, but it's no longer needed.)

v2.0.1

07 Mar 21:09
Compare
Choose a tag to compare

Small fix to package.json semver for the sake of CI tests.

v2.0

07 Mar 20:33
Compare
Choose a tag to compare
  • Upgraded to fixtable 2.0

v1.4.0

06 Mar 19:54
Compare
Choose a tag to compare
  • Added the ability for a consumer to customize the possible page sizes used for pagination.
  • Upgraded Ember version to 2.11.

v1.3.1

11 Jan 21:08
Compare
Choose a tag to compare

Patched an issue where, in consuming apps running Ember 2.10, a helper could not be found and the component would not render.

v1.3.0

10 Jan 16:38
Compare
Choose a tag to compare

Features added:

  • Support for custom filter types.

Miscellaneous:

  • Refactored code in the component's JS file.
  • Cleaned up the README and dummy/test app.

v1.2.0

15 Nov 23:44
Compare
Choose a tag to compare

Trying out the GitHub release/version workflow so I have somewhere to write release notes. :)

Features added:

  • Optional placeholder text for column filter fields.
  • Action bubbling from custom cell components to fixtable-grid consumer.

Miscellaneous:

  • Dummy app now has an /editable route that provides examples of how to use the fixtable-grid with observable data.