@firestitch/list 18.0.46 → 18.0.48

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 (37) hide show
  1. package/app/classes/list-controller.d.ts +2 -2
  2. package/app/components/body/row/actions/actions.component.d.ts +1 -3
  3. package/app/components/body/row/menu-action/menu-action.component.d.ts +0 -2
  4. package/app/components/body/row/row.component.d.ts +11 -12
  5. package/app/components/footer/footer-row/footer-row.component.d.ts +0 -2
  6. package/app/components/head/head-cell/head-cell.component.d.ts +2 -2
  7. package/app/components/head/head.component.d.ts +1 -2
  8. package/app/components/list/list.component.d.ts +2 -8
  9. package/app/directives/draggable-list/draggable-list.directive.d.ts +0 -3
  10. package/app/directives/draggable-row/draggable-row.directive.d.ts +1 -4
  11. package/app/directives/group-expand-trigger/group-expand-trigger.directive.d.ts +0 -2
  12. package/app/fs-list.module.d.ts +1 -1
  13. package/app/interfaces/listconfig.interface.d.ts +5 -4
  14. package/app/models/row-action.model.d.ts +2 -5
  15. package/esm2022/app/classes/list-controller.mjs +4 -4
  16. package/esm2022/app/components/body/body.component.mjs +4 -6
  17. package/esm2022/app/components/body/row/actions/actions.component.mjs +16 -22
  18. package/esm2022/app/components/body/row/menu-action/menu-action.component.mjs +9 -15
  19. package/esm2022/app/components/body/row/row.component.mjs +49 -54
  20. package/esm2022/app/components/customize-cols/customize-cols.component.mjs +5 -6
  21. package/esm2022/app/components/footer/footer-row/footer-row.component.mjs +7 -12
  22. package/esm2022/app/components/head/head-cell/head-cell.component.mjs +11 -16
  23. package/esm2022/app/components/head/head.component.mjs +9 -14
  24. package/esm2022/app/components/list/list.component.mjs +16 -39
  25. package/esm2022/app/components/loader/loader.component.mjs +3 -4
  26. package/esm2022/app/components/pagination/pagination.component.mjs +5 -6
  27. package/esm2022/app/directives/draggable-list/draggable-list.directive.mjs +9 -17
  28. package/esm2022/app/directives/draggable-row/draggable-row.directive.mjs +8 -16
  29. package/esm2022/app/directives/group-expand-trigger/group-expand-trigger.directive.mjs +5 -9
  30. package/esm2022/app/fs-list.module.mjs +4 -2
  31. package/esm2022/app/interfaces/listconfig.interface.mjs +1 -1
  32. package/esm2022/app/models/row-action.model.mjs +1 -1
  33. package/esm2022/public_api.mjs +2 -1
  34. package/fesm2022/firestitch-list.mjs +436 -499
  35. package/fesm2022/firestitch-list.mjs.map +1 -1
  36. package/package.json +1 -1
  37. package/public_api.d.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestitch/list",
3
- "version": "18.0.46",
3
+ "version": "18.0.48",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/Firestitch/ngx-list"
package/public_api.d.ts CHANGED
@@ -16,6 +16,7 @@ export { FsListHeadingDirective } from './app/directives';
16
16
  export { FsListCellDirective } from './app/directives/cell/cell.directive';
17
17
  export { FsListColumnDirective } from './app/directives/column/column.directive';
18
18
  export { FsListContentDirective } from './app/directives/content/content.directive';
19
+ export { FsListDraggableListDirective } from './app/directives/draggable-list/draggable-list.directive';
19
20
  export { FsListEmptyStateDirective } from './app/directives/empty-state/empty-state.directive';
20
21
  export { FsListFooterDirective } from './app/directives/footer/footer.directive';
21
22
  export { FsListGroupExpandTriggerDirective } from './app/directives/group-expand-trigger/group-expand-trigger.directive';
@@ -31,7 +32,7 @@ export { Column, SortingDirection } from './app/models/column.model';
31
32
  export { RowAction } from './app/models/row-action.model';
32
33
  export { StyleConfig } from './app/models/styleConfig.model';
33
34
  export { CellConfig } from './app/interfaces/cellconfig.interface';
34
- export { FsListAbstractRow, FsListAction, FsListActionSelected, FsListCellConfig, FsListColumn, FsListColumnChangeFn, FsListColumnConfig, FsListColumnLoadFn, FsListConfig, FsListEmptyStateConfig, FsListFetchFn, FsListFetchOptions, FsListFetchSubscription, FsListFooterConfig, FsListGroupConfig, FsListHeaderConfig, FsListNoResultsConfig, FsListReorderConfig, FsListReorderData, FsListReorderDoneCallback, FsListReorderMovedCallback, FsListReorderMoveInGroupCallback, FsListRestoreConfig, FsListRowAction, FsListRowActionFile, FsListRowActionFileFn, FsListRowActionGroup, FsListRowActionLink, FsListRowActionLinkFn, FsListRowClassOptions, FsListSelectionConfig, FsListSortsConfig, FsListStateValidationFn, FsListTrackByFn, FsListTrackByTargetRowFn, FsPaging, } from './app/interfaces/listconfig.interface';
35
+ export { FsListAbstractRow, FsListAction, FsListActionSelected, FsListCellConfig, FsListColumn, FsListColumnChangeFn, FsListColumnConfig, FsListColumnLoadFn, FsListConfig, FsListEmptyStateConfig, FsListFetchFn, FsListFetchOptions, FsListFetchSubscription, FsListFooterConfig, FsListGroupConfig, FsListHeaderConfig, FsListNoResultsConfig, FsListReorderConfig, FsListReorderData, FsListReorderDoneCallback, FsListReorderMoveInGroupCallback, FsListReorderMovedCallback, FsListRestoreConfig, FsListRowAction, FsListRowActionFile, FsListRowActionFileFn, FsListRowActionGroup, FsListRowActionLink, FsListRowActionLinkFn, FsListRowClassOptions, FsListSelectionConfig, FsListSortsConfig, FsListStateValidationFn, FsListTrackByFn, FsListTrackByTargetRowFn, FsPaging, } from './app/interfaces/listconfig.interface';
35
36
  export { IPaginationState } from './app/interfaces/pagination-state.interface';
36
37
  export { QueryOffsetStrategy, QueryPageStrategy } from './app/interfaces/pagination.interface';
37
38
  export { SortingChangeEvent } from './app/interfaces/sorting-change-event.interface';