Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cibernox/ember-power-select-typeahead
Typeahead component built on top of ember-power-select
https://github.com/cibernox/ember-power-select-typeahead
Last synced: 3 days ago
JSON representation
Typeahead component built on top of ember-power-select
- Host: GitHub
- URL: https://github.com/cibernox/ember-power-select-typeahead
- Owner: cibernox
- License: mit
- Created: 2015-11-16T12:05:08.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-07T03:00:17.000Z (8 months ago)
- Last Synced: 2024-10-30T01:38:02.382Z (2 months ago)
- Language: JavaScript
- Size: 2.53 MB
- Stars: 37
- Watchers: 5
- Forks: 57
- Open Issues: 49
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Ember-power-select-typeahead
Naive implementation of a typeahead component on top of ember-power-select.
Compatibility
------------------------------------------------------------------------------* 0.9 requires Ember 3.20 or above
* 0.8+ requires Ember 3.11
* Versions belog 0.7.4 work in 2.12+Installation
------------------------------------------------------------------------------## Installation
```
ember install ember-power-select-typeahead
```## Usage
With simple strings:
```hsb
{{number}}
```
With complex objects:
```hsb
{{user.name}}
```
***Note: See API reference for ember-power-select for additional options you can pass to ember-power-select-typeahead***
- http://ember-power-select.com/docs/api-reference## Styles
In your app's stylesheet, you must import the built-in styles in this order:
```css
/*
your custom variables goes here
*/Contributing
------------------------------------------------------------------------------See the [Contributing](CONTRIBUTING.md) guide for details.
License
------------------------------------------------------------------------------@import 'ember-power-select';
@import 'ember-power-select-typeahead';
```