@firestitch/list 12.1.3 → 12.2.0

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/data-controller.d.ts +1 -0
  2. package/app/components/body/row/row.component.d.ts +3 -0
  3. package/app/directives/column/column.directive.d.ts +5 -3
  4. package/app/directives/group-footer/group-footer.directive.d.ts +6 -0
  5. package/app/directives/group-header/group-header.directive.d.ts +6 -0
  6. package/app/enums/row-type.enum.d.ts +2 -1
  7. package/app/fs-list.module.d.ts +26 -25
  8. package/app/interfaces/column-config.interface.d.ts +1 -1
  9. package/app/interfaces/listconfig.interface.d.ts +7 -1
  10. package/app/models/column.model.d.ts +6 -3
  11. package/app/models/row/group-footer-row.d.ts +10 -0
  12. package/app/models/row/group-row.d.ts +2 -1
  13. package/app/models/row.d.ts +3 -1
  14. package/bundles/firestitch-list.umd.js +169 -33
  15. package/bundles/firestitch-list.umd.js.map +1 -1
  16. package/esm2015/app/classes/columns-controller.js +3 -2
  17. package/esm2015/app/classes/data-controller.js +18 -2
  18. package/esm2015/app/components/body/row/cell/cell.component.js +9 -4
  19. package/esm2015/app/components/body/row/row.component.js +21 -3
  20. package/esm2015/app/directives/column/column.directive.js +14 -7
  21. package/esm2015/app/directives/group-footer/group-footer.directive.js +14 -0
  22. package/esm2015/app/directives/group-header/group-header.directive.js +14 -0
  23. package/esm2015/app/enums/row-type.enum.js +3 -2
  24. package/esm2015/app/fs-list.module.js +11 -6
  25. package/esm2015/app/interfaces/column-config.interface.js +1 -1
  26. package/esm2015/app/interfaces/listconfig.interface.js +1 -1
  27. package/esm2015/app/models/column.model.js +15 -8
  28. package/esm2015/app/models/row/group-footer-row.js +21 -0
  29. package/esm2015/app/models/row/group-row.js +1 -1
  30. package/esm2015/app/models/row.js +5 -1
  31. package/esm2015/public_api.js +3 -2
  32. package/fesm2015/firestitch-list.js +120 -30
  33. package/fesm2015/firestitch-list.js.map +1 -1
  34. package/package.json +1 -1
  35. package/public_api.d.ts +3 -2
  36. package/app/directives/group-cell/group-cell.directive.d.ts +0 -6
  37. package/esm2015/app/directives/group-cell/group-cell.directive.js +0 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestitch/list",
3
- "version": "12.1.3",
3
+ "version": "12.2.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/Firestitch/ngx-list"
package/public_api.d.ts CHANGED
@@ -18,7 +18,8 @@ export { FsListCellDirective } from './app/directives/cell/cell.directive';
18
18
  export { FsListHeaderDirective } from './app/directives/header/header.directive';
19
19
  export { FsListEmptyStateDirective } from './app/directives/empty-state/empty-state.directive';
20
20
  export { FsListContentDirective } from './app/directives/content/content.directive';
21
- export { FsListGroupCellDirective } from './app/directives/group-cell/group-cell.directive';
21
+ export { FsListGroupHeaderDirective } from './app/directives/group-header/group-header.directive';
22
+ export { FsListGroupFooterDirective } from './app/directives/group-footer/group-footer.directive';
22
23
  export { FsListGroupExpandTriggerDirective } from './app/directives/group-expand-trigger/group-expand-trigger.directive';
23
24
  export { Column, SortingDirection } from './app/models/column.model';
24
25
  export { List } from './app/classes/list-controller';
@@ -29,7 +30,7 @@ export { SelectionController, SelectionChangeType } from './app/classes/selectio
29
30
  export { SortingController, SortingChangeEvent } from './app/classes/sorting-controller';
30
31
  export { StyleConfig } from './app/models/styleConfig.model';
31
32
  export { CellConfig } from './app/interfaces/cellconfig.interface';
