@swimlane/ngx-datatable 20.1.0 → 21.0.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (139) hide show
  1. package/CHANGELOG.md +720 -0
  2. package/README.md +25 -4
  3. package/assets/app.css +4 -3
  4. package/assets/icons-reference.html +5 -1
  5. package/assets/icons.css +3 -2
  6. package/{fesm2020 → fesm2022}/swimlane-ngx-datatable.mjs +3404 -2536
  7. package/fesm2022/swimlane-ngx-datatable.mjs.map +1 -0
  8. package/index.css +224 -169
  9. package/index.scss +13 -3
  10. package/lib/components/body/body-cell.component.d.ts +28 -23
  11. package/lib/components/body/body-group-header-template.directive.d.ts +3 -4
  12. package/lib/components/body/body-group-header.directive.d.ts +14 -9
  13. package/lib/components/body/body-row-def.component.d.ts +34 -0
  14. package/lib/components/body/body-row-wrapper.component.d.ts +34 -22
  15. package/lib/components/body/body-row.component.d.ts +28 -34
  16. package/lib/components/body/body.component.d.ts +88 -69
  17. package/lib/components/body/ghost-loader/ghost-loader.component.d.ts +12 -0
  18. package/lib/components/body/progress-bar.component.d.ts +1 -1
  19. package/lib/components/body/scroller.component.d.ts +4 -7
  20. package/lib/components/body/selection.component.d.ts +21 -25
  21. package/lib/components/body/summary/summary-row.component.d.ts +4 -3
  22. package/lib/components/columns/column-cell.directive.d.ts +4 -3
  23. package/lib/components/columns/column-ghost-cell.directive.d.ts +6 -0
  24. package/lib/components/columns/column-header.directive.d.ts +3 -4
  25. package/lib/components/columns/column.directive.d.ts +43 -18
  26. package/lib/components/columns/tree.directive.d.ts +1 -2
  27. package/lib/components/datatable.component.d.ts +142 -76
  28. package/lib/components/footer/footer-template.directive.d.ts +3 -4
  29. package/lib/components/footer/footer.component.d.ts +3 -2
  30. package/lib/components/footer/footer.directive.d.ts +6 -4
  31. package/lib/components/footer/pager.component.d.ts +6 -4
  32. package/lib/components/header/header-cell.component.d.ts +18 -18
  33. package/lib/components/header/header.component.d.ts +41 -36
  34. package/lib/components/row-detail/row-detail-template.directive.d.ts +3 -4
  35. package/lib/components/row-detail/row-detail.directive.d.ts +9 -8
  36. package/lib/directives/disable-row.directive.d.ts +22 -0
  37. package/lib/directives/draggable.directive.d.ts +11 -8
  38. package/lib/directives/long-press.directive.d.ts +16 -5
  39. package/lib/directives/orderable.directive.d.ts +21 -10
  40. package/lib/directives/resizeable.directive.d.ts +7 -5
  41. package/lib/directives/visibility.directive.d.ts +2 -3
  42. package/lib/ngx-datatable.module.d.ts +29 -30
  43. package/lib/services/scrollbar-helper.service.d.ts +0 -1
  44. package/lib/types/internal.types.d.ts +31 -0
  45. package/lib/types/public.types.d.ts +142 -0
  46. package/lib/types/table-column.type.d.ts +39 -66
  47. package/lib/utils/column-helper.d.ts +2 -2
  48. package/lib/utils/column-prop-getters.d.ts +1 -1
  49. package/lib/utils/column.d.ts +7 -14
  50. package/lib/utils/keys.d.ts +6 -6
  51. package/lib/utils/math.d.ts +4 -3
  52. package/lib/utils/selection.d.ts +2 -2
  53. package/lib/utils/sort.d.ts +5 -5
  54. package/lib/utils/table-token.d.ts +7 -0
  55. package/lib/utils/tree.d.ts +2 -2
  56. package/package.json +9 -17
  57. package/public-api.d.ts +4 -11
  58. package/themes/_ghost.scss +22 -0
  59. package/themes/_rows.scss +22 -0
  60. package/themes/bootstrap.css +117 -65
  61. package/themes/bootstrap.scss +27 -3
  62. package/themes/dark.css +101 -70
  63. package/themes/dark.scss +12 -0
  64. package/themes/material.css +344 -260
  65. package/themes/material.scss +52 -11
  66. package/esm2020/lib/components/body/body-cell.component.mjs +0 -432
  67. package/esm2020/lib/components/body/body-group-header-template.directive.mjs +0 -16
  68. package/esm2020/lib/components/body/body-group-header.directive.mjs +0 -62
  69. package/esm2020/lib/components/body/body-row-wrapper.component.mjs +0 -140
  70. package/esm2020/lib/components/body/body-row.component.mjs +0 -262
  71. package/esm2020/lib/components/body/body.component.mjs +0 -863
  72. package/esm2020/lib/components/body/progress-bar.component.mjs +0 -27
  73. package/esm2020/lib/components/body/scroller.component.mjs +0 -91
  74. package/esm2020/lib/components/body/selection.component.mjs +0 -150
  75. package/esm2020/lib/components/body/summary/summary-row.component.mjs +0 -105
  76. package/esm2020/lib/components/columns/column-cell.directive.mjs +0 -14
  77. package/esm2020/lib/components/columns/column-header.directive.mjs +0 -14
  78. package/esm2020/lib/components/columns/column.directive.mjs +0 -98
  79. package/esm2020/lib/components/columns/tree.directive.mjs +0 -14
  80. package/esm2020/lib/components/datatable.component.mjs +0 -1008
  81. package/esm2020/lib/components/footer/footer-template.directive.mjs +0 -14
  82. package/esm2020/lib/components/footer/footer.component.mjs +0 -128
  83. package/esm2020/lib/components/footer/footer.directive.mjs +0 -35
  84. package/esm2020/lib/components/footer/pager.component.mjs +0 -181
  85. package/esm2020/lib/components/header/header-cell.component.mjs +0 -243
  86. package/esm2020/lib/components/header/header.component.mjs +0 -376
  87. package/esm2020/lib/components/row-detail/row-detail-template.directive.mjs +0 -16
  88. package/esm2020/lib/components/row-detail/row-detail.directive.mjs +0 -63
  89. package/esm2020/lib/directives/draggable.directive.mjs +0 -108
  90. package/esm2020/lib/directives/long-press.directive.mjs +0 -117
  91. package/esm2020/lib/directives/orderable.directive.mjs +0 -136
  92. package/esm2020/lib/directives/resizeable.directive.mjs +0 -93
  93. package/esm2020/lib/directives/visibility.directive.mjs +0 -63
  94. package/esm2020/lib/events.mjs +0 -7
  95. package/esm2020/lib/ngx-datatable.module.mjs +0 -139
  96. package/esm2020/lib/services/column-changes.service.mjs +0 -24
  97. package/esm2020/lib/services/dimensions-helper.service.mjs +0 -17
  98. package/esm2020/lib/services/scrollbar-helper.service.mjs +0 -37
  99. package/esm2020/lib/types/click.type.mjs +0 -6
  100. package/esm2020/lib/types/column-mode.type.mjs +0 -7
  101. package/esm2020/lib/types/contextmenu.type.mjs +0 -6
  102. package/esm2020/lib/types/selection.type.mjs +0 -9
  103. package/esm2020/lib/types/sort-direction.type.mjs +0 -6
  104. package/esm2020/lib/types/sort-prop-dir.type.mjs +0 -2
  105. package/esm2020/lib/types/sort.type.mjs +0 -6
  106. package/esm2020/lib/types/table-column.type.mjs +0 -2
  107. package/esm2020/lib/utils/camel-case.mjs +0 -28
  108. package/esm2020/lib/utils/column-helper.mjs +0 -95
  109. package/esm2020/lib/utils/column-prop-getters.mjs +0 -96
  110. package/esm2020/lib/utils/column.mjs +0 -69
  111. package/esm2020/lib/utils/elm-from-point.mjs +0 -38
  112. package/esm2020/lib/utils/id.mjs +0 -8
  113. package/esm2020/lib/utils/keys.mjs +0 -10
  114. package/esm2020/lib/utils/math.mjs +0 -146
  115. package/esm2020/lib/utils/prefixes.mjs +0 -38
  116. package/esm2020/lib/utils/row-height-cache.mjs +0 -138
  117. package/esm2020/lib/utils/selection.mjs +0 -40
  118. package/esm2020/lib/utils/sort.mjs +0 -127
  119. package/esm2020/lib/utils/throttle.mjs +0 -60
  120. package/esm2020/lib/utils/translate.mjs +0 -25
  121. package/esm2020/lib/utils/tree.mjs +0 -103
  122. package/esm2020/public-api.mjs +0 -64
  123. package/esm2020/swimlane-ngx-datatable.mjs +0 -5
  124. package/fesm2015/swimlane-ngx-datatable.mjs +0 -5979
  125. package/fesm2015/swimlane-ngx-datatable.mjs.map +0 -1
  126. package/fesm2020/swimlane-ngx-datatable.mjs.map +0 -1
  127. package/lib/events.d.ts +0 -3
  128. package/lib/services/dimensions-helper.service.d.ts +0 -10
  129. package/lib/types/click.type.d.ts +0 -4
  130. package/lib/types/column-mode.type.d.ts +0 -5
  131. package/lib/types/contextmenu.type.d.ts +0 -4
  132. package/lib/types/selection.type.d.ts +0 -7
  133. package/lib/types/sort-direction.type.d.ts +0 -4
  134. package/lib/types/sort-prop-dir.type.d.ts +0 -6
  135. package/lib/types/sort.type.d.ts +0 -4
  136. package/lib/utils/elm-from-point.d.ts +0 -8
  137. package/lib/utils/prefixes.d.ts +0 -1
  138. package/lib/utils/translate.d.ts +0 -1
  139. /package/{swimlane-ngx-datatable.d.ts → index.d.ts} +0 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,720 @@
