@lowentry/mui 1.0.2 → 1.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lowentry/mui",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Provides utilities for Material UI.",
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import {LeRed} from '@lowentry/react-redux';
3
3
  import {STRING} from '@lowentry/utils';
4
- import {Dialog} from '@mui/material';
4
+ import {Dialog as MuiDialog} from '@mui/material';
5
5
 
6
6
 
7
7
  export const Dialog = LeRed.memo(({onClose, children, ...props}) =>
@@ -22,8 +22,8 @@ export const Dialog = LeRed.memo(({onClose, children, ...props}) =>
22
22
 
23
23
 
24
24
  return (<>
25
- <Dialog onClose={onClosed} {...props}>
25
+ <MuiDialog onClose={onClosed} {...props}>
26
26
  {children}
27
- </Dialog>
27
+ </MuiDialog>
28
28
  </>);
29
29
  });