@taikai/rocket-kit 3.0.7 → 3.0.8

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.
@@ -5268,8 +5268,12 @@ const CheckboxGroup = props => {
5268
5268
  }, /*#__PURE__*/React.createElement(Checkbox, {
5269
5269
  label: value.label,
5270
5270
  value: value.value,
5271
- checked: value.checked,
5272
- onChange: onChange,
5271
+ checked: value.checked ?? undefined,
5272
+ onChange: event => {
5273
+ var _value$onChange;
5274
+ onChange === null || onChange === void 0 ? void 0 : onChange(event);
5275
+ (_value$onChange = value.onChange) === null || _value$onChange === void 0 ? void 0 : _value$onChange.call(value, event);
5276
+ },
5273
5277
  error: !!error,
5274
5278
  disabled: disabled
5275
5279
  }))) : null, error ? /*#__PURE__*/React.createElement(ErrorField, {