@simoncomputing/mui-bueno-v2 0.19.1 → 0.19.4

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,41 @@ 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.4] - 2025-10-24
15
+
16
+ ### Fixed
17
+
18
+ - Fixed build order of storybook app & library
19
+
20
+ ## [0.19.3] - 2025-10-24
21
+
22
+ 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).
23
+
24
+ ### Added
25
+
26
+ - `Table`/`PaginatedTable`
27
+
28
+ - 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.
29
+
30
+ - Added this changelog to Storybook
31
+
32
+ ### Changed
33
+
34
+ - `Table`/`PaginatedTable`
35
+ - Removed dividers in between row and its expanded section
36
+ - The row can only be expanded/collapsed by clicking on the up/down chevron buttons, rather than the whole row
37
+
38
+ ### Fixed
39
+
40
+ - `Table`/`PaginatedTable`
41
+ - Fixed inconsistent thickness of row borders
42
+
43
+ ## [0.19.2] - 2025-10-22
44
+
45
+ ### Fixed
46
+
47
+ - (Documentation) Storybook mdx file had incorrect import, causing the build to fail
48
+
14
49
  ## [0.19.1] - 2025-10-21
15
50
 
16
51
  ### Added
@@ -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
  */