tuain-ng-forms-lib 17.2.7 → 17.2.8
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.
|
@@ -3192,8 +3192,6 @@ class BasicFormComponent extends FormStructureAndData {
|
|
|
3192
3192
|
this.fileMgmtServices = fileMgmtServices;
|
|
3193
3193
|
this._eventEmiter = this._eventManager;
|
|
3194
3194
|
this.cleanStart();
|
|
3195
|
-
this.preStart();
|
|
3196
|
-
this.customPreProcessing();
|
|
3197
3195
|
}
|
|
3198
3196
|
cleanStart() {
|
|
3199
3197
|
this._errorType = '';
|
|
@@ -3234,6 +3232,10 @@ class BasicFormComponent extends FormStructureAndData {
|
|
|
3234
3232
|
}
|
|
3235
3233
|
get formVisible() { return this.visible; }
|
|
3236
3234
|
get form() { return this; }
|
|
3235
|
+
ngOnInit() {
|
|
3236
|
+
this.preStart();
|
|
3237
|
+
this.customPreProcessing();
|
|
3238
|
+
}
|
|
3237
3239
|
// Métodos virtuales
|
|
3238
3240
|
preStart() { }
|
|
3239
3241
|
start() { }
|