@sumaris-net/ngx-components 1.23.40 → 1.23.41
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/editor.class.js +4 -1
- package/fesm2015/sumaris-net.ngx-components.js +3 -0
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/editor.class.d.ts +1 -0
- package/sumaris-net.ngx-components.metadata.json +1 -1
|
@@ -28691,6 +28691,13 @@
|
|
|
28691
28691
|
enumerable: false,
|
|
28692
28692
|
configurable: true
|
|
28693
28693
|
});
|
|
28694
|
+
Object.defineProperty(AppEditor.prototype, "loaded", {
|
|
28695
|
+
get: function () {
|
|
28696
|
+
return !this.loading;
|
|
28697
|
+
},
|
|
28698
|
+
enumerable: false,
|
|
28699
|
+
configurable: true
|
|
28700
|
+
});
|
|
28694
28701
|
Object.defineProperty(AppEditor.prototype, "touched", {
|
|
28695
28702
|
get: function () {
|
|
28696
28703
|
return this.touchedSubject.value || (this._children && this._children.findIndex(function (c) { return c.enabled && c.touched; }) !== -1) || false;
|