UNPKG

plot-plan-designer

Version:

Design Editor Tools with React.js + ant.design + fabric.js

51 lines (50 loc) 1.62 kB
export default { scheduleType: { type: 'select', icon: '', label: 'ScheduleType', items: [ { label: 'SIMPLE_INTERVAL', value: 'SIMPLE_INTERVAL', forms: { timeUnit: { type: 'select', icon: '', label: 'TimeUnit', items: [ { label: 'MILLISECONDS', value: 'MILLISECONDS', }, { label: 'SECONDS', value: 'SECONDS', }, { label: 'MINUTES', value: 'MINUTES', }, { label: 'HOURS', value: 'HOURS', }, { label: 'DAYS', value: 'DAYS', }, ], }, interval: { type: 'number', required: true, icon: '', label: 'Interval', min: 0, max: 600000, }, }, }, ], }, };