@simoncomputing/mui-bueno-v3 0.2.6 → 0.2.8
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 +18 -3
- package/dist/@types/index.d.ts +4 -0
- package/dist/index.cjs.js +32 -32
- package/dist/index.es.js +2315 -2286
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,28 +8,42 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
8
8
|
<sup>1</sup>We'll be following the following versioning practices to make it easier for devs to determine whether or not they are ready to upgrade to a newer verison of Mui Bueno:
|
|
9
9
|
|
|
10
10
|
- Major increment --> large/many changes. SEVERAL breaking changes.
|
|
11
|
-
- Minor increment -->
|
|
12
|
-
- Patch increment -->
|
|
11
|
+
- Minor increment --> singular/minor changes. Minimal breaking changes.
|
|
12
|
+
- Patch increment --> singular/minor changes. Zero breaking changes.
|
|
13
|
+
|
|
14
|
+
## [0.2.8] - 2026-04-15
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- Update Table to allow right aligned columns and tooltips in column headers
|
|
18
|
+
|
|
19
|
+
## [0.2.7] - 2026-04-8
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Update Error to show validation messages for values inside nested objects and arrays
|
|
13
24
|
|
|
14
25
|
## [0.2.6] - 2026-03-16
|
|
15
26
|
|
|
16
27
|
### Changed
|
|
17
|
-
- Update Submit Button to be disabled
|
|
28
|
+
- Update Submit Button to be disabled during form submission
|
|
18
29
|
|
|
19
30
|
## [0.2.5] - 2026-03-05
|
|
20
31
|
|
|
21
32
|
### Changed
|
|
33
|
+
|
|
22
34
|
- Update dynamic autocomplete with debounceTimeout property (default of 400ms)
|
|
23
35
|
- Update Autocomplete and Select input components to use space bar for selecting values
|
|
24
36
|
|
|
25
37
|
## [0.1.2] - 2025-07-09
|
|
26
38
|
|
|
27
39
|
### Changed
|
|
40
|
+
|
|
28
41
|
- Update index.ts to include MForm
|
|
29
42
|
|
|
30
43
|
## [0.1.1] - 2025-07-08
|
|
31
44
|
|
|
32
45
|
### Changed
|
|
46
|
+
|
|
33
47
|
- Converting existing input components for react-hook-form
|
|
34
48
|
- Components:
|
|
35
49
|
- Inputs
|
|
@@ -39,6 +53,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
39
53
|
## [0.1.0] - 2025-07-08
|
|
40
54
|
|
|
41
55
|
### Changed
|
|
56
|
+
|
|
42
57
|
- Converting existing input components for react-hook-form
|
|
43
58
|
- Components:
|
|
44
59
|
- Inputs
|
package/dist/@types/index.d.ts
CHANGED
|
@@ -106,6 +106,8 @@ export type EnvironmentInfo = {
|
|
|
106
106
|
* phone number column: TableColumn<User, Phone>.
|
|
107
107
|
*
|
|
108
108
|
* @property {string} label - Label that will display in the Table header for the column
|
|
109
|
+
* @property {boolean} rightAlign - If true, right align column contents
|
|
110
|
+
* @property {boolean} tooltip - Optional tooltip that will appear next to the label
|
|
109
111
|
* @property {string} fieldName - Property name of the object
|
|
110
112
|
* @property {(value: K, object: T, isMobile: boolean) => React.ReactNode} render - customize
|
|
111
113
|
* how the data is displayed in the column where `value` is the property value. `object`
|
|
@@ -117,6 +119,8 @@ export type EnvironmentInfo = {
|
|
|
117
119
|
export type TableColumn<T, K> = {
|
|
118
120
|
key?: string;
|
|
119
121
|
label?: string;
|
|
122
|
+
rightAlign?: boolean;
|
|
123
|
+
tooltip?: string;
|
|
120
124
|
fieldName: string;
|
|
121
125
|
render?: (value: K, object: T, isMobile: boolean) => React.ReactNode; // used to customize how the data `obj` is displayed in the table
|
|
122
126
|
sortName?: string;
|