From 6c2b0c9b985b114b12d69017db889285b639a166 Mon Sep 17 00:00:00 2001 From: sartography-automated-committer Date: Thu, 5 Oct 2023 15:44:20 +0000 Subject: [PATCH] User: dan@sartography.com clicked save for examples/0-2-basic-example/norris-schema.json --- examples/0-2-basic-example/norris-schema.json | 8 ++++++-- examples/0-2-basic-example/norris-uischema.json | 3 +++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/examples/0-2-basic-example/norris-schema.json b/examples/0-2-basic-example/norris-schema.json index 8be6cfe1..240a768c 100644 --- a/examples/0-2-basic-example/norris-schema.json +++ b/examples/0-2-basic-example/norris-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", @@ -54,6 +54,10 @@ "type": "string", "title": "First name", "default": "Chuck" + }, + "bio": { + "type": "string", + "title": "Bio" } } } \ No newline at end of file diff --git a/examples/0-2-basic-example/norris-uischema.json b/examples/0-2-basic-example/norris-uischema.json index eefac31e..e8d11250 100644 --- a/examples/0-2-basic-example/norris-uischema.json +++ b/examples/0-2-basic-example/norris-uischema.json @@ -24,5 +24,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