---
title: Q3 2020 Update
description: An update on our mission for Q3 2020.
date: 2020-10-14T00:00:00.000Z
authors: ['oliviertassinari']
tags: ['Company']
manualCard: true
---
This update covers our progress over the last three months, and what we aim to achieve in the coming months.
## Product
Here are the most significant improvements since June 2020. This was a dense quarter!
- ๐ง We have started the quarter with the first pre-release [v5.0.0-alpha.1](https://github.com/mui/material-ui/releases?after=v5.0.0-alpha.1) of the next major iteration of the library.
There have been eleven more pre-releases since then. During the alpha development stage of version 5, we are focusing on making the planned breaking changes, as well as developing new features.
On the breaking changes side, we have made almost half of the changes that we have planned.
- ๐งช We have promoted 7 components from the lab to the core: Alert, Autocomplete, Pagination, Rating, Skeleton, SpeedDial, and ToggleButton.
Thank you for all your feedback on these components.
While we still plan a couple of breaking changes on them, we are confident that they have reached the same level of quality as the other core components.
- ๐ฎ We have introduced a new component in the lab, the [FocusTrap](https://v6.mui.com/base-ui/react-focus-trap/). It manages focus for its descendants. This is useful when implementing overlays such as modal dialogs, which should not allow the focus to escape while open:
- โ๏ธ We have prepared the support for the upcoming release of [React v17](https://legacy.reactjs.org/blog/2020/08/10/react-v17-rc.html). Most of the work was about better handling events, and updating our test infrastructure to run the whole test suite with the _latest_ and _next_ version of React.
We have also improved `StrictMode` support. The last standing issues are being addressed with the work on the style engine. More on that later in the post.
- ๐
We have introduced a new dynamic variant API. This API allows developers to add new variants to Materialย UI components right from the theme, without having to wrap the components. For instance with the Button:
```tsx
// Define the style that should be applied for specific props.
const theme = createMuiTheme({
components: {
MuiButton: {
variants: [
{
props: { variant: 'dashed', color: 'secondary' },
styles: {
border: `4px dashed ${red[500]}`,
},
},
],
},
},
});
// Optionally retain type safety:
declare module '@mui/material/Button' {
interface ButtonPropsVariantOverrides {
dashed: true;
}
}
// Enjoy!
;
```
This change is part of a direction to ease the implementation of custom design systems.
Note that the API not only allows to match a single prop, but also a combination of props.
This is especially interesting to resolve the conflict when different variants try to modify the same CSS property.
Hopefully, in the future, we will be able to take advantage of the variant feature [coming in Figma](https://help.figma.com/hc/en-us/articles/360055471353-Prepare-for-Variants) with this API.
- โก๏ธ We have released a first alpha version of the [data grid component](/x/react-data-grid/).
We announced our intent to build this component [a year ago](/blog/september-2019-update/#our-roadmap-intent-for-october). While we could have implemented a simple version and release it a month later, it wouldn't have set us in the right direction for the years to follow. We're aiming aim to deliver the best-in-class React data grid.
This objective requires a twin licensing model. The component is available under an MIT license for the features that can be relatively easily implemented, and that can be sustained with an open-source model; as well as a paid commercial license for the more advanced features.
To ensure we could meet this objective, we spent time finding an expert in the field. This led us to open a new job position, and, a few months later, [Damien Tassone](/blog/spotlight-damien-tassone/) joined to lead the work on this component.
100,000 rows
After 6 months of development since the initial commit (March 15th, 2020), you can start using the component! (It targets v4.) - โก๏ธ The data grid effort has led to the introduction of a new repository: [_mui/mui-x_](https://github.com/mui/mui-x). This is the repository that will host all the future commercial components, all the components that we can't sustain with the open-source model. MUIย X is our next iteration in scaling MUI, both as a company and as a comprehensive React library of components. While we have an existing sustainability model that can support, in long term, up to 10 people full-time, we are keen to push it by an order of magnitude. - ๐ We have migrated parts of the codebase to TypeScript.
MUI's repository
On the other hand, we started using TypeScript from day one for _mui/mui-x_.
MUIย X's repository
- ๐ We have migrated large parts of the test suite to react-testing-library.
- ๐
We have completed the first iteration of the unstyled components for v5.
Slider powered by Emotion
Slider powered by styled-components
- โฟ๏ธ We have kept investing in accessibility, we have fixed [13 bugs](https://github.com/mui/material-ui/pulls?q=is%3Apr+label%3Aaccessibility+is%3Aclosed+sort%3Aupdated-desc). - ๐ We have introduced public quarterly roadmaps, both for each [MUIย Core](https://github.com/mui/material-ui/projects?query=is%3Aopen) product and [MUIย X](https://github.com/orgs/mui/projects/35). ## Company We are thrilled to welcome two new full-time developers to MUI: - [Marija Najdova](https://github.com/mnajdova). Marija joins us from the Fluent-UI React team at Microsoft. She's allowing the community team to move faster. You can learn more about her in the [introduction blog post](/blog/marija-najdova-joining/).
% of download relative to react-dom
- โญ๏ธ From 59.0k to 61.6k stars, leave us yours [๐](https://github.com/mui/material-ui). - ๐จโ๐ฉโ๐งโ๐ฆ From 1,825 to 1,934 contributors on GitHub. We add on average 1 new contributor every day. - ๐ข We have welcomed two new full-time developers to MUI. ## Our roadmap intent for Q4 2020 We'll do our best, no guarantee! ### Community - ๐ Execute on all the items of the [public roadmap](https://github.com/orgs/mui/projects/23/views/12). - ๐ฉโ๐จ Simplify the migration experience from v4 to v5. - โ Please upvote [GitHub issues](https://github.com/mui/material-ui/issues) if you want us to focus on a specific problem. The number of ๐ helps us to prioritize. ### Enterprise - ๐ฉโ๐จ Complete the collaboration we started with a design agency last quarter to update the branding of the company, redesign the homepage, and design the marketing pages for the enterprise package. - ๐ Execute on all the items in the [public roadmap](https://github.com/orgs/mui/projects/35). - โ Please upvote [GitHub issues](https://github.com/mui/mui-x/issues) if you want us to focus on a specific problem. The number of ๐ helps us to prioritize. ### Company These are objectives, no guarantees: - ๐ข We might hire a full-time designer that has coding skills. One of the objectives would be to solve [#22485](https://github.com/mui/material-ui/issues/22485). - ๐ We have put the company-wide team retreat on hold because of the continued risk presented by COVID-19. Hopefully, we will be able to hold it in Q2 2021.