@simoncomputing/mui-bueno-v2 0.19.15 → 0.19.17

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,20 @@ 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.17] - 2025-11-21
15
+
16
+ ### Changed
17
+
18
+ - `Select`
19
+ - Updated `options` to allow string options (`string[]`)
20
+
21
+ ## [0.19.16] - 2025-11-21
22
+
23
+ ### Fixed
24
+
25
+ - `TextField`:
26
+ - Fix overwriting developer-provided slotProps
27
+
14
28
  ## [0.19.15] - 2025-11-17
15
29
 
16
30
  ### Fixed
@@ -49,7 +49,7 @@ type BaseSelectProps<T> = BaseInputProps & {
49
49
  /**
50
50
  * A list of options for the select component.
51
51
  */
52
- options?: SelectOption<T>[];
52
+ options?: (string | SelectOption<T>)[];
53
53
  /**
54
54
  * Displays an icon or text next to selected options
55
55
  * @default undefined