@simoncomputing/mui-bueno-v2 0.19.10 → 0.19.12
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 +14 -0
- package/dist/components/Form/Inputs/CheckboxGroup/CheckboxGroup.d.ts +5 -0
- package/dist/components/Form/Inputs/CitationField/CitationManager/AttachmentForm.d.ts +1 -0
- package/dist/components/Form/Inputs/CitationField/CitationManager/UrlForm.d.ts +1 -0
- package/dist/index.cjs.js +79 -79
- package/dist/index.es.js +2910 -2914
- package/dist/index.umd.js +47 -47
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,20 @@ 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.12] - 2025-11-12
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- `CheckboxGroup`
|
|
19
|
+
- Added `onChange` prop
|
|
20
|
+
|
|
21
|
+
## [0.19.11] - 2025-11-05
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- `CitationField`, `SelectableCitationManager`
|
|
26
|
+
- Fix top-right close button going back to table instead of closing on Attachment/URL detail step.
|
|
27
|
+
|
|
14
28
|
## [0.19.10] - 2025-11-04
|
|
15
29
|
|
|
16
30
|
### Fixed
|
|
@@ -94,6 +94,11 @@ export type CheckboxGroupProps = BaseInputProps & {
|
|
|
94
94
|
* Used to customize the label when the static label option is selected or the field is readOnly.
|
|
95
95
|
*/
|
|
96
96
|
staticLabelProps?: TypographyProps;
|
|
97
|
+
/**
|
|
98
|
+
* OnChange handler, called when the user changes their selection.
|
|
99
|
+
* Provides a string array of selected checkboxes.
|
|
100
|
+
*/
|
|
101
|
+
onChange?: (val: string[]) => void;
|
|
97
102
|
};
|
|
98
103
|
/**
|
|
99
104
|
* CheckboxGroup produces a group of checkboxes that's defined as an array of strings or Checkboxes.
|
|
@@ -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)
|
|
@@ -3,6 +3,7 @@ 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. */
|