x-ui-design 0.4.13 → 0.4.14

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.
@@ -613,7 +613,7 @@ const SelectComponent = forwardRef<HTMLDivElement, SelectProps>(
613
613
  return dropdownRender ? dropdownRender(options) : options;
614
614
  })();
615
615
 
616
- const dropdownContent = !loading && isOpen && (
616
+ const dropdownContent = !loading && open && isOpen && (
617
617
  <div
618
618
  className={clsx([
619
619
  `${prefixCls}-dropdown`,
@@ -638,7 +638,7 @@ const SelectComponent = forwardRef<HTMLDivElement, SelectProps>(
638
638
  />
639
639
  )}
640
640
 
641
- {!loading && open && (
641
+ {!loading && (
642
642
  <div
643
643
  className={`${prefixCls}-options`}
644
644
  style={{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "x-ui-design",
3
- "version": "0.4.13",
3
+ "version": "0.4.14",
4
4
  "license": "ISC",
5
5
  "author": "Gabriel Boyajyan",
6
6
  "main": "dist/index.js",