@rjsf/utils 6.0.0-beta.18 → 6.0.0-beta.19
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/index.cjs +4 -2
- package/dist/index.cjs.map +2 -2
- package/dist/utils.esm.js +4 -2
- package/dist/utils.esm.js.map +2 -2
- package/dist/utils.umd.js +4 -2
- package/lib/schema/retrieveSchema.js +2 -2
- package/lib/schema/retrieveSchema.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/schema/retrieveSchema.ts +2 -0
package/package.json
CHANGED
|
@@ -241,6 +241,7 @@ export function resolveSchema<T = any, S extends StrictRJSFSchema = RJSFSchema,
|
|
|
241
241
|
expandAllBranches,
|
|
242
242
|
recurseList,
|
|
243
243
|
formData,
|
|
244
|
+
experimental_customMergeAllOf,
|
|
244
245
|
);
|
|
245
246
|
if (updatedSchemas.length > 1 || updatedSchemas[0] !== schema) {
|
|
246
247
|
// return the updatedSchemas array if it has either multiple schemas within it
|
|
@@ -255,6 +256,7 @@ export function resolveSchema<T = any, S extends StrictRJSFSchema = RJSFSchema,
|
|
|
255
256
|
expandAllBranches,
|
|
256
257
|
recurseList,
|
|
257
258
|
formData,
|
|
259
|
+
experimental_customMergeAllOf,
|
|
258
260
|
);
|
|
259
261
|
return resolvedSchemas.flatMap((s) => {
|
|
260
262
|
return retrieveSchemaInternal<T, S, F>(
|