Skip to content
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

Missing Textfield docs. #2070

Merged
merged 2 commits into from
Nov 6, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/src/app/components/pages/components/text-fields.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@ let TextFieldsPage = React.createClass({
{
name: 'Props',
infoArray: [
{
name: 'defaultText',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are you sure this property exist? I can't find it in the mui source code neither in the react documentation.

type: 'string',
header: 'optional',
desc: 'The text string to use for the default value.',
},
{
name: 'errorStyle',
type: 'object',
Expand All @@ -68,6 +74,12 @@ let TextFieldsPage = React.createClass({
header: 'optional',
desc: 'The error text string to display.',
},
{
name: 'floatingLabelStyle',
type: 'object',
header: 'optional',
desc: 'The style object to use to override floating label styles.',
},
{
name: 'floatingLabelText',
type: 'string',
Expand Down