@hievilmath/browser-formidavim 1.6.2 → 1.7.0
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/README.md +7 -0
- package/index.js +426 -388
- package/index.mjs +32647 -22771
- package/lib/components/FlowFormRenderer.d.ts +0 -1
- package/lib/components/FlowRenderer.d.ts +0 -1
- package/lib/components/FormComponentRenderer.d.ts +0 -1
- package/lib/components/FormRenderer.d.ts +0 -1
- package/lib/components/complex/VouchedSend.d.ts +5 -0
- package/lib/components/inputs/Cookie.d.ts +0 -1
- package/lib/components/inputs/Email.d.ts +0 -1
- package/lib/components/inputs/GAClientId.d.ts +0 -1
- package/lib/components/inputs/Hidden.d.ts +0 -1
- package/lib/components/inputs/Number.d.ts +4 -2
- package/lib/components/inputs/Otp.d.ts +0 -1
- package/lib/components/inputs/Phone.d.ts +0 -1
- package/lib/hooks/useFlowStore.d.ts +4 -0
- package/lib/state/slices/flow.slice.d.ts +15 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
Quick notes about changes made to this package for each version.
|
|
4
4
|
|
|
5
|
+
## Version 1.7.0
|
|
6
|
+
- Add min/max validation to number input
|
|
7
|
+
- Add minDigit/MaxDigit and validation to number input
|
|
8
|
+
- Vouched component release
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
5
12
|
## Version 1.6.2
|
|
6
13
|
- Rework formidavim rendering initialization to prevent infinite loops.
|
|
7
14
|
|