@simoncomputing/mui-bueno-v2 0.25.23 → 0.25.25

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,8 +11,27 @@ 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.25.25] - 2026-03-03
15
+
16
+ ### Fixed
17
+
18
+ - `LoadingOverlay`
19
+ - Smoothed out animation to avoid flashing when `isLoading` changes quickly
20
+
21
+ ## [0.25.24] - 2026-03-02
22
+
23
+ ### Fixed
24
+
25
+ - `CitationManager`, `SelectableCitationManager`, `CitationField`
26
+ - Fixed occasional infinite loop caued by the user changing their search criteria over and over during fetch
27
+
14
28
  ## [0.25.23] - 2026-03-02
15
29
 
30
+ ### Added
31
+
32
+ - `LoadingOverlay`
33
+ - Wrap around components and set `isLoading=true` to show a semi-transparent overlay with a loading spinner
34
+
16
35
  ### Changed
17
36
 
18
37
  - All Tables: `Table`, `PaginatedTable`, `CitationManager`, `SelectableCitationManager`, `CitationField`, `DiffTableView`, `DiffTable`
@@ -6,8 +6,9 @@ export type LoadingOverlayProps = {
6
6
  /**
7
7
  * Applies loading overlay to the children when `isLoading` is true.
8
8
  *
9
- * Similar to MUI's skeleton but is useful for showing loading for existing data, such as tables, so that the user
10
- * can still see the existing data (but not interact with it) while the table is updating.
9
+ * Similar to MUI's skeleton. Shows loading overlay over child component(s), such as tables,
10
+ * so that the user can still see the existing data (but not interact with it) while the table
11
+ * is updating.
11
12
  *
12
13
  * See Table/Paginated Table/Citation Manager/Selectable Citation Manager for examples.
13
14
  */