3.0.0-beta.3 - TSConfig Updated
3.0.0-beta.3 - TSConfig Updated
This minor release updates tsconfig to compile to es6
.
npm install --save react-jsonschema-form-material-ui@3.0.0-beta.3
Please use MUI 4 release in case you dont plan to upgrade to MUI 5.
Demo URL:
CRA Example URL:
NextJS Example URL:
Previously:
- This minor release adds support for Material UI Autocomplete Component.
- Some bug fixes on array schema types.
Next Releases
- Next release onwards we will move to
beta.x
followed byrc.x
to finalize3.0.0
- Support for Material UI 5 - Autocomplete will be included in future pre-releases tagged
-mui-5
similar previous example release.
Demo URL: https://react-jsonschema-form-material-ui.github56.now.sh
Example Usage:
- Form Schema
{
"title": "Auto Complete example",
"description": "Example demo for Material UI Autocomplete component usage",
"type": "object",
"properties": {
"auto-complete": {
"type": "string", // For multi-select this can be "array"
"title": "Example Auto Complete",
"enum": [
"Yes",
"No"
]
}
}
}
- UI Schema
{
"auto-complete": {
"ui:widget": "material-auto-complete",
"ui:props": { // Available props support come from https://material-ui.com/api/autocomplete/#props
"disableClearable": false
}
}
}
- Form Data
{}