@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.
@@ -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;