react-jsonschema-form
react-jsonschema-form copied to clipboard
A React component for building Web forms from JSON Schema.
Bumps [@fluentui/react](https://github.com/microsoft/fluentui) from 7.190.3 to 8.96.0. Release notes Sourced from @fluentui/react's releases. @fluentui/react-date-time v8.1.76 Patches Bump @fluentui/react to v8.36.0 (PR #20017 by smhigley) @fluentui/react-docsite-components v8.3.37 Patches Bump @fluentui/react to v8.36.0...
Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 27.1.5 to 29.0.1. Release notes Sourced from ts-jest's releases. v29.0.1 Please refer to CHANGELOG.md for details. v29.0.0 Please refer to CHANGELOG.md for details. v29.0.0-next.1 Please refer to...
Bumps [jest-environment-jsdom](https://github.com/facebook/jest/tree/HEAD/packages/jest-environment-jsdom) from 27.5.1 to 29.0.3. Release notes Sourced from jest-environment-jsdom's releases. v29.0.3 Features [@jest/environment, jest-runtime] Allow passing a generic type argument to jest.createMockFromModule<T>() method (#13202) [expect] Expose ExpectationResult type...
Seems like the doc link in the readme is linking to `/stable` which doesnt exist. Pointing it to `/latest`
### Prerequisites - [X] I have read the [documentation](https://react-jsonschema-form.readthedocs.io/) ### What theme are you using? material-ui ### Is your feature request related to a problem? Please describe. We have a...
In the main README.md there is a link: "Explore the docs »". It links to https://react-jsonschema-form.readthedocs.io/en/stable/ which is currently not working. For each sub-page I get a 404 error. Most...
### Reasons for making this change oneOf and anyOf properties are not working properly inside additional properties. ### Checklist * [ ] **I'm updating documentation** - [ ] I've [checked...
### Reasons for making this change I need `anyOf` to represent things like discriminated unions: https://www.typescriptlang.org/docs/handbook/unions-and-intersections.html#discriminating-unions. typescript: ```ts type NetworkLoadingState = { state: "loading"; }; type NetworkFailedState = { state:...
prevent reference from losing local properties on nested references, using the same behaviour as `resolveReference()` ### Reasons for making this change using the following schema: ``` { definitions: { basePhone:...
### Reasons for making this change For schema with oneOf array, setting omitExtraData and liveOmit would cause formData to be clear out on input change. This PR fixes this issue...