我在React项目中使用material-ui,最近从<3.2版本升级到最新版本(当前为3.5版本)。 material-ui在“版式”组件中记录有关弃用的警告:
Warning: Material-UI: you are using the deprecated typography variants that will be removed in the next major release.
Please read the migration guide under https://material-ui.com/style/typography#migration-to-typography-v2
我已经根据迁移指南中的映射表在当前使用的所有版式组件中迁移了变体道具。我还尝试设置useNextVariants标志:
const theme = createMuiTheme({
typography: {
useNextVariants: true,
},
});
但是,material-ui会继续记录警告。我还需要采取其他措施来删除不赞成使用的功能吗?在我正在运行的应用程序以及开玩笑的快照测试中,有什么方法可以消除警告?