@firestitch/list 9.12.3 → 12.0.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 (170) hide show
  1. package/app/classes/pagination-controller.d.ts +10 -6
  2. package/app/classes/persistance-controller.d.ts +3 -0
  3. package/app/classes/reorder-controller.d.ts +3 -0
  4. package/app/components/body/body.component.d.ts +3 -0
  5. package/app/components/body/row/actions/actions.component.d.ts +3 -0
  6. package/app/components/body/row/cell/cell.component.d.ts +3 -0
  7. package/app/components/body/row/inline-action/inline-action.component.d.ts +3 -0
  8. package/app/components/body/row/menu-action/menu-action.component.d.ts +3 -0
  9. package/app/components/body/row/row.component.d.ts +3 -0
  10. package/app/components/customize-cols/customize-cols.component.d.ts +3 -0
  11. package/app/components/footer/footer-row/footer-cell/footer-cell.component.d.ts +3 -0
  12. package/app/components/footer/footer-row/footer-row.component.d.ts +3 -0
  13. package/app/components/footer/footer.component.d.ts +3 -0
  14. package/app/components/head/head-cell/head-cell.component.d.ts +3 -0
  15. package/app/components/head/head.component.d.ts +3 -0
  16. package/app/components/list/list.component.d.ts +3 -0
  17. package/app/components/loader/loader.component.d.ts +3 -0
  18. package/app/components/manage-saved-filters/manage-saved-filters.component.d.ts +3 -0
  19. package/app/components/pagination/pagination.component.d.ts +3 -0
  20. package/app/components/saved-filters/saved-filters.component.d.ts +3 -0
  21. package/app/components/status/status.component.d.ts +3 -0
  22. package/app/directives/cell/cell.directive.d.ts +3 -0
  23. package/app/directives/column/column.directive.d.ts +3 -0
  24. package/app/directives/content/content.directive.d.ts +5 -0
  25. package/app/directives/draggable-list/draggable-list.directive.d.ts +3 -0
  26. package/app/directives/draggable-row/draggable-row.directive.d.ts +3 -0
  27. package/app/directives/empty-state/empty-state.directive.d.ts +3 -0
  28. package/app/directives/footer/footer.directive.d.ts +3 -0
  29. package/app/directives/group-cell/group-cell.directive.d.ts +3 -0
  30. package/app/directives/group-expand-trigger/group-expand-trigger.directive.d.ts +3 -0
  31. package/app/directives/header/header.directive.d.ts +3 -0
  32. package/app/fs-list.module.d.ts +48 -0
  33. package/app/services/group-expand-notifier.service.d.ts +3 -0
  34. package/bundles/firestitch-list.umd.js +2159 -2130
  35. package/bundles/firestitch-list.umd.js.map +1 -1
  36. package/esm2015/app/classes/actions-controller.js +1 -1
  37. package/esm2015/app/classes/columns-controller.js +1 -1
  38. package/esm2015/app/classes/data-controller.js +2 -2
  39. package/esm2015/app/classes/external-params-controller.js +5 -7
  40. package/esm2015/app/classes/index.js +1 -1
  41. package/esm2015/app/classes/list-controller.js +16 -4
  42. package/esm2015/app/classes/pagination-controller.js +40 -40
  43. package/esm2015/app/classes/persistance-controller.js +11 -14
  44. package/esm2015/app/classes/reorder-controller.js +13 -13
  45. package/esm2015/app/classes/selection-controller.js +7 -6
  46. package/esm2015/app/classes/sorting-controller.js +1 -1
  47. package/esm2015/app/components/body/body.component.js +48 -75
  48. package/esm2015/app/components/body/row/actions/actions.component.js +37 -48
  49. package/esm2015/app/components/body/row/cell/cell.component.js +27 -33
  50. package/esm2015/app/components/body/row/inline-action/inline-action.component.js +27 -28
  51. package/esm2015/app/components/body/row/menu-action/menu-action.component.js +27 -32
  52. package/esm2015/app/components/body/row/row.component.js +54 -84
  53. package/esm2015/app/components/customize-cols/customize-cols.component.js +23 -18
  54. package/esm2015/app/components/footer/footer-row/footer-cell/footer-cell.component.js +15 -13
  55. package/esm2015/app/components/footer/footer-row/footer-row.component.js +20 -28
  56. package/esm2015/app/components/footer/footer.component.js +21 -25
  57. package/esm2015/app/components/head/head-cell/head-cell.component.js +17 -19
  58. package/esm2015/app/components/head/head.component.js +31 -39
  59. package/esm2015/app/components/list/list.component.js +75 -83
  60. package/esm2015/app/components/loader/loader.component.js +22 -21
  61. package/esm2015/app/components/manage-saved-filters/manage-saved-filters.component.js +19 -15
  62. package/esm2015/app/components/pagination/pagination.component.js +26 -26
  63. package/esm2015/app/components/saved-filters/saved-filters.component.js +20 -23
  64. package/esm2015/app/components/status/status.component.js +38 -41
  65. package/esm2015/app/directives/cell/cell.directive.js +17 -20
  66. package/esm2015/app/directives/column/column.directive.js +60 -86
  67. package/esm2015/app/directives/content/content.directive.js +13 -0
  68. package/esm2015/app/directives/draggable-list/draggable-list.directive.js +16 -24
  69. package/esm2015/app/directives/draggable-row/draggable-row.directive.js +22 -30
  70. package/esm2015/app/directives/empty-state/empty-state.directive.js +12 -10
  71. package/esm2015/app/directives/footer/footer.directive.js +17 -20
  72. package/esm2015/app/directives/group-cell/group-cell.directive.js +12 -10
  73. package/esm2015/app/directives/group-expand-trigger/group-expand-trigger.directive.js +16 -22
  74. package/esm2015/app/directives/header/header.directive.js +17 -20
  75. package/esm2015/app/enums/button-type.enum.js +1 -1
  76. package/esm2015/app/enums/page-change-type.enum.js +1 -1
  77. package/esm2015/app/enums/pagination-strategy.enum.js +1 -1
  78. package/esm2015/app/enums/row-type.enum.js +1 -1
  79. package/esm2015/app/enums/state.enum.js +1 -1
  80. package/esm2015/app/fs-list.module.js +140 -64
  81. package/esm2015/app/fs-list.providers.js +1 -1
  82. package/esm2015/app/interfaces/cellconfig.interface.js +2 -1
  83. package/esm2015/app/interfaces/draggable-list.interface.js +2 -1
  84. package/esm2015/app/interfaces/external-params.interface.js +2 -1
  85. package/esm2015/app/interfaces/index.js +4 -1
  86. package/esm2015/app/interfaces/listconfig.interface.js +2 -1
  87. package/esm2015/app/interfaces/pagination.interface.js +2 -1
  88. package/esm2015/app/models/column.model.js +1 -1
  89. package/esm2015/app/models/row/base-row.js +1 -1
  90. package/esm2015/app/models/row/child-row.js +1 -1
  91. package/esm2015/app/models/row/group-row.js +1 -1
  92. package/esm2015/app/models/row/simple-row.js +1 -1
  93. package/esm2015/app/models/row-action.model.js +1 -1
  94. package/esm2015/app/models/row.js +1 -1
  95. package/esm2015/app/models/styleConfig.model.js +1 -1
  96. package/esm2015/app/services/group-expand-notifier.service.js +9 -8
  97. package/esm2015/firestitch-list.js +1 -15
  98. package/esm2015/public_api.js +5 -1
  99. package/fesm2015/firestitch-list.js +1385 -1488
  100. package/fesm2015/firestitch-list.js.map +1 -1
  101. package/firestitch-list.d.ts +1 -15
  102. package/package.json +5 -8
  103. package/public_api.d.ts +4 -0
  104. package/bundles/firestitch-list.umd.min.js +0 -16
  105. package/bundles/firestitch-list.umd.min.js.map +0 -1
  106. package/esm5/app/classes/actions-controller.js +0 -71
  107. package/esm5/app/classes/columns-controller.js +0 -236
  108. package/esm5/app/classes/data-controller.js +0 -374
  109. package/esm5/app/classes/external-params-controller.js +0 -185
  110. package/esm5/app/classes/index.js +0 -3
  111. package/esm5/app/classes/list-controller.js +0 -771
  112. package/esm5/app/classes/pagination-controller.js +0 -568
  113. package/esm5/app/classes/persistance-controller.js +0 -25
  114. package/esm5/app/classes/reorder-controller.js +0 -204
  115. package/esm5/app/classes/selection-controller.js +0 -465
  116. package/esm5/app/classes/sorting-controller.js +0 -204
  117. package/esm5/app/components/body/body.component.js +0 -104
  118. package/esm5/app/components/body/row/actions/actions.component.js +0 -116
  119. package/esm5/app/components/body/row/cell/cell.component.js +0 -95
  120. package/esm5/app/components/body/row/inline-action/inline-action.component.js +0 -43
  121. package/esm5/app/components/body/row/menu-action/menu-action.component.js +0 -38
  122. package/esm5/app/components/body/row/row.component.js +0 -295
  123. package/esm5/app/components/customize-cols/customize-cols.component.js +0 -69
  124. package/esm5/app/components/footer/footer-row/footer-cell/footer-cell.component.js +0 -20
  125. package/esm5/app/components/footer/footer-row/footer-row.component.js +0 -38
  126. package/esm5/app/components/footer/footer.component.js +0 -31
  127. package/esm5/app/components/head/head-cell/head-cell.component.js +0 -38
  128. package/esm5/app/components/head/head.component.js +0 -106
  129. package/esm5/app/components/list/list.component.js +0 -403
  130. package/esm5/app/components/loader/loader.component.js +0 -47
  131. package/esm5/app/components/manage-saved-filters/manage-saved-filters.component.js +0 -81
  132. package/esm5/app/components/pagination/pagination.component.js +0 -46
  133. package/esm5/app/components/saved-filters/saved-filters.component.js +0 -41
  134. package/esm5/app/components/status/status.component.js +0 -79
  135. package/esm5/app/directives/cell/cell.directive.js +0 -24
  136. package/esm5/app/directives/column/column.directive.js +0 -98
  137. package/esm5/app/directives/draggable-list/draggable-list.directive.js +0 -281
  138. package/esm5/app/directives/draggable-row/draggable-row.directive.js +0 -83
  139. package/esm5/app/directives/empty-state/empty-state.directive.js +0 -14
  140. package/esm5/app/directives/footer/footer.directive.js +0 -24
  141. package/esm5/app/directives/group-cell/group-cell.directive.js +0 -17
  142. package/esm5/app/directives/group-expand-trigger/group-expand-trigger.directive.js +0 -33
  143. package/esm5/app/directives/header/header.directive.js +0 -24
  144. package/esm5/app/enums/button-type.enum.js +0 -9
  145. package/esm5/app/enums/page-change-type.enum.js +0 -6
  146. package/esm5/app/enums/pagination-strategy.enum.js +0 -7
  147. package/esm5/app/enums/row-type.enum.js +0 -7
  148. package/esm5/app/enums/state.enum.js +0 -11
  149. package/esm5/app/fs-list.module.js +0 -149
  150. package/esm5/app/fs-list.providers.js +0 -4
  151. package/esm5/app/interfaces/cellconfig.interface.js +0 -1
  152. package/esm5/app/interfaces/draggable-list.interface.js +0 -1
  153. package/esm5/app/interfaces/external-params.interface.js +0 -1
  154. package/esm5/app/interfaces/index.js +0 -1
  155. package/esm5/app/interfaces/listconfig.interface.js +0 -1
  156. package/esm5/app/interfaces/pagination.interface.js +0 -1
  157. package/esm5/app/models/column.model.js +0 -204
  158. package/esm5/app/models/row/base-row.js +0 -35
  159. package/esm5/app/models/row/child-row.js +0 -43
  160. package/esm5/app/models/row/group-row.js +0 -61
  161. package/esm5/app/models/row/simple-row.js +0 -15
  162. package/esm5/app/models/row-action.model.js +0 -153
  163. package/esm5/app/models/row.js +0 -126
  164. package/esm5/app/models/styleConfig.model.js +0 -91
  165. package/esm5/app/services/group-expand-notifier.service.js +0 -30
  166. package/esm5/firestitch-list.js +0 -19
  167. package/esm5/public_api.js +0 -40
  168. package/fesm5/firestitch-list.js +0 -6055
  169. package/fesm5/firestitch-list.js.map +0 -1
  170. package/firestitch-list.metadata.json +0 -1
