@saas-ui/forms 1.1.2 → 1.2.1
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 +15 -0
- package/dist/ajv/index.js +22 -22
- package/dist/ajv/index.js.map +1 -1
- package/dist/ajv/index.modern.js +86 -86
- package/dist/ajv/index.modern.js.map +1 -1
- package/dist/auto-form.d.ts +3 -2
- package/dist/auto-form.d.ts.map +1 -1
- package/dist/field.d.ts.map +1 -1
- package/dist/form.d.ts +11 -6
- package/dist/form.d.ts.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/watch-field.d.ts +11 -0
- package/dist/watch-field.d.ts.map +1 -0
- package/package.json +2 -2
- package/src/auto-form.tsx +5 -3
- package/src/field.tsx +5 -1
- package/src/form.tsx +28 -7
- package/src/index.ts +110 -1
- package/src/watch-field.tsx +39 -0
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
# @saas-ui/forms
|
2
2
|
|
3
|
+
## 1.2.1
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- dfd61ed: Custom Field onChange and onBlur handlers will no longer override the internal HookForm handlers.
|
8
|
+
- @saas-ui/stepper@1.1.2
|
9
|
+
|
10
|
+
## 1.2.0
|
11
|
+
|
12
|
+
### Minor Changes
|
13
|
+
|
14
|
+
- d003608: Form now accepts a render function with form state props.
|
15
|
+
- d003608: Re-export all React Hook Form types and hooks
|
16
|
+
- d003608: New onChange prop for Form that triggers when the form state is changed.
|
17
|
+
|
3
18
|
## 1.1.2
|
4
19
|
|
5
20
|
### Patch Changes
|