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.
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +3 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/textfield.js +2 -2
package/dist/index.cjs
CHANGED
@@ -1502,7 +1502,8 @@ var DropDown = function DropDown(props) {
|
|
1502
1502
|
editable = _props$editable === void 0 ? false : _props$editable,
|
1503
1503
|
onBlur = props.onBlur,
|
1504
1504
|
_props$position = props.position,
|
1505
|
-
position = _props$position === void 0 ? "bottom" : _props$position
|
1505
|
+
position = _props$position === void 0 ? "bottom" : _props$position,
|
1506
|
+
className = props.className;
|
1506
1507
|
var _useState = React.useState(false),
|
1507
1508
|
open = _useState[0],
|
1508
1509
|
setOpen = _useState[1];
|
@@ -1591,7 +1592,7 @@ var DropDown = function DropDown(props) {
|
|
1591
1592
|
size: "small"
|
1592
1593
|
})) : props.label;
|
1593
1594
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
1594
|
-
className: "dropdown"
|
1595
|
+
className: "dropdown " + className
|
1595
1596
|
}, /*#__PURE__*/React__default["default"].createElement(TextField, _extends({}, props, {
|
1596
1597
|
label: title,
|
1597
1598
|
onClick: onFocus,
|