@codeandfunction/callaloo 3.3.0 → 3.4.1

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.
@@ -31,7 +31,7 @@ interface Props {
31
31
  /** Sets a custom ID used for unit tests. */
32
32
  testId?: string;
33
33
  /** Set the value for the checkbox when it's checked. */
34
- value?: string | number;
34
+ value?: string | number | boolean;
35
35
  /** A callback function which handles when the checkbox loses focus. */
36
36
  onBlur?: CLGenericFocusFunction;
37
37
  /** A callback function which handles when the checkbox is clicked. */
@@ -33,7 +33,7 @@ interface Props {
33
33
  /** Sets a custom ID used for unit tests. */
34
34
  testId?: string;
35
35
  /** Set the value for the radiobutton when it's checked. */
36
- value?: string | number;
36
+ value?: string | number | boolean;
37
37
  /** A callback function which handles when the radiobutton loses focus. */
38
38
  onBlur?: CLGenericFocusFunction;
39
39
  /** A callback function which handles when the radiobutton is clicked. */