@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 +9 -1
- package/dist/components/Form/Inputs/CitationField/CitationManager/CitationTable.d.ts +4 -0
- package/dist/index.cjs.js +52 -52
- package/dist/index.es.js +3151 -3145
- package/dist/index.umd.js +53 -53
- package/package.json +1 -1
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.
|
|
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;
|