@firestitch/list 9.12.2 → 9.12.5

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.
@@ -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
  */
@@ -0,0 +1,2 @@
1
+ export declare class FsListContentDirective {
2
+ }
@@ -1616,27 +1616,24 @@
1616
1616
  PaginationStrategy["None"] = "none";
1617
1617
  })(exports.PaginationStrategy || (exports.PaginationStrategy = {}));
1618
1618
 
1619
- var PaginationController = /** @class */ (function (_super) {
1620
- __extends(PaginationController, _super);
1619
+ var PaginationController = /** @class */ (function () {
1621
1620
  function PaginationController() {
1622
- var _this = _super.call(this) || this;
1623
- _this.limit = 25;
1624
- _this.manual = false;
1625
- _this.page = 1; // Active page
1626
- _this.offset = 0;
1621
+ this.limit = 25;
1622
+ this.manual = false;
1623
+ this.page = 1; // Active page
1624
+ this.offset = 0;
1627
1625
  // public pagesArray = [];
1628
- _this.displayed = 0;
1629
- _this._pages$ = new rxjs.BehaviorSubject(0); // Total pages
1630
- _this._strategy = exports.PaginationStrategy.None;
1631
- _this._removedRows = 0;
1632
- _this._pageChanged$ = new rxjs.Subject();
1633
- _this._pageReset$ = new rxjs.Subject();
1634
- _this._onDestroy$ = new rxjs.Subject();
1635
- _this._loadMoreEnabled = false;
1636
- _this._infinityScrollEnabled = false;
1637
- _this._loadMoreText = 'Load More';
1638
- _this._limits = [10, 25, 50, 100, 200];
1639
- return _this;
1626
+ this.displayed = 0;
1627
+ this._pages$ = new rxjs.BehaviorSubject(0); // Total pages
1628
+ this._strategy = exports.PaginationStrategy.None;
1629
+ this._removedRows = 0;
1630
+ this._pageChanged$ = new rxjs.Subject();
1631
+ this._pageReset$ = new rxjs.Subject();
1632
+ this._onDestroy$ = new rxjs.Subject();
1633
+ this._loadMoreEnabled = false;
1634
+ this._infinityScrollEnabled = false;
1635
+ this._loadMoreText = 'Load More';
1636
+ this._limits = [10, 25, 50, 100, 200];
1640
1637
  }
1641
1638
  Object.defineProperty(PaginationController.prototype, "pages", {
1642
1639
  get: function () {
@@ -1651,7 +1648,8 @@
1651
1648
  });
1652
1649
  Object.defineProperty(PaginationController.prototype, "pages$", {
1653
1650
  get: function () {
1654
- return this._pages$.asObservable();
1651
+ return this._pages$
1652
+ .pipe(operators.distinctUntilChanged());
1655
1653
  },
1656
1654
  enumerable: true,
1657
1655
  configurable: true
@@ -1722,6 +1720,22 @@
1722
1720
  enumerable: true,
1723
1721
  configurable: true
1724
1722
  });
1723
+ Object.defineProperty(PaginationController.prototype, "loadMoreQuery", {
1724
+ get: function () {
1725
+ switch (this.strategy) {
1726
+ case exports.PaginationStrategy.Page:
1727
+ return this.query;
1728
+ case exports.PaginationStrategy.Offset:
1729
+ var query = this.queryOffsetStrategy;
1730
+ query.limit = query.offset + query.limit;
1731
+ query.offset = 0;
1732
+ return query;
1733
+ }
1734
+ return {};
1735
+ },
1736
+ enumerable: true,
1737
+ configurable: true
1738
+ });
1725
1739
  Object.defineProperty(PaginationController.prototype, "queryPageStrategy", {
1726
1740
  /**
1727
1741
  * Query for Page Strategy
@@ -1884,12 +1898,6 @@
1884
1898
  enumerable: true,
1885
1899
  configurable: true
1886
1900
  });
1887
- PaginationController.prototype._fromJSON = function (value) {
1888
- _super.prototype._fromJSON.call(this, value);
1889
- if (!value.limit) {
1890
- this.limit = 25;
1891
- }
1892
- };
1893
1901
  PaginationController.prototype.initWithConfig = function (config, loadMore, infinityScrollEnabled) {
1894
1902
  if (infinityScrollEnabled === void 0) { infinityScrollEnabled = false; }
1895
1903
  if (config) {
@@ -1899,12 +1907,12 @@
1899
1907
  if (config.limit) {
1900
1908
  this.limit = config.limit;
1901
1909
  }
1902
- if (loadMore) {
1903
- this.setLoadMore(loadMore);
1904
- }
1905
- this._infinityScrollEnabled = infinityScrollEnabled;
1906
1910
  this.strategy = config.strategy;
1907
1911
  }
1912
+ if (loadMore) {
1913
+ this.setLoadMore(loadMore);
1914
+ }
1915
+ this._infinityScrollEnabled = infinityScrollEnabled;
1908
1916
  };
1909
1917
  Object.defineProperty(PaginationController.prototype, "_hasPrevPagePageStrategy", {
1910
1918
  /**
@@ -1949,15 +1957,15 @@
1949
1957
  /**
1950
1958
  * Update paging config and all related fields
1951
1959
  * @param config
1952
- * @param displayed
1953
- * @param loadMore
1960
+ * @param displayedRecords
1961
+ * @param loadMoreOperation
1954
1962
  */
1955
- PaginationController.prototype.updatePaging = function (config, displayed, loadMore) {
1956
- if (displayed === void 0) { displayed = 0; }
1957
- if (loadMore === void 0) { loadMore = false; }
1958
- if (!loadMore) {
1959
- this._fromJSON(config);
1960
- this.displayed = displayed;
1963
+ PaginationController.prototype.updatePaging = function (config, displayedRecords, loadMoreOperation) {
1964
+ if (displayedRecords === void 0) { displayedRecords = 0; }
1965
+ if (loadMoreOperation === void 0) { loadMoreOperation = false; }
1966
+ if (!loadMoreOperation) {
1967
+ this._fromParams(config);
1968
+ this.displayed = displayedRecords;
1961
1969
  }
1962
1970
  else {
1963
1971
  this.records = config.records;
@@ -2144,6 +2152,19 @@
2144
2152
  this._onDestroy$.next();
2145
2153
  this._onDestroy$.complete();
2146
2154
  };
2155
+ /**
2156
+ * Update paging state
2157
+ * @param params
2158
+ */
2159
+ PaginationController.prototype._fromParams = function (params) {
2160
+ var _a;
2161
+ if (!this.loadMoreEnabled) {
2162
+ this.limit = (_a = params.limit, (_a !== null && _a !== void 0 ? _a : 25));
2163
+ }
2164
+ this.records = params.records;
2165
+ this.manual = params.manual;
2166
+ this.pages = params.pages || 0;
2167
+ };
2147
2168
  /**
2148
2169
  * Calc and update offset
2149
2170
  */
@@ -2156,25 +2177,8 @@
2156
2177
  PaginationController.prototype.updateTotalPages = function () {
2157
2178
  this.pages = Math.ceil(this.records / this.limit);
2158
2179
  };
2159
- __decorate([
2160
- tsmodels.Alias(),
2161
- __metadata("design:type", Object)
2162
- ], PaginationController.prototype, "limit", void 0);
2163
- __decorate([
2164
- tsmodels.Alias(),
2165
- __metadata("design:type", Number)
2166
- ], PaginationController.prototype, "records", void 0);
2167
- __decorate([
2168
- tsmodels.Alias(),
2169
- __metadata("design:type", Object)
2170
- ], PaginationController.prototype, "manual", void 0);
2171
- __decorate([
2172
- tsmodels.Alias('pages'),
2173
- __metadata("design:type", Number),
2174
- __metadata("design:paramtypes", [Number])
2175
- ], PaginationController.prototype, "pages", null);
2176
2180
  return PaginationController;
2177
- }(tsmodels.Model));
2181
+ }());
2178
2182
 
2179
2183
 
2180
2184
  (function (SelectionChangeType) {
@@ -3394,9 +3398,20 @@
3394
3398
  var _a;
3395
3399
  (_a = _this.selection) === null || _a === void 0 ? void 0 : _a.closeSelectionDialog();
3396
3400
  }), operators.map(function (params) {
3397
- var query = _this.paging.hasOffsetStrategy && params && params.loadOffset
3398
- ? Object.assign({}, _this.filtersQuery, _this.paging.loadDeletedOffsetQuery)
3399
- : Object.assign({}, _this.filtersQuery, _this.paging.query);
3401
+ var query = Object.assign({}, _this.filtersQuery);
3402
+ if (_this.paging.hasOffsetStrategy && params && params.loadOffset) {
3403
+ query = Object.assign(query, _this.paging.loadDeletedOffsetQuery);
3404
+ }
3405
+ else {
3406
+ var allRecordsRangeNeeded = (_this.initialFetch
3407
+ || _this.dataController.operation === exports.FsListState.Reload) && _this.paging.loadMoreEnabled;
3408
+ if (allRecordsRangeNeeded) {
3409
+ query = Object.assign(query, _this.paging.loadMoreQuery);
3410
+ }
3411
+ else {
3412
+ query = Object.assign(query, _this.paging.query);
3413
+ }
3414
+ }
3400
3415
  if (_this.sorting.sortingColumn) {
3401
3416
  Object.assign(query, {
3402
3417
  order: _this.sorting.sortingColumn.name + "," + _this.sorting.sortingColumn.direction
@@ -3423,6 +3438,7 @@
3423
3438
  return source$;
3424
3439
  }), operators.takeUntil(this.onDestroy$))
3425
3440
  .subscribe(function (response) {
3441
+ _this.initialFetch = false;
3426
3442
  _this.completeFetch(response);
3427
3443
  });
3428
3444
  };
@@ -3638,7 +3654,7 @@
3638
3654
  this.selection.selectedRowsIntersection(this.dataController.visibleRowsData);
3639
3655
  }
3640
3656
  if (((_c = this.emptyState) === null || _c === void 0 ? void 0 : _c.validate) && this.emptyStateTemplate) {
3641
- this.emptyStateEnabled = this.emptyState.validate(query, lodashEs.cloneDeep(response.data));
3657
+ this.emptyStateEnabled = this.emptyState.validate(query, lodashEs.cloneDeep(this.dataController.visibleRowsData));
3642
3658
  }
3643
3659
  if (this.afterFetchFn) {
3644
3660
  this.afterFetchFn(query, this.dataController.visibleRowsData);
@@ -4636,7 +4652,7 @@
4636
4652
  FsListComponent = __decorate([
4637
4653
  core.Component({
4638
4654
  selector: 'fs-list',
4639
- template: "<div class=\"fs-list-container\"\r\n [ngClass]=\"{ 'has-filter-input': list.filterInput,\r\n 'has-filters': list.filterConfig?.items.length,\r\n 'has-heading': list.heading,\r\n 'has-status': list.status,\r\n 'has-chips': list.chips,\r\n 'has-actions': list.actions.hasActions,\r\n 'first-load': firstLoad,\r\n 'loading': list.loading$ | async }\">\r\n <ng-template [ngTemplateOutlet]=\"listContainerContent\"></ng-template>\r\n</div>\r\n\r\n<ng-template #listContainerContent>\r\n <ng-container *ngIf=\"list.dataController.visibleRows$ | async as listData\">\r\n <!-- Header -->\r\n <div class=\"fs-list-header-container\">\r\n\r\n <div class=\"fs-list-header\"\r\n [ngClass]=\"{ 'no-wrap': reorderController.manualReorderActivated$ || !list.filterConfig?.items.length }\">\r\n <div class=\"heading-container\">\r\n <h2 class=\"heading\" *ngIf=\"list.heading\">{{list.heading}}</h2>\r\n <span class=\"subheading\" *ngIf=\"list.subheading\">{{list.subheading}}</span>\r\n </div>\r\n <fs-filter\r\n class=\"fs-list-filter\"\r\n *ngIf=\"list.filterConfig\"\r\n [filter]=\"list.filterConfig\"\r\n [showSortBy]=\"!list.status\"\r\n [showFilterInput]=\"list.filterInput\"\r\n (ready)=\"filterReady()\">\r\n\r\n <ng-template fsFilterStatusBar>\r\n <ng-container *ngIf=\"\r\n list.paging &&\r\n !(reorderController.manualReorderActivated$ | async) &&\r\n (!reorderController.enabled || reorderController.status) &&\r\n ((list.scrollable && list.scrollable.status) || !list.scrollable)\">\r\n <!-- Status -->\r\n <fs-list-status\r\n class=\"fs-list-status\"\r\n [ngClass]=\"{ 'hidden-mobile': !list.status }\"\r\n [rows]=\"listData\"\r\n [sorting]=\"list.sorting\"\r\n [paging]=\"list.paging\"\r\n [firstLoad]=\"firstLoad\"\r\n [scrollable]=\"list.scrollable\">\r\n </fs-list-status>\r\n </ng-container>\r\n </ng-template>\r\n </fs-filter>\r\n </div>\r\n </div>\r\n\r\n <!-- Table implementation -->\r\n <div class=\"fs-list-table-container\">\r\n <table class=\"fs-list-table\" role=\"grid\" *ngIf=\"!firstLoad && listData.length > 0 && !list.emptyStateEnabled\">\r\n <thead fs-list-head\r\n class=\"fs-list-head\"\r\n role=\"rowgroup\"\r\n *ngIf=\"list.columns.hasHeader\"\r\n [ngClass]=\"list.columns.theadClass\"\r\n [columns]=\"list.columns.visibleColumns\"\r\n [sorting]=\"list.sorting\"\r\n [selection]=\"list.selection\"\r\n [hasRowActions]=\"list.hasRowActions\"\r\n >\r\n </thead>\r\n\r\n <tbody fs-list-body\r\n fsListDraggableList\r\n class=\"fs-list-body\"\r\n role=\"rowgroup\"\r\n [class.disabled]=\"!!(reorderController.reorderDisabled$ | async)\"\r\n [rows]=\"listData\"\r\n [rowActionsRaw]=\"list.rowActionsRaw\"\r\n [groupActionsRaw]=\"list.groupActionsRaw\"\r\n [hasRowActions]=\"list.hasRowActions\"\r\n [rowEvents]=\"list.rowEvents\"\r\n [rowClass]=\"list.rowClass\"\r\n [columns]=\"list.columns.visibleColumns\"\r\n [restoreMode]=\"list.restoreMode\"\r\n [selection]=\"list.selection\"\r\n [rowRemoved]=\"rowRemoved\"\r\n >\r\n </tbody>\r\n\r\n <tfoot fs-list-footer\r\n class=\"fs-list-footer\"\r\n *ngIf=\"list.columns.hasFooter\"\r\n [columns]=\"list.columns.visibleColumns\"\r\n [selection]=\"list.selection\"\r\n [hasRowActions]=\"list.hasRowActions\">\r\n </tfoot>\r\n </table>\r\n <fs-list-loader\r\n *ngIf=\"firstLoad\"\r\n [columns]=\"list.columns.columns\"\r\n [loaderLines]=\"loaderLines\">\r\n </fs-list-loader>\r\n </div>\r\n\r\n <fs-list-pagination\r\n *ngIf=\"paginatorVisible\"\r\n class=\"fs-list-pagination\"\r\n [rows]=\"listData\"\r\n [pagination]=\"list.paging\">\r\n </fs-list-pagination>\r\n\r\n\r\n <ng-container *ngIf=\"!firstLoad\">\r\n <div \r\n *ngIf=\"listData.length === 0\" \r\n class=\"fs-list-no-results-container\">\r\n <div \r\n *ngIf=\"list.noResults?.message && !list.emptyStateEnabled\"\r\n class=\"fs-list-no-results\">\r\n {{ list.noResults?.message }}\r\n </div>\r\n <ng-container *ngIf=\"list.emptyStateEnabled\">\r\n <ng-template [ngTemplateOutlet]=\"list.emptyStateTemplate\"></ng-template>\r\n </ng-container> \r\n </div>\r\n </ng-container>\r\n </ng-container>\r\n</ng-template>\r\n\r\n",
4655
+ template: "<div class=\"fs-list-container\"\n [ngClass]=\"{ 'has-filter-input': list.filterInput,\n 'has-filters': list.filterConfig?.items.length,\n 'has-heading': list.heading,\n 'has-status': list.status,\n 'has-chips': list.chips,\n 'has-actions': list.actions.hasActions,\n 'first-load': firstLoad,\n 'loading': list.loading$ | async }\">\n <ng-template [ngTemplateOutlet]=\"listContainerContent\"></ng-template>\n</div>\n\n<ng-template #listContainerContent>\n <ng-container *ngIf=\"list.dataController.visibleRows$ | async as listData\">\n <!-- Header -->\n <div class=\"fs-list-header-container\">\n\n <div class=\"fs-list-header\"\n [ngClass]=\"{ 'no-wrap': reorderController.manualReorderActivated$ || !list.filterConfig?.items.length }\">\n <div class=\"heading-container\">\n <h2 class=\"heading\" *ngIf=\"list.heading\">{{list.heading}}</h2>\n <span class=\"subheading\" *ngIf=\"list.subheading\">{{list.subheading}}</span>\n </div>\n <fs-filter\n class=\"fs-list-filter\"\n *ngIf=\"list.filterConfig\"\n [filter]=\"list.filterConfig\"\n [showSortBy]=\"!list.status\"\n [showFilterInput]=\"list.filterInput\"\n (ready)=\"filterReady()\">\n\n <ng-template fsFilterStatusBar>\n <ng-container *ngIf=\"\n list.paging &&\n !(reorderController.manualReorderActivated$ | async) &&\n (!reorderController.enabled || reorderController.status) &&\n ((list.scrollable && list.scrollable.status) || !list.scrollable)\">\n <!-- Status -->\n <fs-list-status\n class=\"fs-list-status\"\n [ngClass]=\"{ 'hidden-mobile': !list.status }\"\n [rows]=\"listData\"\n [sorting]=\"list.sorting\"\n [paging]=\"list.paging\"\n [firstLoad]=\"firstLoad\"\n [scrollable]=\"list.scrollable\">\n </fs-list-status>\n </ng-container>\n </ng-template>\n </fs-filter>\n </div>\n </div>\n\n <ng-content select=\"[fs-list-content]\"></ng-content>\n\n <!-- Table implementation -->\n <div class=\"fs-list-table-container\">\n <table class=\"fs-list-table\" role=\"grid\" *ngIf=\"!firstLoad && listData.length > 0 && !list.emptyStateEnabled\">\n <thead fs-list-head\n class=\"fs-list-head\"\n role=\"rowgroup\"\n *ngIf=\"list.columns.hasHeader\"\n [ngClass]=\"list.columns.theadClass\"\n [columns]=\"list.columns.visibleColumns\"\n [sorting]=\"list.sorting\"\n [selection]=\"list.selection\"\n [hasRowActions]=\"list.hasRowActions\"\n >\n </thead>\n\n <tbody fs-list-body\n fsListDraggableList\n class=\"fs-list-body\"\n role=\"rowgroup\"\n [class.disabled]=\"!!(reorderController.reorderDisabled$ | async)\"\n [rows]=\"listData\"\n [rowActionsRaw]=\"list.rowActionsRaw\"\n [groupActionsRaw]=\"list.groupActionsRaw\"\n [hasRowActions]=\"list.hasRowActions\"\n [rowEvents]=\"list.rowEvents\"\n [rowClass]=\"list.rowClass\"\n [columns]=\"list.columns.visibleColumns\"\n [restoreMode]=\"list.restoreMode\"\n [selection]=\"list.selection\"\n [rowRemoved]=\"rowRemoved\"\n >\n </tbody>\n\n <tfoot fs-list-footer\n class=\"fs-list-footer\"\n *ngIf=\"list.columns.hasFooter\"\n [columns]=\"list.columns.visibleColumns\"\n [selection]=\"list.selection\"\n [hasRowActions]=\"list.hasRowActions\">\n </tfoot>\n </table>\n <fs-list-loader\n *ngIf=\"firstLoad\"\n [columns]=\"list.columns.columns\"\n [loaderLines]=\"loaderLines\">\n </fs-list-loader>\n </div>\n\n <fs-list-pagination\n *ngIf=\"paginatorVisible\"\n class=\"fs-list-pagination\"\n [rows]=\"listData\"\n [pagination]=\"list.paging\">\n </fs-list-pagination>\n\n\n <ng-container *ngIf=\"!firstLoad\">\n <div\n *ngIf=\"listData.length === 0\"\n class=\"fs-list-no-results-container\">\n <div\n *ngIf=\"list.noResults?.message && !list.emptyStateEnabled\"\n class=\"fs-list-no-results\">\n {{ list.noResults?.message }}\n </div>\n <ng-container *ngIf=\"list.emptyStateEnabled\">\n <ng-template [ngTemplateOutlet]=\"list.emptyStateTemplate\"></ng-template>\n </ng-container>\n </div>\n </ng-container>\n </ng-container>\n</ng-template>\n\n",
4640
4656
  changeDetection: core.ChangeDetectionStrategy.OnPush,
4641
4657
  providers: [
4642
4658
  GroupExpandNotifierService,
@@ -6138,6 +6154,17 @@
6138
6154
  return FsListDraggableRowDirective;
6139
6155
  }());
6140
6156
 
6157
+ var FsListContentDirective = /** @class */ (function () {
6158
+ function FsListContentDirective() {
6159
+ }
6160
+ FsListContentDirective = __decorate([
6161
+ core.Directive({
6162
+ selector: '[fs-list-content]',
6163
+ })
6164
+ ], FsListContentDirective);
6165
+ return FsListContentDirective;
6166
+ }());
6167
+
6141
6168
  var FsListModule = /** @class */ (function () {
6142
6169
  function FsListModule() {
6143
6170
  }
@@ -6207,6 +6234,7 @@
6207
6234
  FsListDraggableListDirective,
6208
6235
  FsListDraggableRowDirective,
6209
6236
  FsListEmptyStateDirective,
6237
+ FsListContentDirective,
6210
6238
  // Dialog
6211
6239
  CustomizeColsDialogComponent,
6212
6240
  ],
@@ -6227,6 +6255,7 @@
6227
6255
  FsListGroupCellDirective,
6228
6256
  FsListGroupExpandTriggerDirective,
6229
6257
  FsListEmptyStateDirective,
6258
+ FsListContentDirective,
6230
6259
  ],
6231
6260
  })
6232
6261
  ], FsListModule);
@@ -6249,6 +6278,7 @@
6249
6278
  exports.FsListCellDirective = FsListCellDirective;
6250
6279
  exports.FsListColumnDirective = FsListColumnDirective;
6251
6280
  exports.FsListComponent = FsListComponent;
6281
+ exports.FsListContentDirective = FsListContentDirective;
6252
6282
  exports.FsListEmptyStateDirective = FsListEmptyStateDirective;
6253
6283
  exports.FsListFooterDirective = FsListFooterDirective;
6254
6284
  exports.FsListHeaderDirective = FsListHeaderDirective;