Releases: Saulis/iron-data-table
Releases · Saulis/iron-data-table
v1.0.7 – Sorting Improvements
Changes:
- Sorting doesn't break anymore with
null
,undefined
or empty string values (thanks @christophe-g!)
v1.0.6 – Further Filtering Improvements
Changes:
- Empty (
""
) filters are now ignored when filtering items
v1.0.5 – Selection & Filtering Improvements
Changes:
selecting-all-items
anddeselecting-all-items
events are now fired when select all checkbox is clicked (thanks @NeilujD!)selecting-item
anddeselecting-item
are now fired when a multi-selection checkbox on a row is clicked (thanks @NeilujD!)- Filtering items containing
null
orundefined
values now work
v1.0.4 – Fixes to Filtering
Changes:
- Filtering works better now when no items are returned.
- Filtering
false
values work now
v1.0.3 – Auto Refresh
Changes:
autoRefresh
can be used to define a timeout after whichdataSource
is called after any of theitem
properties is changed inside the templates.
v1.0.2 – Fixes on the Selection Behaviour
Notable Changes:
- Selecting or Expanding the first row on Shady DOM now works correctly
multiSelection
no longer requiresselectionEnabled
for the user to tap on checkboxes- Loading spinner now works as it should
See Milestone for all the closed issues.
v1.0.1 – Selection and Expansion behavior extension
Changes:
selecting-item
anddeselecting-item
events added to help customizing behavior- See http://saulis.github.io/iron-data-table/demo/selecting.html for examples
expanding-item
andcollapsing-item
events added to help customizing behavior- See http://saulis.github.io/iron-data-table/demo/details.html for examples
v1.0.0 – Stable Release
Features (1.0)
- Virtual, 'infinite' scrolling provided by
<iron-list>
- Lazy Loading
- Multi-Column filtering
- Multi-Column sorting
- Item selection with Multi-Selection
- Template Support with Two-way binding
- Custom Header templates
- Row Details templates
- Custom styling support for templates
- Flex support for Cells
- Native Shadow DOM support
- Column manipulation, resizing, hiding, reordering
v1.0.0-rc1 – Release Candidate
Notable Changes:
- Whole
iron-icons
iconset isn't imported anymore (thanks to @web-padawan!) - Annotated computed functions and event listeners work now correctly
angular2
support moved to angular2-iron-data-table
v1.0.0-beta4 – Template bindings rewrite
Notable changes:
- In addition to header templates
[[column]]
is now available also in row cell templates - Most column properties are no longer
notify: true
because they don't change internally row-detail
template no updates properly[[item]]
changesrow-detail
template can be now injected from a parent component using<content>
beforeCellBind
is now called also for header cellsselectItem
can now be used even ifselectionEnabled
isfalse
- Expanding and Selecting the first row should now work
- Header cell container width now takes vertical scrollbar into account