@saas-ui/forms 1.0.0 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +25 -0
- package/ajv/package.json +2 -2
- package/dist/ajv/index.js +91 -91
- package/dist/ajv/index.js.map +1 -1
- package/dist/ajv/index.modern.mjs +88 -88
- package/dist/ajv/index.modern.mjs.map +1 -1
- package/dist/field-resolver.d.ts.map +1 -1
- package/dist/fields.d.ts +1 -0
- package/dist/fields.d.ts.map +1 -1
- package/dist/form.d.ts +3 -3
- package/dist/form.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +1 -1
- package/dist/index.modern.mjs.map +1 -1
- package/dist/use-step-form.d.ts +2 -2
- package/dist/use-step-form.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/field-resolver.ts +2 -1
- package/src/fields.tsx +36 -25
- package/src/form.tsx +2 -3
- package/src/use-step-form.tsx +15 -18
- package/yup/package.json +2 -2
- package/zod/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,30 @@
|
|
1
1
|
# @saas-ui/forms
|
2
2
|
|
3
|
+
## 1.0.3
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- e14c2e1: Make sure FormStep onSubmit does not throw an error when no promise is returned.
|
8
|
+
- Updated dependencies [8d03628]
|
9
|
+
- @saas-ui/password-input@1.0.2
|
10
|
+
|
11
|
+
## 1.0.2
|
12
|
+
|
13
|
+
### Patch Changes
|
14
|
+
|
15
|
+
- fe754e6: Fixed Hook Form 7.33 compatibility.
|
16
|
+
- Updated dependencies [fe1e333]
|
17
|
+
- @saas-ui/input-right-button@1.0.1
|
18
|
+
- @saas-ui/password-input@1.0.1
|
19
|
+
|
20
|
+
## 1.0.1
|
21
|
+
|
22
|
+
### Patch Changes
|
23
|
+
|
24
|
+
- 3ce1dee: Support JSONSchema title in field resolvers
|
25
|
+
- 150efb2: Select field focus styles now consistent with Input fields.
|
26
|
+
- 3f928c2: FormDialog with AutoForm now sets focus on first field by default.
|
27
|
+
|
3
28
|
## 1.0.0
|
4
29
|
|
5
30
|
### Major Changes
|
package/ajv/package.json
CHANGED