@firestitch/list 12.1.5 → 12.3.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 (43) hide show
  1. package/app/classes/data-controller.d.ts +1 -0
  2. package/app/classes/list-controller.d.ts +4 -7
  3. package/app/components/body/row/row.component.d.ts +3 -0
  4. package/app/directives/column/column.directive.d.ts +5 -3
  5. package/app/directives/group-footer/group-footer.directive.d.ts +6 -0
  6. package/app/directives/group-header/group-header.directive.d.ts +6 -0
  7. package/app/enums/row-type.enum.d.ts +2 -1
  8. package/app/fs-list.module.d.ts +26 -25
  9. package/app/interfaces/column-config.interface.d.ts +1 -1
  10. package/app/interfaces/listconfig.interface.d.ts +2 -1
  11. package/app/models/column.model.d.ts +6 -3
  12. package/app/models/row/group-footer-row.d.ts +10 -0
  13. package/app/models/row/group-row.d.ts +2 -1
  14. package/app/models/row-action.model.d.ts +2 -3
  15. package/app/models/row.d.ts +3 -1
  16. package/app/models/styleConfig.model.d.ts +2 -2
  17. package/bundles/firestitch-list.umd.js +252 -232
  18. package/bundles/firestitch-list.umd.js.map +1 -1
  19. package/esm2015/app/classes/columns-controller.js +3 -2
  20. package/esm2015/app/classes/data-controller.js +18 -2
  21. package/esm2015/app/classes/list-controller.js +21 -84
  22. package/esm2015/app/components/body/row/cell/cell.component.js +8 -4
  23. package/esm2015/app/components/body/row/row.component.js +11 -2
  24. package/esm2015/app/directives/column/column.directive.js +14 -7
  25. package/esm2015/app/directives/group-footer/group-footer.directive.js +14 -0
  26. package/esm2015/app/directives/group-header/group-header.directive.js +14 -0
  27. package/esm2015/app/enums/row-type.enum.js +3 -2
  28. package/esm2015/app/fs-list.module.js +11 -6
  29. package/esm2015/app/interfaces/column-config.interface.js +1 -1
  30. package/esm2015/app/interfaces/listconfig.interface.js +1 -1
  31. package/esm2015/app/models/column.model.js +15 -8
  32. package/esm2015/app/models/row/group-footer-row.js +21 -0
  33. package/esm2015/app/models/row/group-row.js +1 -1
  34. package/esm2015/app/models/row-action.model.js +13 -46
  35. package/esm2015/app/models/row.js +5 -1
  36. package/esm2015/app/models/styleConfig.model.js +8 -18
  37. package/esm2015/public_api.js +3 -2
  38. package/fesm2015/firestitch-list.js +148 -170
  39. package/fesm2015/firestitch-list.js.map +1 -1
  40. package/package.json +5 -5
  41. package/public_api.d.ts +2 -1
  42. package/app/directives/group-cell/group-cell.directive.d.ts +0 -6
  43. 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.5",
3
+ "version": "12.3.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/Firestitch/ngx-list"
@@ -17,10 +17,10 @@
17
17
  "url": "https://github.com/Firestitch/ngx-list/issues"
18
18
  },
19
19
  "peerDependencies": {
20
- "@firestitch/filter": ">=9.4.0",
21
- "@firestitch/menu": ">=9.1.8",
22
- "@firestitch/prompt": ">=7.3.0",
23
- "@firestitch/scroll": ">=7.0.0",
20
+ "@firestitch/filter": ">=12.2.0",
21
+ "@firestitch/menu": ">=12.0.1",
22
+ "@firestitch/prompt": ">=12.0.1",
23
+ "@firestitch/scroll": ">=12.0.0",
24
24
  "lodash-es": ">=4.17.15"
25
25
  },
26
26
  "dependencies": {
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';
@@ -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==