Skip to content

Commit 9f49da7

Browse files
more
1 parent 26c0b30 commit 9f49da7

File tree

9 files changed

+19
-21
lines changed

9 files changed

+19
-21
lines changed

docs/pages/blog/base-ui-2024-plans.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
2-
title: An exciting year ahead for MUI Base: Base UI
2+
title: An exciting year ahead for Base UI
33
description: The unstyled component library will get a stable release, lots of new components, and even better DX in 2024.
44
date: 2024-02-13T00:00:00.000Z
55
authors: ['danilo-leal', 'michaldudak', 'colmtuite', 'oliviertassinari']
66
tags: ['Base UI', 'Product']
77
manualCard: true
88
---
99

10-
The [story of MUI Base](/blog/introducing-base-ui/) began several years ago—long before headless React component libraries skyrocketed in popularity—when we started to imagine a world in which Material UI could exist without Material Design.
10+
The [story of Base UI](/blog/introducing-base-ui/) began several years ago—long before headless React component libraries skyrocketed in popularity—when we started to imagine a world in which Material UI could exist without Material Design.
1111

1212
We're super excited to share that this dream is becoming a reality!
13-
This year will see a lot of investment in MUI Base as we expand the team and focus hard on a new version (tentatively planned for late 2024), which will come full of new components, features, and improvements.
13+
This year will see a lot of investment in Base UI as we expand the team and focus hard on a stable release (tentatively planned for late 2024), which will come full of new components, features, and improvements.
1414

1515
Let's walk through some of the things we're cooking up.
1616

1717
## A larger set of components
1818

19-
MUI Base today offers a modest set of components and hooks, including some slightly more complex ones such as [Autocomplete](/base-ui/react-autocomplete/) and [Number Input](/base-ui/react-number-input/).
19+
Base UI today offers a modest set of components and hooks, including some slightly more complex ones such as [Autocomplete](/base-ui/react-autocomplete/) and [Number Input](/base-ui/react-number-input/).
2020
However, we're aware that the package is still missing many primitive components that developers would need in order to adopt it for real-world applications.
2121
Fear not, because we're working hard to ship more components with the stable release, including:
2222

@@ -35,7 +35,7 @@ We'd love for you to chime in and help us prioritize, so keep an eye on [the ope
3535

3636
## Improved customization API
3737

38-
Currently, MUI Base components can be customized to your heart's content using the `slots` and `slotProps` props.
38+
Currently, Base UI components can be customized to your heart's content using the `slots` and `slotProps` props.
3939
(Read more about them in the "[Overriding component structure](/base-ui/guides/overriding-component-structure/)" guide.)
4040

