@zgfe/business-lib 1.0.21-cdp.21 → 1.0.21-cdp.22

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.
@@ -28,7 +28,8 @@ var SelectOverlay = function SelectOverlay(props) {
28
28
  disableItemList = props.disableItemList,
29
29
  dropdownExtra = props.dropdownExtra,
30
30
  loading = props.loading,
31
- customLabel = props.customLabel;
31
+ customLabel = props.customLabel,
32
+ overlayClassName = props.overlayClassName;
32
33
 
33
34
  var _useState = useState(),
34
35
  _useState2 = _slicedToArray(_useState, 2),
@@ -198,7 +199,7 @@ var SelectOverlay = function SelectOverlay(props) {
198
199
  }
199
200
 
200
201
  return /*#__PURE__*/React.createElement("div", {
201
- className: "".concat(classPrefix, "-overlay")
202
+ className: "".concat(classPrefix, "-overlay ").concat(overlayClassName)
202
203
  }, props.enableSearch && !props.multiple && /*#__PURE__*/React.createElement(BizSearchInput, {
203
204
  className: "".concat(classPrefix, "-search"),
204
205
  onChange: onSearch
@@ -28,6 +28,7 @@ export declare namespace BizSelectTypes {
28
28
  enableCreate?: boolean;
29
29
  popupContainer?: boolean;
30
30
  overlayWidth?: number;
31
+ overlayClassName?: string;
31
32
  labelField?: string;
32
33
  keyField?: string;
33
34
  disableItemList?: Option[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zgfe/business-lib",
3
- "version": "1.0.21-cdp.21",
3
+ "version": "1.0.21-cdp.22",
4
4
  "scripts": {
5
5
  "start": "dumi dev",
6
6
  "docs:build": "dumi build",
@@ -58,5 +58,5 @@
58
58
  "react": "^16.12.0 || ^17.0.0",
59
59
  "yorkie": "^2.0.0"
60
60
  },
61
- "gitHead": "2807db872ccdfe515814d006494fcef325b4c846"
61
+ "gitHead": "ee7c684ed385f9db0893380aca07d497279ca537"
62
62
  }