@simoncomputing/mui-bueno-v2 0.16.0 → 0.16.2
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 +12 -0
- package/dist/components/Table/ExpandableRow/ExpandableRow.d.ts +1 -0
- package/dist/components/Table/Table.d.ts +1 -0
- package/dist/index.cjs.js +54 -54
- package/dist/index.es.js +2071 -2067
- package/dist/index.umd.js +54 -54
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,18 @@ 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.2] - 2025-08-15
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- `Table`: Made mobile cards horizontally scrollable when the contents are too wide to fit in the card. Made the mobile cards column names avoid text wrap to make them easier to read.
|
|
19
|
+
|
|
20
|
+
## [0.16.1] - 2025-08-12
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- `ExpandableRow`/`Table`: Added reRenderExpand property which will force an expanded row of a table to change when the object the row is displaying changes.
|
|
25
|
+
|
|
14
26
|
## [0.16.0] - 2025-07-16
|
|
15
27
|
|
|
16
28
|
### Fixed
|
|
@@ -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
|
/**
|