Skip to content

Commit 6ade814

Browse files
committed
Version 7.4.0 (autocommit)
1 parent 106764a commit 6ade814

Some content is hidden

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

59 files changed

+1730
-567
lines changed

README.md

Lines changed: 321 additions & 56 deletions
Large diffs are not rendered by default.

community/examples/formdata/package-lock.json

Lines changed: 37 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

community/examples/formdata/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@
1818
},
1919
"dependencies": {
2020
"@faker-js/faker": "^10.0.0",
21-
"@react-form-builder/components-rsuite": "^7.3.0",
22-
"@react-form-builder/core": "^7.3.0",
21+
"@react-form-builder/components-rsuite": "^7.4.0",
22+
"@react-form-builder/core": "^7.4.0",
2323
"@vitejs/plugin-react-swc": "^3.7.2",
24-
"lodash-es": "^4.17.21",
2524
"react": "^19.0.0",
2625
"react-dom": "^19.0.0",
2726
"vite-plugin-svgr": "^4.3.0"

community/examples/formdata/src/FormViewerExample.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import {faker} from '@faker-js/faker'
22
import {viewWithCss} from '@react-form-builder/components-rsuite'
33
import type {IFormData, IFormViewer} from '@react-form-builder/core'
4-
import {ActionDefinition, ComponentData, FormViewer} from '@react-form-builder/core'
5-
import isEqual from 'lodash/isEqual'
4+
import {ActionDefinition, ComponentData, FormViewer, isEqual} from '@react-form-builder/core'
65
import {ReactNode, useCallback, useRef, useState} from 'react'
76
import * as SampleForm from './SampleForm.json'
87

community/src/.eslintrc.cjs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module.exports = {
2424
'plugin:react/recommended',
2525
'plugin:react-perf/all'
2626
],
27-
plugins: ['@typescript-eslint', 'import', 'unused-imports', 'react-hooks', 'no-secrets'],
27+
plugins: ['@typescript-eslint', 'import', 'unused-imports', 'react-hooks', 'no-secrets', 'unicorn'],
2828
rules: {
2929
'no-restricted-syntax': ['error', {
3030
"selector": "CallExpression[callee.name='customizableObserver'] > ArrowFunctionExpression.arguments",
@@ -49,6 +49,9 @@ module.exports = {
4949
'react-hooks/exhaustive-deps': ['error', {
5050
'additionalHooks': ''
5151
}],
52+
'unicorn/no-useless-fallback-in-spread': 'error',
53+
'unicorn/no-useless-spread': 'error',
54+
'unicorn/prefer-spread': 'error',
5255
'react/react-in-jsx-scope': 'off',
5356
'react/prop-types': 'off',
5457
'@typescript-eslint/ban-types': '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.3.0"
5+
"version": "7.4.0"
66
}

0 commit comments

Comments
 (0)