tuain-ng-forms-lib 15.0.20 → 15.0.21
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.
|
@@ -3357,6 +3357,9 @@ class BasicFormComponent extends FormStructureAndData {
|
|
|
3357
3357
|
}
|
|
3358
3358
|
startFieldValidation(code, intrinsicValidation = true) {
|
|
3359
3359
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3360
|
+
console.log('startFieldValidation');
|
|
3361
|
+
console.log(code);
|
|
3362
|
+
console.log(intrinsicValidation);
|
|
3360
3363
|
this.notifyFormActivity();
|
|
3361
3364
|
const fieldToValidate = this.getField(code);
|
|
3362
3365
|
if (!fieldToValidate) {
|
|
@@ -3368,6 +3371,8 @@ class BasicFormComponent extends FormStructureAndData {
|
|
|
3368
3371
|
for (const validationMethod of validationCallbacks) {
|
|
3369
3372
|
const { callback, properties } = validationMethod;
|
|
3370
3373
|
const clientValidationPromise = callback(fieldToValidate);
|
|
3374
|
+
console.log('validationMethod');
|
|
3375
|
+
console.log({ callback, properties });
|
|
3371
3376
|
clientValidationPromises.push(clientValidationPromise);
|
|
3372
3377
|
}
|
|
3373
3378
|
console.log('clientValidationPromises');
|