react-better-html 1.1.205 → 1.1.207

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.mjs CHANGED
@@ -1817,6 +1817,7 @@ Image.profileImage = forwardRef3(function ProfileImage({ size = 40, letters, bac
1817
1817
  width: size,
1818
1818
  height: size,
1819
1819
  backgroundColor: backgroundColor ?? theme2.colors.backgroundSecondary,
1820
+ border: `solid 1px ${theme2.colors.border}`,
1820
1821
  borderRadius: 999,
1821
1822
  alignItems: "center",
1822
1823
  justifyContent: "center",
@@ -5927,7 +5928,7 @@ var DropdownComponent = forwardRef10(function Dropdown({
5927
5928
  labelColor,
5928
5929
  errorText,
5929
5930
  infoText,
5930
- required,
5931
+ required: withMultiselect ? (Array.isArray(value) ? value.length > 0 : value !== void 0) ? false : required : required,
5931
5932
  name,
5932
5933
  disabled,
5933
5934
  readOnly: !withSearch,