ywana-core8 0.0.939 → 0.0.940

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.
@@ -1493,7 +1493,8 @@ var DropDown = function DropDown(props) {
1493
1493
  editable = _props$editable === void 0 ? false : _props$editable,
1494
1494
  onBlur = props.onBlur,
1495
1495
  _props$position = props.position,
1496
- position = _props$position === void 0 ? "bottom" : _props$position;
1496
+ position = _props$position === void 0 ? "bottom" : _props$position,
1497
+ className = props.className;
1497
1498
  var _useState = useState(false),
1498
1499
  open = _useState[0],
1499
1500
  setOpen = _useState[1];
@@ -1582,7 +1583,7 @@ var DropDown = function DropDown(props) {
1582
1583
  size: "small"
1583
1584
  })) : props.label;
1584
1585
  return /*#__PURE__*/React.createElement("div", {
1585
- className: "dropdown"
1586
+ className: "dropdown " + className
1586
1587
  }, /*#__PURE__*/React.createElement(TextField, _extends({}, props, {
1587
1588
  label: title,
1588
1589
  onClick: onFocus,