@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.
- package/bundles/indice-ng-components.umd.js +3 -0
- package/bundles/indice-ng-components.umd.js.map +1 -1
- package/esm2015/lib/controls/pager/pager.component.js +4 -1
- package/fesm2015/indice-ng-components.js +3 -0
- package/fesm2015/indice-ng-components.js.map +1 -1
- package/indice-ng-components.metadata.json +1 -1
- package/lib/controls/pager/pager.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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',] }],
|