@simoncomputing/mui-bueno-v2 0.31.0 → 0.31.1

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,13 @@ 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.31.1] - 2026-06-22
15
+
16
+ ### Changed
17
+
18
+ - `CitationField`/`SelectableCitationManager`
19
+ - Added loading overlay so that if user clicks on single inline citation, the popup can show loading indication while fetching citation by id.
20
+
14
21
  ## [0.31.0] - 2026-06-19
15
22
 
16
23
  ### Changed
@@ -112,10 +112,8 @@ export type BaseCitationManagerProps = BaseCitationManagerApiProps & {
112
112
  };
113
113
  export declare enum CitationManagerState {
114
114
  CITATIONS_TABLE = "Insert Citation/Attachment(s)",
115
- ADD_CITATION = "Add Citation",
116
- EDIT_CITATION = "Edit Citation",
117
- ADD_ATTACHMENT = "Add Attachment",
118
- EDIT_ATTACHMENT = "Edit Attachment"
115
+ URL_DETAILS = "Citation",
116
+ ATTACHMENT_DETAILS = "Attachment"
119
117
  }
120
118
  /**
121
119
  * BaseCitationManager handles creating, updating, deleting, downloading and selecting citations.
@@ -5,10 +5,6 @@ export type AttachmentFormProps = {
5
5
  onViewCitationTable: () => void;
6
6
  onClose: () => void;
7
7
  modifyCitation: Citation | undefined;
8
- /**
9
- * If true, file upload is disabled. (Title field is still enabled)
10
- */
11
- disableFileUpload?: boolean;
12
8
  readOnly?: boolean;
13
9
  showViewAllCitationsBtn?: boolean;
14
10
  onDownloadAttachment: ((citation: Citation) => Promise<void>) | undefined;