ember-frost-bunsen
Version:
Create UI's from JSON configurations.
25 lines (16 loc) • 654 B
JavaScript
import AbstractInput from './abstract-input'
import layout from 'ember-frost-bunsen/templates/components/frost-bunsen-input-date'
export default AbstractInput.extend({
// == Component Properties ===================================================
classNameBindings: ['value:frost-bunsen-has-value'],
classNames: [
'frost-bunsen-input-date',
'frost-field'
],
layout,
// == Computed Properties ====================================================
// == Functions ==============================================================
// == Actions ===============================================================
actions: {
}
})