You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{
"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
}
}
}
This release has a big refactor to modularise most of logic used in react-jsonschema using xstate.
This release also introduces a new feature to provide error messages in xhrSchema based on status codes inside ui:errors
Example:
"ui:errors": {
"offline": {
"title": "You are Offline !",
"message": "Please try again once you are online."
},
"500": {
"title": "Internal Server Error",
"message": "My error description"
}
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
This release marks final support for MUI 4
Features:
Next Releases
beta.x
followed byrc.x
to finalize3.0.0
-mui-5
similar previous example release.Demo URL: https://react-jsonschema-form-material-ui.github56.now.sh
Example Usage:
Previously
3.00-alpha.12
ui:errors
Example:
3.0.0-alpha.9
This Minor release does not have any features but 2 small package updates
Now source code is slowly migrating towards typescript with support of jest for running unit tests.
3.0.0-alpha.6
ui:interceptor
xhrSchema
feature enabled to make xhr calls onload, onsubmit and onclick to consume or post datatype: null
support included for custom div supportui:page
->"ui:layout": "tabs"
Material UI 4
Nextjs 10
andreact 17
Demo URL: https://react-jsonschema-form-material-ui-github56.vercel.app
This discussion was created from the release 3.0.0-MUI-4 - Stable Release.
Beta Was this translation helpful? Give feedback.
All reactions