@simoncomputing/mui-bueno-v2 0.19.9 → 0.19.11

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,21 @@ 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.19.11] - 2025-11-05
15
+
16
+ ### Fixed
17
+
18
+ - `CitationField`, `SelectableCitationManager`
19
+ - Fix top-right close button going back to table instead of closing on Attachment/URL detail step.
20
+
21
+ ## [0.19.10] - 2025-11-04
22
+
23
+ ### Fixed
24
+
25
+ - `CitationField`, `CitationManager`, `SelectableCitationManager`
26
+ - Form not validating missing `Classification` for URL citations
27
+ - Switched to `yup` validation to utilize built-in `ValidationError` component on all form components to display errors, and also prevents relying on browsers to validate `required` inputs
28
+
14
29
  ## [0.19.9] - 2025-10-30
15
30
 
16
31
  ### Added
@@ -3,6 +3,7 @@ export type AttachmentFormProps = {
3
3
  title: string;
4
4
  onSave: (unsavedAttachment: UnsavedAttachmentCitation) => Promise<void>;
5
5
  onCancel: () => void;
6
+ onClose: () => void;
6
7
  modifyCitation: Citation | undefined;
7
8
  /**
8
9
  * If true, file upload is disabled. (Title field is still enabled)
@@ -1,12 +1,13 @@
1
1
  import { Citation, UnsavedUrlCitation } from '../../../../../@types';
2
- export type CitationFormProps = {
2
+ export type UrlFormProps = {
3
3
  title: string;
4
4
  onSave: (unsavedUrl: UnsavedUrlCitation) => Promise<void>;
5
5
  onCancel: () => void;
6
+ onClose: () => void;
6
7
  modifyCitation: Citation | undefined;
7
8
  readOnly?: boolean;
8
9
  /** If true, shows a close button inline with title. Intended to be used within modals. */
9
10
  showCloseBtn?: boolean;
10
11
  };
11
- declare const CitationForm: (props: CitationFormProps) => import("react/jsx-runtime").JSX.Element;
12
- export default CitationForm;
12
+ declare const UrlForm: (props: UrlFormProps) => import("react/jsx-runtime").JSX.Element;
13
+ export default UrlForm;