Skip to content

Commit b4a3ba0

Browse files
authored
[docs] Update v7 related copy (#45716)
1 parent 26ab4c5 commit b4a3ba0

File tree

15 files changed

+24
-24
lines changed

15 files changed

+24
-24
lines changed

docs/data/material/getting-started/overview/overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Material UI is an open-source React component library that implements Google's
1313
It includes a comprehensive collection of prebuilt components that are ready for use in production right out of the box and features a suite of customization options that make it easy to implement your own custom design system on top of our components.
1414

1515
:::info
16-
Material UI v6 supports Material Design 2.
16+
Material UI supports Material Design 2.
1717
You can follow [this GitHub issue](https://github.com/mui/material-ui/issues/29345) for future design-related updates.
1818
:::
1919

docs/data/material/migration/upgrade-to-v6/migrating-to-pigment-css.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Migrating to Pigment CSS
22

3-
<p class="description">This guide helps you integrate Pigment CSS with Material UI v6.</p>
3+
<p class="description">This guide helps you integrate Pigment CSS with Material UI.</p>
44

55
:::warning
66
Pigment CSS is currently in the early alpha stage of development. We're actively working on improving its performance and stability. If you find any problem, please open a [GitHub issue](https://github.com/mui/pigment-css/issues).
77
:::
88

9-
Before going through this guide, make sure you have [upgraded to Material UI v6](/material-ui/migration/upgrade-to-v6/).
9+
Before going through this guide, make sure you have [upgraded to Material UI v7](/material-ui/migration/upgrade-to-v7/) (or [v6](/material-ui/migration/upgrade-to-v6/)).
1010

1111
## Introduction
1212

13-
The default styling engine of Material UI v6 is [Emotion](https://emotion.sh/docs/introduction).
13+
The default styling engine of Material UI is [Emotion](https://emotion.sh/docs/introduction).
1414
It lets you write styles in a CSS-in-JS fashion, which is great for dynamic styles that depend on states and props. However, it has some performance drawbacks when it comes to frequent re-renders because the style recalculation happens on the client-side.
1515
It also does not fully support [React Server Components](https://react.dev/reference/rsc/server-components), a new rendering paradigm that renders components ahead of time on the server.
1616

docs/src/pages/versions/versions.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ In general, you can expect the following release cycle:
6060

6161
## Release schedule
6262

63-
| Date | Version | Status |
64-
| :------------- | :------ | :----------- |
65-
| 2025 | v7.0.0 | Work started |
66-
| August 2024 | v6.0.0 | Released |
67-
| September 2021 | v5.0.0 | Released |
68-
| May 2019 | v4.0.0 | Released |
69-
| September 2018 | v3.0.0 | Released |
70-
| May 2018 | v1.0.0 | Released |
63+
| Date | Version | Status |
64+
| :------------- | :------ | :------- |
65+
| March 2025 | v7.0.0 | Released |
66+
| August 2024 | v6.0.0 | Released |
67+
| September 2021 | v5.0.0 | Released |
68+
| May 2019 | v4.0.0 | Released |
69+
| September 2018 | v3.0.0 | Released |
70+
| May 2018 | v1.0.0 | Released |
7171

7272
You can follow the [milestones](https://github.com/mui/material-ui/milestones) for a more detailed overview.
7373

examples/material-ui-cra-tailwind-ts/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ or:
2727
## The idea behind the example
2828

2929
This example demonstrates how you can use [Tailwind CSS](https://tailwindcss.com/) and [Create React App](https://github.com/facebookincubator/create-react-app) together with Material UI.
30-
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI v6.
30+
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI.
3131

3232
## What's next?
3333

examples/material-ui-cra-ts/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ or:
3131
<!-- #host-reference -->
3232

3333
This example demonstrates how you can use Material UI with [Create React App](https://github.com/facebookincubator/create-react-app) in [TypeScript](https://github.com/Microsoft/TypeScript).
34-
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI v6.
34+
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI.
3535
If you prefer, you can [use styled-components instead](https://mui.com/material-ui/integrations/interoperability/#styled-components).
3636

3737
## What's next?

examples/material-ui-cra/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ or:
3131
<!-- #host-reference -->
3232

3333
This example demonstrates how you can use [Create React App](https://github.com/facebookincubator/create-react-app) with Material UI.
34-
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI v6.
34+
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI.
3535
If you prefer, you can [use styled-components instead](https://mui.com/material-ui/integrations/interoperability/#styled-components).
3636

3737
## What's next?

examples/material-ui-express-ssr/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ or:
3232

3333
This is the reference implementation of the [Server Rendering tutorial](https://mui.com/material-ui/guides/server-rendering/).
3434

35-
The example project includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI v6.
35+
The example project includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI.
3636
If you prefer, you can [use styled-components instead](https://mui.com/material-ui/integrations/interoperability/#styled-components).
3737

3838
## What's next?

examples/material-ui-gatsby/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ npm run develop
2323
<!-- #host-reference -->
2424

2525
The project uses [Gatsby](https://github.com/gatsbyjs/gatsby), which is a static site generator for React.
26-
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI v6.
26+
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI.
2727
If you prefer, you can [use styled-components instead](https://mui.com/material-ui/integrations/interoperability/#styled-components).
2828

2929
## What's next?

examples/material-ui-nextjs-pages-router-ts/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ We recommend starting new projects with the [Material UI with Next.js (App Rout
3535
<!-- #host-reference -->
3636

3737
The project uses [Next.js](https://github.com/vercel/next.js), which is a framework for server-rendered React apps.
38-
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI v6.
38+
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI.
3939
If you prefer, you can [use styled-components instead](https://mui.com/material-ui/integrations/interoperability/#styled-components).
4040

4141
## The link component

examples/material-ui-nextjs-pages-router/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ We recommend starting new projects with the [Material UI with Next.js (App Rout
3535
<!-- #host-reference -->
3636

3737
The project uses [Next.js](https://github.com/vercel/next.js), which is a framework for server-rendered React apps.
38-
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI v6.
38+
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI.
3939
If you prefer, you can [use styled-components instead](https://mui.com/material-ui/integrations/interoperability/#styled-components).
4040

4141
## The Link component

examples/material-ui-nextjs-ts-v4-v5-migration/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ or:
2929
## The idea behind the example
3030

3131
The project uses [Next.js](https://github.com/vercel/next.js), which is a framework for server-rendered React apps.
32-
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI v6.
32+
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI.
3333
If you prefer, you can [use styled-components instead](https://mui.com/material-ui/integrations/interoperability/#styled-components).
3434

3535
It also includes `@mui/styles`, the legacy styling solution that uses JSS as an engine.

examples/material-ui-preact/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The project uses Material UI with [Preact](https://github.com/developit/preact)
2424

2525
This example uses CRA with `react-app-rewired` for adding webpack aliases for Preact.
2626

27-
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI v6.
27+
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI.
2828

2929
<!-- #host-reference -->
3030

examples/material-ui-remix-ts/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ or:
3131
<!-- #host-reference -->
3232

3333
The project uses [Remix](https://remix.run/), which is a full-stack web framework.
34-
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI v6.
34+
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI.
3535
If you prefer, you can [use styled-components instead](https://mui.com/material-ui/integrations/interoperability/#styled-components).
3636

3737
## What's next?

examples/material-ui-vite-ts/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ or:
2929
## The idea behind the example
3030

3131
This example uses [Vite.js](https://github.com/vitejs/vite).
32-
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI v6.
32+
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI.
3333

3434
## What's next?
3535

examples/material-ui-vite/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ or:
2929
## The idea behind the example
3030

3131
This example uses [Vite.js](https://github.com/vitejs/vite).
32-
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI v6.
32+
It includes `@mui/material` and its peer dependencies, including [Emotion](https://emotion.sh/docs/introduction), the default style engine in Material UI.
3333

3434
## What's next?
3535

0 commit comments

Comments
 (0)