File size: 618 Bytes
c9d0005 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | export default {
type: 'object',
displayType: 'row',
properties: {
input1: {
title: 'Field A',
type: 'string',
span: 8
},
input2: {
title: 'Field B',
type: 'string',
span: 8
},
input3: {
title: 'Field C',
type: 'string',
span: 8
},
input11: {
title: 'Field A',
type: 'string',
span: 8
},
input12: {
title: 'Field B',
type: 'string',
span: 8
},
input4: {
title: 'Field D',
type: 'string',
},
input5: {
title: 'Field E',
type: 'string'
}
}
}; |