const config = {
worksheets: [{
minDimensions: [6,5],
worksheetName: 'Music Album Production',
tabs: true,
columns: [
{ type: 'text', title:'Music', width: '120px' },
{ type: 'text', title:'Author', width: '120px' },
{ type: 'text', title:'Album', width: '100px' },
{ type: 'dropdown', title:'Genre', width: '120px', source: ['Rock', 'Pop', 'Eletronic', 'Reggae', 'MPB', 'Indi'], options: { newOptions: true } },
{ type: 'dropdown', title:'Language', width: '120px', source: ['English', 'Portuguese', 'Japanese', 'Chinese', 'Korean', 'Spanish', 'Italian'], options: { newOptions: true } },
{ type: 'dropdown', title:'Status', width: '100px', render:'color', source: [{ id:1, name: 'In progress', color: '#007BFF' }, { id: 2, name: 'Finished', color: '#28A745' }]},
{ type: 'url', title: 'Music Link', width: '150px' }
]
}]
}