vee-validate 4.10.8 → 4.10.9

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.
@@ -290,7 +290,7 @@ type FormErrorBag<TValues extends GenericObject> = Partial<Record<Path<TValues>,
290
290
  interface FormActions<TValues extends GenericObject, TOutput = TValues> {
291
291
  setFieldValue<T extends Path<TValues>>(field: T, value: PathValue<TValues, T>, shouldValidate?: boolean): void;
292
292
  setFieldError(field: Path<TValues>, message: string | string[] | undefined): void;
293
- setErrors(fields: FormErrors<TValues>): void;
293
+ setErrors(fields: Partial<FlattenAndSetPathsType<TValues, string | string[] | undefined>>): void;
294
294
  setValues(fields: PartialDeep<TValues>, shouldValidate?: boolean): void;
295
295
  setFieldTouched(field: Path<TValues>, isTouched: boolean): void;
296
296
  setTouched(fields: Partial<Record<Path<TValues>, boolean>>): void;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * vee-validate v4.10.8
2
+ * vee-validate v4.10.9
3
3
  * (c) 2023 Abdelrahman Awad
4
4
  * @license MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * vee-validate v4.10.8
2
+ * vee-validate v4.10.9
3
3
  * (c) 2023 Abdelrahman Awad
4
4
  * @license MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * vee-validate v4.10.8
2
+ * vee-validate v4.10.9
3
3
  * (c) 2023 Abdelrahman Awad
4
4
  * @license MIT
5
5
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vee-validate",
3
- "version": "4.10.8",
3
+ "version": "4.10.9",
4
4
  "description": "Form Validation for Vue.js",
5
5
  "author": "Abdelrahman Awad <logaretm1@gmail.com>",
6
6
  "license": "MIT",