@simoncomputing/mui-bueno-v2 0.25.22 → 0.25.24

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,25 @@ 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.24] - 2026-03-02
15
+
16
+ ### Fixed
17
+
18
+ - `CitationManager`, `SelectableCitationManager`, `CitationField`
19
+ - Fixed occasional infinite loop caued by the user changing their search criteria over and over during fetch
20
+
21
+ ## [0.25.23] - 2026-03-02
22
+
23
+ ### Added
24
+
25
+ - `LoadingOverlay`
26
+ - Wrap around components and set `isLoading=true` to show a semi-transparent overlay with a loading spinner
27
+
28
+ ### Changed
29
+
30
+ - All Tables: `Table`, `PaginatedTable`, `CitationManager`, `SelectableCitationManager`, `CitationField`, `DiffTableView`, `DiffTable`
31
+ - User experience improvements: Replaced embedded loading spinner with overlaid loading spinner, allowing users to still see the table's data during table updates instead of an empty table. Also prevents jittering during search and page changes since the table size isn't removing all of the table rows every API call.
32
+
14
33
  ## [0.25.22] - 2026-02-27
15
34
 
16
35
  ### Added
@@ -0,0 +1,14 @@
1
+ import { ReactNode } from 'react';
2
+ export type LoadingOverlayProps = {
3
+ isLoading: boolean;
4
+ children: ReactNode;
5
+ };
6
+ /**
7
+ * Applies loading overlay to the children when `isLoading` is true.
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.
11
+ *
12
+ * See Table/Paginated Table/Citation Manager/Selectable Citation Manager for examples.
13
+ */
14
+ export declare const LoadingOverlay: ({ isLoading, children }: LoadingOverlayProps) => import("react/jsx-runtime").JSX.Element;