@hievilmath/browser-formidavim 1.4.8 → 1.4.9
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 +38 -0
- package/index.js +279 -279
- package/index.mjs +37030 -36903
- package/lib/components/inputs/Email.d.ts +1 -0
- package/lib/components/inputs/Hidden.d.ts +6 -0
- package/lib/components/inputs/Phone.d.ts +1 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# @hievilmath/browser-formidavim Changelog
|
|
2
|
+
|
|
3
|
+
Quick notes about changes made to this package for each version.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Version 1.4.9
|
|
8
|
+
- Added duplicate user validation checks on email and phone inputs
|
|
9
|
+
- Added hidden input component for storing hidden form values/properties
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## Version 1.4.8
|
|
14
|
+
- Update the required prop in some components. It comes in as a string instead of a boolean. Needs to be Fixed to be a forced bool type in the future, but the existing data would required updating.
|
|
15
|
+
- Fix condition evaluator `contains` to work with arrays
|
|
16
|
+
- Modify patient profile in preview.
|
|
17
|
+
- patient store default user id = null.
|
|
18
|
+
- Add Flow|Pipeline type prop to datafetcher.
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## Version 1.4.7
|
|
23
|
+
- *Add your notes here when you bump to the next version*
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## Template for new versions:
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
## Version X.X.X (Date: YYYY-MM-DD)
|
|
31
|
+
- What you changed
|
|
32
|
+
- What you added
|
|
33
|
+
- What you fixed
|
|
34
|
+
- Any breaking changes
|
|
35
|
+
- Any important notes
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
---
|