Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
384 changes: 225 additions & 159 deletions CHANGELOG.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ Open an issue, making sure to follow the Feature request template.
- If there isn't one already, open an issue describing the bug or feature request that you are going to solve in your pull request.
- Create a fork of react-native-maps
- If you already have a fork, make sure it is up to date
- Git clone your fork and run `npm install` in the base of the cloned repo to setup your local development environment.
- Git clone your fork and run `yarn` in the base of the cloned repo to setup your local development environment.
- Create a branch from the master branch to start working on your changes.

### Committing

- When you made your changes, run `npm run lint` & `npm run test` to make sure the code you introduced doesn't cause any obvious issues.
- When you made your changes, run `yarn lint` & `yarn test` to make sure the code you introduced doesn't cause any obvious issues.
- When you are ready to commit your changes, use the [Github conventional commits](https://gist.github.com/qoomon/5dfcdf8eec66a051ecd85625518cfd13) convention for you commit messages, as we use your commits when releasing new versions.
- Use present tense: "add awesome component" not "added awesome component"
- Limit the first line of the commit message to 100 characters
Expand Down
9 changes: 1 addition & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,6 @@

A [React](http://facebook.github.io/react/) library for rendering out forms based on the [Form.io](https://www.form.io) platform.

> [!IMPORTANT]
> As of 2 September 2025, the master branch will be renamed master_old and the default branch will be called main. main will be based on the 6.1.x branch, which is the latest stable release. See [here](https://github.com/formio/react/issues/624) for more details about this change.

## React Versions

This library supports all React Versions. To use this library with the correct version of React, please refer to the Compatibility matrix here: https://help.form.io/dev/javascript-frameworks#react-versions

## Install

### npm
Expand All @@ -31,7 +24,7 @@ When using @formio/react in a project built with Vite (especially for React 18 a
Install Vite React Plugin

```bash
npm install --save-dev @vitejs/plugin-react
yarn add --dev @vitejs/plugin-react
```

In your vite.config.js, add the React plugin:
Expand Down
Loading
Loading