@simoncomputing/mui-bueno-v2 0.19.11 → 0.19.12

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/CHANGELOG.md CHANGED
@@ -11,6 +11,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
  - Minor increment --> singlular/minor changes. Minimal breaking changes.
12
12
  - Patch increment --> singlular/minor changes. Zero breaking changes.
13
13
 
14
+ ## [0.19.12] - 2025-11-12
15
+
16
+ ### Added
17
+
18
+ - `CheckboxGroup`
19
+ - Added `onChange` prop
20
+
14
21
  ## [0.19.11] - 2025-11-05
15
22
 
16
23
  ### Fixed
@@ -94,6 +94,11 @@ export type CheckboxGroupProps = BaseInputProps & {
94
94
  * Used to customize the label when the static label option is selected or the field is readOnly.
95
95
  */
96
96
  staticLabelProps?: TypographyProps;
97
+ /**
98
+ * OnChange handler, called when the user changes their selection.
99
+ * Provides a string array of selected checkboxes.
100
+ */
101
+ onChange?: (val: string[]) => void;
97
102
  };
98
103
  /**
99
104
  * CheckboxGroup produces a group of checkboxes that's defined as an array of strings or Checkboxes.