@simoncomputing/mui-bueno-v3 0.2.7 → 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 CHANGED
@@ -8,8 +8,13 @@ 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 --> singlular/minor changes. Minimal breaking changes.
12
- - Patch increment --> singlular/minor changes. Zero breaking changes.
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
13
18
 
14
19
  ## [0.2.7] - 2026-04-8
15
20
 
@@ -20,8 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20
25
  ## [0.2.6] - 2026-03-16
21
26
 
22
27
  ### Changed
23
-
24
- - Update Submit Button to be disabled ruing form submission
28
+ - Update Submit Button to be disabled during form submission
25
29
 
26
30
  ## [0.2.5] - 2026-03-05
27
31
 
@@ -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;