@firestitch/list 13.0.3 → 13.0.4

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.
@@ -66,6 +66,7 @@ export declare class FsListComponent implements OnInit, OnDestroy, AfterContentI
66
66
  get hasStatus(): boolean;
67
67
  get paginatorVisible(): boolean;
68
68
  get filtersQuery(): Record<string, unknown>;
69
+ get pagingState(): IPaginationState;
69
70
  ngAfterContentInit(): void;
70
71
  ngOnInit(): void;
71
72
  ngOnDestroy(): void;
@@ -93,7 +94,6 @@ export declare class FsListComponent implements OnInit, OnDestroy, AfterContentI
93
94
  * Update visibility for specific column
94
95
  */
95
96
  columnVisibility(name: string, show: boolean): void;
96
- getPagingState(): IPaginationState;
97
97
  /**
98
98
  * Update visibility for list of specific columns
99
99
  */
@@ -6601,6 +6601,13 @@
6601
6601
  enumerable: false,
6602
6602
  configurable: true
6603
6603
  });
6604
+ Object.defineProperty(FsListComponent.prototype, "pagingState", {
6605
+ get: function () {
6606
+ return this.list.paging.state;
6607
+ },
6608
+ enumerable: false,
6609
+ configurable: true
6610
+ });
6604
6611
  FsListComponent.prototype.ngAfterContentInit = function () {
6605
6612
  if (this.list.afterInit) {
6606
6613
  this.list.afterInit(this);
@@ -6688,9 +6695,6 @@
6688
6695
  FsListComponent.prototype.columnVisibility = function (name, show) {
6689
6696
  this.columnsVisibility([{ name: name, show: show }]);
6690
6697
  };
6691
- FsListComponent.prototype.getPagingState = function () {
6692
- return this.list.paging.state;
6693
- };
6694
6698
  /**
6695
6699
  * Update visibility for list of specific columns
6696
6700
  */