@firestitch/list 9.12.5 → 12.1.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 (182) hide show
  1. package/app/classes/columns-controller.d.ts +8 -2
  2. package/app/classes/list-controller.d.ts +2 -1
  3. package/app/classes/persistance-controller.d.ts +3 -0
  4. package/app/classes/reorder-controller.d.ts +3 -0
  5. package/app/components/body/body.component.d.ts +3 -0
  6. package/app/components/body/row/actions/actions.component.d.ts +3 -0
  7. package/app/components/body/row/cell/cell.component.d.ts +3 -0
  8. package/app/components/body/row/inline-action/inline-action.component.d.ts +3 -0
  9. package/app/components/body/row/menu-action/menu-action.component.d.ts +3 -0
  10. package/app/components/body/row/row.component.d.ts +3 -0
  11. package/app/components/customize-cols/customize-cols.component.d.ts +3 -0
  12. package/app/components/footer/footer-row/footer-cell/footer-cell.component.d.ts +3 -0
  13. package/app/components/footer/footer-row/footer-row.component.d.ts +3 -0
  14. package/app/components/footer/footer.component.d.ts +3 -0
  15. package/app/components/head/head-cell/head-cell.component.d.ts +3 -0
  16. package/app/components/head/head.component.d.ts +3 -0
  17. package/app/components/list/list.component.d.ts +3 -0
  18. package/app/components/loader/loader.component.d.ts +3 -0
  19. package/app/components/manage-saved-filters/manage-saved-filters.component.d.ts +3 -0
  20. package/app/components/pagination/pagination.component.d.ts +3 -0
  21. package/app/components/saved-filters/saved-filters.component.d.ts +3 -0
  22. package/app/components/status/status.component.d.ts +3 -0
  23. package/app/directives/cell/cell.directive.d.ts +3 -0
  24. package/app/directives/column/column.directive.d.ts +17 -10
  25. package/app/directives/content/content.directive.d.ts +3 -0
  26. package/app/directives/content-init/content-init.directive.d.ts +9 -0
  27. package/app/directives/draggable-list/draggable-list.directive.d.ts +3 -0
  28. package/app/directives/draggable-row/draggable-row.directive.d.ts +3 -0
  29. package/app/directives/empty-state/empty-state.directive.d.ts +3 -0
  30. package/app/directives/footer/footer.directive.d.ts +3 -0
  31. package/app/directives/group-cell/group-cell.directive.d.ts +3 -0
  32. package/app/directives/group-expand-trigger/group-expand-trigger.directive.d.ts +3 -0
  33. package/app/directives/header/header.directive.d.ts +3 -0
  34. package/app/fs-list.module.d.ts +49 -0
  35. package/app/interfaces/column-config.interface.d.ts +2 -0
  36. package/app/interfaces/listconfig.interface.d.ts +2 -0
  37. package/app/models/column-async-attribute.d.ts +5 -0
  38. package/app/models/column-attributes.d.ts +38 -0
  39. package/app/models/column.model.d.ts +22 -15
  40. package/app/services/group-expand-notifier.service.d.ts +3 -0
  41. package/bundles/firestitch-list.umd.js +2461 -2146
  42. package/bundles/firestitch-list.umd.js.map +1 -1
  43. package/esm2015/app/classes/actions-controller.js +1 -1
  44. package/esm2015/app/classes/columns-controller.js +30 -10
  45. package/esm2015/app/classes/data-controller.js +2 -2
  46. package/esm2015/app/classes/external-params-controller.js +5 -7
  47. package/esm2015/app/classes/index.js +1 -1
  48. package/esm2015/app/classes/list-controller.js +7 -2
  49. package/esm2015/app/classes/pagination-controller.js +2 -2
  50. package/esm2015/app/classes/persistance-controller.js +11 -14
  51. package/esm2015/app/classes/reorder-controller.js +13 -13
  52. package/esm2015/app/classes/selection-controller.js +7 -6
  53. package/esm2015/app/classes/sorting-controller.js +6 -2
  54. package/esm2015/app/components/body/body.component.js +48 -75
  55. package/esm2015/app/components/body/row/actions/actions.component.js +37 -48
  56. package/esm2015/app/components/body/row/cell/cell.component.js +27 -33
  57. package/esm2015/app/components/body/row/inline-action/inline-action.component.js +27 -28
  58. package/esm2015/app/components/body/row/menu-action/menu-action.component.js +27 -32
  59. package/esm2015/app/components/body/row/row.component.js +54 -84
  60. package/esm2015/app/components/customize-cols/customize-cols.component.js +23 -18
  61. package/esm2015/app/components/footer/footer-row/footer-cell/footer-cell.component.js +15 -13
  62. package/esm2015/app/components/footer/footer-row/footer-row.component.js +20 -28
  63. package/esm2015/app/components/footer/footer.component.js +21 -25
  64. package/esm2015/app/components/head/head-cell/head-cell.component.js +17 -19
  65. package/esm2015/app/components/head/head.component.js +31 -39
  66. package/esm2015/app/components/list/list.component.js +76 -83
  67. package/esm2015/app/components/loader/loader.component.js +22 -21
  68. package/esm2015/app/components/manage-saved-filters/manage-saved-filters.component.js +19 -15
  69. package/esm2015/app/components/pagination/pagination.component.js +26 -26
  70. package/esm2015/app/components/saved-filters/saved-filters.component.js +20 -23
  71. package/esm2015/app/components/status/status.component.js +38 -41
  72. package/esm2015/app/directives/cell/cell.directive.js +17 -20
  73. package/esm2015/app/directives/column/column.directive.js +96 -88
  74. package/esm2015/app/directives/content/content.directive.js +12 -10
  75. package/esm2015/app/directives/content-init/content-init.directive.js +22 -0
  76. package/esm2015/app/directives/draggable-list/draggable-list.directive.js +16 -24
  77. package/esm2015/app/directives/draggable-row/draggable-row.directive.js +22 -30
  78. package/esm2015/app/directives/empty-state/empty-state.directive.js +12 -10
  79. package/esm2015/app/directives/footer/footer.directive.js +17 -20
  80. package/esm2015/app/directives/group-cell/group-cell.directive.js +12 -10
  81. package/esm2015/app/directives/group-expand-trigger/group-expand-trigger.directive.js +16 -22
  82. package/esm2015/app/directives/header/header.directive.js +17 -20
  83. package/esm2015/app/enums/button-type.enum.js +1 -1
  84. package/esm2015/app/enums/page-change-type.enum.js +1 -1
  85. package/esm2015/app/enums/pagination-strategy.enum.js +1 -1
  86. package/esm2015/app/enums/row-type.enum.js +1 -1
  87. package/esm2015/app/enums/state.enum.js +1 -1
  88. package/esm2015/app/fs-list.module.js +142 -66
  89. package/esm2015/app/fs-list.providers.js +1 -1
  90. package/esm2015/app/interfaces/cellconfig.interface.js +2 -1
  91. package/esm2015/app/interfaces/column-config.interface.js +2 -0
  92. package/esm2015/app/interfaces/draggable-list.interface.js +2 -1
  93. package/esm2015/app/interfaces/external-params.interface.js +2 -1
  94. package/esm2015/app/interfaces/index.js +4 -1
  95. package/esm2015/app/interfaces/listconfig.interface.js +2 -1
  96. package/esm2015/app/interfaces/pagination.interface.js +2 -1
  97. package/esm2015/app/models/column-async-attribute.js +14 -0
  98. package/esm2015/app/models/column-attributes.js +112 -0
  99. package/esm2015/app/models/column.model.js +55 -86
  100. package/esm2015/app/models/row/base-row.js +1 -1
  101. package/esm2015/app/models/row/child-row.js +1 -1
  102. package/esm2015/app/models/row/group-row.js +1 -1
  103. package/esm2015/app/models/row/simple-row.js +1 -1
  104. package/esm2015/app/models/row-action.model.js +1 -1
  105. package/esm2015/app/models/row.js +1 -1
  106. package/esm2015/app/models/styleConfig.model.js +1 -1
  107. package/esm2015/app/services/group-expand-notifier.service.js +9 -8
  108. package/esm2015/firestitch-list.js +1 -15
  109. package/esm2015/public_api.js +4 -1
  110. package/fesm2015/firestitch-list.js +1605 -1553
  111. package/fesm2015/firestitch-list.js.map +1 -1
  112. package/firestitch-list.d.ts +1 -15
  113. package/package.json +5 -8
  114. package/public_api.d.ts +3 -0
  115. package/bundles/firestitch-list.umd.min.js +0 -16
  116. package/bundles/firestitch-list.umd.min.js.map +0 -1
  117. package/esm5/app/classes/actions-controller.js +0 -71
  118. package/esm5/app/classes/columns-controller.js +0 -236
  119. package/esm5/app/classes/data-controller.js +0 -374
  120. package/esm5/app/classes/external-params-controller.js +0 -185
  121. package/esm5/app/classes/index.js +0 -3
  122. package/esm5/app/classes/list-controller.js +0 -783
  123. package/esm5/app/classes/pagination-controller.js +0 -570
  124. package/esm5/app/classes/persistance-controller.js +0 -25
  125. package/esm5/app/classes/reorder-controller.js +0 -204
  126. package/esm5/app/classes/selection-controller.js +0 -465
  127. package/esm5/app/classes/sorting-controller.js +0 -204
  128. package/esm5/app/components/body/body.component.js +0 -104
  129. package/esm5/app/components/body/row/actions/actions.component.js +0 -116
  130. package/esm5/app/components/body/row/cell/cell.component.js +0 -95
  131. package/esm5/app/components/body/row/inline-action/inline-action.component.js +0 -43
  132. package/esm5/app/components/body/row/menu-action/menu-action.component.js +0 -38
  133. package/esm5/app/components/body/row/row.component.js +0 -295
  134. package/esm5/app/components/customize-cols/customize-cols.component.js +0 -69
  135. package/esm5/app/components/footer/footer-row/footer-cell/footer-cell.component.js +0 -20
  136. package/esm5/app/components/footer/footer-row/footer-row.component.js +0 -38
  137. package/esm5/app/components/footer/footer.component.js +0 -31
  138. package/esm5/app/components/head/head-cell/head-cell.component.js +0 -38
  139. package/esm5/app/components/head/head.component.js +0 -106
  140. package/esm5/app/components/list/list.component.js +0 -403
  141. package/esm5/app/components/loader/loader.component.js +0 -47
  142. package/esm5/app/components/manage-saved-filters/manage-saved-filters.component.js +0 -81
  143. package/esm5/app/components/pagination/pagination.component.js +0 -46
  144. package/esm5/app/components/saved-filters/saved-filters.component.js +0 -41
  145. package/esm5/app/components/status/status.component.js +0 -79
  146. package/esm5/app/directives/cell/cell.directive.js +0 -24
  147. package/esm5/app/directives/column/column.directive.js +0 -98
  148. package/esm5/app/directives/content/content.directive.js +0 -14
  149. package/esm5/app/directives/draggable-list/draggable-list.directive.js +0 -281
  150. package/esm5/app/directives/draggable-row/draggable-row.directive.js +0 -83
  151. package/esm5/app/directives/empty-state/empty-state.directive.js +0 -14
  152. package/esm5/app/directives/footer/footer.directive.js +0 -24
  153. package/esm5/app/directives/group-cell/group-cell.directive.js +0 -17
  154. package/esm5/app/directives/group-expand-trigger/group-expand-trigger.directive.js +0 -33
  155. package/esm5/app/directives/header/header.directive.js +0 -24
  156. package/esm5/app/enums/button-type.enum.js +0 -9
  157. package/esm5/app/enums/page-change-type.enum.js +0 -6
  158. package/esm5/app/enums/pagination-strategy.enum.js +0 -7
  159. package/esm5/app/enums/row-type.enum.js +0 -7
  160. package/esm5/app/enums/state.enum.js +0 -11
  161. package/esm5/app/fs-list.module.js +0 -152
  162. package/esm5/app/fs-list.providers.js +0 -4
  163. package/esm5/app/interfaces/cellconfig.interface.js +0 -1
  164. package/esm5/app/interfaces/draggable-list.interface.js +0 -1
  165. package/esm5/app/interfaces/external-params.interface.js +0 -1
  166. package/esm5/app/interfaces/index.js +0 -1
  167. package/esm5/app/interfaces/listconfig.interface.js +0 -1
  168. package/esm5/app/interfaces/pagination.interface.js +0 -1
  169. package/esm5/app/models/column.model.js +0 -204
  170. package/esm5/app/models/row/base-row.js +0 -35
  171. package/esm5/app/models/row/child-row.js +0 -43
  172. package/esm5/app/models/row/group-row.js +0 -61
  173. package/esm5/app/models/row/simple-row.js +0 -15
  174. package/esm5/app/models/row-action.model.js +0 -153
  175. package/esm5/app/models/row.js +0 -126
  176. package/esm5/app/models/styleConfig.model.js +0 -91
  177. package/esm5/app/services/group-expand-notifier.service.js +0 -30
  178. package/esm5/firestitch-list.js +0 -19
  179. package/esm5/public_api.js +0 -41
  180. package/fesm5/firestitch-list.js +0 -6084
  181. package/fesm5/firestitch-list.js.map +0 -1
  182. package/firestitch-list.metadata.json +0 -1
