export const anchorTable = [ { name: 'id', label: 'Id', initialValue: '', hidden: true }, { name: 'text', label: 'Text Field', initialValue: null, width: 'auto', hidden: false, type:"texto" }, { name: 'email', label: 'Email Field', initialValue: null, width: 'auto', hidden: false, type:"texto" }, { name: 'radio', label: 'Radio Option', initialValue: 'option1', width: '80', hidden: false, type:"texto" }, { name: 'selection', label: 'Selection', initialValue: 'option1', width: '80', hidden: false, type:"texto" }, { name: 'onof', label: 'On/Of Input', initialValue: true, width: '80', hidden: false, type:"texto" }, { name: 'checkbox', label: 'Checkbox', initialValue: true, width: '80', hidden: false, type:"texto" }, { name: 'textarea', label: 'Text Area', initialValue: 'This is default text', width: 'auto', hidden: false, type:"texto" }, { name: 'edited', label: '', initialValue: '', hidden: true, type:"texto" }, { name: 'action', label: 'Action', initialValue: '', hidden: false, type:"texto" }, ]; export const dataApi = [ { id: '1', text: 'Just write', email: 'mail@boss.com', radio: 'option2', selection: 'option1', onof: false, checkbox: true, textarea: 'Lorem ipsum dolor sit amet', edited: false, }, { id: '2', text: 'Some text', email: 'mail@material.com', radio: 'option2', selection: 'option2', onof: false, checkbox: false, textarea: 'Lorem ipsum dolor sit amet', edited: false, }, { id: '3', text: 'Because it is a TextField', email: 'mail@admin.com', radio: 'option1', selection: 'option3', onof: false, checkbox: false, textarea: 'Lorem ipsum dolor sit amet', edited: false, }, { id: '4', text: 'And editable', email: 'mail@example.com', radio: 'option1', selection: 'option1', onof: false, checkbox: true, textarea: 'Lorem ipsum dolor sit amet', edited: false, }, { id: '5', text: 'You can write', email: 'mail@material.com', radio: 'option2', selection: 'option2', onof: false, checkbox: true, textarea: 'Lorem ipsum dolor sit amet', edited: false, }, { id: '6', text: 'Everything You want here', email: 'mail@everything.com', radio: 'option1', selection: 'option3', onof: false, checkbox: false, textarea: 'Lorem ipsum dolor sit amet', edited: false, }, ];