@simoncomputing/mui-bueno-v2 0.15.0 → 0.15.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,16 @@ 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.15.1] - 2025-07-14
15
+
16
+ ### Added
17
+
18
+ - `Modal`: This is a low-level base component, used as the basis for `AlertModal`, `ConfirmationModal`, and `DecisionModal`. Avoid using this component directly unless the other modal components do not provide you with enough control.
19
+
20
+ ### Fixed
21
+
22
+ - `AlertModal`: Fixed styling inconsistency where the footer (actions) section would still display a small amount of white-space when the close button position was set to "top".
23
+
14
24
  ## [0.15.0] - 2025-07-10
15
25
 
16
26
  ### Changed
@@ -39,7 +39,9 @@ export type ModalProps = Omit<DialogProps, 'onClose' | 'title' | 'content'> & {
39
39
  disableDismiss?: boolean;
40
40
  };
41
41
  /**
42
- * Modal (internal for now, might expose later)
42
+ * Modal (Dialog/Pop-up) - This is a low-level base component intended for advanced use-cases.
43
+ * Recommend using `AlertModal`, `ConfirmationModal` or `DecisionModal` instead. If those do not meet your needs
44
+ * and/or you need more control, then use `Modal`.
43
45
  */
44
46
  export declare const Modal: React.FC<ModalProps>;
45
47
  export default Modal;