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.modern.js
CHANGED
@@ -1578,7 +1578,10 @@ var DropDown = function DropDown(props) {
|
|
1578
1578
|
onClick: function onClick() {
|
1579
1579
|
return select(option.value);
|
1580
1580
|
}
|
1581
|
-
}, /*#__PURE__*/React.createElement(
|
1581
|
+
}, option.icon ? /*#__PURE__*/React.createElement(Icon, {
|
1582
|
+
icon: option.icon,
|
1583
|
+
size: "small"
|
1584
|
+
}) : '', /*#__PURE__*/React.createElement(Text, null, option.label));
|
1582
1585
|
});
|
1583
1586
|
return /*#__PURE__*/React.createElement("menu", null, /*#__PURE__*/React.createElement("ul", null, lis));
|
1584
1587
|
} else {
|