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.
|
@@ -3276,6 +3276,9 @@ class BasicFormComponent extends FormStructureAndData {
|
|
|
3276
3276
|
return true;
|
|
3277
3277
|
}
|
|
3278
3278
|
async startFieldValidation(code, intrinsicValidation = true) {
|
|
3279
|
+
console.log('startFieldValidation');
|
|
3280
|
+
console.log(code);
|
|
3281
|
+
console.log(intrinsicValidation);
|
|
3279
3282
|
this.notifyFormActivity();
|
|
3280
3283
|
const fieldToValidate = this.getField(code);
|
|
3281
3284
|
if (!fieldToValidate) {
|
|
@@ -3287,6 +3290,8 @@ class BasicFormComponent extends FormStructureAndData {
|
|
|
3287
3290
|
for (const validationMethod of validationCallbacks) {
|
|
3288
3291
|
const { callback, properties } = validationMethod;
|
|
3289
3292
|
const clientValidationPromise = callback(fieldToValidate);
|
|
3293
|
+
console.log('validationMethod');
|
|
3294
|
+
console.log({ callback, properties });
|
|
3290
3295
|
clientValidationPromises.push(clientValidationPromise);
|
|
3291
3296
|
}
|
|
3292
3297
|
console.log('clientValidationPromises');
|