@simoncomputing/mui-bueno-v2 0.19.1 → 0.19.5

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,48 @@ 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.5] - 2025-10-27
15
+
16
+ ### Added
17
+
18
+ - `MultiAutocomplete`
19
+ - Exposed MUI's generic parameters `DisableClearable` & `FreeSolo`, which allow access to `disableClearable` & `freeSolo` props respectively
20
+
21
+ ## [0.19.4] - 2025-10-24
22
+
23
+ ### Fixed
24
+
25
+ - Fixed build order of storybook app & library
26
+
27
+ ## [0.19.3] - 2025-10-24
28
+
29
+ Summary: Updates the expandable row functionality in `Table` / `PaginatedTable` to match [MUI's Collapsible Table example](https://mui.com/material-ui/react-table/#collapsible-table).
30
+
31
+ ### Added
32
+
33
+ - `Table`/`PaginatedTable`
34
+
35
+ - Added additional column to the left of the table when using expandable columns that will display up/down chevrons indicating the row is expandable. In mobile/card view, "Show More"/"Show Less" buttons will be displayed at the bottom of the card instead.
36
+
37
+ - Added this changelog to Storybook
38
+
39
+ ### Changed
40
+
41
+ - `Table`/`PaginatedTable`
42
+ - Removed dividers in between row and its expanded section
43
+ - The row can only be expanded/collapsed by clicking on the up/down chevron buttons, rather than the whole row
44
+
45
+ ### Fixed
46
+
47
+ - `Table`/`PaginatedTable`
48
+ - Fixed inconsistent thickness of row borders
49
+
50
+ ## [0.19.2] - 2025-10-22
51
+
52
+ ### Fixed
53
+
54
+ - (Documentation) Storybook mdx file had incorrect import, causing the build to fail
55
+
14
56
  ## [0.19.1] - 2025-10-21
15
57
 
16
58
  ### Added
@@ -3,10 +3,10 @@ import { BaseAutocompleteProps } from '../Autocomplete';
3
3
  /**
4
4
  * Type used to define props passed into Autocomplete component
5
5
  */
6
- export type MultiAutocompleteProps<T> = Omit<BaseAutocompleteProps<T>, 'clearOnSelect'> & Omit<MuiAutocompleteProps<T, // Option type
6
+ export type MultiAutocompleteProps<T, DisableClearable extends boolean = false, FreeSolo extends boolean = false> = Omit<BaseAutocompleteProps<T>, 'clearOnSelect'> & Omit<MuiAutocompleteProps<T, // Option type
7
7
  true, // Multiple -- allows multiple options to be selected (enables `multiple` prop)
8
- false, // DisableClearable -- disables the clear button (enables `disableClearable` prop)
9
- false>, 'renderInput' | 'options' | 'value' | 'multiple' | 'freeSolo' | 'inputValue'>;
8
+ DisableClearable, // DisableClearable -- disables the clear button (enables `disableClearable` prop)
9
+ FreeSolo>, 'renderInput' | 'options' | 'value' | 'multiple' | 'inputValue'>;
10
10
  /**
11
11
  * `Autocomplete` is a mix between a `TextField` and `Select` component.
12
12
  * As the user types, options that match their query are presented.
@@ -19,4 +19,4 @@ false>, 'renderInput' | 'options' | 'value' | 'multiple' | 'freeSolo' | 'inputVa
19
19
  * __IMPORTANT__: If you need to dynamically load options as the user types, check out `DynamicAutocomplete`, as this
20
20
  * has automated a lot of the settings.
21
21
  */
22
- export declare const MultiAutocomplete: <T>(props: MultiAutocompleteProps<T>) => import("react/jsx-runtime").JSX.Element;
22
+ export declare const MultiAutocomplete: <T, DisableClearable extends boolean = false, FreeSolo extends boolean = false>(props: MultiAutocompleteProps<T, DisableClearable, FreeSolo>) => import("react/jsx-runtime").JSX.Element;
@@ -1,5 +1,5 @@
1
- import { TableProps } from './Table';
2
- import { ObjectWithId, PaginationState } from '../../@types';
1
+ import { TableProps } from '../Table';
2
+ import { ObjectWithId, PaginationState } from '../../../@types';
3
3
  /**
4
4
  * Paginated Table Props
5
5
  */