@tomino/dynamic-form-semantic-ui
Version:
Semantic UI form renderer based on dynamic form generation
17 lines • 501 B
JavaScript
import { RadioView } from './radio_view';
import { propGroup, boundProp, tableProp, dataProp } from '../editor/editor_common';
export const RadioEditor = {
Component: RadioView.Component,
title: 'Radio',
control: 'Radio',
icon: 'circle',
bound: true,
props: {
...propGroup('Radio', {
value: boundProp(),
schemaSource: dataProp()
}),
options: tableProp({ bound: true }, 'Options')
}
};
//# sourceMappingURL=radio_editor.js.map