@simoncomputing/mui-bueno-v2 0.18.5 → 0.18.7

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,25 @@ 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.7] - 2025-09-25
15
+
16
+ ### Changed
17
+
18
+ - `Error`
19
+ - `id` prop is now optional, and can also be used for testing via data-testid
20
+
21
+ ## [0.18.6] - 2025-09-24
22
+
23
+ ### Added
24
+
25
+ - `Spacer`
26
+ - Adds vertical space
27
+
28
+ ### Fixed
29
+
30
+ - `CitationField`
31
+ - Update internal bubble menu to use `SelectableCitationManager`
32
+
14
33
  ## [0.18.5] - 2025-09-24
15
34
 
16
35
  ### Added
@@ -22,6 +41,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
41
 
23
42
  - `NotApplicable` - basic component that can be added to denote whether a form section is not applicable
24
43
 
44
+ ### Added
45
+
46
+ - `Checkbox`
47
+ - 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.
48
+
25
49
  ## [0.18.4] - 2025-09-24
26
50
 
27
51
  ### Added
@@ -7,9 +7,10 @@ export type ErrorProps = {
7
7
  name: string;
8
8
  /**
9
9
  * ID of the element.
10
- * @required
10
+ *
11
+ * Also used to generate data-testid in the format: `test-${id}`
11
12
  */
12
- id: string;
13
+ id?: string;
13
14
  /**
14
15
  * Specifies the styling on the typography.
15
16
  */
@@ -1,7 +1,7 @@
1
1
  import { Except } from 'type-fest';
2
2
  import { ControlledBubbleMenuProps } from 'mui-tiptap';
3
- import { BaseCitationManagerProps } from './BaseCitationManager';
4
- export type CitationBubbleMenuProps = Partial<Except<ControlledBubbleMenuProps, 'open' | 'editor' | 'children'>> & Omit<BaseCitationManagerProps, 'onCancel' | 'onSelectCitations'> & {
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;