跳转到内容

从 v4 迁移到 v5 版本

是的,我们已经发布了 v5 版本!

你在找 v4 版本的文档吗? 您可以在这里找到它们

此文档尚未完成。 您是否已经升级了站点并且遇到了一些并没有在此涉及的问题? 请在 GitHub 添加您的更改

简介

当你将站点从 Material-UI 的 v4 版本升级到 v5 版本时,这篇文章会为你提供一些参考。 您可能不会将这里所有涵盖的内容运用到你的站点上。 您可能不会将这里所有涵盖的内容运用到你的站点上。 我们会尽我们最大的努力让文档简单易懂,并尽可能有序地介绍,这样你可以迅速对 v5 版本游刃有余。

为什么您需要迁移呢

这篇文章介绍了 如何 从 v4 版本迁移到 v5 版本。 关于 为什么 需要迁移,我们在 Medium 上发布了一篇博客 来详细说明。

更新您的依赖包

您需要做的第一件事,就是更新您的依赖包。

升级 Material-UI 的版本

你需要更新你的 package.json,以使用最新版本的 Material-UI 和它相关的依赖。

"dependencies": {
  "@emotion/react": "^11.0.0",
  "@emotion/styled": "^11.0.0",
  "@material-ui/core": "^5.0.0"
}

或者运行

npm install @material-ui/core@next @emotion/react @emotion/styled

或者使用

yarn add @material-ui/core@next @emotion/react @emotion/styled

处理变化带来的系统崩溃

支持的浏览器和 node 版本

默认捆绑包的目标已更改。 实际支持的版本将在发布时从浏览器列表中查询 "> 0.5%, last 2 versions, Firefox ESR, not dead, not IE 11, maintained node versions"

