-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ROADMAP] Update the roadmap #11606
Merged
oliviertassinari
merged 4 commits into
mui:master
from
oliviertassinari:docs-update-roadmap
May 29, 2018
Merged
[ROADMAP] Update the roadmap #11606
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
# Roadmap | ||
|
||
The roadmap is a living document, and it is likely that priorities will change, but the list below should give some indication of our plans for the next major release, and for the future. | ||
|
||
Our priorities: | ||
1. **Material Design**. The Google Design team has recently released a new iteration on the Material Design specification which is focused on *themability*. This is great news! We will do our best to keep up to date. It also validates that heavily investing in customizability for v1 was a good call. We will continue our efforts in this area. | ||
1. **More utils**. We want to work on new utility components: Spacing, Display, Color, etc. | ||
1. **Performance**. We can’t optimize something we can’t measure, and we don’t currently have a CI performance benchmark, so we will need to build one and start investigating bottlenecks. | ||
1. **Learning materials**. The quality of the documentation is equally as important as the quality of the implementation, and while the reference documentation is comprehensive, we could author a learning tutorial like Next.js has done, or an egghead.io course. | ||
1. **Themes**. We want to provide common layouts example to make getting started even easier. We also plan on adding more premium themes. | ||
1. **Documentation**. We want to translate the documentation into Chinese and other languages. Any help is welcomed! | ||
1. **Bundle size**. The library needs to be as small as possible, so we need to work on solutions to further reduce the bundle size, for example, supporting Preact or Nerv can help. | ||
1. **Type checking**. We will continue to improve the TypeScript and possibly the Flow coverage of the library. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ import React from 'react'; | |
import PropTypes from 'prop-types'; | ||
import classNames from 'classnames'; | ||
import Button from '@material-ui/core/Button'; | ||
import CheckIcon from '@material-ui/icons/Check'; | ||
import ErrorOutlineIcon from '@material-ui/icons/ErrorOutline'; | ||
import InfoIcon from '@material-ui/icons/InfoOutline'; | ||
import CheckCircleIcon from '@material-ui/icons/CheckCircle'; | ||
import ErrorIcon from '@material-ui/icons/Error'; | ||
import InfoIcon from '@material-ui/icons/Info'; | ||
import CloseIcon from '@material-ui/icons/Close'; | ||
import green from '@material-ui/core/colors/green'; | ||
import amber from '@material-ui/core/colors/amber'; | ||
|
@@ -15,9 +15,9 @@ import WarningIcon from '@material-ui/icons/Warning'; | |
import { withStyles } from '@material-ui/core/styles'; | ||
|
||
const variantIcon = { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Only filled icons for consistency. |
||
success: CheckIcon, | ||
success: CheckCircleIcon, | ||
warning: WarningIcon, | ||
error: ErrorOutlineIcon, | ||
error: ErrorIcon, | ||
info: InfoIcon, | ||
}; | ||
|
||
|
@@ -38,6 +38,7 @@ const styles1 = theme => ({ | |
fontSize: 20, | ||
}, | ||
iconVariant: { | ||
opacity: 0.9, | ||
marginRight: theme.spacing.unit, | ||
}, | ||
message: { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.