tuain-ng-forms-lib 12.0.47 → 12.0.48
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 -0
- package/bundles/tuain-ng-forms-lib.umd.js.map +1 -1
- package/esm2015/lib/components/forms/basic-form.js +3 -1
- package/fesm2015/tuain-ng-forms-lib.js +2 -0
- package/fesm2015/tuain-ng-forms-lib.js.map +1 -1
- package/lib/components/forms/basic-form.d.ts +1 -0
- package/package.json +1 -1
|
@@ -3341,6 +3341,7 @@
|
|
|
3341
3341
|
this._formStructure = null;
|
|
3342
3342
|
this.fields = null;
|
|
3343
3343
|
this.actions = null;
|
|
3344
|
+
this.sections = null;
|
|
3344
3345
|
this._controlToken = null;
|
|
3345
3346
|
this.inputDataFields = {};
|
|
3346
3347
|
this._definitionObtained = false;
|
|
@@ -3592,6 +3593,7 @@
|
|
|
3592
3593
|
this._formStructure = new FormStructureAndData(formDefinition, this.formConfig);
|
|
3593
3594
|
this.fields = this._formStructure.fields;
|
|
3594
3595
|
this.actions = this._formStructure.actions;
|
|
3596
|
+
this.sections = this._formStructure.sections;
|
|
3595
3597
|
this._definitionObtained = true;
|
|
3596
3598
|
return [3 /*break*/, 3];
|
|
3597
3599
|
case 2:
|