当前默认的捆绑包支持以下版本:

  • Node 10(最低兼容到 8)
  • Chrome 84(最低兼容到 49)
  • Edge 85(最低兼容到 14)
  • Firefox 78(最低兼容到 52)
  • Safari 13 (macOS) 和 12.2 (iOS)(最低兼容到 10)
  • 更多内容请(参阅 .browserslistrc (stable entry)

不再对 IE 11 进行兼容支持。 如果你需要对 IE 11 进行兼容性支持,请查看我们的 旧版本包

非转发类(non-ref-forwarding class)组件

component 属性中的非转发(non-ref-forwarding)类组件或作为直接 子类(children) 的支持已被放弃。 如果你使用了 unstable_createStrictModeTheme 或者在 React.StrictMode 中没有看到任何与 findDOMNode 相关的任何警告,那么你不需要做任何事情。 否则请查看我们指南中的 “注意事项与参考文献”部分 来了解如何迁移。 这个变化几乎影响了所有使用 component 属性的组件或者将 children 传递给要求 children 作为元素的组件(例如 <MenuList><CustomMenuItem /></MenuList>

Styled engine

The styled engine used in v5 by default is emotion. While migration from JSS to emotion, if you are using JSS style overrides for your components (for example overrides created by makeStyles), you need to take care of the CSS injection order. In order to do this, you need to have on the top of your application the StylesProvider with the injectFirst option. Here is an example of it: While migration from JSS to emotion, if you are using JSS style overrides for your components (for example overrides created by makeStyles), you need to take care of the CSS injection order. In order to do this, you need to have on the top of your application the StylesProvider with the injectFirst option. Here is an example of it:

import * as React from 'react';
import { StylesProvider } from '@material-ui/core';

export default function GlobalCssPriority() {
  return (
    <StylesProvider injectFirst>
      {/* Your component tree. 现在你可以覆盖 Material-UI 的样式。 */}
    </StylesProvider>
  );
}

Note: If you are using emotion and have a custom cache in your app, that one will override the one coming from Material-UI. In order for the injection order to still be correct, you need to add the prepend option. 下面是一个示例: In order for the injection order to still be correct, you need to add the prepend option. 下面是一个示例:

import * as React from 'react';
import { CacheProvider } from '@emotion/react';
import createCache from '@emotion/cache';

const cache = createCache({
  key: 'css',
  prepend: true,
});

export default function PlainCssPriority() {
  return (
    <CacheProvider value={cache}>
      {/* Your component tree. 现在你可以覆盖 Material-UI 的样式。 */}
    </CacheProvider>
  );
}

Note: If you are using styled-components and have StyleSheetManager with a custom target, make sure that the target is the first element in the HTML <head>. If you are curious to see how it can be done, you can take a look on the StylesProvider implementation in the @material-ui/styled-engine-sc package. If you are curious to see how it can be done, you can take a look on the StylesProvider implementation in the @material-ui/styled-engine-sc package.

主题

  • 断点现在被当作值而不是范围来处理。 down(key) 的行为已更改为定义的媒体查询小于使用相应断点定义的值(不包含当前值)。 between(start, end) 也已更新,定义了媒体查询 start(包含)和 end(不包含)实际值之间的数值。 当使用 down()断点工具集时,你需要向上一步更新断点键。 当使用 between(start, end) 时,结束断点也应向上一步更新。 使用 Hidden 组件时也应该这样做。 下面列出了变动影响的例子:

    -theme.breakpoints.down('sm') // '@media (max-width:959.95px)' - [0, sm + 1) => [0, md)
    +theme.breakpoints.down('md') // '@media (max-width:959.95px)' - [0, md)
    -theme.breakpoints.between('sm', 'md') // '@media (min-width:600px) and (max-width:1279.95px)' - [sm, md + 1) => [0, lg)
    +theme.breakpoints.between('sm', 'lg') // '@media (min-width:600px) and (max-width:1279.95px)' - [0, lg)
    -theme.breakpoints.between('sm', 'xl') // '@media (min-width:600px)'
    +theme.breakpoints.up('sm') // '@media (min-width:600px)'
    -<Hidden smDown>{...}</Hidden> // '@media (min-width:600px)'
    +<Hidden mdDown>{...}</Hidden> // '@media (min-width:600px)'
  • theme.palette.augmentColor 助手的签名已经改变:

    -theme.palette.augmentColor(red);
    +theme.palette.augmentColor({ color: red, name: 'brand' });

变更

为了能实现更平滑的过渡,adaptV4Theme 助手允许你迭代升级到新的主题结构。

-import { createMuiTheme } from '@material-ui/core/styles';
+import { createMuiTheme, adaptV4Theme } from '@material-ui/core/styles';

-const theme = createMuiTheme({
+const theme = createMuiTheme(adaptV4Theme({
  // v4 theme
-});
+}));

适配助手支持以下更改。

修改前:

  • 事实证明,“水槽(gutters)”这个抽象的概念还没有被频繁使用,所以是没有价值的。

    -theme.mixins.gutters(),
    +paddingLeft: theme.spacing(2),
    +paddingRight: theme.spacing(2),
    +[theme.breakpoints.up('sm')]: {
    +  paddingLeft: theme.spacing(3),
    +  paddingRight: theme.spacing(3),
    +},
  • theme.spacing 现在默认返回以 px 为单位的单个数值。 这一改动改善了与 styled-components & emotion 的整合。

    修改前:

    theme.spacing(2) => 16

    修改后:

    theme.spacing(2) => '16px'
  • 为了更好地遵循通常用于描述该功能的“黑暗模式”术语,我们将 theme.palette.type 重命名为 theme.palette.mode

    import { createMuiTheme } from '@material-ui/core/styles';
    -const theme = createMuiTheme({palette: { type: 'dark' }}),
    +const theme = createMuiTheme({palette: { mode: 'dark' }}),
  • theme.palette.text.hint 键在 Material-UI 组件中未使用,现已被删除。 如果你的项目之前依赖它,那么也可以通过下面方法将它添加回来:

    import { createMuiTheme } from '@material-ui/core/styles';
    
    -const theme = createMuiTheme(),
    +const theme = createMuiTheme({
    +  palette: { text: { hint: 'rgba(0, 0, 0, 0.38)' } },
    +});
  • 主题内的组件定义在 components 键下进行了重构,以便人们更容易地发现一个组件的定义。

  1. 属性
import { createMuiTheme } from '@material-ui/core/styles';

const theme = createMuiTheme({
-  props: {
-    MuiButton: {
-      disableRipple: true,
-    },
-  },
+  components: {
+    MuiButton: {
+      defaultProps: {
+        disableRipple: true,
+      },
+    },
+  },
});
  1. 覆盖
import { createMuiTheme } from '@material-ui/core/styles';

const theme = createMuiTheme({
-  overrides: {
-    MuiButton: {
-      root: { padding: 0 },
-    },
-  },
+  components: {
+    MuiButton: {
+      styleOverrides: {
+        root: { padding: 0 },
+      },
+    },
+  },
});

Styles(样式表单)

  • 为更好地描述功能,我们将 fade 重命名为 alpha。 当输入颜色已经有一个 alpha 值时,以前的名称会导致混乱。 overrides 助手覆盖了颜色的 alpha 值。
- import { fade } from '@material-ui/core/styles';
+ import { alpha } from '@material-ui/core/styles';

const classes = makeStyles(theme => ({
-  backgroundColor: fade(theme.palette.primary.main, theme.palette.action.selectedOpacity),
+  backgroundColor: alpha(theme.palette.primary.main, theme.palette.action.selectedOpacity),
}));

System 系统

  • The following system functions (and properties) were renamed, because they are considered deprecated CSS:
  1. gridGap to gap
  2. gridColumnGap to columnGap
  3. gridRowGap to rowGap

1. 核心组件

As the core components use emotion as a styled engine, the props used by emotion are not intercepted. The prop as in the following codesnippet will not be propagated to the SomeOtherComponent. The prop as in the following codesnippet will not be propagated to the SomeOtherComponent.

<MuiComponent component={SomeOtherComponent} as="button" />

一个突出的应用栏。

  • [AppBar] 当 position 为 static 和 relative 时,z-index 将会被移除。

Alert 警告提示

  • 该组件已从实验室包移动到核心包。 现在这个组件处于稳定版本。

    -import Alert from '@material-ui/lab/Alert';
    -import AlertTitle from '@material-ui/lab/AlertTitle';
    +import Alert from '@material-ui/core/Alert';
    +import AlertTitle from '@material-ui/core/AlertTitle';

    你可以使用 moved-lab-modules 编码器(codemod)来进行自动迁移。

Autocomplete 自动补全组件

  • 该组件已从实验室包移动到核心包。 现在这个组件处于稳定版本。

    -import Autocomplete from '@material-ui/lab/Autocomplete';
    -import useAutocomplete  from '@material-ui/lab/useAutocomplete';
    +import Autocomplete from '@material-ui/core/Autocomplete';
    +import useAutoComplete from '@material-ui/core/useAutocomplete';

    你可以使用我们的 moved-lab-modules 编码器(codemod)来进行自动迁移。

  • 移除 debug 属性。 有几个更简单的方式来使用它:open={true},Chrome 开发者调试工具 “Emulate focused”,或者使用 React devtools prop setter。

  • renderOption 现在应该返回选项的完整 DOM 结构。 这样做可以让定制组件变得更加容易。 你可以通过下面方法进行回滚:

    <Autocomplete
    - renderOption={(option, { selected }) => (
    -   <React.Fragment>
    + renderOption={(props, option, { selected }) => (
    +   <li {...props}>
          <Checkbox
            icon={icon}
            checkedIcon={checkedIcon}
            style={{ marginRight: 8 }}
            checked={selected}
          />
          {option.title}
    -   </React.Fragment>
    +   </li>
      )}
    />
  • 为了避免混淆,我们将 closeIcon 属性更名为 clearIcon

    -<Autocomplete closeIcon={defaultClearIcon} />
    +<Autocomplete clearIcon={defaultClearIcon} />

Avatar 头像组件

  • 为保持一致性,我们将 circle 重命名为 circular。 可能的值应该是形容词,而不是名词。

    -<Avatar variant="circle">
    -<Avatar classes={{ circle: 'className' }}>
    +<Avatar variant="circular">
    +<Avatar classes={{ circular: 'className' }}>
  • AvatarGroup 已从实验室包移动到核心包。

    -import AvatarGroup from '@material-ui/lab/AvatarGroup';
    +import AvatarGroup from '@material-ui/core/AvatarGroup';

Badge

  • 为保持一致性,我们将 circle 重命名为 circularrectangle 重命名为 rectangular。 可能的值应该是形容词,而不是名词。

    -<Badge overlap="circle">
    -<Badge overlap="rectangle">
    +<Badge overlap="circular">
    +<Badge overlap="rectangular">
    <Badge classes={{
    - anchorOriginTopRightRectangle: 'className'
    - anchorOriginBottomRightRectangle: 'className'
    - anchorOriginTopLeftRectangle: 'className'
    - anchorOriginBottomLeftRectangle: 'className'
    - anchorOriginTopRightCircle: 'className'
    - anchorOriginBottomRightCircle: 'className'
    - anchorOriginTopLeftCircle: 'className'
    + anchorOriginTopRightRectangular: 'className'
    + anchorOriginBottomRightRectangular: 'className'
    + anchorOriginTopLeftRectangular: 'className'
    + anchorOriginBottomLeftRectangular: 'className'
    + anchorOriginTopRightCircular: 'className'
    + anchorOriginBottomRightCircular: 'className'
    + anchorOriginTopLeftCircular: 'className'
    }}>

BottomNavigation(底部导航)

  • TypeScript:onChange 中的 event 的类型不再是 React.ChangeEvent,而是React.SyntheticEvent

    -<BottomNavigation onChange={(event: React.ChangeEvent<{}>) => {}} />
    +<BottomNavigation onChange={(event: React.SyntheticEvent) => {}} />

Box 分组

  • system 属性在 v5 中已废弃且被 sx 属性取代。

    -<Box border="1px dashed grey" p={[2, 3, 4]} m={2}>
    +<Box sx={{ border: "1px dashed grey", p: [2, 3, 4], m: 2 }}>

    该编码器(codemod) 将自动将你的代码更新为新的语法。 You can read this section for the why behind the change of API.

  • borderRadius 系统属性值转换已被更改。 如果它收到一个数字,它就会将这个值与 theme.shape.borderRadius 的值相乘。 也可以使用字符串来提供一个明确的值,单位是 px

    -<Box sx={{ borderRadius: 'borderRadius' }}>
    +<Box sx={{ borderRadius: 1 }}>
    -<Box sx={{ borderRadius: 16 }}>
    +<Box sx={{ borderRadius: '16px' }}>
  • The following properties were renamed, because they are considered deprecated CSS proeprties:

  1. gridGap to gap
  2. gridColumnGap to columnGap
  3. gridRowGap to rowGap
-<Box gridGap="10px">
+<Box sx={{ gap: '10px' }}>
-<Box gridColumnGap="10px" gridRowGap="20px">
+<Box sx={{ columnGap: '10px', rowGap: '20px' }}>

Button

  • 按钮的 颜色(color) 属性默认情况下为 "primary",同时 "default" 属性已被删除。 这使得按钮更接近于 Material Design 规范,并且也简化了 API。

    -<Button color="primary" />
    -<Button color="default" />
    +<Button />
    +<Button />

Chip

  • 为保持一致性,我们将 visuallyhidden 重命名为 visuallyHidden
    -<Chip variant="default">
    +<Chip variant="filled">

CircularProgress(进度环)

  • static 变量已合并到 determinate 变量中,后者将采用前者的外观。 这是因为删除的这个变量很少有用。 这属于 Material Design 的例外情况,并且它在规范中已被删除。

    -<CircularProgress variant="determinate" />
    -<CircularProgress variant="static" classes={{ static: 'className' }} />
    +<CircularProgress variant="determinate" classes={{ determinate: 'className' }} />

注意:如果你之前已经定制了 determinate,那么你的定制可能不再有效。 所以请删除它们。

Collapse 折叠

  • collapsedHeight 属性已重命名为 collapsedSize 以便支持水平方向的大小。

    -<Collapse collapsedHeight={40}>
    +<Collapse collapsedSize={40}>
  • 已更改 classes.containe 键以匹配其他组件的约定行为。

    -<Collapse classes={{ container: 'collapse' }}>
    +<Collapse classes={{ root: 'collapse' }}>

CssBaseline

  • The component was migrated to use the @material-ui/styled-engine (emotion or styled-components) instead of jss. You should remove the @global key when defining the style overrides for it.

    const theme = createMuiTheme({
      components: {
        MuiCssBaseline: {
          styleOverrides: {
    -       '@global': {
              html: {
                WebkitFontSmoothing: 'auto',
              },
    -       },
          },
        },
      },
    });
  • The body font size has changed from theme.typography.body2 (0.875rem) to theme.typography.body1 (1rem). To return to the previous size, you can override it in the theme: To return to the previous size, you can override it in the theme:

    const theme = createMuiTheme({
      typography: {
        body1: {
          fontSize: '0.875rem',
        },
      },
    });

    (Note that this will also affect use of the Typography component with the default body1 variant).

Dialog

  • onE* 过渡属性已被删除。 请使用 TransitionProps 来代替它。

    <Dialog
    -  onEnter={onEnter}
    -  onEntered={onEntered},
    -  onEntering={onEntered},
    -  onExit={onEntered},
    -  onExited={onEntered},
    -  onExiting={onEntered}
    +  TransitionProps={{
    +    onEnter,
    +    onEntered,
    +    onEntering,
    +    onExit,
    +    onExited,
    +    onExiting,
    +  }}
    />
  • 因为属性重复,所以我们移除了 disableBackdropClick。 当 reason === 'backdropClick' 时,将会忽略 onClose 的关闭事件。

    <Dialog
    - disableBackdropClick
    - onClose={handleClose}
    + onClose={(event, reason) => {
    +   if (reason !== 'backdropClick') {
    +     onClose(event, reason);
    +   }
    + }}
    />
  • [withMobileDialog] 此高阶组件已被删除。 Hook API 提供了一个更简单且灵活的方案:

    -import withMobileDialog from '@material-ui/core/withMobileDialog';
    +import { useTheme, useMediaQuery } from '@material-ui/core';
    
    function ResponsiveDialog(props) {
    - const { fullScreen } = props;
    + const theme = useTheme();
    + const fullScreen = useMediaQuery(theme.breakpoints.down('sm'));
      const [open, setOpen] = React.useState(false);
    
    // ...
    
    -export default withMobileDialog()(ResponsiveDialog);
    +export default ResponsiveDialog;
    
    -export default withMobileDialog()(ResponsiveDialog);
    +export default ResponsiveDialog;

Divider

  • 你需要使用边框来代替背景色。 这个改动可以防止在缩放屏幕上出现高度不一致的情况。 对于需要自定义边框颜色的用户,你可以改变其需要覆盖的 CSS 属性。

    .MuiDivider-root {
    - background-color: #f00;
    + border-color: #f00;
    }

ExpansionPanel(扩展面板)

  • 为使用更通用的命名约定,我们将 ExpansionPanel 组件重命名为 Accordion

    -import ExpansionPanel from '@material-ui/core/ExpansionPanel';
    -import ExpansionPanelSummary from '@material-ui/core/ExpansionPanelSummary';
    -import ExpansionPanelDetails from '@material-ui/core/ExpansionPanelDetails';
    -import ExpansionPanelActions from '@material-ui/core/ExpansionPanelActions';
    +import Accordion from '@material-ui/core/Accordion';
    +import AccordionSummary from '@material-ui/core/AccordionSummary';
    +import AccordionDetails from '@material-ui/core/AccordionDetails';
    +import AccordionActions from '@material-ui/core/AccordionActions';
    
    -<ExpansionPanel>
    +<Accordion>
    -  <ExpansionPanelSummary>
    +  <AccordionSummary>
         <Typography>位置</Typography>
         <Typography>选择出行目的地</Typography>
    -  </ExpansionPanelSummary>
    +  </AccordionSummary>
    -  <ExpansionPanelDetails>
    +  <AccordionDetails>
         <Chip label="Barbados" onDelete={() => {}} />
         <Typography variant="caption">请选择您的目的地</Typography>
    -  </ExpansionPanelDetails>
    +  </AccordionDetails>
       <Divider />
    -  <ExpansionPanelActions>
    +  <AccordionActions>
         <Button size="small">取消</Button>
         <Button size="small">保存</Button>
    -  </ExpansionPanelActions>
    +  </AccordionActions>
    -</ExpansionPanel>
    +</Accordion>
  • TypeScript:onChange 中的 event 的类型不再是 React.ChangeEvent,而是React.SyntheticEvent

    -<Accordion onChange={(event: React.ChangeEvent<{}>, expanded: boolean) => {}} />
    +<Accordion onChange={(event: React.SyntheticEvent, expanded: boolean) => {}} />
  • 为保持一致性,我们将 focused 重命名为 focusVisible

    <Accordion
      classes={{
    -    focused: 'custom-focus-visible-classname',
    +    focusVisible: 'custom-focus-visible-classname',
      }}
    />
  • 因为投诉太多,我们删除了 AccordionDetails 中的 display: flex。 大多数开发者都期望显示为块级(block)元素。

  • 删除 AccordionSummary 中的 IconButtonProps 属性。 该组件渲染一个 <div> 元素而不是 IconButton。 所以不再需要该属性了。

Fab

  • 为保持一致性,我们将 round 重命名为 circular。 可能的值应该是形容词,而不是名词。

    -<Fab variant="round">
    +<Fab variant="circular">

Grid

  • 为保持和 CSS 原生属性名字的一致性,我们将 justify 属性重命名为 justifyContent

    -<Grid justify="center">
    +<Grid justifyContent="center">

GridList

  • 为保持和当前 Material Design 命名的一致性,我们将 GridList 组件重命名为 ImageList

  • 为保持和 CSS 属性名字的一致性,我们将 spacing 属性重命名为 gap

  • 我们将 GridList 的 cellHeight 属性重命名为 rowHieght

  • 添加 variant 属性到 GridList 中。

  • 我们将 GridListItemBar 的 actionPosition 属性重命名为 position。 (也要注意相关的类名变化)。

  • 使用 CSS object-fit。 如果要兼容 IE11,那么你可以使用 polyfill 来转换它,例如 https://www.npmjs.com/package/object-fit-images,或者继续使用 v4 组件。

    -import GridList from '@material-ui/core/GridList';
    -import GridListTile from '@material-ui/core/GridListTile';
    -import GridListTileBar from '@material-ui/core/GridListTileBar';
    +import ImageList from '@material-ui/core/ImageList';
    +import ImageListItem from '@material-ui/core/ImageListItem';
    +import ImageListItemBar from '@material-ui/core/ImageListItemBar';
    
    -<GridList spacing={8} cellHeight={200}>
    -  <GridListTile>
    +<ImageList gap={8} rowHeight={200}>
    +  <ImageListItem>
        <img src="file.jpg" alt="Image title" />
    -    <GridListTileBar
    +    <ImageListItemBar
          title="Title"
          subtitle="Subtitle"
        />
    -  </GridListTile>
    -</GridList>
    +  </ImageListItem>
    +</ImageList>

Icon

  • The default value of fontSize was changed from default to medium for consistency. The default value of fontSize was changed from default to medium for consistency. In the unlikey event that you were using the value default, the prop can be removed:

    -<Icon fontSize="default">icon-name</Icon>
    +<Icon>icon-name</Icon>

Menu

  • onE* 过渡属性已被删除。 请使用 TransitionProps 来代替它。

    <Menu
    -  onEnter={onEnter}
    -  onEntered={onEntered},
    -  onEntering={onEntered},
    -  onExit={onEntered},
    -  onExited={onEntered},
    -  onExiting={onEntered}
    +  TransitionProps={{
    +    onEnter,
    +    onEntered,
    +    onEntering,
    +    onExit,
    +    onExited,
    +    onExiting,
    +  }}
    >

Modal

  • 因为属性重复,所以我们移除了 disableBackdropClick。 当 reason === 'backdropClick' 时,将会忽略 onClose 的关闭事件。

    <Modal
    - disableBackdropClick
    - onClose={handleClose}
    + onClose={(event, reason) => {
    +   if (reason !== 'backdropClick') {
    +     onClose(event, reason);
    +   }
    + }}
    />
  • 因为属性重复,所以我们移除了 onEscapeKeyDown。 使用 onClosereason === "escapeKeyDown" 来代替。

    <Modal
    - onEscapeKeyDown={handleEscapeKeyDown}
    + onClose={(event, reason) => {
    +   if (reason === 'escapeKeyDown') {
    +     handleEscapeKeyDown(event);
    +   }
    + }}
    />
  • 移除 onRendered 属性。 具体迁移方法根据你的使用情况而定,你可以在子元素上使用 callback ref,也可以在子组件中使用 effect 钩子。

分页组件 Pagination

  • 该组件已从实验室包移动到核心包。 现在这个组件处于稳定版本。

    -import Pagination from '@material-ui/lab/Pagination';
    -import PaginationItem from '@material-ui/lab/PaginationItem';
    -import { usePagination } from '@material-ui/lab/Pagination';
    +import Pagination from '@material-ui/core/Pagination';
    +import PaginationItem from '@material-ui/core/PaginationItem';
    +import usePagination from '@material-ui/core/usePagination';

    你可以使用我们的 moved-lab-modules 编码器(codemod)来进行自动迁移。

  • 为保持一致性,我们将 round 重命名为 circular。 可能的值应该是形容词,而不是名词。

    -<Pagination shape="round">
    -<PaginationItem shape="round">
    +<Pagination shape="circular">
    +<PaginationItem shape="circular">

Popover

  • onE* 过渡属性已被删除。 请使用 TransitionProps 来代替它。

    <Popover
    -  onEnter={onEnter}
    -  onEntered={onEntered},
    -  onEntering={onEntered},
    -  onExit={onEntered},
    -  onExited={onEntered},
    -  onExiting={onEntered}
    +  TransitionProps={{
    +    onEnter,
    +    onEntered,
    +    onEntering,
    +    onExit,
    +    onExited,
    +    onExiting,
    +  }}
    />

Popper

  • 我们将 Popper.js 从 v1 升级到 v2。
    你可以阅读 他们的迁移指南 或参考以下摘要:

    • CSS 前缀已更改:

      popper: {
        zIndex: 1,
      - '&[x-placement*="bottom"] $arrow': {
      + '&[data-popper-placement*="bottom"] $arrow': {
    • 方法名已改变。

      -popperRef.current.scheduleUpdate()
      +popperRef.current.update()
      -popperRef.current.update()
      +popperRef.current.forceUpdate()
    • 修改器的 API(Modifiers' API)发生了大量改变。 这其中有太多的内容不能涵盖说明。

Portal

  • 移除 onRendered 属性。 具体迁移方法根据你的使用情况而定,你可以在子元素上使用 callback ref,也可以在子组件中使用 effect 钩子。

Rating

  • 该组件已从实验室包移动到核心包。 现在这个组件处于稳定版本。

    -import Rating from '@material-ui/lab/Rating';
    +import Rating from '@material-ui/core/Rating';

    你可以使用我们的 moved-lab-modules 编码器(codemod)来进行自动迁移。

  • 为提高无障碍的可访问性,我们更改了默认的空图标。 如果你有自定义了 icon 属性,但没有使用 emptyIcon 属性,你可以用以下方法还原到以前的行为:

    <Rating
      icon={customIcon}
    + emptyIcon={null}
    />
  • 为保持一致性,我们将 visuallyhidden 重命名为 visuallyHidden

    <Rating
      classes={{
    -    visuallyhidden: 'custom-visually-hidden-classname',
    +    visuallyHidden: 'custom-visually-hidden-classname',
      }}
    />

RootRef

  • 该组件已被移除。 你可以通过 ref 属性来获取对我们组件的底层 DOM 节点的引用。 该组件依赖 ReactDOM.findDOMNode,在 React.StrictMode 中已被弃用

    -<RootRef rootRef={ref}>
    -  <Button />
    -</RootRef>
    +<Button ref={ref} />

Skeleton

  • 该组件已从实验室包移动到核心包。 现在这个组件处于稳定版本。

    -import Skeleton from '@material-ui/lab/Skeleton';
    +import Skeleton from '@material-ui/core/Skeleton';

    你可以使用我们的 moved-lab-modules 编码器(codemod)来进行自动迁移。

  • 为保持一致性,我们将 circle 重命名为 circularrect 重命名为 rectangular。 可能的值应该是形容词,而不是名词。

    -<Skeleton variant="circle" />
    -<Skeleton variant="rect" />
    -<Skeleton classes={{ circle: 'custom-circle-classname', rect: 'custom-rect-classname',  }} />
    +<Skeleton variant="circular" />
    +<Skeleton variant="rectangular" />
    +<Skeleton classes={{ circular: 'custom-circle-classname', rectangular: 'custom-rect-classname',  }} />

Slider

  • TypeScript:onChange 中的 event 的类型不再是 React.ChangeEvent,而是React.SyntheticEvent

    -<Slider onChange={(event: React.ChangeEvent<{}>, value: unknown) => {}} />
    +<Slider onChange={(event: React.SyntheticEvent, value: unknown) => {}} />
  • ValueLabelComponent 属性现在是 components 属性的一部分。

    -<Slider ValueLabelComponent={CustomValueLabel} />
    +<Slider components={{ ValueLabel: CustomValueLabel }} />
  • ThumbComponent 属性不再是 components 属性的一部分。

    -<Slider ThumbComponent={CustomThumb} />
    +<Slider components={{ Thumb: CustomThumb }} />

Snackbar(消息条)

  • 现在在大屏幕上的消息条通知会在左下角显示。 这更符合 Gmail、Google Keep、material.io 等应用的行为。 你可以用以下方法恢复到以前的行为:

    -<Snackbar />
    +<Snackbar anchorOrigin={{ vertical: 'bottom', horizontal: 'center' }} />
  • onE* 过渡属性已被删除。 请使用 TransitionProps 来代替它。

    <Snackbar
    -  onEnter={onEnter}
    -  onEntered={onEntered},
    -  onEntering={onEntered},
    -  onExit={onEntered},
    -  onExited={onEntered},
    -  onExiting={onEntered}
    +  TransitionProps={{
    +    onEnter,
    +    onEntered,
    +    onEntering,
    +    onExit,
    +    onExited,
    +    onExiting,
    +  }}
    />

SpeedDial 快速拨号

  • 该组件已从实验室包移动到核心包。 现在这个组件处于稳定版本。

    -import SpeedDial from '@material-ui/lab/SpeedDial';
    -import SpeedDialAction from '@material-ui/lab/SpeedDialAction';
    -import SpeedDialIcon from '@material-ui/lab/SpeedDialIcon';
    +import SpeedDial from '@material-ui/core/SpeedDial';
    +import SpeedDialAction from '@material-ui/core/SpeedDialAction';
    +import SpeedDialIcon from '@material-ui/core/SpeedDialIcon';

    你可以使用我们的 moved-lab-modules 编码器(codemod)来进行自动迁移。

Stepper 步骤条组件

  • 根组件(Paper)已经被 div 所取代。 Stepper 不再有立体效果,也不再继承 Paper 的属性。 这个改动是为了鼓励开发者进行组合使用。

    -<Stepper elevation={2}>
    -  <Step>
    -    <StepLabel>你好世界</StepLabel>
    -  </Step>
    -</Stepper>
    +<Paper square elevation={2}>
    +  <Stepper>
    +    <Step>
    +      <StepLabel>你好世界</StepLabel>
    +    </Step>
    +  </Stepper>
    +<Paper>
  • 移除内置的 24px 边距。

    -<Stepper>
    -  <Step>
    -    <StepLabel>你好世界</StepLabel>
    -  </Step>
    -</Stepper>
    +<Stepper style={{ padding: 24 }}>
    +  <Step>
    +    <StepLabel>你好世界</StepLabel>
    +  </Step>
    +</Stepper>

SvgIcon(Svg 图标)

  • The default value of fontSize was changed from default to medium for consistency. The default value of fontSize was changed from default to medium for consistency. In the unlikey event that you were using the value default, the prop can be removed:

    -<SvgIcon fontSize="default">
    +<SvgIcon>
      <path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z" />
    </SvgIcon>

Table

  • 如果你需要自定义表格分页的操作标签(actions labels),那么就必须使用 getItemAriaLabel 属性。 这是为了与 Pagination 组件保持一致。

    <TablePagination
    - backIconButtonText="Avant"
    - nextIconButtonText="Après
    + getItemAriaLabel={…}
  • 为保持 API 一致性,我们将 onChangeRowsPerPage 重命名为 onRowsPerPageChangeonChangePage 重命名为 onPageChange

    <TablePagination
    - onChangeRowsPerPage={()=>{}}
    - onChangePage={()=>{}}
    + onRowsPerPageChange={()=>{}}
    + onPageChange={()=>{}}

Tabs 选项卡

  • TypeScript:onChange 中的 event 的类型不再是 React.ChangeEvent,而是React.SyntheticEvent

    -<Tabs onChange={(event: React.ChangeEvent<{}>, value: unknown) => {}} />
    +<Tabs onChange={(event: React.SyntheticEvent, value: unknown) => {}} />
  • 控制滚动按钮的 API 现已将其分成两个属性。

    • scrollButtons 属性根据可用空间来控制滚动按钮何时显示。
    • allowScrollButtonsMobile 属性将会移除系统针对隐藏移动端的滚动按钮的 CSS 媒体查询。
    -<Tabs scrollButtons="on" />
    -<Tabs scrollButtons="desktop" />
    -<Tabs scrollButtons="off" />
    +<Tabs scrollButtons allowScrollButtonsMobile />
    +<Tabs scrollButtons />
    +<Tabs scrollButtons={false} />

TextField

  • 将默认的变量从 standard 更改为 outlined。 Standard 在 Material Design 指南中已被删除。

    -<TextField value="Standard" />
    -<TextField value="Outlined" variant="outlined" />
    +<TextField value="Standard" variant="standard" />
    +<TextField value="Outlined" />

This codemod 可以自动升级你的代码。

  • 为保持与 HTML 属性的一致性,我们将 rowsMax 属性重命名为 maxRows

    -<TextField rowsMax={6}>
    +<TextField maxRows={6}>
  • 最佳实践是将固定文本区域高度行为与动态文本区域高度行为分开。 要达到此效果,你需要像下面的示例一样使用 minRows 属性:

    -<TextField rows={2} maxRows={5} />
    +<TextField minRows={2} maxRows={5} />
  • 改变自定义 inputComponent 组件的的 ref 转发期望值。 该组件应该转发 ref 属性,而不是 inputRef 属性。

    -function NumberFormatCustom(props) {
    -  const { inputRef, onChange, ...other } = props;
    +const NumberFormatCustom = React.forwardRef(function NumberFormatCustom(
    +  props,
    +  ref,
    +) {
      const { onChange, ...other } = props;
    
      return (
        <NumberFormat
          {...other}
    -     getInputRef={inputRef}
    +     getInputRef={ref}
  • 为了匹配属性,我们将 marginDenseinputMarginDense 类名重命名为 sizeSmallinputSizeSmall

    -<Input margin="dense" />
    +<Input size="small" />

TextareaAutosize

  • 我们移除了 rows 属性,你需要使用 minRows 属性来代替它。 这一变化旨在明确该属性的行为。

    -<TextareaAutosize rows={2} />
    +<TextareaAutosize minRows={2} />
  • 为保持与 HTML 属性的一致性,我们将 rowsMax 属性重命名为 maxRows

    -<TextareAutosize rowsMax={6}>
    +<TextareAutosize maxRows={6}>
  • 为保持与 HTML 属性的一致性,我们将 rowsMin 属性重命名为 minRows

    -<TextareAutosize rowsMin={1}>
    +<TextareAutosize minRows={1}>

ToggleButton 切换按钮

  • 该组件已从实验室包移动到核心包。 现在这个组件处于稳定版本。

    -import ToggleButton from '@material-ui/lab/ToggleButton';
    -import ToggleButtonGroup from '@material-ui/lab/ToggleButtonGroup';
    +import ToggleButton from '@material-ui/core/ToggleButton';
    +import ToggleButtonGroup from '@material-ui/core/ToggleButtonGroup';

    你可以使用我们的 moved-lab-modules 编码器(codemod)来进行自动迁移。

Tooltip

  • 工具提示组件默认是可交互的:

    该组件之前的默认行为不遵循 success criterion 1.4.3 ("hoverable") in WCAG 2.1。 为了反映新的默认值,该属性被重命名为 disableInteractive。 如果你想回滚到旧的行为(但是这无法达到 AA 级),你可以应用下面的差异:

    -<Tooltip>
    +<Tooltip disableInteractive>
    
    # 交互式的工具提示组件不再需要 `interactive` 属性。
    -<Tooltip interactive>
    +<Tooltip>

文字铸排

  • 为了避免 System 功能重复,我们替换了 srOnly 属性。

    -import Typography from '@material-ui/core/Typography';
    +import { visuallyHidden } from '@material-ui/system';
    +import styled from 'styled-component';
    
    +const Span = styled('span')(visuallyHidden);
    
    -<Typography variant="srOnly">创建用户</Typography>
    +<Span>创建用户</Span>

System 系统

  • 为了避免与 styled-components & emotion CSS 属性冲突,我们将该 css 属性替换为 sx
-<Box css={{ color: 'primary.main' }} />
+<Box sx={{ color: 'primary.main' }} />