@@ -1,7 +1,9 @@
1
+ import { Observable } from 'rxjs';
1
2
  import { Column } from '../models/column.model';
2
3
  import { FsListColumnChangeFn, FsListColumnConfig } from '../interfaces/listconfig.interface';
3
4
  export declare class ColumnsController {
4
- visibleColumns: Column[];
5
+ private _visibleColumns$;
6
+ private _visibleColumnsShared$;
5
7
  private _theadClass;
6
8
  private _loadFn;
7
9
  private _changeFn;
@@ -16,9 +18,12 @@ export declare class ColumnsController {
16
18
  private _hasFooter;
17
19
  private _columns;
18
20
  private _defaultConfigs;
21
+ private _columnsUpdated$;
19
22
  private _destroy$;
20
23
  constructor();
21
24
  get columns(): Column[];
25
+ get visibleColumns(): Column[];
26
+ get visibleColumns$(): Observable<Column[]>;
22
27
  get columnsForDialog(): {
23
28
  template: import("@angular/core").TemplateRef<any>;
24
29
  name: string;
@@ -50,7 +55,7 @@ export declare class ColumnsController {
50
55
  /**
51
56
  * Load visiblity config for columns from remote
52
57
  */
53
- loadRemoteColumnConfigs(): import("rxjs").Observable<import("../interfaces/listconfig.interface").FsListColumn[]>;
58
+ loadRemoteColumnConfigs(): Observable<import("../interfaces/listconfig.interface").FsListColumn[]>;
54
59
  /**
55
60
  * Set visible columns based on current columns show status
56
61
  */
@@ -61,5 +66,6 @@ export declare class ColumnsController {
61
66
  */
62
67
  updateVisibilityForCols(columnsConfig: any): void;
63
68
  destroy(): void;
69
+ private _listenColumnVisibilityUpdates;
64
70
  private _updateColspans;
65
71
  }
@@ -5,7 +5,7 @@ import { FsScrollInstance, FsScrollService } from '@firestitch/scroll';
5
5
  import { SelectionDialog } from '@firestitch/selection';
6
6
  import { Model } from 'tsmodels';
7
7
  import { BehaviorSubject, Observable, Subject } from 'rxjs';
8
- import { FsListAfterFetchFn, FsListConfig, FsListEmptyStateConfig, FsListFetchFn, FsListFetchSubscription, FsListNoResultsConfig, FsListRestoreConfig, FsListScrollableConfig, FsListTrackByFn } from '../interfaces';
8
+ import { FsListAfterContentInitFn, FsListAfterFetchFn, FsListConfig, FsListEmptyStateConfig, FsListFetchFn, FsListFetchSubscription, FsListNoResultsConfig, FsListRestoreConfig, FsListScrollableConfig, FsListTrackByFn } from '../interfaces';
9
9
  import { ColumnsController } from './columns-controller';
10
10
  import { ActionsController } from './index';
11
11
  import { DataController } from './data-controller';
@@ -43,6 +43,7 @@ export declare class List extends Model {
43
43
  emptyState: FsListEmptyStateConfig;
44
44
  fetchFn: FsListFetchFn;
45
45
  afterFetchFn: FsListAfterFetchFn;
46
+ afterContentInit: FsListAfterContentInitFn;
46
47
  initialized$: BehaviorSubject<boolean>;
47
48
  loading$: BehaviorSubject<boolean>;
48
49
  hasRowActions: any;
@@ -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,17 +1,9 @@
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 { ColumnAttributes } from '../../models/column-attributes';
5
+ import * as i0 from "@angular/core";
4
6
  export declare class FsListColumnDirective {
5
- title: string;
6
- name: string;
7
- show: boolean;
8
- customize: boolean;
9
- sortable: boolean;
10
- sortableDefault: boolean;
11
- direction: 'asc' | 'desc';
12
- align: string;
13
- width: string;
14
- className: string | string[];
15
7
  headerTemplate: TemplateRef<any>;
16
8
  headerConfigs: CellConfig;
17
9
  groupCellTemplate: TemplateRef<any>;
@@ -21,4 +13,19 @@ export declare class FsListColumnDirective {
21
13
  cellConfigs: CellConfig;
22
14
  footerTemplate: TemplateRef<any>;
23
15
  footerConfigs: CellConfig;
16
+ private readonly _columnAttributes;
17
+ constructor();
18
+ get attributes(): ColumnAttributes;
19
+ set visible(value: boolean);
20
+ set title(value: string);
21
+ set name(value: string);
22
+ set customize(value: boolean);
23
+ set sortable(value: boolean);
24
+ set sortableDefault(value: boolean);
25
+ set direction(value: 'asc' | 'desc');
26
+ set align(value: string);
27
+ set width(value: string);
28
+ set className(value: string | string[]);
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListColumnDirective, never>;
30
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsListColumnDirective, "fs-list-column", never, { "visible": "show"; "title": "title"; "name": "name"; "customize": "customize"; "sortable": "sortable"; "sortableDefault": "sortableDefault"; "direction": "direction"; "align": "align"; "width": "width"; "className": "class"; }, {}, ["headerTemplate", "headerConfigs", "groupCellTemplate", "groupCellConfigs", "cellTemplate", "cellConfigs", "footerTemplate", "footerConfigs", "expandTrigger"]>;
24
31
  }
@@ -1,2 +1,5 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class FsListContentDirective {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListContentDirective, never>;
4
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsListContentDirective, "[fs-list-content]", never, {}, {}, never>;
2
5
  }
@@ -0,0 +1,9 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FsListContentInitDirective implements AfterViewInit {
4
+ contentInitCallback: Function;
5
+ constructor();
6
+ ngAfterViewInit(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListContentInitDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsListContentInitDirective, "[fsListContentInit]", never, { "contentInitCallback": "fsListContentInit"; }, {}, never>;
9
+ }
@@ -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,55 @@
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 "./directives/content-init/content-init.directive";
32
+ import * as i29 from "./components/customize-cols/customize-cols.component";
33
+ import * as i30 from "@angular/common";
34
+ import * as i31 from "@angular/router";
35
+ import * as i32 from "@angular/material/button";
36
+ import * as i33 from "@angular/material/icon";
37
+ import * as i34 from "@angular/material/menu";
38
+ import * as i35 from "@angular/material/progress-spinner";
39
+ import * as i36 from "@angular/material/checkbox";
40
+ import * as i37 from "@angular/material/core";
41
+ import * as i38 from "@firestitch/filter";
42
+ import * as i39 from "@firestitch/menu";
43
+ import * as i40 from "@angular/flex-layout";
44
+ import * as i41 from "@firestitch/scroll";
45
+ import * as i42 from "@firestitch/prompt";
46
+ import * as i43 from "@angular/material/dialog";
47
+ import * as i44 from "@angular/material/tooltip";
48
+ import * as i45 from "@firestitch/file";
3
49
  export declare class FsListModule {
4
50
  static forRoot(config?: FsListConfig): ModuleWithProviders<FsListModule>;
51
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsListModule, never>;
52
+ 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.FsListContentInitDirective, typeof i29.CustomizeColsDialogComponent], [typeof i30.CommonModule, typeof i31.RouterModule, typeof i32.MatButtonModule, typeof i33.MatIconModule, typeof i34.MatMenuModule, typeof i35.MatProgressSpinnerModule, typeof i36.MatCheckboxModule, typeof i37.MatRippleModule, typeof i38.FsFilterModule, typeof i39.FsMenuModule, typeof i40.FlexLayoutModule, typeof i41.FsScrollModule, typeof i42.FsPromptModule, typeof i43.MatDialogModule, typeof i44.MatTooltipModule, typeof i45.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]>;
53
+ static ɵinj: i0.ɵɵInjectorDeclaration<FsListModule>;
5
54
  }
6
55
  export declare function FsListConfigFactory(config: FsListConfig): any;
@@ -0,0 +1,2 @@
1
+ import { FsListColumnDirective } from '../directives/column/column.directive';
2
+ export declare type FsListColumnConfig = Partial<Pick<FsListColumnDirective, 'className' | 'headerTemplate' | 'headerConfigs' | 'cellTemplate' | 'cellConfigs' | 'footerTemplate' | 'footerConfigs' | 'groupCellTemplate' | 'groupCellConfigs' | 'expandTrigger' | 'attributes'>>;
@@ -35,6 +35,7 @@ export interface FsListConfig {
35
35
  actions?: FsListAction[];
36
36
  fetch?: FsListFetchFn;
37
37
  afterFetch?: FsListAfterFetchFn;
38
+ afterContentInit?: FsListAfterContentInitFn;
38
39
  scrollable?: FsListScrollableConfig | boolean;
39
40
  selection?: FsListSelectionConfig;
40
41
  initialFetch?: boolean;
@@ -239,3 +240,4 @@ export declare type FsListFetchFn = (query: Record<string, any>, options: FsList
239
240
  paging?: FsPaging;
240
241
  }>;
241
242
  export declare type FsListAfterFetchFn = (query: Record<string, any>, data: unknown[]) => void;
243
+ export declare type FsListAfterContentInitFn = (query: Record<string, any>, data: unknown[]) => void;
@@ -0,0 +1,5 @@
1
+ import { BehaviorSubject } from 'rxjs';
2
+ export declare class ColumnAsyncAttribute<T> extends BehaviorSubject<T> {
3
+ constructor(value: T);
4
+ next(value: T): void;
5
+ }
@@ -0,0 +1,38 @@
1
+ import { Observable } from 'rxjs';
2
+ export declare class ColumnAttributes {
3
+ private _title;
4
+ private _name;
5
+ private _customize;
6
+ private _sortable;
7
+ private _sortableDefault;
8
+ private _direction;
9
+ private _align;
10
+ private _width;
11
+ private _className;
12
+ private _visible$;
13
+ constructor(attrs?: {
14
+ [key: string]: any;
15
+ });
16
+ set title(value: string);
17
+ get title(): string;
18
+ set name(value: string);
19
+ get name(): string;
20
+ set customize(value: boolean);
21
+ get customize(): boolean;
22
+ set sortable(value: boolean);
23
+ get sortable(): boolean;
24
+ set sortableDefault(value: boolean);
25
+ get sortableDefault(): boolean;
26
+ set direction(value: 'asc' | 'desc');
27
+ get direction(): 'asc' | 'desc';
28
+ set align(value: string);
29
+ get align(): string;
30
+ set width(value: string);
31
+ get width(): string;
32
+ set className(value: string | string[]);
33
+ get className(): string | string[];
34
+ set visible(value: boolean);
35
+ get visible(): boolean;
36
+ get visible$(): Observable<boolean>;
37
+ private _init;
38
+ }