@bigbinary/neetoui 5.2.1 → 5.2.2
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/formik.cjs.js +4 -1
- package/formik.cjs.js.map +1 -1
- package/formik.js +4 -1
- package/formik.js.map +1 -1
- package/index.css +1 -1
- package/package.json +1 -1
package/formik.cjs.js
CHANGED
|
@@ -14163,7 +14163,10 @@ var ActionBlock = function ActionBlock(_ref) {
|
|
|
14163
14163
|
disabled: isSubmitting || equals(values, initialValues),
|
|
14164
14164
|
label: "Cancel",
|
|
14165
14165
|
style: "text",
|
|
14166
|
-
onClick: handleReset
|
|
14166
|
+
onClick: handleReset,
|
|
14167
|
+
onMouseDown: function onMouseDown(e) {
|
|
14168
|
+
return e.preventDefault();
|
|
14169
|
+
}
|
|
14167
14170
|
}, cancelButtonProps)));
|
|
14168
14171
|
};
|
|
14169
14172
|
|