@searchstax-inc/searchstudio-ux-js 4.1.64 → 4.1.66
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 +5 -0
- package/README.md +2 -4
- package/README.mustache +1 -1
- package/dist/@searchstax-inc/searchstudio-ux-js.cjs +19 -20
- package/dist/@searchstax-inc/searchstudio-ux-js.iife.js +18 -19
- package/dist/@searchstax-inc/searchstudio-ux-js.mjs +19 -20
- package/dist/templates.js +1 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the "searchstudio-ux-js" project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [4.1.66]
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
- Removed redundant no-results message
|
|
8
|
+
- Changed answers widget button text to read more
|
|
9
|
+
|
|
5
10
|
## [4.1.64]
|
|
6
11
|
### Features
|
|
7
12
|
- added ability to use answers widget for preview
|
package/README.md
CHANGED
|
@@ -141,7 +141,7 @@ searchstax.addAnswerWidget("searchstax-answer-container", {
|
|
|
141
141
|
|
|
142
142
|
**Props**
|
|
143
143
|
|
|
144
|
-
- showMoreAfterWordCount - number(default 100) determining after how many words UI will show “
|
|
144
|
+
- showMoreAfterWordCount - number(default 100) determining after how many words UI will show “Show More” view.
|
|
145
145
|
- feedbackWidget – an optional object that configures thumbs-up and thumbs-down feedback functionality.
|
|
146
146
|
- templates - template override. look at examples below
|
|
147
147
|
|
|
@@ -220,7 +220,7 @@ searchstax.addAnswerWidget("searchstax-answer-container", {
|
|
|
220
220
|
{{#answerLoading}}
|
|
221
221
|
<div class="searchstax-answer-loading"></div>
|
|
222
222
|
{{/answerLoading}}
|
|
223
|
-
<button class="searchstax-answer-load-more-button">
|
|
223
|
+
<button class="searchstax-answer-load-more-button">Show More</button>
|
|
224
224
|
</div>
|
|
225
225
|
{{/showMoreButtonVisible}}
|
|
226
226
|
</div>
|
|
@@ -547,7 +547,6 @@ It receives following props:
|
|
|
547
547
|
</div>
|
|
548
548
|
<ul class="searchstax-no-results-list" data-test-id="searchstax-no-results-list">
|
|
549
549
|
<li>Try searching for search related terms or topics. We offer a wide variety of content to help you get the information you need.</li>
|
|
550
|
-
<li>Lost? Click on the ‘X” in the Search Box to reset your search.</li>
|
|
551
550
|
</ul>
|
|
552
551
|
</div>
|
|
553
552
|
{{/searchExecuted}}
|
|
@@ -647,7 +646,6 @@ It receives following props:
|
|
|
647
646
|
</div>
|
|
648
647
|
<ul class="searchstax-no-results-list" data-test-id="searchstax-no-results-list">
|
|
649
648
|
<li>Try searching for search related terms or topics. We offer a wide variety of content to help you get the information you need.</li>
|
|
650
|
-
<li>Lost? Click on the ‘X” in the Search Box to reset your search.</li>
|
|
651
649
|
</ul>
|
|
652
650
|
</div>
|
|
653
651
|
{{/searchExecuted}}
|
package/README.mustache
CHANGED
|
@@ -141,7 +141,7 @@ searchstax.addAnswerWidget("searchstax-answer-container", {
|
|
|
141
141
|
|
|
142
142
|
**Props**
|
|
143
143
|
|
|
144
|
-
- showMoreAfterWordCount - number(default 100) determining after how many words UI will show “
|
|
144
|
+
- showMoreAfterWordCount - number(default 100) determining after how many words UI will show “Show More” view.
|
|
145
145
|
- feedbackWidget – an optional object that configures thumbs-up and thumbs-down feedback functionality.
|
|
146
146
|
- templates - template override. look at examples below
|
|
147
147
|
|