@rjsf/core 6.0.0-beta.6 → 6.0.0-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core.umd.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/lib/components/fields/LayoutGridField.js +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/src/components/fields/LayoutGridField.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rjsf/core",
|
|
3
|
-
"version": "6.0.0-beta.
|
|
3
|
+
"version": "6.0.0-beta.7",
|
|
4
4
|
"description": "A simple React component capable of building HTML forms out of a JSON schema.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"compileReplacer": "tsc -p tsconfig.replacer.json && move-file lodashReplacer.js lodashReplacer.cjs",
|
|
@@ -77,9 +77,9 @@
|
|
|
77
77
|
"prop-types": "^15.8.1"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@rjsf/snapshot-tests": "^6.0.0-beta.
|
|
81
|
-
"@rjsf/utils": "^6.0.0-beta.
|
|
82
|
-
"@rjsf/validator-ajv8": "^6.0.0-beta.
|
|
80
|
+
"@rjsf/snapshot-tests": "^6.0.0-beta.7",
|
|
81
|
+
"@rjsf/utils": "^6.0.0-beta.7",
|
|
82
|
+
"@rjsf/validator-ajv8": "^6.0.0-beta.7",
|
|
83
83
|
"@testing-library/jest-dom": "^6.6.3",
|
|
84
84
|
"@testing-library/react": "^16.2.0",
|
|
85
85
|
"@testing-library/user-event": "^14.6.1",
|
|
@@ -640,7 +640,7 @@ export default class LayoutGridField<
|
|
|
640
640
|
if (isString(gridSchema) || isUndefined(gridSchema)) {
|
|
641
641
|
name = gridSchema ?? '';
|
|
642
642
|
} else {
|
|
643
|
-
const { name: innerName, render, ...innerProps } = gridSchema;
|
|
643
|
+
const { name: innerName = '', render, ...innerProps } = gridSchema;
|
|
644
644
|
name = innerName;
|
|
645
645
|
uiProps = innerProps;
|
|
646
646
|
if (!isEmpty(uiProps)) {
|