1
1
Fork 0
portfolio/repos/ember-select-light.md
2024-03-25 14:11:44 -05:00

1.2 KiB

tags templateEngineOverride title description date image pinned
repos md ember-select-light The simplest Ember `<select>` there is. 2020-11-05 /img/content/ember-select-light-tailwind.png false

Fork from Github

ember-select-light is an Ember Addon focused on simplicity. Just powerful enough to offer expected baseline functionality while being easy to implement, style, and make accessible.

ember-select-light can be easily styled with Tailwind

This addon is Octane ready and follows ember-component-pattern's for how to best write a Select Element. Additionally, it was coded completely with TDD (Test-Driven Design) so you can expect quality test coverage!

Getting Started

ember install ember-select-light

Example Usage

<SelectLight
  @value="turtle"
  @options=(array "turtle" "tortoise")
  @change={{action "handleChange"}} />

Far more examples are available on GitHub.