A collection of widgets and fields for react-jsonschema-form project
At this moment, the project is still under development, more widgets and fields are planed to add into this project. Therefore, the project is not published to npm. But it can be install from github repository:
npm install https://github.com/sunweiye/react-jsonschema-form-extensions.git
The widgets include:
An UI widget for the form with react-select
import {ReactSelection} from 'react-jsonschema-form-extensions';
uiShema["ui:widget"] = (props) => <ReactSelection {...props} />An UI widget for the form with react-autocomplete
The auto complete can be used with static data and async loader
import {ReactAutoComplete} from 'react-jsonschema-form-extensions';
uiShema["ui:widget"] = (props) => <ReactAutoComplete {...props} />MIT Licensed. Copyright (c) 2018-present, Weiye Sun.