diff --git a/playground/dan/funky-freddie/test-schema.json b/playground/dan/funky-freddie/test-schema.json index 14528a4e..07ceb0e0 100644 --- a/playground/dan/funky-freddie/test-schema.json +++ b/playground/dan/funky-freddie/test-schema.json @@ -1,6 +1,6 @@ { - "title": "Text Field", - "description": "A simple text field that is required, has a default value, sets a placeholder, includes a description. (field name will be 'firstname')", + "title": "Text Area", + "description": "A larger resizable area to enter longer text. (field name will be 'bio')", "type": "object", "required": [ "firstName" @@ -10,6 +10,10 @@ "type": "string", "title": "First name", "default": "Chuck" + }, + "bio": { + "type": "string", + "title": "Bio" } } } \ No newline at end of file diff --git a/playground/dan/funky-freddie/test-uischema.json b/playground/dan/funky-freddie/test-uischema.json index 411a28d3..c0efb481 100644 --- a/playground/dan/funky-freddie/test-uischema.json +++ b/playground/dan/funky-freddie/test-uischema.json @@ -6,5 +6,8 @@ "ui:autocomplete": "family-name", "ui:enableMarkdownInDescription": true, "ui:description": "Make text **bold** or *italic*. Take a look at other options [here](https://probablyup.com/markdown-to-jsx/)." + }, + "bio": { + "ui:widget": "textarea" } } \ No newline at end of file