Releases: purecloudlabs/fixtable-ember
v3.0.0
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 forfixtable
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
v2.0
- Upgraded to fixtable 2.0
v1.4.0
v1.3.1
v1.3.0
v1.2.0
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.