@rjsf/core 5.13.4 → 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 CHANGED
@@ -774,6 +774,7 @@
774
774
  required,
775
775
  disabled,
776
776
  readonly,
777
+ hideError,
777
778
  autofocus,
778
779
  onChange,
779
780
  onFocus,
@@ -846,6 +847,7 @@
846
847
  required,
847
848
  disabled,
848
849
  readonly,
850
+ hideError,
849
851
  registry,
850
852
  formContext,
851
853
  autofocus,
@@ -1574,7 +1576,8 @@
1574
1576
  onBlur,
1575
1577
  onFocus,
1576
1578
  registry,
1577
- rawErrors
1579
+ rawErrors,
1580
+ hideError
1578
1581
  } = props;
1579
1582
  const { title, format } = schema;
1580
1583
  const { widgets: widgets2, formContext, schemaUtils, globalUiOptions } = registry;
@@ -1597,6 +1600,7 @@
1597
1600
  name,
1598
1601
  label,
1599
1602
  hideLabel: !displayLabel,
1603
+ hideError,
1600
1604
  value: formData,
1601
1605
  onChange,
1602
1606
  onBlur,
package/dist/index.esm.js CHANGED
@@ -822,6 +822,7 @@ function BooleanField(props) {
822
822
  required,
823
823
  disabled,
824
824
  readonly,
825
+ hideError,
825
826
  autofocus,
826
827
  onChange,
827
828
  onFocus,
@@ -894,6 +895,7 @@ function BooleanField(props) {
894
895
  required,
895
896
  disabled,
896
897
  readonly,
898
+ hideError,
897
899
  registry,
898
900
  formContext,
899
901
  autofocus,
@@ -1692,7 +1694,8 @@ function StringField(props) {
1692
1694
  onBlur,
1693
1695
  onFocus,
1694
1696
  registry,
1695
- rawErrors
1697
+ rawErrors,
1698
+ hideError
1696
1699
  } = props;
1697
1700
  const { title, format } = schema;
1698
1701
  const { widgets: widgets2, formContext, schemaUtils, globalUiOptions } = registry;
@@ -1715,6 +1718,7 @@ function StringField(props) {
1715
1718
  name,
1716
1719
  label,
1717
1720
  hideLabel: !displayLabel,
1721
+ hideError,
1718
1722
  value: formData,
1719
1723
  onChange,
1720
1724
  onBlur,