open-vault/ui/app/components/form-field-groups.js
2018-04-03 09:16:57 -05:00

32 lines
632 B
JavaScript

import Ember from 'ember';
const { computed } = Ember;
export default Ember.Component.extend({
tagName: '',
/*
* @public String
* A whitelist of groups to include in the render
*/
renderGroup: computed(function() {
return null;
}),
/*
* @public DS.Model
* model to be passed down to form-field component
* if `fieldGroups` is present on the model then it will be iterated over and
* groups of `form-field` components will be rendered
*
*/
model: null,
/*
* @public Function
* onChange handler that will get set on the form-field component
*
*/
onChange: () => {},
});