ng-inail-common 2.0.34-beta.1 → 2.0.34-beta.2
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/ng-inail-common.umd.js +1 -1
- package/bundles/ng-inail-common.umd.js.map +1 -1
- package/bundles/ng-inail-common.umd.min.js +1 -1
- package/bundles/ng-inail-common.umd.min.js.map +1 -1
- package/esm2015/lib/components/core/table/table/table.component.js +2 -2
- package/fesm2015/ng-inail-common.js +1 -1
- package/fesm2015/ng-inail-common.js.map +1 -1
- package/package.json +1 -1
|
@@ -5374,7 +5374,7 @@
|
|
|
5374
5374
|
_this.getListSize = function () { return _this.externalPaginationSorting ? _this.paginationState.fullListSize : _this.dataSource.length; };
|
|
5375
5375
|
_this.getCurrentPage = function () { return _this.externalPaginationSorting && _this.paginationState ? _this.paginationState.pageNumber : _this.currentPage; };
|
|
5376
5376
|
_this.getFullListSize = function () { var _a, _b; return _this.externalPaginationSorting ? (_a = _this.paginationState) === null || _a === void 0 ? void 0 : _a.fullListSize : (_b = _this.dataSource) === null || _b === void 0 ? void 0 : _b.length; };
|
|
5377
|
-
_this.showNoDataFound = function () { return _this.noDataFound != undefined ? _this.noDataFound : (_this.
|
|
5377
|
+
_this.showNoDataFound = function () { var _a, _b; return _this.noDataFound != undefined ? _this.noDataFound : (_this.externalPaginationSorting ? ((_a = _this.paginationState) === null || _a === void 0 ? void 0 : _a.fullListSize) === 0 : ((_b = _this.dataSource) === null || _b === void 0 ? void 0 : _b.length) === 0); };
|
|
5378
5378
|
// Operatori per gestione selezione righe
|
|
5379
5379
|
_this.isChecked = function (trcbValue) { return _this.righeSelezionate.some(function (value) { return value == trcbValue; }); };
|
|
5380
5380
|
_this.isAllChecked = function () { return _this.righeSelezionabili.length > 0 && _this.righeSelezionabili.every(_this.isChecked); };
|