@availity/mui-dialog 0.2.1 → 0.2.3

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
@@ -2,6 +2,24 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.2.3](https://github.com/Availity/element/compare/@availity/mui-dialog@0.2.2...@availity/mui-dialog@0.2.3) (2025-01-03)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-block-ui` updated to version `0.2.2`
10
+ * `mui-form-utils` updated to version `0.2.2`
11
+ * `mui-menu` updated to version `0.2.2`
12
+ * `mui-alert` updated to version `0.2.2`
13
+ * `mui-button` updated to version `0.2.2`
14
+ * `mui-icon` updated to version `0.2.2`
15
+ * `mui-textfield` updated to version `0.2.2`
16
+ ## [0.2.2](https://github.com/Availity/element/compare/@availity/mui-dialog@0.2.1...@availity/mui-dialog@0.2.2) (2025-01-03)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * **mui-dialog:** remove title alignment options ([e03361e](https://github.com/Availity/element/commit/e03361ee2528ef626f29ee67962859a11ad6ce65))
22
+
5
23
  ## [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
24
 
7
25
  ### 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-dialog",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "Availity MUI Dialog Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -32,15 +32,15 @@
32
32
  "publish:canary": "yarn npm publish --access public --tag canary"
33
33
  },
34
34
  "dependencies": {
35
- "@availity/mui-alert": "0.7.0",
36
- "@availity/mui-button": "0.6.12",
37
- "@availity/mui-icon": "0.11.1"
35
+ "@availity/mui-alert": "0.7.1",
36
+ "@availity/mui-button": "0.6.13",
37
+ "@availity/mui-icon": "0.12.0"
38
38
  },
39
39
  "devDependencies": {
40
- "@availity/mui-block-ui": "0.1.16",
41
- "@availity/mui-form-utils": "0.16.0",
40
+ "@availity/mui-block-ui": "0.1.17",
41
+ "@availity/mui-form-utils": "0.16.1",
42
42
  "@availity/mui-layout": "0.2.0",
43
- "@availity/mui-menu": "0.2.12",
43
+ "@availity/mui-menu": "0.2.13",
44
44
  "@mui/material": "^5.15.15",
45
45
  "react": "18.2.0",
46
46
  "react-dom": "18.2.0",
@@ -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 (