@rjsf/core 5.24.1 → 5.24.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 +3 -1
- package/dist/index.esm.js +3 -1
- package/dist/index.esm.js.map +2 -2
- package/dist/index.js +3 -1
- package/dist/index.js.map +2 -2
- package/lib/components/fields/MultiSchemaField.js +2 -2
- package/lib/components/fields/MultiSchemaField.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -6
- package/src/components/fields/MultiSchemaField.tsx +2 -0
package/dist/core.umd.js
CHANGED
|
@@ -969,6 +969,7 @@
|
|
|
969
969
|
formContext,
|
|
970
970
|
onBlur,
|
|
971
971
|
onFocus,
|
|
972
|
+
readonly,
|
|
972
973
|
registry,
|
|
973
974
|
schema,
|
|
974
975
|
uiSchema
|
|
@@ -1043,7 +1044,8 @@
|
|
|
1043
1044
|
autocomplete,
|
|
1044
1045
|
autofocus,
|
|
1045
1046
|
label: title ?? name,
|
|
1046
|
-
hideLabel: !displayLabel
|
|
1047
|
+
hideLabel: !displayLabel,
|
|
1048
|
+
readonly
|
|
1047
1049
|
}
|
|
1048
1050
|
) }),
|
|
1049
1051
|
optionSchema && /* @__PURE__ */ jsxRuntime.jsx(_SchemaField, { ...this.props, schema: optionSchema, uiSchema: optionUiSchema })
|
package/dist/index.esm.js
CHANGED
|
@@ -1038,6 +1038,7 @@ var AnyOfField = class extends Component2 {
|
|
|
1038
1038
|
formContext,
|
|
1039
1039
|
onBlur,
|
|
1040
1040
|
onFocus,
|
|
1041
|
+
readonly,
|
|
1041
1042
|
registry,
|
|
1042
1043
|
schema,
|
|
1043
1044
|
uiSchema
|
|
@@ -1112,7 +1113,8 @@ var AnyOfField = class extends Component2 {
|
|
|
1112
1113
|
autocomplete,
|
|
1113
1114
|
autofocus,
|
|
1114
1115
|
label: title ?? name,
|
|
1115
|
-
hideLabel: !displayLabel
|
|
1116
|
+
hideLabel: !displayLabel,
|
|
1117
|
+
readonly
|
|
1116
1118
|
}
|
|
1117
1119
|
) }),
|
|
1118
1120
|
optionSchema && /* @__PURE__ */ jsx3(_SchemaField, { ...this.props, schema: optionSchema, uiSchema: optionUiSchema })
|