@thecb/components 6.1.4-beta.2 → 6.1.4-beta.3
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/dist/index.cjs.js +7 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +7 -0
- package/dist/index.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -35136,6 +35136,13 @@ const runValidator = (validator, value, form) => {
|
|
|
35136
35136
|
if (validatorFn === undefined) {
|
|
35137
35137
|
throw new Error(runValidatorErrorMessage(validator.type));
|
|
35138
35138
|
}
|
|
35139
|
+
console.log(
|
|
35140
|
+
"run validator (validator, value, form):",
|
|
35141
|
+
validator.type,
|
|
35142
|
+
validator.args,
|
|
35143
|
+
value,
|
|
35144
|
+
form
|
|
35145
|
+
);
|
|
35139
35146
|
return validatorFn(value, validator.args, form) ? null : validator.error;
|
|
35140
35147
|
};
|
|
35141
35148
|
|