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.
- package/bundles/tuain-ng-forms-lib.umd.js +2 -2
- package/bundles/tuain-ng-forms-lib.umd.js.map +1 -1
- package/esm2015/lib/classes/forms/form.js +3 -3
- package/fesm2015/tuain-ng-forms-lib.js +2 -2
- package/fesm2015/tuain-ng-forms-lib.js.map +1 -1
- package/lib/classes/forms/form.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2798,11 +2798,11 @@
|
|
|
2798
2798
|
};
|
|
2799
2799
|
Object.defineProperty(FormStructureAndData.prototype, "sections", {
|
|
2800
2800
|
// Secciones
|
|
2801
|
-
get: function () { return this.
|
|
2801
|
+
get: function () { return this._sections; },
|
|
2802
2802
|
enumerable: false,
|
|
2803
2803
|
configurable: true
|
|
2804
2804
|
});
|
|
2805
|
-
FormStructureAndData.prototype.getSections = function () { return this.
|
|
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; }); },
|