ember-frost-core
Version:
The library of core frost components
31 lines (21 loc) • 970 B
JavaScript
/**
* Component definition for the frost-mult-select component
*/
import FrostSelect from './frost-select'
export default FrostSelect.extend({
// == Dependencies ==========================================================
// == Keyword Properties ====================================================
// == PropTypes =============================================================
getDefaultProps () {
return {
css: 'frost-select', // the multi-select uses the same base class as frost-select
multiselect: true
}
},
// == Computed Properties ===================================================
// == Functions =============================================================
// == DOM Events ============================================================
// == Lifecycle Hooks =======================================================
// == Actions ===============================================================
actions: {}
})