@availity/mui-dialog 0.2.1 → 0.2.2
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 +7 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/DialogTitle.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.2.2](https://github.com/Availity/element/compare/@availity/mui-dialog@0.2.1...@availity/mui-dialog@0.2.2) (2025-01-03)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **mui-dialog:** remove title alignment options ([e03361e](https://github.com/Availity/element/commit/e03361ee2528ef626f29ee67962859a11ad6ce65))
|
|
11
|
+
|
|
5
12
|
## [0.2.1](https://github.com/Availity/element/compare/@availity/mui-dialog@0.2.0...@availity/mui-dialog@0.2.1) (2024-12-23)
|
|
6
13
|
|
|
7
14
|
### Dependency Updates
|
package/dist/index.d.mts
CHANGED
|
@@ -36,7 +36,7 @@ type DialogTitleProps = {
|
|
|
36
36
|
children?: React.ReactNode;
|
|
37
37
|
/** The corresponding severity for the Alert Icon, if `undefined`/`false` no icon is displayed */
|
|
38
38
|
icon?: keyof typeof AlertIcons;
|
|
39
|
-
} & Omit<DialogTitleProps$1, 'variantMapping'>;
|
|
39
|
+
} & Omit<DialogTitleProps$1, 'align' | 'variantMapping'>;
|
|
40
40
|
declare const DialogTitle: ({ children, component, icon, variant, ...rest }: DialogTitleProps) => JSX.Element;
|
|
41
41
|
|
|
42
42
|
export { CloseButtonSlot, Dialog, DialogActions, type DialogActionsProps, DialogContent, type DialogContentProps, DialogContentText, type DialogContentTextProps, type DialogProps, DialogTitle, type DialogTitleProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ type DialogTitleProps = {
|
|
|
36
36
|
children?: React.ReactNode;
|
|
37
37
|
/** The corresponding severity for the Alert Icon, if `undefined`/`false` no icon is displayed */
|
|
38
38
|
icon?: keyof typeof AlertIcons;
|
|
39
|
-
} & Omit<DialogTitleProps$1, 'variantMapping'>;
|
|
39
|
+
} & Omit<DialogTitleProps$1, 'align' | 'variantMapping'>;
|
|
40
40
|
declare const DialogTitle: ({ children, component, icon, variant, ...rest }: DialogTitleProps) => JSX.Element;
|
|
41
41
|
|
|
42
42
|
export { CloseButtonSlot, Dialog, DialogActions, type DialogActionsProps, DialogContent, type DialogContentProps, DialogContentText, type DialogContentTextProps, type DialogProps, DialogTitle, type DialogTitleProps };
|
package/package.json
CHANGED
package/src/lib/DialogTitle.tsx
CHANGED
|
@@ -17,7 +17,7 @@ export type DialogTitleProps = {
|
|
|
17
17
|
children?: React.ReactNode;
|
|
18
18
|
/** The corresponding severity for the Alert Icon, if `undefined`/`false` no icon is displayed */
|
|
19
19
|
icon?: keyof typeof AlertIcons;
|
|
20
|
-
} & Omit<MuiDialogTitleProps, 'variantMapping'>
|
|
20
|
+
} & Omit<MuiDialogTitleProps, 'align' | 'variantMapping'>
|
|
21
21
|
|
|
22
22
|
export const DialogTitle = ({ children, component="h2", icon, variant="h5", ...rest }: DialogTitleProps): JSX.Element => {
|
|
23
23
|
return (
|