@simoncomputing/mui-bueno-v2 0.28.0 → 0.28.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 +14 -0
- package/dist/components/Table/Table.d.ts +1 -1
- package/dist/index.cjs.js +40 -40
- package/dist/index.es.js +582 -578
- package/dist/index.umd.js +38 -38
- package/package.json +1 -1
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.28.2] - 2026-04-21
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- `TextField`
|
|
19
|
+
- When `format` prop is defined, fixed validation not updating after `TextField` applies the specified format to the user's input.
|
|
20
|
+
|
|
21
|
+
## [0.28.1] - 2026-04-14
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- `Table`, `PaginatedTable`
|
|
26
|
+
- Fixed `selectedRowKey` not allowing `null`
|
|
27
|
+
|
|
14
28
|
## [0.28.0] - 2026-04-14
|
|
15
29
|
|
|
16
30
|
### Fixed
|
|
@@ -131,7 +131,7 @@ export type BaseTableProps<T, K> = {
|
|
|
131
131
|
* CONTROLLED. Use with `onRowClick` to update the selected row. Value must be the ID (or key if you've defined `getRowKey`).
|
|
132
132
|
* See `highlightSelectedRow` for uncontrolled version.
|
|
133
133
|
*/
|
|
134
|
-
selectedRowKey?: K;
|
|
134
|
+
selectedRowKey?: K | null;
|
|
135
135
|
/**
|
|
136
136
|
* Allows overriding of default header row style settings (table only -- this has no effect on the card list for mobile)
|
|
137
137
|
*
|