@simoncomputing/mui-bueno-v2 0.19.7 → 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 +14 -0
- package/dist/components/Layout/Column/Column.d.ts +9 -0
- package/dist/components/Layout/Row/Row.d.ts +12 -0
- package/dist/index.cjs.js +63 -63
- package/dist/index.d.ts +4 -0
- package/dist/index.es.js +2837 -2820
- package/dist/index.umd.js +68 -68
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,20 @@ 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
|
+
|
|
21
|
+
## [0.19.8] - 2025-10-29
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- `FileUpload`
|
|
26
|
+
- File upload button not keyboard accessible
|
|
27
|
+
|
|
14
28
|
## [0.19.7] - 2025-10-29
|
|
15
29
|
|
|
16
30
|
### Changed
|
|
@@ -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;
|