Skip to content

Commit 6366f6b

Browse files
authored
Merge pull request #1169 from rvsia/fixMuiStyled
fix(mui): use correct styled import
2 parents 0e624eb + 5c4507c commit 6366f6b

File tree

4 files changed

+2021
-2046
lines changed

4 files changed

+2021
-2046
lines changed

packages/mui-component-mapper/package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@data-driven-forms/mui-component-mapper",
3-
"version": "3.15.3",
3+
"version": "3.15.6",
44
"description": "Component mapper for Material ui component mapper form data-driven-forms.",
55
"main": "index.js",
66
"module": "esm/index.js",
@@ -25,15 +25,15 @@
2525
"directory": "packages/mui-component-mapper"
2626
},
2727
"devDependencies": {
28-
"@mui/icons-material": "^5.0.4",
29-
"@mui/material": "^5.0.4",
30-
"@mui/styles": "^5.0.1"
28+
"@mui/icons-material": "^5.0.5",
29+
"@mui/material": "^5.0.6",
30+
"@mui/styles": "^5.0.2"
3131
},
3232
"peerDependencies": {
3333
"@data-driven-forms/react-form-renderer": ">=3.2.1",
34-
"@mui/icons-material": "^5.0.4",
35-
"@mui/material": "^5.0.4",
36-
"@mui/styles": "^5.0.1",
34+
"@mui/icons-material": "^5.0.5",
35+
"@mui/material": "^5.0.6",
36+
"@mui/styles": "^5.0.2",
3737
"prop-types": ">=15.7.2",
3838
"react": "^17.0.2",
3939
"react-dom": "^17.0.2"
@@ -42,8 +42,9 @@
4242
"@data-driven-forms/common": "*",
4343
"@emotion/react": "^11.5.0",
4444
"@emotion/styled": "^11.3.0",
45-
"@mui/lab": "^5.0.0-alpha.51",
45+
"@mui/lab": "^5.0.0-alpha.53",
4646
"clsx": "^1.0.4",
47+
"date-fns": "^2.16.1",
4748
"lodash": "^4.17.21"
4849
}
4950
}

packages/mui-component-mapper/src/dual-list-select/dual-list-select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import { styled } from '@mui/material';
2+
import { styled } from '@mui/material/styles';
33
import PropTypes from 'prop-types';
44
import clsx from 'clsx';
55

packages/react-renderer-demo/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
"@emotion/styled": "^11.3.0",
3636
"@mdx-js/loader": "^1.6.22",
3737
"@mdx-js/react": "^1.6.22",
38-
"@mui/icons-material": "^5.0.4",
39-
"@mui/material": "^5.0.4",
40-
"@mui/styles": "^5.0.1",
38+
"@mui/icons-material": "^5.0.5",
39+
"@mui/material": "^5.0.6",
40+
"@mui/styles": "^5.0.2",
4141
"@next/bundle-analyzer": "^11.1.2",
4242
"@next/mdx": "^11.1.2",
4343
"@stackblitz/sdk": "^1.5.2",

0 commit comments

Comments
 (0)