@simoncomputing/mui-bueno-v2 0.19.8 → 0.19.9

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,13 @@ 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.9] - 2025-10-30
15
+
16
+ ### Added
17
+
18
+ - `Row` & `Column`
19
+ - Simple flexbox containers. Use Mui's `Box` internally with some default settings, such as `gap={1}`.
20
+
14
21
  ## [0.19.8] - 2025-10-29
15
22
 
16
23
  ### Fixed
@@ -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;