x-ui-design 0.3.17 → 0.3.18

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
@@ -2979,7 +2979,6 @@ const SelectComponent = /*#__PURE__*/forwardRef(({
2979
2979
  const asMultiple = mode === 'multiple';
2980
2980
  const hasMode = asTag || asMultiple;
2981
2981
  const initialValue = useMemo(() => value || defaultValue || '', [value, defaultValue]);
2982
- console.log(initialValue);
2983
2982
  const checkModeInitialValue = useMemo(() => (!Array.isArray(initialValue) ? [initialValue] : initialValue).filter(e => e), [initialValue]);
2984
2983
  const [isHover, setIsHover] = useState(false);
2985
2984
  const selectRef = useRef(null);