@es-joy/jsoe 0.8.0 → 0.8.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/CHANGES.md +5 -0
- package/package.json +1 -1
- package/src/fundamentalTypes/arrayType.js +4 -1
package/CHANGES.md
CHANGED
package/package.json
CHANGED
|
@@ -1691,7 +1691,10 @@ const arrayType = {
|
|
|
1691
1691
|
// invalid date checkbox; is this sufficient to prevent
|
|
1692
1692
|
// other stray clicks apparently meant for the array
|
|
1693
1693
|
// and object reference checking?
|
|
1694
|
-
if (![
|
|
1694
|
+
if (![
|
|
1695
|
+
'checkbox', 'radio', 'file',
|
|
1696
|
+
'datetime-local'
|
|
1697
|
+
].includes(target.type)) {
|
|
1695
1698
|
e.preventDefault();
|
|
1696
1699
|
}
|
|
1697
1700
|
}
|