@simoncomputing/mui-bueno-v2 0.16.0 → 0.16.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.
package/CHANGELOG.md CHANGED
@@ -11,6 +11,12 @@ 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.16.1] - 2025-08-12
15
+
16
+ ### Added
17
+
18
+ - `ExpandableRow`/`Table`: Added reRenderExpand property which will force an expanded row of a table to change when the object the row is displaying changes.
19
+
14
20
  ## [0.16.0] - 2025-07-16
15
21
 
16
22
  ### Fixed
@@ -5,6 +5,7 @@ export type ExpandableRowProps<T> = {
5
5
  obj: T;
6
6
  renderExpand: (obj: T) => React.ReactNode;
7
7
  asMobileCard?: boolean;
8
+ reRenderExpand?: boolean;
8
9
  };
9
10
  /**
10
11
  * This component is intended to be used internally by `Table` to allow rows to expand when clicked and
@@ -118,6 +118,7 @@ export type BaseTableProps<T> = {
118
118
  * Enables sticky header row. Set to a valid height (ex. "400px") to define the table's max height.
119
119
  */
120
120
  stickyHeader?: string;
121
+ reRenderExpand?: boolean;
121
122
  };
122
123
  export type TableProps<T> = BaseTableProps<T> & Omit<MuiTableProps, 'stickyHeader'>;
123
124
  /**