@simoncomputing/mui-bueno-v2 0.36.3 → 0.37.0

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,34 @@ 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.37.0] - 2026-08-26
15
+
16
+ ### Removed
17
+
18
+ - `LoadingButton`
19
+ - Migration: Use any button component with MUI's `loading` prop
20
+
21
+ ### Changed
22
+
23
+ - `CitationField`, `SelectableCitationManager`, `CitationManager`, `ConfirmationModal`, `DecisionModal`
24
+ - Updated to use a regular `Button` instead of `LoadingButton`. Citation components will automatically set `loading`. For modals, no API change (as before, pass `loading` to `confirmButtonProps`/`primaryActionProps` as needed).
25
+
26
+ ## [0.36.4] - 2026-08-26
27
+
28
+ ### Changed
29
+
30
+ - `LoadingButton`
31
+ - Updated to use MUI's built-in loading spinner (via `loading` & `loadingPosition` props)
32
+
33
+ - `ConfirmationModal`
34
+ - Updated confirm button to render `LoadingButton` instead of `Button`. Just pass `loading` to `confirmButtonProps` to show loading spinner.
35
+
36
+ - `DecisionModal`
37
+ - Updated primary action button to render `LoadingButton` instead of `Button`. Just pass `loading` to `primaryActionProps` to show loading spinner.
38
+
39
+ - `CitationField`, `SelectableCitationManager`, `CitationManager`
40
+ - Updated "Yes" button on Delete popper to show loading spinner AND "Yes" label at the same time
41
+
14
42
  ## [0.36.3] - 2026-08-25
15
43
 
16
44
  ### Fixed