HTMLText
Generate a text field with a WYSIWYG editor (uses tiptap)
Options
HTMLText('fieldName', {
label: 'Label of the field', // (optional)
multiline: true, // Allow multiple line of text (default to false)
allowHeadings: true, // Allow <h1>, <h2>... (optional)
colors: ['red', '#F00FF0', '--primary'],// Available colors for the text (optional)
default: 'Default value', // (optional)
help: 'Some additional informations', // (optional)
// Extra props (the field can react to other field values)
backgroundColor: 'fieldName', // (optional)
textColor: 'fieldName', // (optional)
defaultAlign: 'fieldName', // (optional)
})