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

[Select] Add placeholder prop to multiselect component #2923

Merged

Conversation

NachoJusticia
Copy link
Contributor

Fixes #2799

Changes proposed in this pull request:

  • Add placeholder prop at the top of Multiselect component.

Reviewers should focus on:

  • Multiselect placeholder prop.

Note that you can still change the placeholder as before by doing:

<MultiSelect tagInputProps={{ placeholder: 'Search anything...' }} />

as well as:

<MultiSelect placeholder="Search anything..." />

Copy link
Contributor

@giladgray giladgray left a comment

Choose a reason for hiding this comment

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

looks good! thanks @NachoJusticia

const placeholder = "look here";

const input = multiselect({ placeholder }).find("input");
assert.equal((input.getDOMNode() as HTMLInputElement).placeholder, placeholder);
Copy link
Contributor

Choose a reason for hiding this comment

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

should be able to do input.prop("placeholder") but this is fine.

@giladgray giladgray merged commit 80c95a5 into palantir:develop Sep 11, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants