@rjsf/core 5.24.8 → 5.24.9
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/MultiSchemaField.d.ts.map +1 -1
- package/lib/components/fields/MultiSchemaField.js +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -6
- package/src/components/fields/MultiSchemaField.tsx +3 -1
package/dist/core.umd.js
CHANGED
|
@@ -1048,7 +1048,7 @@
|
|
|
1048
1048
|
readonly
|
|
1049
1049
|
}
|
|
1050
1050
|
) }),
|
|
1051
|
-
optionSchema && /* @__PURE__ */ jsxRuntime.jsx(_SchemaField, { ...this.props, schema: optionSchema, uiSchema: optionUiSchema })
|
|
1051
|
+
optionSchema && optionSchema.type !== "null" && /* @__PURE__ */ jsxRuntime.jsx(_SchemaField, { ...this.props, schema: optionSchema, uiSchema: optionUiSchema })
|
|
1052
1052
|
] });
|
|
1053
1053
|
}
|
|
1054
1054
|
};
|
package/dist/index.esm.js
CHANGED
|
@@ -1119,7 +1119,7 @@ var AnyOfField = class extends Component2 {
|
|
|
1119
1119
|
readonly
|
|
1120
1120
|
}
|
|
1121
1121
|
) }),
|
|
1122
|
-
optionSchema && /* @__PURE__ */ jsx3(_SchemaField, { ...this.props, schema: optionSchema, uiSchema: optionUiSchema })
|
|
1122
|
+
optionSchema && optionSchema.type !== "null" && /* @__PURE__ */ jsx3(_SchemaField, { ...this.props, schema: optionSchema, uiSchema: optionUiSchema })
|
|
1123
1123
|
] });
|
|
1124
1124
|
}
|
|
1125
1125
|
};
|