@searchstax-inc/searchstudio-ux-js 4.1.49 → 4.1.55
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the "searchstudio-ux-js" project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
|
|
6
|
+
## [4.1.55]
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
- fixed related searches not being identified as links
|
|
9
|
+
- changed result card to read whole content on focus
|
|
10
|
+
|
|
11
|
+
## [4.1.54]
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
- fixed various console errors in headles libraries
|
|
14
|
+
- fixed autosuggest flickering in certain scenarios
|
|
15
|
+
|
|
5
16
|
## [4.1.49]
|
|
6
17
|
### Bug Fixes
|
|
7
18
|
- fix OR facet logic
|
package/README.md
CHANGED
|
@@ -481,7 +481,7 @@ It receives following props:
|
|
|
481
481
|
},
|
|
482
482
|
searchResultTemplate: {
|
|
483
483
|
template: `
|
|
484
|
-
<a href="{{url}}" data-searchstax-unique-result-id="{{uniqueId}}" data-test-id="searchstax-result-item-link" class="searchstax-result-item-link searchstax-result-item-link-wrapping" tabindex="0"
|
|
484
|
+
<a href="{{url}}" data-searchstax-unique-result-id="{{uniqueId}}" data-test-id="searchstax-result-item-link" class="searchstax-result-item-link searchstax-result-item-link-wrapping" tabindex="0">
|
|
485
485
|
<div class="searchstax-search-result searchstax-search-result-wrapping {{#thumbnail}} has-thumbnail {{/thumbnail}}">
|
|
486
486
|
{{#promoted}}
|
|
487
487
|
<div class="searchstax-search-result-promoted" data-test-id="searchstax-search-result-promoted"></div>
|
|
@@ -501,13 +501,13 @@ It receives following props:
|
|
|
501
501
|
</div>
|
|
502
502
|
|
|
503
503
|
{{#paths}}
|
|
504
|
-
<p class="searchstax-search-result-common"
|
|
504
|
+
<p class="searchstax-search-result-common" data-test-id="searchstax-search-result-common">
|
|
505
505
|
{{{paths}}}
|
|
506
506
|
</p>
|
|
507
507
|
{{/paths}}
|
|
508
508
|
|
|
509
509
|
{{#description}}
|
|
510
|
-
<p
|
|
510
|
+
<p class="searchstax-search-result-description searchstax-search-result-common" data-test-id="searchstax-search-result-description">
|
|
511
511
|
{{{description}}}
|
|
512
512
|
</p>
|
|
513
513
|
{{/description}}
|
|
@@ -519,13 +519,13 @@ It receives following props:
|
|
|
519
519
|
</div>
|
|
520
520
|
{{/isImage}}
|
|
521
521
|
{{^isImage}}
|
|
522
|
-
<p
|
|
522
|
+
<p class="searchstax-search-result-common">
|
|
523
523
|
{{{value}}}
|
|
524
524
|
</p>
|
|
525
525
|
{{/isImage}}
|
|
526
526
|
{{/unmappedFields}}
|
|
527
527
|
{{#distance}}
|
|
528
|
-
<p
|
|
528
|
+
<p class="searchstax-search-result-distance searchstax-search-result-common" data-test-id="searchstax-search-result-distance">
|
|
529
529
|
{{distance}} {{unit}}
|
|
530
530
|
</p>
|
|
531
531
|
{{/distance}}
|
|
@@ -581,7 +581,7 @@ It receives following props:
|
|
|
581
581
|
},
|
|
582
582
|
searchResultTemplate: {
|
|
583
583
|
template: `
|
|
584
|
-
<a href="{{url}}" data-searchstax-unique-result-id="{{uniqueId}}" data-test-id="searchstax-result-item-link" class="searchstax-result-item-link searchstax-result-item-link-wrapping" tabindex="0"
|
|
584
|
+
<a href="{{url}}" data-searchstax-unique-result-id="{{uniqueId}}" data-test-id="searchstax-result-item-link" class="searchstax-result-item-link searchstax-result-item-link-wrapping" tabindex="0">
|
|
585
585
|
<div class="searchstax-search-result searchstax-search-result-wrapping {{#thumbnail}} has-thumbnail {{/thumbnail}}">
|
|
586
586
|
{{#promoted}}
|
|
587
587
|
<div class="searchstax-search-result-promoted" data-test-id="searchstax-search-result-promoted"></div>
|
|
@@ -601,13 +601,13 @@ It receives following props:
|
|
|
601
601
|
</div>
|
|
602
602
|
|
|
603
603
|
{{#paths}}
|
|
604
|
-
<p class="searchstax-search-result-common"
|
|
604
|
+
<p class="searchstax-search-result-common" data-test-id="searchstax-search-result-common">
|
|
605
605
|
{{{paths}}}
|
|
606
606
|
</p>
|
|
607
607
|
{{/paths}}
|
|
608
608
|
|
|
609
609
|
{{#description}}
|
|
610
|
-
<p
|
|
610
|
+
<p class="searchstax-search-result-description searchstax-search-result-common" data-test-id="searchstax-search-result-description">
|
|
611
611
|
{{{description}}}
|
|
612
612
|
</p>
|
|
613
613
|
{{/description}}
|
|
@@ -619,13 +619,13 @@ It receives following props:
|
|
|
619
619
|
</div>
|
|
620
620
|
{{/isImage}}
|
|
621
621
|
{{^isImage}}
|
|
622
|
-
<p
|
|
622
|
+
<p class="searchstax-search-result-common">
|
|
623
623
|
{{{value}}}
|
|
624
624
|
</p>
|
|
625
625
|
{{/isImage}}
|
|
626
626
|
{{/unmappedFields}}
|
|
627
627
|
{{#distance}}
|
|
628
|
-
<p
|
|
628
|
+
<p class="searchstax-search-result-distance searchstax-search-result-common" data-test-id="searchstax-search-result-distance">
|
|
629
629
|
{{distance}} {{unit}}
|
|
630
630
|
</p>
|
|
631
631
|
{{/distance}}
|
|
@@ -1095,7 +1095,7 @@ searchstax.addRelatedSearchesWidget("searchstax-related-searches-container", {
|
|
|
1095
1095
|
},
|
|
1096
1096
|
relatedSearch: {
|
|
1097
1097
|
template: `
|
|
1098
|
-
<span class="searchstax-related-search searchstax-related-search-item" data-test-id="searchstax-related-search-item" aria-label="Related search: {{related_search}}" tabindex="0">
|
|
1098
|
+
<span role="link" class="searchstax-related-search searchstax-related-search-item" data-test-id="searchstax-related-search-item" aria-label="Related search: {{related_search}}" tabindex="0">
|
|
1099
1099
|
{{ related_search }}{{^last}}<span>,</span>{{/last}}
|
|
1100
1100
|
</span>
|
|
1101
1101
|
`,
|
|
@@ -1211,6 +1211,7 @@ searchstax.addSearchSortingWidget("search-sorting-container", {
|
|
|
1211
1211
|
template: `
|
|
1212
1212
|
{{#searchExecuted}}
|
|
1213
1213
|
{{#hasResultsOrExternalPromotions}}
|
|
1214
|
+
{{#sortOptions.length}}
|
|
1214
1215
|
<div class="searchstax-sorting-container" data-test-id="searchstax-sorting-container">
|
|
1215
1216
|
<label class="searchstax-sorting-label" data-test-id="searchstax-sorting-label" for="searchstax-search-order-select">Sort By</label>
|
|
1216
1217
|
<select id="searchstax-search-order-select" class="searchstax-search-order-select" data-test-id="searchstax-search-order-select" >
|
|
@@ -1221,6 +1222,7 @@ searchstax.addSearchSortingWidget("search-sorting-container", {
|
|
|
1221
1222
|
{{/sortOptions}}
|
|
1222
1223
|
</select>
|
|
1223
1224
|
</div>
|
|
1225
|
+
{{/sortOptions.length}}
|
|
1224
1226
|
{{/hasResultsOrExternalPromotions}}
|
|
1225
1227
|
{{/searchExecuted}}
|
|
1226
1228
|
`,
|