@evergis/uilib-gl 1.0.40 → 1.0.41
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/uilib-gl.esm.js +3 -4
- package/dist/uilib-gl.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/uilib-gl.esm.js
CHANGED
|
@@ -18022,13 +18022,12 @@ var AutoComplete = /*#__PURE__*/function (_Component) {
|
|
|
18022
18022
|
onSuggestionSelected: this.onSuggestionSelected,
|
|
18023
18023
|
getSuggestionValue: getSuggestionValue,
|
|
18024
18024
|
renderSuggestion: function renderSuggestion(suggestion, _ref3) {
|
|
18025
|
-
var
|
|
18026
|
-
|
|
18027
|
-
var query = _ref3.query;
|
|
18025
|
+
var query = _ref3.query,
|
|
18026
|
+
isHighlighted = _ref3.isHighlighted;
|
|
18028
18027
|
return React__default.createElement(Option$1, {
|
|
18029
18028
|
suggestion: suggestion,
|
|
18030
18029
|
query: query,
|
|
18031
|
-
isHighlighted:
|
|
18030
|
+
isHighlighted: isHighlighted,
|
|
18032
18031
|
multiSelect: multiSelect,
|
|
18033
18032
|
optionStyle: optionStyle
|
|
18034
18033
|
});
|