@simoncomputing/mui-bueno-v2 0.18.2 → 0.18.3

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,7 +11,15 @@ 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.18.2] - 2025-09-24
14
+ ## [0.18.3] - 2025-09-24
15
+
16
+ ### Fixed
17
+
18
+ - `CitationManager`
19
+ - Table data not refreshing when adding/updating citations
20
+ - Initial page size is 10 instead of 5
21
+
22
+ ## [0.18.2] - 2025-09-23
15
23
 
16
24
  ### Changed
17
25
 
@@ -43,6 +43,10 @@ export type CitationTableProps = {
43
43
  * Additional actions to be displayed for each row. Will be inserted in between Download (if applicable) and Edit button.
44
44
  */
45
45
  addlActions?: (citation: Citation) => ReactNode;
46
+ /**
47
+ * Used to trigger a re-fetch of table data (via getPaginatedCitations)
48
+ */
49
+ refreshKey?: number;
46
50
  };
47
51
  declare const CitationTable: (props: CitationTableProps) => import("react/jsx-runtime").JSX.Element;
48
52
  export default CitationTable;