forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Mui #10
Conversation
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
The tooltip was not centered anymore after a value change (for example, localisation change). Triggering it again fixes it.
Table composable
Added Controllability to Tabs Component
Added support for linkedState mixin in Tabs
[InkBar] Added color prop to inkbar
Upgraded Docs site with new Tab navigation
Adds an isOpen method to an iconMenu. The way I'm using this is that I am programmatically opening / closing the menu from a different user action. ```jsx _toggleMenuState = () => { let isOpen = this.refs.menu.isOpen(); // weird bug mui#1254 setTimeout(() => { if (isOpen) { this.refs.menu.close() } else { this.refs.menu.open() } }, 1); } ``` There is actually a related bug here: mui#1254 to make this work.
This is in line with the docs, which state: > showMenuIconButton > Determines whether or not to display the Menu icon next > to the title. Setting this prop to false will hide the icon.
[LeftNav] Fix sidebar position for browsers that don't support transform3d
…rom material design.
[DatePicker] Update DatePicker
[TextField] Added props to override underlineStyle when disabled
merge callemall master
…n-rule Setting react/jsx-boolean-value rule to 0 in .eslintrc file.
Reorganization and improvement of getting started guide
Modified main.jsx of webpack example to use component-level require() calls instead of requiring all of material-ui.
…ippet Updated installation page code snippet
[eslint] fix travis error with jsx-quotes
merge with callemall
yongxu
added a commit
that referenced
this pull request
Sep 19, 2015
updated with origin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
No description provided.