@simoncomputing/mui-bueno-v2 0.18.4 → 0.18.5

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,15 +11,34 @@ 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.5] - 2025-09-24
15
+
16
+ ### Added
17
+
18
+ - `CitationField`
19
+
20
+ - added optional `placeholder` prop to override default placeholder text ("Start typing here...")
21
+ - [prototype] added `notApplicableName` prop which when a formik name is provided, a Not Applicable checkbox will appear
22
+
23
+ - `NotApplicable` - basic component that can be added to denote whether a form section is not applicable
24
+
14
25
  ## [0.18.4] - 2025-09-24
15
26
 
16
27
  ### Added
17
28
 
29
+ - `TableColumn`
30
+ - added `hideCol` prop, which when true, will hide the column from the `Table` or `PaginatedTable`
31
+
32
+ ### Fixed
33
+
34
+ - `CitationManager`, `SelectableCitationManager`
35
+ - `onUpdateCitation` is optional. When not provided, the Edit icon buttons will not be displayed.
18
36
  - `TableColumn` - added `hideCol` prop, which when true, will hide the column from the `Table` or `PaginatedTable`
19
37
 
20
38
  ### Fixed
21
39
 
22
- - `CitationManager`, `SelectableCitationManager` - `onUpdateCitation` is optional. When not provided, the Edit icon buttons will not be displayed.
40
+ - `CitationManager`, `SelectableCitationManager`
41
+ - `onUpdateCitation` is optional. When not provided, the Edit icon buttons will not be displayed.
23
42
 
24
43
  ## [0.18.3] - 2025-09-24
25
44
 
@@ -49,6 +49,12 @@ type BaseCheckboxProps = {
49
49
  * Used to customize the label when the static label option is selected or the field is readOnly.
50
50
  */
51
51
  staticLabelProps?: TypographyProps;
52
+ /**
53
+ * Does not display error and does not leave padding for error.
54
+ *
55
+ * Use this if handling validation errors elsewhere.
56
+ */
57
+ noError?: boolean;
52
58
  };
53
59
  export type CheckboxProps = BaseCheckboxProps & Omit<MuiCheckboxProps, 'checked' | 'name'>;
54
60
  /**
@@ -78,6 +78,16 @@ export type CitationFieldProps = {
78
78
  * help debug issues so developers can see specific details about an error.
79
79
  */
80
80
  onError?: (err: string) => void;
81
+ /**
82
+ * Placeholder text. Default "Start typing here..."
83
+ */
84
+ placeholder?: string;
85
+ /**
86
+ * [prototype] If defined, a "Not Applicable" checkbox is displayed.
87
+ *
88
+ * NOTE: This feature is a prototype and is not fully implemented.
89
+ */
90
+ notApplicableName?: string;
81
91
  };
82
92
  /**
83
93
  * Rich Text field -- uses MUI Tip Tap
@@ -0,0 +1,9 @@
1
+ import { CheckboxProps } from '../Checkbox/Checkbox';
2
+ export type NotApplicableCheckboxProps = CheckboxProps;
3
+ /**
4
+ * Simple Not Applicable checkbox. Intended to be used with other form inputs.
5
+ *
6
+ * NOTE: Does not show validation errors. Make sure to handle validation and display errors accordinly.
7
+ */
8
+ export declare const NotApplicableCheckbox: (props: NotApplicableCheckboxProps) => import("react/jsx-runtime").JSX.Element;
9
+ export default NotApplicableCheckbox;