x-ui-design 0.6.78 → 0.6.80

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
@@ -3794,7 +3794,12 @@ const Select = ({
3794
3794
  };
3795
3795
  const selectedOption = useMemo(() => {
3796
3796
  const option = extractedOptions.find(e => e.value === selected || e.label === selected || e.children === selected) || selected;
3797
- return /*#__PURE__*/React.createElement("div", null, option?.children || option?.label || option?.value || null);
3797
+ console.info(option);
3798
+ return /*#__PURE__*/React.createElement("div", {
3799
+ dangerouslySetInnerHTML: {
3800
+ __html: option?.children || option?.label || option?.value || null
3801
+ }
3802
+ });
3798
3803
  }, [extractedOptions, selected]) || selected || null;
3799
3804
  const hasMaxTagCount = hasMode && (typeof maxTagCount === 'number' || maxTagCount === 'responsive');
3800
3805
  const container = tagContainerRef.current;