@indice/ng-components 0.2.98 → 0.2.99

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.
@@ -766,6 +766,8 @@
766
766
  var PagerComponent = /** @class */ (function () {
767
767
  function PagerComponent(router) {
768
768
  this.router = router;
769
+ // BUSY STATE
770
+ this.busy = false;
769
771
  // PAGING
770
772
  this.count = null;
771
773
  this.page = 1;
@@ -859,6 +861,7 @@
859
861
  { type: router.Router }
860
862
  ]; };
861
863
  PagerComponent.propDecorators = {
864
+ busy: [{ type: i0.Input }],
862
865
  count: [{ type: i0.Input }],
863
866
  page: [{ type: i0.Input }],
864
867
  pageSize: [{ type: i0.Input, args: ['page-size',] }],