User: waqqas.jabbar@gmail.com clicked save for playground/nutech/example-script-task/login-uischema.json

This commit is contained in:
sartography-automated-committer 2024-01-31 09:43:07 +00:00
parent fe6e245b9e
commit b901a1e60a
2 changed files with 11 additions and 2 deletions

View File

@ -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": "Password",
"description": "A password field, with a min length of 3 and a help tip",
"type": "object",
"required": [
"firstName"
@ -10,6 +10,11 @@
"type": "string",
"title": "First name",
"default": "Chuck"
},
"password": {
"type": "string",
"title": "Password",
"minLength": 3
}
}
}

View File

@ -6,5 +6,9 @@
"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/)."
},
"password": {
"ui:widget": "password",
"ui:help": "Hint: Make it strong!"
}
}