@rpg-engine/long-bow 0.5.86 → 0.5.88

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.
@@ -13256,11 +13256,13 @@ var CheckItem = function CheckItem(_ref) {
13256
13256
  setChecked(newCheckedState);
13257
13257
  onChange(label, newCheckedState);
13258
13258
  };
13259
- return React.createElement("div", null, React.createElement("input", {
13259
+ return React.createElement("div", {
13260
+ onPointerDown: handleClick
13261
+ }, React.createElement("input", {
13260
13262
  className: "rpgui-checkbox",
13261
13263
  type: "checkbox",
13262
13264
  checked: checked,
13263
- onChange: handleClick
13265
+ readOnly: true
13264
13266
  }), React.createElement("label", null, label), React.createElement("br", null));
13265
13267
  };
13266
13268