Need help in the process of creating your own WordPress theme?
Here is a complete list of all built-in option types with all available parameters for each option.
Some option types have custom javascript events. The events are triggered on elements with .fw-option-type-{type}
class. Some events send data that can be accessed this way:
jQuery('.fw-option-type-demo#fw-option-demo')
.on('fw:option-type:demo:custom-event', function(event, data){
console.log(data);
});