diff --git a/docs/src/modules/components/HomeSteps.js b/docs/src/modules/components/HomeSteps.js index 392a6fe3d4c9f1..0a4ec1fe2d5a26 100644 --- a/docs/src/modules/components/HomeSteps.js +++ b/docs/src/modules/components/HomeSteps.js @@ -115,14 +115,14 @@ function HomeSteps(props) { className={classes.markdownElement} text={` \`\`\`sh - $ npm install @material-ui/core@next + $ npm install @material-ui/core \`\`\` `} /> {t('cdn')} diff --git a/docs/src/pages/guides/migration-v3/migration-v3.md b/docs/src/pages/guides/migration-v3/migration-v3.md index 5d0695bf3639f1..5479838bfae455 100644 --- a/docs/src/pages/guides/migration-v3/migration-v3.md +++ b/docs/src/pages/guides/migration-v3/migration-v3.md @@ -36,11 +36,11 @@ You need to update your `package.json` to use the latest version of Material-UI. Or run ```sh -npm install @material-ui/core@next +npm install @material-ui/core or -yarn add @material-ui/core@next +yarn add @material-ui/core ``` ### Update React version @@ -61,11 +61,11 @@ If you were previously using `@material-ui/styles` with v3 you need to update yo Or run ```sh -npm install @material-ui/styles@next +npm install @material-ui/styles or -yarn add @material-ui/styles@next +yarn add @material-ui/styles ``` ## Handling breaking changes @@ -143,7 +143,7 @@ yarn add @material-ui/styles@next }, } ``` - + *Tip: you can provide more than 1 argument: `theme.spacing(1, 2) // = '8px 16px'`*. You can use [the migration helper](https://github.com/mui-org/material-ui/tree/master/packages/material-ui-codemod/README.md#theme-spacing-api) on your project to make this smoother. @@ -170,7 +170,7 @@ yarn add @material-ui/styles@next ### TypeScript -#### `value` type +#### `value` type Normalized `value` prop type for input components to use `unknown`. This affects `InputBase`, `NativeSelect`, `OutlinedInput`, `Radio`, `RadioGroup`, `Select`, `SelectInput`, `Switch`, `TextArea`, and `TextField`. diff --git a/docs/src/pages/guides/minimizing-bundle-size/minimizing-bundle-size.md b/docs/src/pages/guides/minimizing-bundle-size/minimizing-bundle-size.md index 33bec0b7a02c63..c45995859fa2a8 100644 --- a/docs/src/pages/guides/minimizing-bundle-size/minimizing-bundle-size.md +++ b/docs/src/pages/guides/minimizing-bundle-size/minimizing-bundle-size.md @@ -102,7 +102,7 @@ Pick one of the following plugins: The package published on npm is **transpiled**, with [Babel](https://github.com/babel/babel), to take into account the [supported platforms](/getting-started/supported-platforms/). We also publish a second version of the components. -You can find this version under the [`/es` folder](https://unpkg.com/@material-ui/core@next/es/). +You can find this version under the [`/es` folder](https://unpkg.com/@material-ui/core/es/). All the non-official syntax is transpiled to the [ECMA-262 standard](https://www.ecma-international.org/publications/standards/Ecma-262.htm), nothing more. This can be used to make separate bundles targeting different browsers. Older browsers will require more JavaScript features to be transpiled,