-
-
Notifications
You must be signed in to change notification settings - Fork 81
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
Fix the README description #102
Conversation
Why a select component? Because we've done the hard work and built a | ||
select component for you. Sometimes all you want to do is just use a | ||
`<select>` tag dammit. The only difference is that you want value of | ||
the options to be any object and not just a string. |
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.
Calling upon @tehviking for your words. Your words are the best. I could use your words here. I do not have the best words.
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.
There are a lot of options out there for fancy dropdowns, but after spending many months writing them, we've learned you can't beat a native <select>
for reliability, accessibility, and low cost of maintenance. <x-select>
is a drop-in component to let you use any object for your selectable options. You can use it out of the box, or as a building block of something more ambitious.
The goal of <x-select>
is to let you see how it works and style it right in your template, rather than passing in a ball of configuration or wrapping a hard-coded, inaccessible jQuery plugin.
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.
@Robdel12 something like that. Feel free to edit.
…ing-point Fix the README description
maintenance. `<x-select>` is a drop-in component to let you use any | ||
object for your selectable options. You can use it out of the box, or | ||
as a building block of something more ambitious. | ||
|
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.
There are a lot of options out there for fancy dropdowns, but after
spending many months writing them, we've learned you can't beat a
native `<select>` for reliability, accessibility, and low cost of
maintenance.
Change to ==>
`ember-xselect` provides the reliability, accessibility of a native `<select>`.
This should close #73