ember-do-forms
Version:
ember-do-forms handles the icky parts of forms that you don't want to, and leaves the rest to you.
22 lines (20 loc) • 490 B
JavaScript
;
module.exports = function(/* environment, appConfig */) {
return {
'ember-do-forms': {
defaultClasses: {
field: ['field'],
label: ['label'],
control: ['control'],
feedback: ['feedback'],
hint: ['hint']
},
validationClasses: {
fieldSuccess: ['field-success'],
fieldError: ['field-error'],
controlSuccess: ['control-success'],
controlError: ['control-error']
}
}
};
};