1
+ # CHANGELOG
2
+
3
+ ## HEAD (unreleased)
4
+
5
+ ## 21.0.0-alpha.1
6
+
7
+ - Fix: Add missing package files from deployment.
8
+
9
+ ## 21.0.0-alpha.0
10
+
11
+ - Breaking: support for angular 19
12
+
13
+ ## 20.1.0
14
+
15
+ - Chore: Support for angular 13+
16
+
17
+ ## 20.0.0
18
+
19
+ - Breaking: Update to angular 12
20
+
21
+ ## 19.0.0
22
+
23
+ - Breaking: Update to angular 11
24
+
25
+ ## 18.0.0
26
+
27
+ - Breaking: Update to angular 10
28
+
29
+ ## 17.1.0
30
+
31
+ - Feature: Add sorting: unset icon
32
+
33
+ ## 17.0.0
34
+
35
+ - Chore: explicitly only support ng9
36
+
37
+ ## 16.1.1
38
+
39
+ - Chore: Patch release to override 16.1.0
40
+
41
+ ## 16.1.0
42
+
43
+ - Fix: [selectAllRowsOnPage] is broken. (#1809)
44
+ - Fix: Bug when using cellClass as string. (#1817)
45
+ - Fix: Docs. (#1812, #1837, #1845, #1854)
46
+ - Fix: redraw after recalculate (#1816)
47
+ - Fix: undefined row index for rows in groups (#1857)
48
+ - Chore: Add pretty-quick as a precommit hook using husky (#1841)
49
+ - Chore: Bump dependencies (#1858, #1862, #1859)
50
+
51
+ ## 16.0.3
52
+
53
+ - Bug: Fix disappearing rows with vertical scrollbar, virtual scrolling & rowdetail auto height (#1799)
54
+ - Bug: Fix memory leak due to created element not cleaned up (#1792)
55
+ - Bug: do not collapse row details when row updated (#1778)
56
+
57
+ ## 16.0.2
58
+
59
+ - Bug: Remove barrel files because ng-packagr doesn't work well with them
60
+
61
+ ## 16.0.1
62
+
63
+ - Bug: Include styles, assets and themes in release
64
+
65
+ ## 16.0.0
66
+
67
+ - Breaking: the release files are not under the `/release` folder any more. Also, paths to `themes` and `assets` have changed. If you are importing any assets or styles from the release folder, you would need to update the paths.
68
+ - Chore: Migrates the project to angular-cli, making it compatible with Ivy (#1738)
69
+ - Feature: Implements global module config via forRoot (#1688)
70
+ - Feature: Colors of material style can be modified by target application (#1651)
71
+ - Bug: Fixes Exception in scoller component destroy (#1685)
72
+ - Bug: Fixes issue 1686: column resizing issue in force columns mode (no horizontal scroll) when container get smaller (#1687)
73
+ - Docs: Updates demo pages (#1738)
74
+
75
+ ## 15.0.2
76
+
77
+ - Fix: Fixes issue where footer pagination does not work when virtual scrolling is enabled (#1704)
78
+
79
+ ## 15.0.1
80
+
81
+ - Fix: Fixes issue where using conditional templates would not render them (#1701)
82
+
83
+ ## 15.0.0
84
+
85
+ - Breaking: Upgrade to angular 8 (#1697)
86
+ - Fix: Module not found: Error: Can't resolve '.' (#1646)
87
+ - Fix: trackByProp can't work. (#1622)
88
+
89
+ ## 14.0.0
90
+
91
+ - Breaking: Upgrade to angular 7
92
+ - Fix: Fix compile error when using TemplateTypeCheck set to true (#1520)
93
+
94
+ ## 13.1.0
95
+
96
+ - Feature: Added support for tree grid (#1273)
97
+ - Fix: Improve virtualization as a flag (#1297)
98
+ - Fix: Fix issue when count is undefined #838 (#1499)
99
+ - Fix: Fix usage withing prerendered SPA (#1438)
100
+
101
+ ## 13.0.1
102
+
103
+ - Fix: Run scroll event listeners inside angular zone (#1375)
104
+
105
+ ## 13.0.0
106
+
107
+ - Breaking: Fixes several issues related to the summary row feature #1418
108
+ - Fix: DataTableColumnDirective Input Binding Changes #1384
109
+ - Fix: angular version #1420
110
+ - Fix: issues when running npm run build --prod #1410
111
+
112
+ ## 12.0.0
113
+
114
+ - Breaking: Upgraded to Angular 6 #1400
115
+ - Feat: Added reorderable input #1261
116
+ - Fix: Fixed rowHeight type in body component #1295
117
+ - Fix: Fixed row selection for bootstrap theme #1357
118
+ - Fix: Reflect minWidh & maxWidth props to body cell #1361
119
+
120
+ ## 11.3.0
121
+
122
+ - Feat: Added summary row #1233
123
+ - Fix: Fixed issue wi
124
+ th misaligned body content #1326
125
+ - Fix: Fixed Default Sort Behavior Of Table With Custom Templates #1308
126
+ - Chore: Fixed link in column api docs #1343
127
+ - Chore: Fixed typo in docs #1342
128
+
129
+ ## 11.2.0
130
+
131
+ - Feat: Add resize handler for non-resizable columns #1225
132
+ - Fix: Pager Component Accessibility #1259
133
+ - Fix: Fix missing row with virtualization and scrollbarV #1235
134
+ - Fix: Fall back to view mode when select field value doesn't change #1241
135
+ - Fix: Fix virtual-paging #1229
136
+ - Fix: Fix column scaling on resize #1236
137
+ - Fix: Propagate sortDir changes to template #1243
138
+ - Fix: Add setStylesByGroup() in set column prop #1244
139
+
140
+ ## 11.1.7
141
+
142
+ - Fix: Fix error w/ rows undefined on init
143
+
144
+ ## 11.1.6
145
+
146
+ - Bug: Ignore rxjs/operators
147
+ - Feat: Ability to disable virtualization #1191
148
+ - Feat: Universal Support #1178
149
+
150
+ ## 11.1.5
151
+
152
+ - Compat: Fix Angular 4.x Compat
153
+
154
+ ## 11.1.4
155
+
156
+ - Bug: Fix column templates not updating with loops/ifs
157
+ - Bug: Fix sorting on cross browser
158
+ - Chore: Switch to lettable operators
159
+
160
+ ## 11.1.3
161
+
162
+ - Bug: Angular SSR Event Undefined (#1144)
163
+
164
+ ## 11.1.2
165
+
166
+ - Bug: Fix total undefined (#1140)
167
+
168
+ ## 11.1.1
169
+
170
+ - Bug: Fix race case with rows
171
+
172
+ ## 11.1.0
173
+
174
+ - Perf: Better performance on scrolling y and x
175
+ - Feature: Select All on Current Page (#1132)
176
+ - Bug: Don't show empty on loading (#1139)
177
+
178
+ ## 11.0.4
179
+
180
+ - Bug: Fix Angular5 Aot Issue
181
+ - Bug: Fix Vendor Prefix Error
182
+
183
+ ## 11.0.1, 11.0.2, 11.0.3
184
+
185
+ - Bug: Angular 5 bugs
186
+
187
+ ## 11.0.0
188
+
189
+ - Chore: Upgrade to Angular5
190
+
191
+ ## 10.4.0
192
+
193
+ - Feature: Ability to filter checkable rows (#1056)
194
+ - Feature: Allow sorting based on whole row (#1074)
195
+ - Bug: Fix protractor events (#1081)
196
+ - Bug: Fix misalignment on smaller screens (#1081)
197
+
198
+ ## 10.3.0
199
+
200
+ - Feature: Bootstrap theme
201
+ - Bug: Fix CSS for row grouping (#1053)
202
+ - Bug: Fix group row values (#1034)
203
+ - Bug: Fix cell overflow w/ fluid height (#1030)
204
+ - Bug: Fix for column sort (#1018)
205
+ - Bug: Strip HTML for null values (#966)
206
+ - Bug: Update context in cell header (#935)
207
+ - Bug: Add bounds to offset (#978)
208
+ - Bug: Make selection apply to all rows (#974)
209
+
210
+ ## 10.2.3
211
+
212
+ - Bug: Fix checkbox not being shown #956
213
+ - Bug: Fix IE displaying null #967
214
+ - Bug: Fix emptry string is row is null #951
215
+
216
+ ## 10.2.2
217
+
218
+ - Bug: Recalculate limit properly #963
219
+
220
+ ## 10.2.1
221
+
222
+ - Bug: Detail Row Broken
223
+
224
+ ## 10.2.0
225
+
226
+ - Feature: Row Grouping
227
+
228
+ ## 10.1.0
229
+
230
+ - Feature: Row Hover Event
231
+ - Bug: Columns are no longer mutated!
232
+ - Bug: Fixes for Angular v5!
233
+ - Bug: Fix expand all row detail not working #917
234
+ - Chore: Remove useless jsdoc comments
235
+
236
+ ## 10.0.5
237
+
238
+ - Style: Material styles closer to spec
239
+ - Bug: Non-sortable header showing pointer cursor
240
+
241
+ ## 10.0.4
242
+
243
+ - Perf: Changed everything internal to OnPush
244
+ - Perf: Fixed header cell outlet cd
245
+ - Bug: Fixed sort mutating original rows
246
+
247
+ ## 10.0.3
248
+
249
+ - Perf: Better performance in cells
250
+
251
+ ## 10.0.2
252
+
253
+ - Enhancement: Add `rowIndex` to row-detail template
254
+ - Bug: Add `index.css` back to build
255
+
256
+ ## 10.0.1
257
+
258
+ - Bug: Fix old references to `$$index` and `$$expanded`
259
+ - Bug: Add `$$index` in cell templates as `rowIndex`
260
+ - Bug: Fix MouseEvent undefined in JIT (#893)
261
+
262
+ ## 10.0.0
263
+
264
+ - BREAKING: `$$expanded` is no longer on row of detail templates, use `let-expanded` to get pop now
265
+ - Feature: Always center activated page on pager
266
+ - Bug: Remove row mutations of `$$index` and `$$expanded`
267
+ - Bug: Pagination broken on large number of rows
268
+ - Bug: Strip HTML from title tags (#892)
269
+
270
+ ## 9.3.1
271
+
272
+ - Bug: More Universal Rendering Fixes (#795)
273
+ - Chore: Build optimizations from new webpack version
274
+
275
+ ## 9.3.0
276
+
277
+ - Feature: Unviseral Rendering (#764)
278
+
279
+ ## 9.2.0
280
+
281
+ - Enhancement: Add header context menu event
282
+ - Bug: Fix sort blowing up when undefined and adding new sort
283
+ - Bug: Fix multi-selection key with Mac
284
+
285
+ ## 9.1.0
286
+
287
+ - Enhancement: Add more context to cells #720
288
+ - Enhancement: Export Pager component #735
289
+ - Bug: Header checkbox when row selection is changed #659
290
+ - Bug: When rowClass() returns a string, the class is not properly added #710
291
+ - Bug: Rename icons so don't conflict with other libs #729
292
+
293
+ ## 9.0.0
294
+
295
+ - BREAKING: Fixes for external pagination fixes. Index calculation change being last page = `0 + pageSize` (#714, #138, #391)
296
+ - Feature: Server-side virtual scrolling pagination
297
+ - Demos: Deep linking of demo pages
298
+
299
+ ## 8.2.1
300
+
301
+ - Bug: Fix footer styles
302
+
303
+ ## 8.2.0
304
+
305
+ - Feature: Footer Templates
306
+
307
+ ## 8.1.0
308
+
309
+ - Feature: Dark Theme
310
+
311
+ ## 8.0.1
312
+
313
+ - Bug: Fix memory leak (#702)
314
+ - Bug: Don't add column header title attribute when custom template provided (#643)
315
+ - Bug: Only apply pointer to header text (#682)
316
+ - Bug: Fix prop field name with dots (#596)
317
+ - Bug: Virtual scroll + dynamic height in cell detail not working right (#703)
318
+ - Bug: Fix dynamic row height not working right if using server-side pagination
319
+ - Chore: Implement `noImplicitAny` (#671)
320
+
321
+ ## 8.0.0
322
+
323
+ - Breaking: Removed `cssClass` from columns in favor of explicit
324
+ - Feature: Added explicit `headerClass` and `cellClass`
325
+ - Feature: Add ability to have callback for those class getters
326
+ - Bug: Fix checkbox select all not updating ui correctly
327
+
328
+ ## 7.3.1
329
+
330
+ - Bug: Fix resize handle drag triggering long press
331
+ - Bug: Fix dragging trigging column sorting
332
+ - Bug: Fix column re-ordering not working on FF
333
+
334
+ ## 7.3.0
335
+
336
+ - Feature: Dynamic row heights for virtual scrolling
337
+ - Bug: Do not use `document` for universal support (#668)
338
+
339
+ ## 7.2.1
340
+
341
+ - Bug: Fix missing type
342
+
343
+ ## 7.2.0
344
+
345
+ - Feature: Allow for dynamic Detail Row heights (#653)
346
+ - Feature: Numeric prop support via support array rows (#494)
347
+ - Perf: Optimize sort code by caching valueGetter and compareFn outside loop.
348
+ - Perf: Set ValueGetter on `TableColumn.$$valueGetter`
349
+ - Bug: Alter setColumnDefaults to work with numeric prop values.
350
+
351
+ ## 7.1.1
352
+
353
+ - Perf: Fix memory leaks with templates (#464)
354
+ - Bug: Fix row detail expanded and then collapsed not showing anything until scroll
355
+
356
+ ## 7.1.0
357
+
358
+ - Bug: Fix title not set on cell template (#629)
359
+ - Chore: Update to official Angular4
360
+ - Chore: Misc build dep updates
361
+
362
+ ## 7.0.0
363
+
364
+ - BREAKING: Update to Angular4!
365
+ - Feature: Row classes (#571), (#348)
366
+ - Bug: Show first page after sorting (#553)
367
+ - Bug: When reordering and skipping a column, the column gets duplicated (#497), (#562), (#563)
368
+ - Chore: Upgrade misc deps and lint fixes
369
+
370
+ _NOTE: If you need support for ~Angular2, use version 6.x._
371
+
372
+ ## 6.3.0
373
+
374
+ - Bug: Perform sort when sort icon is clicked (#536)
375
+ - Bug: Fix resize handle overlaped by label (#521)
376
+ - Chore: Fix relative imports for rollup (#542)
377
+ - Chore: Linting
378
+
379
+ ## 6.2.1
380
+
381
+ - Bug: Revert #516 causing server-side paging issue (#543)
382
+
383
+ ## 6.2.0
384
+
385
+ - Bug: Fix AoT builds with SCSS (#534)
386
+ - Bug: Fix offset incorrect when filtering (#516)
387
+ - Bug: Fix mouse press subscription cleanups (#522)
388
+ - Bug: Fix header cell wrapper empty span (#504)
389
+ - Bug: Fix selected count undefined in footer template (#537)
390
+ - Bug: Fix orderable unsubscribe listeners (#538)
391
+ - Chore: Update Angular and ZoneJS
392
+
393
+ ## 6.1.2
394
+
395
+ - Bug: Fix default sort (#475)
396
+
397
+ ## 6.1.1
398
+
399
+ - Bug: Fix tree-shaking issue (#511)
400
+
401
+ ## 6.1.0
402
+
403
+ - Feature: Add selected count in footer (#508)
404
+ - Bug: Fix drag/drop/long-press (#506)
405
+ - Bug: Fix row widths not set correctly (#510)
406
+ - Perf: Better mouseup handling (#507)
407
+ - Chore: Bump Depedencies
408
+
409
+ ## 6.0.2
410
+
411
+ - Bug: Move scss to release dir (#459)
412
+
413
+ ## 6.0.1
414
+
415
+ - Bug: Fix CSS not working with AoT (#459)
416
+ - Chore: Fix ExtractText plugin causing build issue
417
+ - Chore: Upgrade Angular 2.4.5
418
+
419
+ ## 6.0.0 (2017-01-25)
420
+
421
+ - BREAKING: Renamed `datatable` css class to `ngx-datatable`
422
+ - BREAKING: Embedded core css file with Angular `styleUrls`
423
+ - Enhancement: Allow sorting from inline templates (#431)
424
+ - Enhancement: Fix re-ordering columns throwing errors (#438)
425
+ - Enhancement: Add nice drag indicator to material theme
426
+ - Chore: Update Depedencies
427
+
428
+ ## 5.0.0
429
+
430
+ - BREAKING: Re-worked all inputs, methods and outputs of row detail to its own container
431
+ - Enhancement: Implement Finder/Explorer shift selection behavior
432
+ - Bug: Fix reverse selection de-selecting first index in reverse
433
+ - Bug: Fix row detail not rendering
434
+
435
+ ## 4.2.0
436
+
437
+ - Enhancement: Ability to add CSS Classes on Header/Column
438
+ - Bug: Fix CPU Perf on Resort (#409)
439
+ - Chore: Upgrade to Angular ^2.4.3
440
+ - Chore: Correct RxJS Imports
441
+
442
+ ## 4.1.0
443
+
444
+ - Feature: Adding multi-click selection
445
+ - Bug: Use tracking fn vs inline (#388)
446
+ - Bug: Fix AoT header issue (#389)
447
+ - Bug: Fix `reorderable` not being honored (#387)
448
+ - Bug: Fix multi-select CTRL not working (#381)
449
+ - Chore: Upgrade Angular to ^2.4.1
450
+ - Docs: Multi-select
451
+
452
+ ## 4.0.0
453
+
454
+ - BREAKING!!!! - Renamed project from `angular2-datatable` to `ngx-datatable`
455
+ and updated components from `<swui-datatable>` to `<ngx-datatable>`
456
+
457
+ ## 3.0.0
458
+
459
+ - BREAKING: Removed `shiftMulti` option, its not useful and creates odd scenarios
460
+ - Bug: Permanently high CPU utilization after sorting (#359)
461
+ - Bug: Fix checkbox showing in header if defined but not using checkbox select
462
+ - Bug: Fix AoT errors (#370)
463
+ - Bug: Fix build not outputing AoT files in correct directory
464
+ - Bug: Fix checkbox selection not working w/ shift key
465
+ - Chore: Upgrade Angular/Webpack
466
+
467
+ ## 2.2.3
468
+
469
+ - Bug: Fix header checkbox mutating selection array
470
+
471
+ ## 2.2.2
472
+
473
+ - Bug: Fix default selections and don't mutate selection arrow now
474
+
475
+ ## 2.2.1
476
+
477
+ - Bug: Fix AoT by reverting TypeScript upgrade until CLI is updated
478
+
479
+ ## 2.2.0
480
+
481
+ - Bug: Fix AoT private props (#352)
482
+ - Bug: Added null chk to selection getter (#340)
483
+ - Bug: multiShift not working after first page (#294)
484
+ - Chore: Update Angular to 2.3.0
485
+ - Chore: Update TypeScript to 2.1.x
486
+ - Chore: Update RxJS to 5.0.0-rc.4
487
+ - Chore: Update ZoneJS to 0.7.2
488
+ - Demo: Add templates for Webpack plugin for Google Analytics
489
+
490
+ ## 2.1.3
491
+
492
+ - Bug: Fix footer not updating when all removes removed
493
+ - Bug: Fix Add/Remove items in array not updating (#255)
494
+
495
+ ## 2.1.2
496
+
497
+ - Bug: Fix sizing method being debounced on view inits rather than just window resize.
498
+
499
+ ## 2.1.1
500
+
501
+ - Bug: Fix memory leak with visibility observer
502
+
503
+ ## 2.1.0
504
+
505
+ - Feature: Checkbox selection mode
506
+ - Enhancement: Selection mode auto added to host class for easier styling
507
+ - Style: Remove row active/select state when in cell mode of material theme
508
+ - Bug: Force fill column mode w/ scrollbarH false allowing bleed when resized
509
+ - Perf: Faster render time by adding css class via host
510
+ - Perf: Debounce window resize calcs
511
+
512
+ ## 2.0.0
513
+
514
+ - BREAKING: Rename from `datatable` to `swui-datatable` (#320)
515
+ - BREAKING: Redo how row-detail/cell/header templates are described in markup (#304)
516
+ - BREAKING: Change Detection switched back to normal
517
+ - Enhancement: Row Context Menu Event `rowContextmenu` (#331)
518
+ - Bug: Set default value for selected (#314)
519
+ - Bug: Fix widths being int vs float (#309)
520
+ - Bug: Fix column resize not setting widths to the right (#308)
521
+ - Bug: Fix row object mutations (#255)
522
+ - Bug: Async Problem when using @Input (#253)
523
+ - Bug: Sort doesn't work on the first click (#254)
524
+ - Bug: Pagination "skip to last page" is not selected after click (#324)
525
+ - Bug: ngFor Not working in the datatable-row-detail-template (#274)
526
+ - Chore: Resolve all implicit `any`s (#330)
527
+ - Chore: Bump Angular to latest `2.2.4`
528
+
529
+ ## 1.7.0
530
+
531
+ - Enhancement: Add RxJS Support
532
+ - Chore: Fix builds on windows
533
+
534
+ ## 1.6.0
535
+
536
+ - Bug: Column headers not re-ordering (#238)
537
+ - Bug: Datatable doesn't sort data correctly when data changed (#284)
538
+ - BREAKING: `comparator` now is a normal sort function arguments of `propA, propB`.
539
+
540
+ ## 1.5.1
541
+
542
+ - Bug: Custom comparator should return new array (#286)
543
+ - Bug: Init selection to empty array (#285)
544
+
545
+ ## 1.5.0
546
+
547
+ - Enhancement: `externalSorting` input for simpler server-sorting usage (#281)
548
+ - Enhancement: Add `trackByProp` for change detection with mutation of row data
549
+ - Bug: Row height variable access protection (#280)
550
+ - Chore: Upgrade to Angular 2.2.0
551
+ - Demo: Inline editing updates
552
+ - Demo: Live data refresh demo
553
+ - Breaking: Remove `refresh` method per recommendation by @robwormald
554
+
555
+ ## 1.4.1
556
+
557
+ - Bug: Ignore next page when already at last (#223)
558
+ - Chore: Redid Webpack Config to be clean
559
+ - Chore: TESTS! TRAVIS BUILDS! COVERAGE REPORTING!
560
+
561
+ ## 1.4.0
562
+
563
+ - Enhancement: Added `refresh` API for updating table (#255)
564
+ - Bug: Fix intersection observer type errors (#268)
565
+
566
+ ## 1.3.1
567
+
568
+ - Bug: Fix force column width distribution overriding new resize (#245)
569
+
570
+ ## 1.3.0
571
+
572
+ - Enhancement: `selectCheck` fn to prevent selection
573
+ - Bug: Fix columns leaking event handlers
574
+ - Bug: Fix column toggling errors (#245)
575
+ - Bug: Fix AoT Metadata not creating
576
+
577
+ ## 1.2.0
578
+
579
+ - Bug: Fix columns loosing templates on resize (#252)
580
+ - Bug: Fix pager not having right pages when hidden by default
581
+ - Bug: Fix expressive column width as attribute with standard column distribution
582
+ - Bug: Fix body columns not readjusting after window resize (#251)
583
+ - Enhancement: Refactor `emptyMessage` and `totalMessage` to `messages` object
584
+ - Enhancement: Huge perf improvement for tables hidden by default
585
+
586
+ ## 1.1.0
587
+
588
+ - Feature: NGC Complation
589
+ - Bug: Null value in deepValueGetter (#243)
590
+ - Chore: Update Depedencies
591
+
592
+ ## 1.0.0
593
+
594
+ - Feature: Cell Selection and Keyboard Navigation
595
+ - Feature: `activation` events
596
+ - Enhancement: `OnPush` all the things!
597
+ - Enhancement: Add `totalMessage` option for localization
598
+ - Enhancement: Demo Page
599
+ - Enhancement: Page Count Formatted
600
+ - Enhancement: Automatically format column `prop` when no `name` passed
601
+ - Enhancement: Add ability to pass false to `comparator` for sort handling via event
602
+ - Bug: Window resize not updating rows in virtual scrolling
603
+ - Chore: Switch to SemVer
604
+ - BREAKING: `TableOptions` has been removed and options are `Input` on component now
605
+ - BREAKING: `TableColumn` class has been removed, just pass normal objects
606
+ - BREAKING: Event names has been renamed using Angular2 standards
607
+ - BREAKING: Components have been renamed to Angular2 standards
608
+ - BREAKING: Removed `StateService`
609
+
610
+ ## 0.12.0
611
+
612
+ - Bug: Return empty string on undefined deep values (#232)
613
+ - Bug: Fix force fill alog (#218)
614
+ - Enhancement: Support for other icon types (#235)
615
+ - Enhancement: Add ability to identify rows for proper selection (#154)
616
+
617
+ ## 0.11.2
618
+
619
+ - Enhancement: Add ability to define css icon classes for pager / header
620
+ - Chore: Uprade to Angular 2.1.1
621
+
622
+ ## 0.11.1
623
+
624
+ - Chore: Polish on new build
625
+
626
+ ## 0.11.0
627
+
628
+ - Chore: New build process
629
+ - Bug: Fix detail row bug (#212)
630
+
631
+ ## 0.10.1
632
+
633
+ - Bug: Fix `$$expanded` undefined with server paging (#210)
634
+
635
+ ## 0.10.0
636
+
637
+ - Chore: Upgrade to Angular 2.1.0 (#202)
638
+ - Chore: Removed engine restrictions (#195)
639
+ - Bug: windows builds with node-sass (#207)
640
+ - Bug: resizing not closing correctly (#196)
641
+ - Bug: Fix height paging (#208)
642
+ - Enhancement: Improve Active CSS (#204)
643
+ - Enhancement: Add Empty Message (#194)
644
+ - Enhancement: Add deep value getter to sortRows function (#181)
645
+ - Enhancement: Sort Classes are applied to body cells (#166)
646
+ - Enhancement: AoT Compatibility (#199)
647
+ - Feature: Row Detail (#201)
648
+
649
+ ## 0.9.3
650
+
651
+ - Column resize sometimes gives weird behaviour on mouse resize/click (#155)
652
+ - Fix order of setters in DataTable ngOnChanges (#179)
653
+ - Remove document event listener subscription leak in draggable & resizeable
654
+ - Fix `setScrollTop` undefined error (#182)
655
+
656
+ ## 0.9.2
657
+
658
+ - Fix `name` being `undefined` introduced in 0.9.0 release
659
+
660
+ ## 0.9.1
661
+
662
+ - Export component references for external consumption (#176)
663
+
664
+ ## 0.9.0
665
+
666
+ - Fix accidental breaking change of renaming `HeaderCell` column property to `model`. See [commit](https://github.com/swimlane/angular2-data-table/commit/6c56b51ab918e380edb0d511730b28e66cb80afe#diff-aee46548d5e0b9f72917dd179250d4fe).
667
+ - Ensure minWidth and maxWidth values are specified saved as numbers (#167)
668
+ - Add row double click option (#168)
669
+
670
+ ## 0.8.0
671
+
672
+ - Added the ability to define header templates expressively
673
+ _Breaking Change!_ Renamed `template` to `cellTemplate` in column options
674
+
675
+ ## 0.7.4
676
+
677
+ - Removed #142 in favor of style height
678
+ - Fixed issue with height + scrollbarV not sizing right
679
+ - Fix limit not applied (#133)
680
+ - Fix sort not resetting to top of page (#136)
681
+ - Added option validation
682
+
683
+ ## 0.7.3
684
+
685
+ - Huge perf bumps (#149)
686
+
687
+ ## 0.7.2
688
+
689
+ - Build fixes
690
+
691
+ ## 0.7.1
692
+
693
+ - Removed template wrapper in favor of native template outlet
694
+
695
+ ## 0.7.0
696
+
697
+ - Upgrade Angular 2.0.1 & ZoneJS
698
+ - Angular Code Style Compliance (#147)
699
+ - Fix initial load of rows jumbled (#156)
700
+ - Update row/options setting to ngOnChanges (#151)
701
+ - Fix column height not set correctly (#144)
702
+
703
+ ## 0.6.1
704
+
705
+ - Virtual Scrolling Emits Paging (#130)
706
+
707
+ ## 0.6.0
708
+
709
+ - Update to Angular 2.0.0!
710
+ - Fix horizontal header issue (#129)
711
+
712
+ ## 0.5.1
713
+
714
+ - Fixed Multiple Tables on Same Page (#103)
715
+ - Fix TS Helpers not being included in release (#107)
716
+ - Update `onPage` API to reflect docs (#116)
717
+
718
+ ## 0.5.0
719
+
720
+ - Upgrade to Angular2 RC7