ywana-core8 0.0.286 → 0.0.287

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.
@@ -259,6 +259,8 @@ var CheckBox = function CheckBox(props) {
259
259
  onChange = props.onChange;
260
260
 
261
261
  function change(event) {
262
+ event.stopPropagation();
263
+ event.preventDefault();
262
264
  var value = event.target.checked;
263
265
  if (onChange) onChange(id, value);
264
266
  }