Allow text for text based interfaces

This commit is contained in:
rijkvanzanten
2020-07-31 18:58:27 -04:00
parent 4f2e600e02
commit f2ca38b09c
3 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ export default defineInterface(({ i18n }) => ({
name: i18n.t('text_input'),
icon: 'text_fields',
component: InterfaceTextInput,
types: ['string'],
types: ['string', 'text'],
options: [
{
field: 'placeholder',

View File

@@ -6,7 +6,7 @@ export default defineInterface(({ i18n }) => ({
name: i18n.t('textarea'),
icon: 'text_fields',
component: InterfaceTextarea,
types: ['string'],
types: ['string', 'text'],
options: [
{
field: 'placeholder',

View File

@@ -6,7 +6,7 @@ export default defineInterface(({ i18n }) => ({
name: i18n.t('wysiwyg'),
icon: 'format_quote',
component: InterfaceWYSIWYG,
types: ['string'],
types: ['string', 'text'],
options: [
{
field: 'toolbar',