@firestitch/list 12.12.3 → 12.12.4

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 (58) hide show
  1. package/app/classes/data-controller.d.ts +2 -1
  2. package/app/classes/reorder-controller.d.ts +7 -2
  3. package/app/classes/selection-controller.d.ts +5 -0
  4. package/app/components/body/body.component.d.ts +2 -2
  5. package/app/components/body/row/actions/actions.component.d.ts +0 -1
  6. package/app/components/body/row/menu-action/menu-action.component.d.ts +3 -1
  7. package/app/components/body/row/row.component.d.ts +2 -0
  8. package/app/components/list/list.component.d.ts +14 -7
  9. package/app/directives/draggable-list/draggable-list.directive.d.ts +12 -3
  10. package/app/directives/draggable-row/draggable-row.directive.d.ts +2 -0
  11. package/app/directives/heading/heading.directive.d.ts +5 -0
  12. package/app/directives/index.d.ts +2 -0
  13. package/app/directives/subheading/subheading.directive.d.ts +5 -0
  14. package/app/fs-list.module.d.ts +21 -19
  15. package/app/interfaces/listconfig.interface.d.ts +7 -4
  16. package/app/models/row/group-footer-row.d.ts +1 -1
  17. package/app/models/row/group-row.d.ts +1 -0
  18. package/app/models/row-action.model.d.ts +0 -2
  19. package/app/models/row.d.ts +1 -1
  20. package/app/pipes/action-label.d.ts +8 -0
  21. package/app/pipes/index.d.ts +1 -0
  22. package/bundles/firestitch-list.umd.js +435 -198
  23. package/bundles/firestitch-list.umd.js.map +1 -1
  24. package/esm2015/app/classes/data-controller.js +36 -18
  25. package/esm2015/app/classes/list-controller.js +2 -3
  26. package/esm2015/app/classes/reorder-controller.js +21 -7
  27. package/esm2015/app/classes/selection-controller.js +16 -2
  28. package/esm2015/app/components/body/body.component.js +4 -5
  29. package/esm2015/app/components/body/row/actions/actions.component.js +3 -8
  30. package/esm2015/app/components/body/row/cell/cell.component.js +22 -7
  31. package/esm2015/app/components/body/row/inline-action/inline-action.component.js +3 -4
  32. package/esm2015/app/components/body/row/menu-action/menu-action.component.js +7 -3
  33. package/esm2015/app/components/body/row/row.component.js +16 -7
  34. package/esm2015/app/components/footer/footer-row/footer-row.component.js +2 -3
  35. package/esm2015/app/components/head/head.component.js +2 -3
  36. package/esm2015/app/components/list/list.component.js +48 -26
  37. package/esm2015/app/components/manage-saved-filters/manage-saved-filters.component.js +2 -3
  38. package/esm2015/app/components/pagination/pagination.component.js +4 -5
  39. package/esm2015/app/components/status/status.component.js +3 -5
  40. package/esm2015/app/directives/draggable-list/draggable-list.directive.js +97 -32
  41. package/esm2015/app/directives/draggable-row/draggable-row.directive.js +9 -1
  42. package/esm2015/app/directives/heading/heading.directive.js +13 -0
  43. package/esm2015/app/directives/index.js +3 -0
  44. package/esm2015/app/directives/subheading/subheading.directive.js +13 -0
  45. package/esm2015/app/fs-list.module.js +18 -9
  46. package/esm2015/app/interfaces/listconfig.interface.js +1 -1
  47. package/esm2015/app/models/row/child-row.js +1 -1
  48. package/esm2015/app/models/row/group-footer-row.js +2 -2
  49. package/esm2015/app/models/row/group-row.js +5 -1
  50. package/esm2015/app/models/row-action.model.js +8 -22
  51. package/esm2015/app/models/row.js +2 -2
  52. package/esm2015/app/pipes/action-label.js +17 -0
  53. package/esm2015/app/pipes/index.js +2 -0
  54. package/esm2015/public_api.js +3 -2
  55. package/fesm2015/firestitch-list.js +347 -156
  56. package/fesm2015/firestitch-list.js.map +1 -1
  57. package/package.json +2 -2
  58. package/public_api.d.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestitch/list",
3
- "version": "12.12.3",
3
+ "version": "12.12.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/Firestitch/ngx-list"
@@ -17,7 +17,7 @@
17
17
  "url": "https://github.com/Firestitch/ngx-list/issues"
18
18
  },
19
19
  "peerDependencies": {
20
- "@firestitch/filter": ">=12.2.0",
20
+ "@firestitch/filter": ">=12.5.0",
21
21
  "@firestitch/menu": ">=12.0.1",
22
22
  "@firestitch/prompt": ">=12.0.1",
23
23
  "@firestitch/scroll": ">=12.0.0",
package/public_api.d.ts CHANGED
@@ -21,10 +21,11 @@ export { FsListContentDirective } from './app/directives/content/content.directi
21
21
  export { FsListGroupHeaderDirective } from './app/directives/group-header/group-header.directive';
22
22
  export { FsListGroupFooterDirective } from './app/directives/group-footer/group-footer.directive';
23
23
  export { FsListGroupExpandTriggerDirective } from './app/directives/group-expand-trigger/group-expand-trigger.directive';
24
+ export { FsListSubheadingDirective, FsListHeadingDirective } from './app/directives';
24
25
  export { Column, SortingDirection } from './app/models/column.model';
25
26
  export { List } from './app/classes/list-controller';
26
27
  export { PaginationController } from './app/classes/pagination-controller';
27
- export { ReorderStrategy, ReorderPosition, ReorderController } from './app/classes/reorder-controller';
28
+ export { ReorderPosition, ReorderController } from './app/classes/reorder-controller';
28
29
  export { RowAction } from './app/models/row-action.model';
29
30
  export { SelectionController, SelectionChangeType } from './app/classes/selection-controller';
30
31
  export { SortingController, SortingChangeEvent } from './app/classes/sorting-controller';