@firestitch/list 18.0.74 → 18.0.76

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 (38) hide show
  1. package/app/classes/list-controller.d.ts +10 -0
  2. package/app/components/list/list.component.d.ts +18 -4
  3. package/app/directives/cell/cell-row-type-scope.directive.d.ts +11 -0
  4. package/app/directives/cell/cell.directive.d.ts +15 -1
  5. package/app/directives/cell/typed-cell.directive.d.ts +15 -0
  6. package/app/fs-list.module.d.ts +15 -14
  7. package/app/interfaces/listconfig.interface.d.ts +19 -9
  8. package/esm2022/app/classes/actions-controller.mjs +3 -5
  9. package/esm2022/app/classes/index.mjs +1 -1
  10. package/esm2022/app/classes/list-controller.mjs +21 -2
  11. package/esm2022/app/components/body/row/cell/cell.component.mjs +3 -3
  12. package/esm2022/app/components/footer/footer-row/footer-cell/footer-cell.component.mjs +3 -3
  13. package/esm2022/app/components/head/head-cell/head-cell.component.mjs +1 -1
  14. package/esm2022/app/components/list/list.component.mjs +53 -2
  15. package/esm2022/app/components/loader/loader.component.mjs +1 -1
  16. package/esm2022/app/directives/cell/cell-row-type-scope.directive.mjs +23 -0
  17. package/esm2022/app/directives/cell/cell.directive.mjs +23 -3
  18. package/esm2022/app/directives/cell/typed-cell.directive.mjs +20 -0
  19. package/esm2022/app/directives/empty-state/empty-state.directive.mjs +1 -1
  20. package/esm2022/app/directives/footer/footer.directive.mjs +1 -1
  21. package/esm2022/app/directives/group-expand-trigger/group-expand-trigger.directive.mjs +1 -1
  22. package/esm2022/app/directives/header/header.directive.mjs +1 -1
  23. package/esm2022/app/directives/heading/heading.directive.mjs +1 -1
  24. package/esm2022/app/directives/index.mjs +1 -1
  25. package/esm2022/app/enums/page-change-type.enum.mjs +1 -1
  26. package/esm2022/app/enums/pagination-strategy.enum.mjs +1 -1
  27. package/esm2022/app/enums/state.enum.mjs +1 -1
  28. package/esm2022/app/fs-list.module.mjs +6 -1
  29. package/esm2022/app/interfaces/cellconfig.interface.mjs +1 -1
  30. package/esm2022/app/interfaces/draggable-list.interface.mjs +1 -1
  31. package/esm2022/app/interfaces/external-params.interface.mjs +1 -1
  32. package/esm2022/app/interfaces/listconfig.interface.mjs +1 -1
  33. package/esm2022/app/interfaces/sorting-change-event.interface.mjs +1 -1
  34. package/esm2022/public_api.mjs +3 -1
  35. package/fesm2022/firestitch-list.mjs +142 -13
  36. package/fesm2022/firestitch-list.mjs.map +1 -1
  37. package/package.json +1 -1
  38. package/public_api.d.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestitch/list",
3
- "version": "18.0.74",
3
+ "version": "18.0.76",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/Firestitch/ngx-list"
package/public_api.d.ts CHANGED
@@ -14,6 +14,8 @@ export { FsPaginationComponent } from './app/components/pagination/pagination.co
14
14
  export { FsStatusComponent } from './app/components/status/status.component';
15
15
  export { FsListHeadingDirective } from './app/directives';
16
16
  export { FsListCellDirective } from './app/directives/cell/cell.directive';
17
+ export { FsListCellRowTypeScopeDirective } from './app/directives/cell/cell-row-type-scope.directive';
18
+ export { FsTypedListCellDirective } from './app/directives/cell/typed-cell.directive';
17
19
  export { FsListColumnDirective } from './app/directives/column/column.directive';
18
20
  export { FsListContentDirective } from './app/directives/content/content.directive';
19
21
  export { FsListDraggableListDirective } from './app/directives/draggable-list/draggable-list.directive';