@sledge-app/react-instant-search 0.0.20 → 0.0.21
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/components/SearchIconWidget/SearchIconWidget.d.ts.map +1 -1
- package/dist/sledge-react-instant-search.cjs +1 -1
- package/dist/sledge-react-instant-search.cjs.map +1 -1
- package/dist/sledge-react-instant-search.js +3 -0
- package/dist/sledge-react-instant-search.js.map +1 -1
- package/package.json +1 -1
|
@@ -2205,13 +2205,16 @@ const SearchIconWidget = (props) => {
|
|
|
2205
2205
|
let suggestionKeywordListsComponent = null;
|
|
2206
2206
|
let otherIndexListsComponent = null;
|
|
2207
2207
|
React__default.Children.map(children, (child) => {
|
|
2208
|
+
console.log(child);
|
|
2208
2209
|
if (React__default.isValidElement(child) && isFunction(child.type)) {
|
|
2209
2210
|
const { component } = (child == null ? void 0 : child.props) || {};
|
|
2210
2211
|
switch (child.type.name) {
|
|
2211
2212
|
case SEPARATE_COMPONENT_DISPLAY_NAME.SUGGESTION_KEYWORD_LISTS:
|
|
2213
|
+
console.log("suggestionKeywordListsComponent", component);
|
|
2212
2214
|
suggestionKeywordListsComponent = component;
|
|
2213
2215
|
break;
|
|
2214
2216
|
case SEPARATE_COMPONENT_DISPLAY_NAME.OTHER_INDEX_LISTS:
|
|
2217
|
+
console.log("otherIndexListsComponent", component);
|
|
2215
2218
|
otherIndexListsComponent = component;
|
|
2216
2219
|
break;
|
|
2217
2220
|
}
|