@bigbinary/neetoui 5.2.0 → 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.js CHANGED
@@ -14136,7 +14136,10 @@ var ActionBlock = function ActionBlock(_ref) {
14136
14136
  disabled: isSubmitting || equals(values, initialValues),
14137
14137
  label: "Cancel",
14138
14138
  style: "text",
14139
- onClick: handleReset
14139
+ onClick: handleReset,
14140
+ onMouseDown: function onMouseDown(e) {
14141
+ return e.preventDefault();
14142
+ }
14140
14143
  }, cancelButtonProps)));
14141
14144
  };
14142
14145