x-ui-design 0.6.85 → 0.6.86

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.esm.js CHANGED
@@ -3802,7 +3802,11 @@ const Select = ({
3802
3802
  };
3803
3803
  const selectedOption = useMemo(() => {
3804
3804
  const option = extractedOptions.find(e => e.value === selected || e.label === selected || e.children === selected) || selected;
3805
- return /*#__PURE__*/React.createElement("div", null, typeof option === 'string' ? option : option?.children || option?.label || option?.value || null);
3805
+ return /*#__PURE__*/React.createElement("div", {
3806
+ style: {
3807
+ display: 'contents'
3808
+ }
3809
+ }, typeof option === 'string' ? option : option?.children || option?.label || option?.value || null);
3806
3810
  }, [extractedOptions, selected]) || selected || null;
3807
3811
  const hasMaxTagCount = hasMode && (typeof maxTagCount === 'number' || maxTagCount === 'responsive');
3808
3812
  const container = tagContainerRef.current;