All Projects β†’ cibernox β†’ Ember Power Select

cibernox / Ember Power Select

Licence: mit
The extensible select component built for ember.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Ember Power Select

Ember Select Box
πŸ”  A faux select box for Ember apps
Stars: ✭ 60 (-88.48%)
Mutual labels:  select, ember
Stf Vue Select
stf vue select - most flexible and customized select
Stars: ✭ 61 (-88.29%)
Mutual labels:  component, select
Emberx Select
Select component for Ember based on the native html select element.
Stars: ✭ 202 (-61.23%)
Mutual labels:  select, ember
Ember Searchable Select
Data-down, actions up select-like menu with searching and tagging capabilities.
Stars: ✭ 38 (-92.71%)
Mutual labels:  select, ember
Ember Toggle
Checkbox based Toggle Switches for Ember
Stars: ✭ 111 (-78.69%)
Mutual labels:  component, ember
Ngx Ui
πŸš€ Style and Component Library for Angular
Stars: ✭ 534 (+2.5%)
Mutual labels:  component, select
Vue Multiselect
Universal select/multiselect/tagging component for Vue.js
Stars: ✭ 5,988 (+1049.33%)
Mutual labels:  component, select
Selectivity
Modular and light-weight selection library
Stars: ✭ 1,113 (+113.63%)
Mutual labels:  component, select
React Multi Select
A Multi Select component built with and for React
Stars: ✭ 111 (-78.69%)
Mutual labels:  component, select
Ngx Select Dropdown
Custom Dropdown for Angular 4+ with multiple and single selection options
Stars: ✭ 91 (-82.53%)
Mutual labels:  component, select
Vue Treeselect
A multi-select component with nested options support for Vue.js
Stars: ✭ 2,347 (+350.48%)
Mutual labels:  component, select
Zoid
Cross domain components
Stars: ✭ 1,672 (+220.92%)
Mutual labels:  component, ember
React Select Search
⚑️ Lightweight select component for React
Stars: ✭ 379 (-27.26%)
Mutual labels:  component, select
Cp Design
A configurable Mobile UI Components(React hooks+Typescript+Scss)η»„δ»ΆεΊ“
Stars: ✭ 465 (-10.75%)
Mutual labels:  component
Avataaars
React component for avataaars
Stars: ✭ 494 (-5.18%)
Mutual labels:  component
Ui
Rancher UI
Stars: ✭ 463 (-11.13%)
Mutual labels:  ember
Ionic Selectable
An Ionic-based versatile and highly customizable component that serves as a replacement to Ionic Select, and allows to search items, create items, customize the layout with templates and much more.
Stars: ✭ 459 (-11.9%)
Mutual labels:  select
Toastnotifications
Toast notifications for WPF allows you to create and display rich notifications in WPF applications. It's highly configurable with set of built-in options like positions, behaviours, themes and many others. It's extendable, it gives you possibility to create custom and interactive notifications in simply manner.
Stars: ✭ 507 (-2.69%)
Mutual labels:  component
React Data Fetching
🎣 Declarative data fetching for React.
Stars: ✭ 496 (-4.8%)
Mutual labels:  component
Vue Swatches
🎨 Help the user picking beautiful colors!
Stars: ✭ 456 (-12.48%)
Mutual labels:  component

Build Status Ember Observer Score Code Climate npm version dependencies

Ember-Power-Select

Ember Power Select is a select component written in Ember with a focus in flexibility and extensibility.

It is designed to work well with the way we build Ember apps, so it plays nicely with promises, ember-concurrency's tasks, ember-data collections and follows idiomatic patterns.

Installation

Ember Power Select 1.X works in Ember 2.3.1+, beta and canary with no deprecations whatsoever. Any deprecation will be considered a bug.

As any other ember-cli addon, run:

ember install ember-power-select

Ember Power Select 2.X requires Ember 2.10.0+. Ember Power Select 3.X requires Ember 3.11.0+. Ember Power Select 4.X requires Ember 3.13.0+.

Features overview

Ember Power Select wants to be as agnostic as possible about how you're going to use it, but it still provides some default implementations that will match 95% of your needs, and exposes actions to customize the other 5% of usages.

Features include:

  • Single select
  • Multiple select
  • HTML inside the options or the trigger.
  • Filter options sanitizing diacritics.
  • Custom matchers.
  • Asynchonous searches.
  • Theming
  • Fully promise-aware, with loading states.
  • Compatible with ember-concurrency task cancellation.
  • Compatibility with ember-data's ArrayProxies
  • Groups (with not deep limit), placeholders...
  • Clear the selection
  • Disable the component or individual options
  • CSS animations and transitions
  • ... and anything else you want. Just replace parts of the selects with your own components.

Usage

Check the full documentation with live examples at www.ember-power-select.com and please open an issue if something doesn't work or is not clear enough.

Good docs are important :)

Extensions

Ember-power-select's focus on flexibility enables the community to build richer and more tailor made components on top of it, focused in solving one particular problem, using composition.

Check the addons section to see some and if you create one that you want to open source open a PR to include it in the list.

Browser support

This addon was tested in modern browsers and there is no technical reason it wouldn't work in IE9+. If you find a problem please file an issue.

IE 'Invalid character' issue

You might run into a situation where your app doesn't work in IE11 when doing a production build with the error: Invalid character. This is due to uglifyjs stripping quotes out of object keys, and since we handle diacritics for you, those cause issues. Solution:

// ember-cli-build.js
'use strict';

const EmberApp = require('ember-cli/lib/broccoli/ember-app');

module.exports = function (defaults) {
  let app = new EmberApp(defaults, {
    'ember-cli-uglify': {
      uglify: {
        // Prevent uglify from unquoting hash keys in production builds, causes issue with diacritics in EPS
        output: {
          keep_quoted_props: true,
        },
      }
    }
  });

  return app.toTree();
}

Testing

In testing it requires phantomjs 2.0+. This component also provides some convenient test helpers to interact with the component in acceptance tests.

Contributing

Any contribution is welcome. Please read our guidelines. However, if your contribution involves adding a new feature, please open an issue before to share your plan and agree the details of the feature before starting implementing it.

Troubleshooting

If something doesn't work visit the Troubleshooting section of the docs first and if your problem persist open an issue, specify the version of the component, Ember and browser.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].