@simoncomputing/mui-bueno-v2 0.19.9 → 0.19.10
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 +8 -0
- package/dist/components/Form/Inputs/CitationField/CitationManager/{CitationForm.d.ts → UrlForm.d.ts} +3 -3
- package/dist/index.cjs.js +104 -104
- package/dist/index.es.js +7756 -7698
- package/dist/index.umd.js +100 -100
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,14 @@ 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.10] - 2025-11-04
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- `CitationField`, `CitationManager`, `SelectableCitationManager`
|
|
19
|
+
- Form not validating missing `Classification` for URL citations
|
|
20
|
+
- 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
|
|
21
|
+
|
|
14
22
|
## [0.19.9] - 2025-10-30
|
|
15
23
|
|
|
16
24
|
### Added
|
package/dist/components/Form/Inputs/CitationField/CitationManager/{CitationForm.d.ts → UrlForm.d.ts}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Citation, UnsavedUrlCitation } from '../../../../../@types';
|
|
2
|
-
export type
|
|
2
|
+
export type UrlFormProps = {
|
|
3
3
|
title: string;
|
|
4
4
|
onSave: (unsavedUrl: UnsavedUrlCitation) => Promise<void>;
|
|
5
5
|
onCancel: () => void;
|
|
@@ -8,5 +8,5 @@ export type CitationFormProps = {
|
|
|
8
8
|
/** If true, shows a close button inline with title. Intended to be used within modals. */
|
|
9
9
|
showCloseBtn?: boolean;
|
|
10
10
|
};
|
|
11
|
-
declare const
|
|
12
|
-
export default
|
|
11
|
+
declare const UrlForm: (props: UrlFormProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export default UrlForm;
|