SBCanvas.panel.register({
fields: [
{ key: 'speed', type: 'slider', label: 'Animation Speed', min: 1, max: 10, step: 1, default: 5 },
{ key: 'theme', type: 'dropdown', label: 'Theme', options: ['dark', 'light', 'neon'], default: 'dark' },
{ key: 'title', type: 'text', label: 'Widget Title', placeholder: 'Enter title...', maxLength: 50 },
{ key: 'alertCount', type: 'number', label: 'Max Alerts', min: 1, max: 100, default: 10 },
{ key: 'sounds', type: 'toggle', label: 'Enable Sounds', default: true },
{ key: 'accentColor', type: 'color', label: 'Accent Color', default: '#8B5CF6' }
]
});