@osovitny/anatoly 2.14.68 → 2.14.69
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/esm2020/lib/ui/components/base/base.list.mjs +4 -3
- package/fesm2015/osovitny-anatoly.mjs +3 -2
- package/fesm2015/osovitny-anatoly.mjs.map +1 -1
- package/fesm2020/osovitny-anatoly.mjs +3 -2
- package/fesm2020/osovitny-anatoly.mjs.map +1 -1
- package/lib/ui/components/base/base.list.d.ts +2 -2
- package/package.json +1 -1
|
@@ -3436,6 +3436,7 @@ class BaseList extends BaseComponent {
|
|
|
3436
3436
|
this.pageSize = 10;
|
|
3437
3437
|
this.skipItems = 0;
|
|
3438
3438
|
this.currentPage = 1;
|
|
3439
|
+
this.showNoDataIfNoDataFound = true;
|
|
3439
3440
|
}
|
|
3440
3441
|
loadPageOne() {
|
|
3441
3442
|
this.skipItems = 0;
|
|
@@ -3471,13 +3472,13 @@ class BaseList extends BaseComponent {
|
|
|
3471
3472
|
}
|
|
3472
3473
|
}
|
|
3473
3474
|
BaseList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: BaseList, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
3474
|
-
BaseList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: BaseList, selector: "ng-component", inputs: {
|
|
3475
|
+
BaseList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: BaseList, selector: "ng-component", inputs: { showNoDataIfNoDataFound: "showNoDataIfNoDataFound" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
3475
3476
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: BaseList, decorators: [{
|
|
3476
3477
|
type: Component,
|
|
3477
3478
|
args: [{
|
|
3478
3479
|
template: ''
|
|
3479
3480
|
}]
|
|
3480
|
-
}], propDecorators: {
|
|
3481
|
+
}], propDecorators: { showNoDataIfNoDataFound: [{
|
|
3481
3482
|
type: Input
|
|
3482
3483
|
}] } });
|
|
3483
3484
|
|