arengibook 2.4.688 → 2.4.689
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.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -36632,7 +36632,7 @@ var Dropdown = function Dropdown(props) {
|
|
|
36632
36632
|
fontSize: '14px'
|
|
36633
36633
|
}, valueStyle)
|
|
36634
36634
|
};
|
|
36635
|
-
return /*#__PURE__*/React__default.createElement("div", {
|
|
36635
|
+
return imgUrl ? /*#__PURE__*/React__default.createElement("div", {
|
|
36636
36636
|
style: _style2
|
|
36637
36637
|
}, imgUrl && /*#__PURE__*/React__default.createElement("img", {
|
|
36638
36638
|
src: imgUrl,
|
|
@@ -36642,10 +36642,10 @@ var Dropdown = function Dropdown(props) {
|
|
|
36642
36642
|
height: '18px',
|
|
36643
36643
|
objectFit: 'contain'
|
|
36644
36644
|
}
|
|
36645
|
-
}), /*#__PURE__*/React__default.createElement("span", {
|
|
36645
|
+
}), /*#__PURE__*/React__default.createElement("span", null, option === null || option === void 0 ? void 0 : option[optionLabel])) : /*#__PURE__*/React__default.createElement("span", {
|
|
36646
36646
|
className: attrs.className,
|
|
36647
36647
|
style: _objectSpread2(_objectSpread2({}, attrs.style), optionStyle)
|
|
36648
|
-
}, (option === null || option === void 0 ? void 0 : option[optionLabel]) || placeholder)
|
|
36648
|
+
}, (option === null || option === void 0 ? void 0 : option[optionLabel]) || placeholder);
|
|
36649
36649
|
}
|
|
36650
36650
|
};
|
|
36651
36651
|
var handleFilter = function handleFilter(event) {
|