vee-validate 4.5.9 → 4.5.10
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/CHANGELOG.md +8 -0
- package/dist/vee-validate.d.ts +1 -1
- package/dist/vee-validate.esm.js +1 -1
- package/dist/vee-validate.js +1 -1
- package/dist/vee-validate.min.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.5.10](https://github.com/logaretm/vee-validate/compare/v4.5.9...v4.5.10) (2022-03-08)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package vee-validate
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [4.5.9](https://github.com/logaretm/vee-validate/compare/v4.5.8...v4.5.9) (2022-02-22)
|
|
7
15
|
|
|
8
16
|
|
package/dist/vee-validate.d.ts
CHANGED
|
@@ -910,7 +910,7 @@ declare function useFieldValue<TValue = unknown>(path?: MaybeRef<string>): vue.C
|
|
|
910
910
|
/**
|
|
911
911
|
* Gives access to a form's values
|
|
912
912
|
*/
|
|
913
|
-
declare function useFormValues<TValues extends Record<string,
|
|
913
|
+
declare function useFormValues<TValues extends Record<string, any> = Record<string, any>>(): vue.ComputedRef<Partial<TValues>>;
|
|
914
914
|
|
|
915
915
|
/**
|
|
916
916
|
* Gives access to all form errors
|
package/dist/vee-validate.esm.js
CHANGED
package/dist/vee-validate.js
CHANGED
package/dist/vee-validate.min.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vee-validate",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.10",
|
|
4
4
|
"description": "Form Validation for Vue.js",
|
|
5
5
|
"author": "Abdelrahman Awad <logaretm1@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@vue/devtools-api": "^6.0.0-beta.15"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "a56b3a07adf281d0c66150168f8e3a0368a96a2c"
|
|
37
37
|
}
|