@@ -1,8 +1,7 @@
1
1
  import { Observable } from 'rxjs';
2
- import { Model } from 'tsmodels';
3
2
  import { FsListLoadMoreConfig, FsPaging, PageChange, QueryOffsetStrategy, QueryPageStrategy } from '../interfaces';
4
3
  import { PaginationStrategy } from '../enums/pagination-strategy.enum';
5
- export declare class PaginationController extends Model {
4
+ export declare class PaginationController {
6
5
  limit: number;
7
6
  records: number;
8
7
  manual: boolean;
@@ -45,6 +44,7 @@ export declare class PaginationController extends Model {
45
44
  * Get query for request
46
45
  */
47
46
  get query(): QueryPageStrategy | QueryOffsetStrategy;
47
+ get loadMoreQuery(): QueryPageStrategy | QueryOffsetStrategy;
48
48
  /**
49
49
  * Query for Page Strategy
50
50
  */
@@ -93,7 +93,6 @@ export declare class PaginationController extends Model {
93
93
  * Showing 0 results sorted by Name, Ascending
94
94
  */
95
95
  get statusLabel(): string;
96
- _fromJSON(value: any): void;
97
96
  initWithConfig(config: FsPaging | false, loadMore: FsListLoadMoreConfig | boolean, infinityScrollEnabled?: boolean): void;
98
97
  /**
99
98
  * If pagination has prev page when Page Strategy
@@ -114,10 +113,10 @@ export declare class PaginationController extends Model {
114
113
  /**
115
114
  * Update paging config and all related fields
116
115
  * @param config
117
- * @param displayed
118
- * @param loadMore
116
+ * @param displayedRecords
117
+ * @param loadMoreOperation
119
118
  */
120
- updatePaging(config: any, displayed?: number, loadMore?: boolean): void;
119
+ updatePaging(config: any, displayedRecords?: number, loadMoreOperation?: boolean): void;
121
120
  /**
122
121
  * Update pages array with new pages count
123
122
  */
@@ -174,6 +173,11 @@ export declare class PaginationController extends Model {
174
173
  * Destroy
175
174
  */
176
175
  destroy(): void;
176
+ /**
177
+ * Update paging state
178
+ * @param params
179
+ */
180
+ private _fromParams;
177
181
  /**
178
182
  * Calc and update offset
179
183
  */
@@ -1,7 +1,10 @@
1
1
  import { ActivatedRoute } from '@angular/router';
2
2
  import { FsPersistanceStore, FsStore } from '@firestitch/store';
3
3
  import { FsListPersitance } from '../interfaces';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class PersistanceController extends FsPersistanceStore<FsListPersitance> {
5
6
  protected STORE_KEY: string;
6
7
  constructor(_store: FsStore, _route: ActivatedRoute);
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<PersistanceController, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<PersistanceController>;
7
10
  }
@@ -3,6 +3,7 @@ import { Observable } from 'rxjs';
3
3
  import { FsListReorderDoneCallback, FsListReorderMovedCallback, FsListReorderMoveInGroupCallback } from '../interfaces';
4
4
  import { DataController } from './data-controller';
5
5
  import { ActionsController } from './actions-controller';
6
+ import * as i0 from "@angular/core";
6
7
  export declare enum ReorderPosition {
7
8
  Left = "left",
8
9
  Right = "right"
@@ -55,4 +56,6 @@ export declare class ReorderController implements OnDestroy {
55
56
  */
56
57
  disableReorderAction(): void;
57
58
  setNunberOfActiveFilters(activeFilters: number): void;
59
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReorderController, never>;
60
+ static ɵprov: i0.ɵɵInjectableDeclaration<ReorderController>;
58
61
  }
@@ -3,6 +3,7 @@ import { Column } from '../../models/column.model';
3
3
  import { ReorderController } from '../../classes/reorder-controller';
4
4
  import { SelectionController } from '../../classes/selection-controller';
5
5
  import { Row } from '../../models/row';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class FsBodyComponent implements DoCheck, OnDestroy {
7
8
  reorderContoller: ReorderController;
8
9
  private el;
@@ -26,4 +27,6 @@ export declare class FsBodyComponent implements DoCheck, OnDestroy {
26
27
  constructor(reorderContoller: ReorderController, el: ElementRef, cdRef: ChangeDetectorRef, differs: IterableDiffers);
27
28
  ngDoCheck(): void;
28
29
  ngOnDestroy(): void;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsBodyComponent, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsBodyComponent, "[fs-list-body]", never, { "rows": "rows"; "columns": "columns"; "hasFooter": "hasFooter"; "rowActionsRaw": "rowActionsRaw"; "groupActionsRaw": "groupActionsRaw"; "rowEvents": "rowEvents"; "rowClass": "rowClass"; "hasRowActions": "hasRowActions"; "selection": "selection"; "restoreMode": "restoreMode"; "rowRemoved": "rowRemoved"; }, {}, ["headerTemplate"], never>;
29
32
  }
@@ -2,6 +2,7 @@ import { EventEmitter } from '@angular/core';
2
2
  import { FsPrompt } from '@firestitch/prompt';
3
3
  import { Row } from '../../../../models/row';
4
4
  import { RowAction } from '../../../../models/row-action.model';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class FsRowActionsComponent {
6
7
  private _fsPrompt;
7
8
  row: Row;
@@ -29,4 +30,6 @@ export declare class FsRowActionsComponent {
29
30
  * @param index
30
31
  */
31
32
  private removeAction;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsRowActionsComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsRowActionsComponent, "fs-list-row-actions", never, { "row": "row"; "index": "index"; "restoreMode": "restoreMode"; "rowActions": "rowActions"; "rowRemoved": "rowRemoved"; "menuRowActions": "menuRowActions"; "inlineRowActions": "inlineRowActions"; "restoreAction": "restoreAction"; }, {}, never, never>;
32
35
  }
@@ -1,6 +1,7 @@
1
1
  import { OnChanges, OnDestroy, OnInit, SimpleChanges, TemplateRef } from '@angular/core';
2
2
  import { Column } from '../../../../models/column.model';
3
3
  import { Row } from '../../../../models/row';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class FsCellComponent implements OnInit, OnChanges, OnDestroy {
5
6
  isColl: boolean;
6
7
  role: string;
@@ -17,4 +18,6 @@ export declare class FsCellComponent implements OnInit, OnChanges, OnDestroy {
17
18
  private _initCellContext;
18
19
  private _initCellTemplate;
19
20
  private _listenGroupOpen;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsCellComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsCellComponent, "[fs-cell]", never, { "column": "column"; "row": "row"; "rowIndex": "rowIndex"; }, {}, never, never>;
20
23
  }
@@ -2,6 +2,7 @@ import { EventEmitter } from '@angular/core';
2
2
  import { FsPrompt } from '@firestitch/prompt';
3
3
  import { FsFile } from '@firestitch/file';
4
4
  import { RowAction } from '../../../../models/row-action.model';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class FsRowInlineActionComponent {
6
7
  private _fsPrompt;
7
8
  action: RowAction;
@@ -10,4 +11,6 @@ export declare class FsRowInlineActionComponent {
10
11
  constructor(_fsPrompt: FsPrompt);
11
12
  actionClick(event: any): void;
12
13
  fileSelected(event: any): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsRowInlineActionComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsRowInlineActionComponent, "fs-list-row-inline-action", never, { "action": "action"; }, { "clicked": "clicked"; "fileSelect": "fileSelect"; }, never, never>;
13
16
  }
@@ -1,9 +1,12 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import { FsListRowActionFile } from '../../../../interfaces/listconfig.interface';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class FsRowMenuActionComponent {
4
5
  icon: string;
5
6
  label: string;
6
7
  file: FsListRowActionFile;
7
8
  fileSelect: EventEmitter<any>;
8
9
  fileError: EventEmitter<any>;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsRowMenuActionComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsRowMenuActionComponent, "fs-list-row-menu-action", never, { "icon": "icon"; "label": "label"; "file": "file"; }, { "fileSelect": "fileSelect"; "fileError": "fileError"; }, never, never>;
9
12
  }
@@ -6,6 +6,7 @@ import { SelectionController } from '../../../classes/selection-controller';
6
6
  import { RowAction } from '../../../models/row-action.model';
7
7
  import { Row } from '../../../models/row';
8
8
  import { FsListDraggableListDirective } from '../../../directives/draggable-list/draggable-list.directive';
9
+ import * as i0 from "@angular/core";
9
10
  export declare class FsRowComponent implements OnInit, DoCheck, OnDestroy {
10
11
  el: ElementRef;
11
12
  reorderController: ReorderController;
@@ -63,4 +64,6 @@ export declare class FsRowComponent implements OnInit, DoCheck, OnDestroy {
63
64
  */
64
65
  private initSelection;
65
66
  private filterActionsByCategories;
67
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsRowComponent, never>;
68
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsRowComponent, "[fs-list-row]", never, { "row": "row"; "rowActionsRaw": "rowActionsRaw"; "groupActionsRaw": "groupActionsRaw"; "hasRowActions": "hasRowActions"; "rowEvents": "rowEvents"; "rowClass": "rowClass"; "restoreMode": "restoreMode"; "rowIndex": "rowIndex"; "columns": "columns"; "selection": "selection"; "rowRemoved": "rowRemoved"; }, {}, never, never>;
66
69
  }
@@ -1,5 +1,6 @@
1
1
  import { OnDestroy } from '@angular/core';
2
2
  import { MatDialogRef } from '@angular/material/dialog';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class CustomizeColsDialogComponent implements OnDestroy {
4
5
  private _dialog;
5
6
  columns: any[];
@@ -11,4 +12,6 @@ export declare class CustomizeColsDialogComponent implements OnDestroy {
11
12
  visibilityChange(event: any, column: any): void;
12
13
  save(): void;
13
14
  cancel(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomizeColsDialogComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomizeColsDialogComponent, "ng-component", never, {}, {}, never, never>;
14
17
  }
@@ -1,4 +1,7 @@
1
1
  import { FsCellComponent } from '../../../body/row/cell/cell.component';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class FsFooterCellComponent extends FsCellComponent {
3
4
  constructor();
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsFooterCellComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsFooterCellComponent, "[fs-list-footer-cell]", never, {}, {}, never, never>;
4
7
  }
@@ -1,8 +1,11 @@
1
1
  import { ChangeDetectorRef, ElementRef, KeyValueDiffers, Renderer2 } from '@angular/core';
2
2
  import { FsRowComponent } from '../../body/row/row.component';
3
3
  import { ReorderController, ReorderPosition } from '../../../classes/reorder-controller';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class FsFooterRowComponent extends FsRowComponent {
5
6
  hasRowActions: boolean;
6
7
  readonly ReorderPosition: typeof ReorderPosition;
7
8
  constructor(el: ElementRef, reorderController: ReorderController, cdRef: ChangeDetectorRef, differs: KeyValueDiffers, renderer: Renderer2);
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsFooterRowComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsFooterRowComponent, "[fs-list-footer-row]", never, { "hasRowActions": "hasRowActions"; }, {}, never, never>;
8
11
  }
@@ -1,8 +1,11 @@
1
1
  import { Column } from '../../models/column.model';
2
2
  import { SelectionController } from '../../classes/selection-controller';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class FsFooterComponent {
4
5
  hasRowActions: boolean;
5
6
  columns: Column[];
6
7
  selection: SelectionController;
7
8
  constructor();
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsFooterComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsFooterComponent, "[fs-list-footer]", never, { "hasRowActions": "hasRowActions"; "columns": "columns"; "selection": "selection"; }, {}, never, never>;
8
11
  }
@@ -1,5 +1,6 @@
1
1
  import { ChangeDetectorRef, DoCheck, KeyValueDiffers } from '@angular/core';
2
2
  import { FsCellComponent } from '../../body/row/cell/cell.component';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class FsHeadCellComponent extends FsCellComponent implements DoCheck {
4
5
  private cdRef;
5
6
  private differs;
@@ -8,4 +9,6 @@ export declare class FsHeadCellComponent extends FsCellComponent implements DoCh
8
9
  constructor(cdRef: ChangeDetectorRef, differs: KeyValueDiffers);
9
10
  ngDoCheck(): void;
10
11
  initCellContext(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsHeadCellComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsHeadCellComponent, "[fs-head-cell]", never, {}, {}, never, never>;
11
14
  }
@@ -4,6 +4,7 @@ import { Column } from '../../models/column.model';
4
4
  import { SortingController } from '../../classes/sorting-controller';
5
5
  import { ReorderController, ReorderPosition, ReorderStrategy } from '../../classes/reorder-controller';
6
6
  import { SelectionController } from '../../classes/selection-controller';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class FsHeadComponent implements OnInit, OnDestroy {
8
9
  reorderController: ReorderController;
9
10
  private cdRef;
@@ -37,4 +38,6 @@ export declare class FsHeadComponent implements OnInit, OnDestroy {
37
38
  * Subscribe to selection change
38
39
  */
39
40
  private initSelection;
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsHeadComponent, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsHeadComponent, "[fs-list-head]", never, { "sorting": "sorting"; "columns": "columns"; "hasRowActions": "hasRowActions"; "selection": "selection"; }, {}, never, never>;
40
43
  }
@@ -11,6 +11,7 @@ import { ReorderController } from '../../classes/reorder-controller';
11
11
  import { FsListAbstractRow, FsListAction, FsListConfig, FsListSelectionConfig, FsListTrackByFn, FsListTrackByTargetRowFn } from '../../interfaces';
12
12
  import { GroupExpandNotifierService } from '../../services/group-expand-notifier.service';
13
13
  import { PersistanceController } from '../../classes/persistance-controller';
14
+ import * as i0 from "@angular/core";
14
15
  export declare class FsListComponent implements OnInit, OnDestroy {
15
16
  reorderController: ReorderController;
16
17
  private _el;
@@ -106,4 +107,6 @@ export declare class FsListComponent implements OnInit, OnDestroy {
106
107
  private _listenFiltersQueryChange;
107
108
  private _configMergeCustomizer;
108
109
  private _restorePersistance;
110
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListComponent, [null, null, { optional: true; }, { optional: true; }, null, null, null, null, null, null, null, null, { optional: true; }, { optional: true; }]>;
111
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsListComponent, "fs-list", never, { "config": "config"; "loaderLines": "loaderLines"; }, { "filtersReady": "filtersReady"; }, ["_emptyStateTemplate", "columnTemplates"], ["[fs-list-content]"]>;
109
112
  }
@@ -1,4 +1,5 @@
1
1
  import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class FsListLoaderComponent implements OnInit, OnChanges {
3
4
  placeholderWidths: any[][];
4
5
  widths: any[];
@@ -8,4 +9,6 @@ export declare class FsListLoaderComponent implements OnInit, OnChanges {
8
9
  rows: any[];
9
10
  ngOnInit(): void;
10
11
  ngOnChanges(changes: SimpleChanges): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListLoaderComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsListLoaderComponent, "fs-list-loader", never, { "columns": "columns"; "loaderLines": "loaderLines"; }, {}, never, never>;
11
14
  }
@@ -1,5 +1,6 @@
1
1
  import { ExternalParamsController } from '@firestitch/filter';
2
2
  import { FsListConfig } from '../../interfaces/listconfig.interface';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class FsListManageSavedFiltersComponent {
4
5
  private _externalParams;
5
6
  config: FsListConfig;
@@ -7,4 +8,6 @@ export declare class FsListManageSavedFiltersComponent {
7
8
  constructor(_externalParams: ExternalParamsController);
8
9
  private get savedFiltersController();
9
10
  private _initList;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListManageSavedFiltersComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsListManageSavedFiltersComponent, "ng-component", never, {}, {}, never, never>;
10
13
  }
@@ -1,5 +1,6 @@
1
1
  import { ChangeDetectorRef, OnInit, OnDestroy } from '@angular/core';
2
2
  import { PaginationController } from '../../classes/pagination-controller';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class FsPaginationComponent implements OnInit, OnDestroy {
4
5
  private cdRef;
5
6
  pagination: PaginationController;
@@ -8,4 +9,6 @@ export declare class FsPaginationComponent implements OnInit, OnDestroy {
8
9
  constructor(cdRef: ChangeDetectorRef);
9
10
  ngOnInit(): void;
10
11
  ngOnDestroy(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsPaginationComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsPaginationComponent, "fs-list-pagination", never, { "pagination": "pagination"; "rows": "rows"; }, {}, never, never>;
11
14
  }
@@ -2,6 +2,7 @@ import { ViewContainerRef } from '@angular/core';
2
2
  import { ExternalParamsController } from '@firestitch/filter';
3
3
  import { Observable } from 'rxjs';
4
4
  import { MatDialog } from '@angular/material/dialog';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class FsListSavedFiltersComponent {
6
7
  private _dialog;
7
8
  private _externalParams;
@@ -9,4 +10,6 @@ export declare class FsListSavedFiltersComponent {
9
10
  constructor(_dialog: MatDialog, _externalParams: ExternalParamsController, _vcRef: ViewContainerRef);
10
11
  get savedFiltersEnabled$(): Observable<boolean>;
11
12
  showManageDialog(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListSavedFiltersComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsListSavedFiltersComponent, "fs-list-saved-filters", never, {}, {}, never, never>;
12
15
  }
@@ -1,6 +1,7 @@
1
1
  import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
2
  import { SortingController } from '../../classes/sorting-controller';
3
3
  import { PaginationController } from '../../classes/pagination-controller';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class FsStatusComponent implements OnInit, OnDestroy {
5
6
  private _cdRef;
6
7
  paging: PaginationController;
@@ -15,4 +16,6 @@ export declare class FsStatusComponent implements OnInit, OnDestroy {
15
16
  toggleDirection(): void;
16
17
  setSortableColumn(column: any): void;
17
18
  setLimit(limit: any): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsStatusComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsStatusComponent, "fs-list-status", never, { "paging": "paging"; "sorting": "sorting"; "rows": "rows"; "scrollable": "scrollable"; "firstLoad": "firstLoad"; }, {}, never, never>;
18
21
  }
@@ -1,5 +1,8 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class FsListCellDirective {
2
3
  colspan: any;
3
4
  align: string;
4
5
  className: string | string[];
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListCellDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsListCellDirective, "[fs-list-cell]", never, { "colspan": "colspan"; "align": "align"; "className": "class"; }, {}, never>;
5
8
  }
@@ -1,6 +1,7 @@
1
1
  import { QueryList, TemplateRef } from '@angular/core';
2
2
  import { CellConfig } from '../../interfaces';
3
3
  import { FsListGroupExpandTriggerDirective } from '../group-expand-trigger/group-expand-trigger.directive';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class FsListColumnDirective {
5
6
  title: string;
6
7
  name: string;
@@ -21,4 +22,6 @@ export declare class FsListColumnDirective {
21
22
  cellConfigs: CellConfig;
22
23
  footerTemplate: TemplateRef<any>;
23
24
  footerConfigs: CellConfig;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListColumnDirective, never>;
26
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsListColumnDirective, "fs-list-column", never, { "title": "title"; "name": "name"; "show": "show"; "customize": "customize"; "sortable": "sortable"; "sortableDefault": "sortableDefault"; "direction": "direction"; "align": "align"; "width": "width"; "className": "class"; }, {}, ["headerTemplate", "headerConfigs", "groupCellTemplate", "groupCellConfigs", "cellTemplate", "cellConfigs", "footerTemplate", "footerConfigs", "expandTrigger"]>;
24
27
  }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FsListContentDirective {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListContentDirective, never>;
4
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsListContentDirective, "[fs-list-content]", never, {}, {}, never>;
5
+ }
@@ -2,6 +2,7 @@ import { ChangeDetectorRef, ElementRef, NgZone } from '@angular/core';
2
2
  import { Observable } from 'rxjs';
3
3
  import { ReorderController } from '../../classes/reorder-controller';
4
4
  import { Row } from '../../models/row';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class FsListDraggableListDirective {
6
7
  private _cdRef;
7
8
  private _zone;
@@ -74,4 +75,6 @@ export declare class FsListDraggableListDirective {
74
75
  * @param e
75
76
  */
76
77
  private touchFix;
78
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListDraggableListDirective, never>;
79
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsListDraggableListDirective, "[fsListDraggableList]", never, { "_rows": "rows"; }, {}, never>;
77
80
  }
@@ -2,6 +2,7 @@ import { ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core';
2
2
  import { ReorderController } from '../../classes/reorder-controller';
3
3
  import { Row } from '../../models/row';
4
4
  import { FsListDraggableListDirective } from '../draggable-list/draggable-list.directive';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class FsListDraggableRowDirective implements OnInit, OnDestroy {
6
7
  private _el;
7
8
  private _renderer;
@@ -15,4 +16,6 @@ export declare class FsListDraggableRowDirective implements OnInit, OnDestroy {
15
16
  private _listenDragEvents;
16
17
  private _markReadyToSwapRows;
17
18
  private _unmarkRows;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListDraggableRowDirective, never>;
20
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsListDraggableRowDirective, "[fsListDraggableRow]", never, { "row": "row"; }, {}, never>;
18
21
  }
@@ -1,2 +1,5 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class FsListEmptyStateDirective {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListEmptyStateDirective, never>;
4
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsListEmptyStateDirective, "[fs-list-empty-state]", never, {}, {}, never>;
2
5
  }
@@ -1,5 +1,8 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class FsListFooterDirective {
2
3
  colspan: any;
3
4
  align: string;
4
5
  className: string | string[];
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListFooterDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsListFooterDirective, "[fs-list-footer]", never, { "colspan": "colspan"; "align": "align"; "className": "class"; }, {}, never>;
5
8
  }
@@ -1,3 +1,6 @@
1
1
  import { FsListCellDirective } from '../cell/cell.directive';
2
+ import * as i0 from "@angular/core";
2
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>;
3
6
  }
@@ -1,7 +1,10 @@
1
1
  import { GroupExpandNotifierService } from '../../services/group-expand-notifier.service';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class FsListGroupExpandTriggerDirective {
3
4
  private _expandNotifier;
4
5
  click(event: any): void;
5
6
  row: any;
6
7
  constructor(_expandNotifier: GroupExpandNotifierService);
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListGroupExpandTriggerDirective, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsListGroupExpandTriggerDirective, "[fsListGroupExpandTrigger]", never, { "row": "row"; }, {}, never>;
7
10
  }
@@ -1,5 +1,8 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class FsListHeaderDirective {
2
3
  colspan: any;
3
4
  align: string;
4
5
  className: string | string[];
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListHeaderDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsListHeaderDirective, "[fs-list-header]", never, { "colspan": "colspan"; "align": "align"; "className": "class"; }, {}, never>;
5
8
  }
@@ -1,6 +1,54 @@
1
1
  import { ModuleWithProviders } from '@angular/core';
2
2
  import { FsListConfig } from './interfaces';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "./components/list/list.component";
5
+ import * as i2 from "./components/body/row/row.component";
6
+ import * as i3 from "./components/body/row/actions/actions.component";
7
+ import * as i4 from "./components/body/row/inline-action/inline-action.component";
8
+ import * as i5 from "./components/body/row/menu-action/menu-action.component";
9
+ import * as i6 from "./components/body/row/cell/cell.component";
10
+ import * as i7 from "./components/footer/footer-row/footer-row.component";
11
+ import * as i8 from "./components/footer/footer-row/footer-cell/footer-cell.component";
12
+ import * as i9 from "./components/status/status.component";
13
+ import * as i10 from "./components/loader/loader.component";
14
+ import * as i11 from "./components/saved-filters/saved-filters.component";
15
+ import * as i12 from "./components/manage-saved-filters/manage-saved-filters.component";
16
+ import * as i13 from "./components/head/head.component";
17
+ import * as i14 from "./components/head/head-cell/head-cell.component";
18
+ import * as i15 from "./components/body/body.component";
19
+ import * as i16 from "./components/footer/footer.component";
20
+ import * as i17 from "./components/pagination/pagination.component";
21
+ import * as i18 from "./directives/column/column.directive";
22
+ import * as i19 from "./directives/cell/cell.directive";
23
+ import * as i20 from "./directives/header/header.directive";
24
+ import * as i21 from "./directives/footer/footer.directive";
25
+ import * as i22 from "./directives/group-cell/group-cell.directive";
26
+ import * as i23 from "./directives/group-expand-trigger/group-expand-trigger.directive";
27
+ import * as i24 from "./directives/draggable-list/draggable-list.directive";
28
+ import * as i25 from "./directives/draggable-row/draggable-row.directive";
29
+ import * as i26 from "./directives/empty-state/empty-state.directive";
30
+ import * as i27 from "./directives/content/content.directive";
31
+ import * as i28 from "./components/customize-cols/customize-cols.component";
32
+ import * as i29 from "@angular/common";
33
+ import * as i30 from "@angular/router";
34
+ import * as i31 from "@angular/material/button";
35
+ import * as i32 from "@angular/material/icon";
36
+ import * as i33 from "@angular/material/menu";
37
+ import * as i34 from "@angular/material/progress-spinner";
38
+ import * as i35 from "@angular/material/checkbox";
39
+ import * as i36 from "@angular/material/core";
40
+ import * as i37 from "@firestitch/filter";
41
+ import * as i38 from "@firestitch/menu";
42
+ import * as i39 from "@angular/flex-layout";
43
+ import * as i40 from "@firestitch/scroll";
44
+ import * as i41 from "@firestitch/prompt";
45
+ import * as i42 from "@angular/material/dialog";
46
+ import * as i43 from "@angular/material/tooltip";
47
+ import * as i44 from "@firestitch/file";
3
48
  export declare class FsListModule {
4
49
  static forRoot(config?: FsListConfig): ModuleWithProviders<FsListModule>;
50
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListModule, never>;
51
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FsListModule, [typeof i1.FsListComponent, typeof i2.FsRowComponent, typeof i3.FsRowActionsComponent, typeof i4.FsRowInlineActionComponent, typeof i5.FsRowMenuActionComponent, typeof i6.FsCellComponent, typeof i7.FsFooterRowComponent, typeof i8.FsFooterCellComponent, typeof i9.FsStatusComponent, typeof i10.FsListLoaderComponent, typeof i11.FsListSavedFiltersComponent, typeof i12.FsListManageSavedFiltersComponent, typeof i13.FsHeadComponent, typeof i14.FsHeadCellComponent, typeof i15.FsBodyComponent, typeof i16.FsFooterComponent, typeof i17.FsPaginationComponent, typeof i18.FsListColumnDirective, typeof i19.FsListCellDirective, typeof i20.FsListHeaderDirective, typeof i21.FsListFooterDirective, typeof i22.FsListGroupCellDirective, typeof i23.FsListGroupExpandTriggerDirective, typeof i24.FsListDraggableListDirective, typeof i25.FsListDraggableRowDirective, typeof i26.FsListEmptyStateDirective, typeof i27.FsListContentDirective, typeof i28.CustomizeColsDialogComponent], [typeof i29.CommonModule, typeof i30.RouterModule, typeof i31.MatButtonModule, typeof i32.MatIconModule, typeof i33.MatMenuModule, typeof i34.MatProgressSpinnerModule, typeof i35.MatCheckboxModule, typeof i36.MatRippleModule, typeof i37.FsFilterModule, typeof i38.FsMenuModule, typeof i39.FlexLayoutModule, typeof i40.FsScrollModule, typeof i41.FsPromptModule, typeof i42.MatDialogModule, typeof i43.MatTooltipModule, typeof i44.FsFileModule], [typeof i1.FsListComponent, typeof i2.FsRowComponent, typeof i6.FsCellComponent, typeof i10.FsListLoaderComponent, typeof i18.FsListColumnDirective, typeof i19.FsListCellDirective, typeof i20.FsListHeaderDirective, typeof i21.FsListFooterDirective, typeof i22.FsListGroupCellDirective, typeof i23.FsListGroupExpandTriggerDirective, typeof i26.FsListEmptyStateDirective, typeof i27.FsListContentDirective]>;
52
+ static ɵinj: i0.ɵɵInjectorDeclaration<FsListModule>;
5
53
  }
6
54
  export declare function FsListConfigFactory(config: FsListConfig): any;
@@ -1,8 +1,11 @@
1
1
  import { OnDestroy } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class GroupExpandNotifierService implements OnDestroy {
3
4
  private _expandStatusChanged$;
4
5
  private _destroy$;
5
6
  get expandStatusChange$(): import("rxjs").Observable<unknown>;
6
7
  toggleExpandStatus(rowData: any): void;
7
8
  ngOnDestroy(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<GroupExpandNotifierService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<GroupExpandNotifierService>;
8
11
  }