Skip to content

Commit ff495fa

Browse files
Formik package upgrade to latest
Signed-off-by: Kiran Parajuli <[email protected]>
1 parent 5a5ec65 commit ff495fa

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"highlight.js": "^11.11.1",
1919
"pinia": "^2.3.0",
2020
"vue": "^3.5.13",
21-
"vue-formik": "^0.1.26",
21+
"vue-formik": "^0.1.27",
2222
"vue-router": "^4.5.0",
2323
"yup": "^1.6.1"
2424
},

pnpm-lock.yaml

Lines changed: 5 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/views/libDocs/composables/useFormik/constants.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,16 @@ export const UseFormikReturnedProperties = [
8484
type: "ref<boolean>",
8585
description: "Ref indicating if the form is in the submitting state.",
8686
},
87+
{
88+
name: "isValidating",
89+
type: "ref<boolean>",
90+
description: "Ref indicating if the form is in the validating state.",
91+
},
92+
{
93+
name: "submitCount",
94+
type: "ref<number>",
95+
description: "Ref containing the number of form submission attempts.",
96+
},
8797
{
8898
name: "fieldHandlers",
8999
type: "computed<object>",

0 commit comments

Comments
 (0)