@rjsf/core 5.13.5 → 5.13.6
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/StringField.js +2 -2
- package/lib/components/fields/StringField.js.map +1 -1
- package/package.json +5 -5
- package/src/components/fields/StringField.tsx +2 -0
package/dist/index.js
CHANGED
|
@@ -1668,7 +1668,8 @@ function StringField(props) {
|
|
|
1668
1668
|
onBlur,
|
|
1669
1669
|
onFocus,
|
|
1670
1670
|
registry,
|
|
1671
|
-
rawErrors
|
|
1671
|
+
rawErrors,
|
|
1672
|
+
hideError
|
|
1672
1673
|
} = props;
|
|
1673
1674
|
const { title, format } = schema;
|
|
1674
1675
|
const { widgets: widgets2, formContext, schemaUtils, globalUiOptions } = registry;
|
|
@@ -1691,6 +1692,7 @@ function StringField(props) {
|
|
|
1691
1692
|
name,
|
|
1692
1693
|
label,
|
|
1693
1694
|
hideLabel: !displayLabel,
|
|
1695
|
+
hideError,
|
|
1694
1696
|
value: formData,
|
|
1695
1697
|
onChange,
|
|
1696
1698
|
onBlur,
|