const masterDetailTemplate = `
`;
const masterDetailCollectionTemplate = `
-
{{vm.getBeautifulKeyName(schemaKey)}}
Cancel
`;
export default angular
.module('jsonforms-bootstrap.renderers.layouts.masterdetail',
['jsonforms.renderers.layouts', 'jsonforms-bootstrap'])
.run(['$templateCache', $templateCache => {
$templateCache.put('masterdetail.html', masterDetailTemplate);
}])
.run(['$templateCache', $templateCache => {
$templateCache.put('masterdetail-collection.html', masterDetailCollectionTemplate);
}])
.name;