@sumaris-net/ngx-components 1.19.21-rc2 → 1.19.21
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 +7 -0
- 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/core/form/entity-editor.class.js +8 -1
- package/fesm2015/sumaris-net.ngx-components.js +6 -0
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/entity-editor.class.d.ts +1 -0
- package/sumaris-net.ngx-components.metadata.json +1 -1
|
@@ -28233,6 +28233,13 @@
|
|
|
28233
28233
|
this.onUpdateView.complete();
|
|
28234
28234
|
this.onUpdateView.unsubscribe();
|
|
28235
28235
|
};
|
|
28236
|
+
AppEntityEditor.prototype.waitIdle = function (opts) {
|
|
28237
|
+
var _this = this;
|
|
28238
|
+
// Wait end of saving
|
|
28239
|
+
if (this.saving)
|
|
28240
|
+
return waitFor(function () { return _this.saving !== true; });
|
|
28241
|
+
return _super.prototype.waitIdle.call(this, opts);
|
|
28242
|
+
};
|
|
28236
28243
|
/**
|
|
28237
28244
|
* Load data from the snapshot route
|
|
28238
28245
|
*
|