@luscii-healthtech/web-ui 0.15.5 → 0.15.8

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.
@@ -2320,7 +2320,7 @@ function generateCustomStyles(hasError, isIE11) {
2320
2320
  };
2321
2321
  }
2322
2322
 
2323
- var CustomSelect = /*#__PURE__*/React__default.forwardRef(function (props) {
2323
+ var CustomSelect = /*#__PURE__*/React__default.forwardRef(function (props, ref) {
2324
2324
  var className = props.className,
2325
2325
  styles = props.styles;
2326
2326
  var hasError = (className == null ? void 0 : className.includes("has-error")) || false;
@@ -2328,6 +2328,7 @@ var CustomSelect = /*#__PURE__*/React__default.forwardRef(function (props) {
2328
2328
  var customStyles = generateCustomStyles(hasError, isIE11);
2329
2329
  var mergedStyles = ReactSelect.mergeStyles(customStyles, styles);
2330
2330
  return /*#__PURE__*/React__default.createElement(ReactSelect__default, Object.assign({}, props, {
2331
+ ref: ref,
2331
2332
  className: classNames("customized-select", className),
2332
2333
  styles: mergedStyles
2333
2334
  }));