@rjsf/core 6.1.0 → 6.1.2
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 +2 -2
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +2 -2
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +2 -2
- package/lib/components/Form.d.ts +8 -4
- package/lib/components/Form.d.ts.map +1 -1
- package/lib/components/fields/ObjectField.js +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/Form.tsx +9 -4
- package/src/components/fields/ObjectField.tsx +2 -2
package/dist/core.umd.js
CHANGED
|
@@ -1962,9 +1962,9 @@
|
|
|
1962
1962
|
required: isRequired(schema, name2),
|
|
1963
1963
|
schema: get(schema, [utils.PROPERTIES_KEY, name2], {}),
|
|
1964
1964
|
uiSchema: fieldUiSchema,
|
|
1965
|
-
errorSchema: get(errorSchema, name2),
|
|
1965
|
+
errorSchema: get(errorSchema, [name2]),
|
|
1966
1966
|
fieldPathId: childFieldPathId,
|
|
1967
|
-
formData: get(formData, name2),
|
|
1967
|
+
formData: get(formData, [name2]),
|
|
1968
1968
|
handleKeyRename,
|
|
1969
1969
|
handleRemoveProperty,
|
|
1970
1970
|
addedByAdditionalProperties,
|
package/dist/index.cjs
CHANGED
|
@@ -2090,9 +2090,9 @@ function ObjectField(props) {
|
|
|
2090
2090
|
required: isRequired(schema, name2),
|
|
2091
2091
|
schema: (0, import_get4.default)(schema, [import_utils9.PROPERTIES_KEY, name2], {}),
|
|
2092
2092
|
uiSchema: fieldUiSchema,
|
|
2093
|
-
errorSchema: (0, import_get4.default)(errorSchema, name2),
|
|
2093
|
+
errorSchema: (0, import_get4.default)(errorSchema, [name2]),
|
|
2094
2094
|
fieldPathId: childFieldPathId,
|
|
2095
|
-
formData: (0, import_get4.default)(formData, name2),
|
|
2095
|
+
formData: (0, import_get4.default)(formData, [name2]),
|
|
2096
2096
|
handleKeyRename,
|
|
2097
2097
|
handleRemoveProperty,
|
|
2098
2098
|
addedByAdditionalProperties,
|