Skip to content

Commit 77d6335

Browse files
committed
Version 7.2.0 (autocommit)
1 parent 3785a2f commit 77d6335

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1502
-712
lines changed

community/examples/formdata/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
},
1919
"dependencies": {
2020
"@faker-js/faker": "^10.0.0",
21-
"@react-form-builder/components-rsuite": "^7.1.0",
22-
"@react-form-builder/core": "^7.1.0",
21+
"@react-form-builder/components-rsuite": "^7.2.0",
22+
"@react-form-builder/core": "^7.2.0",
2323
"@vitejs/plugin-react-swc": "^3.7.2",
2424
"lodash-es": "^4.17.21",
2525
"react": "^19.0.0",

community/src/.eslintrc.cjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ module.exports = {
2020
'plugin:react-hooks/recommended',
2121
'plugin:@typescript-eslint/recommended',
2222
'plugin:@typescript-eslint/recommended-requiring-type-checking',
23-
'plugin:jsdoc/recommended-typescript-error'
23+
'plugin:jsdoc/recommended-typescript-error',
24+
'plugin:react/recommended',
25+
'plugin:react-perf/all'
2426
],
2527
plugins: ['@typescript-eslint', 'import', 'unused-imports', 'react-hooks', 'no-secrets'],
2628
rules: {
@@ -47,6 +49,8 @@ module.exports = {
4749
'react-hooks/exhaustive-deps': ['error', {
4850
'additionalHooks': ''
4951
}],
52+
'react/react-in-jsx-scope': 'off',
53+
'react/prop-types': 'off',
5054
'@typescript-eslint/ban-types': 'off',
5155
'@typescript-eslint/ban-ts-comment': ['error', {'ts-ignore': 'allow-with-description'}],
5256
'@typescript-eslint/no-explicit-any': 'off',

community/src/lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
33
"useNx": true,
44
"useWorkspaces": true,
5-
"version": "7.1.0"
5+
"version": "7.2.0"
66
}

0 commit comments

Comments
 (0)