@simoncomputing/mui-bueno-v2 0.18.5 → 0.18.6
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 +17 -0
- package/dist/components/Form/Inputs/CitationField/CitationManager/CitationBubbleMenu.d.ts +2 -2
- package/dist/components/Spacer/Spacer.d.ts +10 -0
- package/dist/index.cjs.js +99 -99
- package/dist/index.d.ts +2 -0
- package/dist/index.es.js +2417 -2396
- package/dist/index.umd.js +95 -95
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,18 @@ 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.6] - 2025-09-24
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- `Spacer`
|
|
19
|
+
- Adds vertical space
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- `CitationField`
|
|
24
|
+
- Update internal bubble menu to use `SelectableCitationManager`
|
|
25
|
+
|
|
14
26
|
## [0.18.5] - 2025-09-24
|
|
15
27
|
|
|
16
28
|
### Added
|
|
@@ -22,6 +34,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
22
34
|
|
|
23
35
|
- `NotApplicable` - basic component that can be added to denote whether a form section is not applicable
|
|
24
36
|
|
|
37
|
+
### Added
|
|
38
|
+
|
|
39
|
+
- `Checkbox`
|
|
40
|
+
- Added `noError` prop to hide error section if validation is not needed. This removes the padding that is always in the document whether errors display or not.
|
|
41
|
+
|
|
25
42
|
## [0.18.4] - 2025-09-24
|
|
26
43
|
|
|
27
44
|
### Added
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Except } from 'type-fest';
|
|
2
2
|
import { ControlledBubbleMenuProps } from 'mui-tiptap';
|
|
3
|
-
import {
|
|
4
|
-
export type CitationBubbleMenuProps = Partial<Except<ControlledBubbleMenuProps, 'open' | 'editor' | 'children'>> & Omit<
|
|
3
|
+
import { SelectableCitationManagerProps } from './SelectableCitationManager';
|
|
4
|
+
export type CitationBubbleMenuProps = Partial<Except<ControlledBubbleMenuProps, 'open' | 'editor' | 'children'>> & Omit<SelectableCitationManagerProps, 'onCancel' | 'onSelectCitations'> & {
|
|
5
5
|
onChanged?: (ids: number[]) => void;
|
|
6
6
|
};
|
|
7
7
|
/**
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export type SpacerProps = {
|
|
2
|
+
/**
|
|
3
|
+
* size, in pixels
|
|
4
|
+
*/
|
|
5
|
+
size?: number | 'x-small' | 'small' | 'medium' | 'large' | 'x-large';
|
|
6
|
+
};
|
|
7
|
+
/**
|
|
8
|
+
* Basic spacer that adds vertical spacing
|
|
9
|
+
*/
|
|
10
|
+
export declare const Spacer: (props: SpacerProps) => import("react/jsx-runtime").JSX.Element;
|