@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.esm.js
CHANGED
|
@@ -35128,6 +35128,13 @@ const runValidator = (validator, value, form) => {
|
|
|
35128
35128
|
if (validatorFn === undefined) {
|
|
35129
35129
|
throw new Error(runValidatorErrorMessage(validator.type));
|
|
35130
35130
|
}
|
|
35131
|
+
console.log(
|
|
35132
|
+
"run validator (validator, value, form):",
|
|
35133
|
+
validator.type,
|
|
35134
|
+
validator.args,
|
|
35135
|
+
value,
|
|
35136
|
+
form
|
|
35137
|
+
);
|
|
35131
35138
|
return validatorFn(value, validator.args, form) ? null : validator.error;
|
|
35132
35139
|
};
|
|
35133
35140
|
|