4141
```tsx
@@ -75,17 +75,15 @@ They're currently available for use with the Popup, Menu, and Select, and the pl
7575

7676
## Getting many issues out of the way
7777

78-
The core of what MUI Base strives to deliver out of the box is first-class accessibility and an intuitive API for extensive customization.
78+
The core of what Base UI strives to deliver out of the box is first-class accessibility and an intuitive API for extensive customization.
7979
We've earmarked several issues we want to tackle before the stable release in areas such as keyboard navigation, better ARIA support, focus styles, and more.
8080

81-
## A more independent product: Base UI
81+
## A more independent product
8282

83-
So far, all MUI Base-related development has happened within the [Material UI GitHub repository](https://github.com/mui/material-ui).
84-
That made a lot of sense in the beginning because we didn't intend for MUI Base to be a standalone product at the time.
83+
So far, all Base UI-related development has happened within the [Material UI GitHub repository](https://github.com/mui/material-ui).
84+
That made a lot of sense in the beginning because we didn't intend for Base UI to be a standalone product at the time.
8585
As a result of this early decision, we've seen that some developers are hesitant to try it out because of the apparent association with Material Design.
86-
Rest assured that MUI Base _is_ a standalone library, and it doesn't come packaged with _any_ default styles or themes.
87-
88-
But to make it clear, and to reflect all the breaking changes coming in 2024, the new version of MUI Base will be called **Base UI**.
86+
Rest assured that Base UI _is_ a standalone library, and it doesn't come packaged with _any_ default styles or themes.
8987

9088
<img alt="Material UI vs. Base UI: independent but related products." src="/static/blog/base-ui-2024-plans/material-vs-base.png" width="2400" height="900" loading="lazy" />
9189

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MUI Base - Create React App example in TypeScript
22

3-
[MUI Base](https://mui.com/base-ui/) is a library of unstyled React UI components and hooks.
3+
[MUI Base](https://v6.mui.com/base-ui/getting-started/) is a library of unstyled React UI components and hooks.
44

55
[Create React App](https://create-react-app.dev/) is a framework for quickly creating a new React project without the need to configure complex build tools or development environments.
66

examples/base-ui-cra-ts/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default function App() {
66
<div className="box">
77
<h1>Base UI + Create React App scaffold (TypeScript)</h1>
88
<div className="item">
9-
<a href="https://mui.com/base-ui/">Base UI</a> is a library of unstyled React UI components
9+
<a href="https://v6.mui.com/base-ui/getting-started/">MUI Base</a> is a library of unstyled React UI components
1010
which includes prebuilt components with production-ready functionality, along with low-level
1111
hooks for transferring that functionality to other components.
1212
</div>

examples/base-ui-cra/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MUI Base - Create React App example in JavaScript
22

3-
[MUI Base](https://mui.com/base-ui/) is a library of unstyled React UI components and hooks.
3+
[MUI Base](https://v6.mui.com/base-ui/getting-started/) is a library of unstyled React UI components and hooks.
44

55
[Create React App](https://create-react-app.dev/) is a framework for quickly creating a new React project without the need to configure complex build tools or development environments.
66

examples/base-ui-cra/src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default function App() {
66
<div className="box">
77
<h1>Base UI + Create React App scaffold (JavaScript)</h1>
88
<div className="item">
9-
<a href="https://mui.com/base-ui/">Base UI</a> is a library of unstyled React UI components
9+
<a href="https://v6.mui.com/base-ui/getting-started/">MUI Base</a> is a library of unstyled React UI components
1010
and hooks.
1111
</div>
1212
<div className="item">

examples/base-ui-vite-tailwind-ts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MUI Base - Vite.js example with Tailwind CSS in TypeScript
22

3-
[MUI Base](https://mui.com/base-ui/) is a library of unstyled React UI components and hooks.
3+
[MUI Base](https://v6.mui.com/base-ui/getting-started/) is a library of unstyled React UI components and hooks.
44

55
[Vite](https://vite.dev/) is a build tool that aims to provide a faster and leaner development experience for modern web projects, consisting of a dev server and a build command
66

examples/base-ui-vite-tailwind/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MUI Base - Vite.js example with Tailwind CSS
22

3-
[MUI Base](https://mui.com/base-ui/) is a library of unstyled React UI components and hooks.
3+
[MUI Base](https://v6.mui.com/base-ui/getting-started/) is a library of unstyled React UI components and hooks.
44

55
[Vite](https://vite.dev/) is a build tool that aims to provide a faster and leaner development experience for modern web projects, consisting of a dev server and a build command
66

examples/base-ui-vite-tailwind/src/App.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ export default function App() {
66
<h1 className="text-3xl font-semibold mb-4">MUI Base + Vite.js + Tailwind CSS</h1>
77
<ul>
88
<li className="card">
9-
<a href="https://mui.com/base-ui/" className="link">
10-
Base UI
9+
<a href="https://v6.mui.com/base-ui/getting-started/" className="link">
10+
MUI Base
1111
</a>{' '}
1212
is a library of unstyled React UI components and hooks.
1313
</li>

packages/mui-base/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- markdownlint-disable-next-line -->
22
<p align="center">
3-
<a href="https://mui.com/base-ui/" rel="noopener" target="_blank"><img width="150" height="133" src="https://mui.com/static/logo.svg" alt="MUI Base logo"></a>
3+
<a href="https://v6.mui.com/base-ui/getting-started/" rel="noopener" target="_blank"><img width="150" height="133" src="https://mui.com/static/logo.svg" alt="MUI Base logo"></a>
44
</p>
55

66
<h1 align="center">MUI Base</h1>

0 commit comments

Comments
 (0)