@sumaris-net/ngx-components 1.16.1 → 1.16.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/sumaris-net.ngx-components.umd.js +4 -1
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/admin/services/person.service.js +2 -2
- package/esm2015/src/app/core/services/model/entity.model.js +4 -1
- package/fesm2015/sumaris-net.ngx-components.js +4 -1
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/admin/services/person.service.d.ts +1 -1
- package/src/app/core/services/model/entity.model.d.ts +1 -0
- package/sumaris-net.ngx-components.metadata.json +1 -1
|
@@ -10935,6 +10935,9 @@
|
|
|
10935
10935
|
EntityUtils.isLocalId = function (id) {
|
|
10936
10936
|
return isNotNil(id) && +id < 0;
|
|
10937
10937
|
};
|
|
10938
|
+
EntityUtils.isRemoteId = function (id) {
|
|
10939
|
+
return isNotNil(id) && +id >= 0;
|
|
10940
|
+
};
|
|
10938
10941
|
return EntityUtils;
|
|
10939
10942
|
}());
|
|
10940
10943
|
|
|
@@ -29483,7 +29486,7 @@
|
|
|
29483
29486
|
fetchPolicy: 'network-only',
|
|
29484
29487
|
withTotal: (offset === 0),
|
|
29485
29488
|
toEntity: false
|
|
29486
|
-
}); },
|
|
29489
|
+
}); }, { progression: opts === null || opts === void 0 ? void 0 : opts.progression, maxProgression: maxProgression * 0.9 })];
|
|
29487
29490
|
case 1:
|
|
29488
29491
|
res = _a.sent();
|
|
29489
29492
|
// Save result locally
|