@shoper/phoenix_design_system 1.17.10-20 → 1.17.10-22
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.
|
@@ -409,7 +409,7 @@ exports.HSearch = class HSearch extends phoenix_light_lit_element.PhoenixLightLi
|
|
|
409
409
|
}
|
|
410
410
|
document.addEventListener('keydown', this._preventScrollingOnSearchContentBrowsing);
|
|
411
411
|
document.addEventListener('focusin', this._resetSearchOnFocusOutside);
|
|
412
|
-
document.body.addEventListener('
|
|
412
|
+
document.body.addEventListener('searchOpenMobileView', this._openMobileView);
|
|
413
413
|
});
|
|
414
414
|
this.addEventListener(search_constants.SEARCH_CUSTOM_EVENT_NAMES.keyup, (ev) => {
|
|
415
415
|
const shouldShowMessage = ev.detail.searchPhrase !== '';
|
|
@@ -405,7 +405,7 @@ let HSearch = class HSearch extends PhoenixLightLitElement {
|
|
|
405
405
|
}
|
|
406
406
|
document.addEventListener('keydown', this._preventScrollingOnSearchContentBrowsing);
|
|
407
407
|
document.addEventListener('focusin', this._resetSearchOnFocusOutside);
|
|
408
|
-
document.body.addEventListener('
|
|
408
|
+
document.body.addEventListener('searchOpenMobileView', this._openMobileView);
|
|
409
409
|
});
|
|
410
410
|
this.addEventListener(SEARCH_CUSTOM_EVENT_NAMES.keyup, (ev) => {
|
|
411
411
|
const shouldShowMessage = ev.detail.searchPhrase !== '';
|
package/package.json
CHANGED