ywana-core8 0.0.748 → 0.0.750
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 +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/textfield.js +6 -1
package/dist/index.cjs
CHANGED
@@ -1586,7 +1586,10 @@ var DropDown = function DropDown(props) {
|
|
1586
1586
|
onClick: function onClick() {
|
1587
1587
|
return select(option.value);
|
1588
1588
|
}
|
1589
|
-
}, /*#__PURE__*/React__default["default"].createElement(
|
1589
|
+
}, option.icon ? /*#__PURE__*/React__default["default"].createElement(Icon, {
|
1590
|
+
icon: option.icon,
|
1591
|
+
size: "small"
|
1592
|
+
}) : '', /*#__PURE__*/React__default["default"].createElement(Text, null, option.label));
|
1590
1593
|
});
|
1591
1594
|
return /*#__PURE__*/React__default["default"].createElement("menu", null, /*#__PURE__*/React__default["default"].createElement("ul", null, lis));
|
1592
1595
|
} else {
|