As a developer I want to be able to add html status messages underneath a cdx-field.
Current situation:
It only supports string values as messages.
<cdx-field :status="status" :messages="messages"> ... </cdx-field> const status = ref( 'warning' ); const messages = computed( () => { return { warning: `The username was automatically changed from "${ originalName.value }" to "${ inputValue.value }".` }; } );
Desirable situation:
We would like to be able to show customized warning messages that might include HTML. Like so (see <kbd>Ctrl<kbd>):