tuain-ng-forms-lib 12.0.49 → 12.0.50

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.
@@ -2798,11 +2798,11 @@
2798
2798
  };
2799
2799
  Object.defineProperty(FormStructureAndData.prototype, "sections", {
2800
2800
  // Secciones
2801
- get: function () { return this._sectionArray; },
2801
+ get: function () { return this._sections; },
2802
2802
  enumerable: false,
2803
2803
  configurable: true
2804
2804
  });
2805
- FormStructureAndData.prototype.getSections = function () { return this.sections; };
2805
+ FormStructureAndData.prototype.getSections = function () { return this._sectionArray; };
2806
2806
  FormStructureAndData.prototype.getSectionsByAttribute = function (name, value) { return this._sectionArray.filter(function (item) { return item.matchAttribute(name, value); }); };
2807
2807
  Object.defineProperty(FormStructureAndData.prototype, "sectionTitles", {
2808
2808
  get: function () { return this._sectionArray.map(function (formSection) { return formSection.sectionTitle; }); },