@sumaris-net/ngx-components 0.15.1 → 0.15.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/ngx-sumaris-components.umd.js +4 -4
- package/bundles/ngx-sumaris-components.umd.js.map +1 -1
- package/bundles/ngx-sumaris-components.umd.min.js +1 -1
- package/bundles/ngx-sumaris-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/form/entity-editor.class.js +3 -3
- package/esm2015/src/app/core/form/form.class.js +3 -3
- package/fesm2015/ngx-sumaris-components.js +4 -4
- package/fesm2015/ngx-sumaris-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/entity-editor.class.d.ts +1 -4
- package/src/app/core/form/form.class.d.ts +1 -4
|
@@ -18686,8 +18686,8 @@
|
|
|
18686
18686
|
* Wait form is idle (not loading)
|
|
18687
18687
|
* @param opts
|
|
18688
18688
|
*/
|
|
18689
|
-
AppForm.prototype.waitIdle = function (
|
|
18690
|
-
return AppFormUtils.waitIdle(this
|
|
18689
|
+
AppForm.prototype.waitIdle = function () {
|
|
18690
|
+
return AppFormUtils.waitIdle(this);
|
|
18691
18691
|
};
|
|
18692
18692
|
/* -- protected methods -- */
|
|
18693
18693
|
AppForm.prototype.registerSubscription = function (sub) {
|
|
@@ -25652,11 +25652,11 @@
|
|
|
25652
25652
|
AppEntityEditor.prototype.computeUsageMode = function (data) {
|
|
25653
25653
|
return this.settings.isUsageMode('FIELD') ? 'FIELD' : 'DESK';
|
|
25654
25654
|
};
|
|
25655
|
-
AppEntityEditor.prototype.waitWhilePending = function (
|
|
25655
|
+
AppEntityEditor.prototype.waitWhilePending = function () {
|
|
25656
25656
|
return __awaiter(this, void 0, void 0, function () {
|
|
25657
25657
|
return __generator(this, function (_a) {
|
|
25658
25658
|
switch (_a.label) {
|
|
25659
|
-
case 0: return [4 /*yield*/, AppFormUtils.waitWhilePending(this
|
|
25659
|
+
case 0: return [4 /*yield*/, AppFormUtils.waitWhilePending(this)];
|
|
25660
25660
|
case 1: return [2 /*return*/, _a.sent()];
|
|
25661
25661
|
}
|
|
25662
25662
|
});
|