@simoncomputing/mui-bueno-v2 0.19.8 → 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 CHANGED
@@ -11,6 +11,21 @@ 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
+
22
+ ## [0.19.9] - 2025-10-30
23
+
24
+ ### Added
25
+
26
+ - `Row` & `Column`
27
+ - Simple flexbox containers. Use Mui's `Box` internally with some default settings, such as `gap={1}`.
28
+
14
29
  ## [0.19.8] - 2025-10-29
15
30
 
16
31
  ### Fixed
@@ -1,5 +1,5 @@
1
1
  import { Citation, UnsavedUrlCitation } from '../../../../../@types';
2
- export type CitationFormProps = {
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 CitationForm: (props: CitationFormProps) => import("react/jsx-runtime").JSX.Element;
12
- export default CitationForm;
11
+ declare const UrlForm: (props: UrlFormProps) => import("react/jsx-runtime").JSX.Element;
12
+ export default UrlForm;
@@ -0,0 +1,9 @@
1
+ import { BoxProps } from '@mui/material';
2
+ export type ColumnProps = BoxProps;
3
+ /**
4
+ * Column component -- container component for a column of children
5
+ *
6
+ * Uses MUI box with display=flex & flexDirection=column. Defaults: `gap={1}`.
7
+ */
8
+ export declare const Column: (props: ColumnProps) => import("react/jsx-runtime").JSX.Element;
9
+ export default Column;
@@ -0,0 +1,12 @@
1
+ import { BoxProps } from '@mui/material';
2
+ export type RowProps = BoxProps;
3
+ /**
4
+ * Row component -- container component for a row of children
5
+ *
6
+ * Uses MUI box with display=flex & flexDirection=row. Defaults: `gap={1}` & `alignItems='center'`.
7
+ *
8
+ * @default gap 1
9
+ * @default alignItems center
10
+ */
11
+ export declare const Row: (props: RowProps) => import("react/jsx-runtime").JSX.Element;
12
+ export default Row;