User: marco.thomae@matplus.eu clicked save for playground/matplus/marco-thom/simple-user-task-uischema.json
This commit is contained in:
parent
f95710b5db
commit
79b1a6b997
|
@ -1 +1,15 @@
|
||||||
{}
|
{
|
||||||
|
"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')",
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"firstName"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"firstName": {
|
||||||
|
"type": "string",
|
||||||
|
"title": "First name",
|
||||||
|
"default": "Chuck"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1 +1,10 @@
|
||||||
{}
|
{
|
||||||
|
"firstName": {
|
||||||
|
"ui:autofocus": true,
|
||||||
|
"ui:emptyValue": "",
|
||||||
|
"ui:placeholder": "ui:emptyValue causes this field to always be valid despite being required",
|
||||||
|
"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/)."
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"title": "Text Area",
|
"title": "Text Field",
|
||||||
"description": "A larger resizable area to enter longer text. (field name will be 'bio')",
|
"description": "A simple text field that is required, has a default value, sets a placeholder, includes a description. (field name will be 'firstname')",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"required": [
|
"required": [
|
||||||
"firstName"
|
"firstName"
|
||||||
|
|
Loading…
Reference in New Issue