mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
11 lines
348 B
JavaScript
11 lines
348 B
JavaScript
import computed from 'ember-addons/ember-computed-decorators';
|
|
|
|
export default Ember.Component.extend({
|
|
classNameBindings: [':wizard-field', ':text-field', 'field.invalid'],
|
|
|
|
@computed('field.id')
|
|
inputClassName: id => `field-${Ember.String.dasherize(id)}`,
|
|
|
|
@computed('field.type')
|
|
inputComponentName: type => `wizard-field-${type}`
|
|
});
|