UNPKG

@busy-web/components

Version:

Ember addon library for usefull components.

21 lines (16 loc) 427 B
import TextField from '@ember/component/text-field'; import layout from '../templates/components/bc-checkbox-input'; export default TextField.extend({ layout: layout, classNameBindings: ['checked'], attributeBindings: ['checked', 'group', 'disabled'], type: 'checkbox', group: null, name: null, disabled: false, checked: false, _value: false, click() { this.sendAction('onChange', !this.get('_value')); }, });