32
- export { FsListAbstractRow, FsListScrollableConfig, FsListSelectionConfig, FsListSortsConfig, FsListAction, FsListCellConfig, FsListFetchSubscription, FsListConfig, FsListFooterConfig, FsListHeaderConfig, FsListNoResultsConfig, FsListReorderConfig, FsListReorderMovedCallback, FsListReorderDoneCallback, FsListReorderData, FsListRestoreConfig, FsListReorderMoveInGroupCallback, FsListRowAction, FsListTrackByFn, FsListTrackByTargetRowFn, FsPaging, FsListColumnLoadFn, FsListColumnChangeFn, FsListColumn, FsListColumnConfig, FsListActionSelected, FsListGroupConfig, FsListRowActionLink, FsListRowActionLinkFn, FsListRowActionGroup, FsListEmptyStateConfig, FsListStateValidationFn, FsListFetchOptions, FsListFetchFn, FsListRowActionFileFn, FsListRowActionFile, } from './app/interfaces/listconfig.interface';
33
+ export { FsListAbstractRow, FsListScrollableConfig, FsListSelectionConfig, FsListSortsConfig, FsListAction, FsListCellConfig, FsListFetchSubscription, FsListConfig, FsListFooterConfig, FsListHeaderConfig, FsListNoResultsConfig, FsListReorderConfig, FsListReorderMovedCallback, FsListReorderDoneCallback, FsListReorderData, FsListRestoreConfig, FsListReorderMoveInGroupCallback, FsListRowAction, FsListTrackByFn, FsListTrackByTargetRowFn, FsPaging, FsListColumnLoadFn, FsListColumnChangeFn, FsListColumn, FsListColumnConfig, FsListActionSelected, FsListGroupConfig, FsListRowActionLink, FsListRowActionLinkFn, FsListRowActionGroup, FsListEmptyStateConfig, FsListStateValidationFn, FsListFetchOptions, FsListFetchFn, FsListRowActionFileFn, FsListRowActionFile, FsListRowClassOptions, } from './app/interfaces/listconfig.interface';
33
34
  export { QueryOffsetStrategy, QueryPageStrategy } from './app/interfaces/pagination.interface';
34
35
  export { ActionType } from './app/enums/button-type.enum';
35
36
  export { PaginationStrategy } from './app/enums/pagination-strategy.enum';
@@ -1,6 +0,0 @@
1
- import { FsListCellDirective } from '../cell/cell.directive';
2
- import * as i0 from "@angular/core";
3
- export declare class FsListGroupCellDirective extends FsListCellDirective {
4
- static ɵfac: i0.ɵɵFactoryDeclaration<FsListGroupCellDirective, never>;
5
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsListGroupCellDirective, "[fs-list-group-cell]", never, {}, {}, never>;
6
- }
@@ -1,14 +0,0 @@
1
- import { Directive } from '@angular/core';
2
- import { FsListCellDirective } from '../cell/cell.directive';
3
- import * as i0 from "@angular/core";
4
- export class FsListGroupCellDirective extends FsListCellDirective {
5
- }
6
- FsListGroupCellDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FsListGroupCellDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
7
- FsListGroupCellDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: FsListGroupCellDirective, selector: "[fs-list-group-cell]", usesInheritance: true, ngImport: i0 });
8
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FsListGroupCellDirective, decorators: [{
9
- type: Directive,
10
- args: [{
11
- selector: '[fs-list-group-cell]'
12
- }]
13
- }] });
14
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ3JvdXAtY2VsbC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvYXBwL2RpcmVjdGl2ZXMvZ3JvdXAtY2VsbC9ncm91cC1jZWxsLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzFDLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDOztBQU83RCxNQUFNLE9BQU8sd0JBQXlCLFNBQVEsbUJBQW1COztzSEFBcEQsd0JBQXdCOzBHQUF4Qix3QkFBd0I7NEZBQXhCLHdCQUF3QjtrQkFIcEMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsc0JBQXNCO2lCQUNqQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRnNMaXN0Q2VsbERpcmVjdGl2ZSB9IGZyb20gJy4uL2NlbGwvY2VsbC5kaXJlY3RpdmUnO1xuXG5cblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW2ZzLWxpc3QtZ3JvdXAtY2VsbF0nXG59KVxuZXhwb3J0IGNsYXNzIEZzTGlzdEdyb3VwQ2VsbERpcmVjdGl2ZSBleHRlbmRzIEZzTGlzdENlbGxEaXJlY3RpdmUge31cbiJdfQ==