@searchstax-inc/searchstudio-ux-react 4.1.0 → 4.1.5
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 +30 -15
- package/README.md +1 -1
- package/README.mustache +1 -1
- package/dist/@searchstax-inc/searchstudio-ux-react.cjs +14 -14
- package/dist/@searchstax-inc/searchstudio-ux-react.iife.js +9 -9
- package/dist/@searchstax-inc/searchstudio-ux-react.mjs +126 -119
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,18 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the "searchstudio-ux-react" project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
## [1.
|
|
6
|
-
### ⚠️ BREAKING CHANGES
|
|
7
|
-
- Result template needs to be updated to print variables as HTML because they now will contain html <em> tags if highlighting is enabled
|
|
8
|
-
### Features
|
|
9
|
-
- Added support for highlighting controlled via studio UI
|
|
10
|
-
- Results per page are now configured through studio UI
|
|
5
|
+
## [4.1.5]
|
|
11
6
|
### Bug Fixes
|
|
12
|
-
-
|
|
7
|
+
- answers endpoint now have same query parameters as emselect
|
|
8
|
+
- accessibility: feedback widget comment section no longer reads characters left after every key press
|
|
13
9
|
|
|
14
|
-
## [1.0
|
|
10
|
+
## [4.1.0]
|
|
15
11
|
### Bug Fixes
|
|
16
|
-
-
|
|
12
|
+
- stopped making unnecessary calls on blank search page load
|
|
13
|
+
- accessibility: template modified to only read result title for accessibility
|
|
14
|
+
- accessibility: leave feedback button state change is now announced
|
|
15
|
+
- accessibility: focus persistance added for feedback rating
|
|
16
|
+
- added support for react 19
|
|
17
17
|
|
|
18
18
|
## [2.0.0]
|
|
19
19
|
### Features
|
|
@@ -22,10 +22,25 @@ All notable changes to the "searchstudio-ux-react" project will be documented in
|
|
|
22
22
|
- NVDA facet groups now announce state
|
|
23
23
|
- NVDA added ability to jump from facets to results section
|
|
24
24
|
|
|
25
|
-
## [
|
|
25
|
+
## [1.0.24]
|
|
26
|
+
### Features
|
|
27
|
+
- added answer widget
|
|
28
|
+
|
|
29
|
+
## [1.0.11] - 2024-12-26
|
|
26
30
|
### Bug Fixes
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
31
|
+
- fix order of non mapped fields
|
|
32
|
+
- fix styling of grid view for accelerator
|
|
33
|
+
|
|
34
|
+
## [1.0.10] - 2024-12-05
|
|
35
|
+
### Bug Fixes
|
|
36
|
+
- fix & and + symbols causing issues in facet values
|
|
37
|
+
|
|
38
|
+
## [1.0.3] - 2024-10-08
|
|
39
|
+
### ⚠️ BREAKING CHANGES
|
|
40
|
+
- Result template needs to be updated to print variables as HTML because they now will contain html <em> tags if highlighting is enabled
|
|
41
|
+
### Features
|
|
42
|
+
- Added support for highlighting controlled via studio UI
|
|
43
|
+
- Results per page are now configured through studio UI
|
|
44
|
+
### Bug Fixes
|
|
45
|
+
- Tracking calls now use unmodified title of the result
|
|
46
|
+
|
package/README.md
CHANGED
|
@@ -122,7 +122,7 @@ The SearchstaxAnswerWidget component provides a React and Next.js AI answer widg
|
|
|
122
122
|
|
|
123
123
|
**Props**
|
|
124
124
|
|
|
125
|
-
- showMoreAfterWordCount - number(default 100) determining after how many
|
|
125
|
+
- showMoreAfterWordCount - number(default 100) determining after how many words UI will show “Read More” view.
|
|
126
126
|
- feedbackWidget – an optional object that configures thumbs-up and thumbs-down feedback functionality.
|
|
127
127
|
- searchAnswerTemplate - template override for answers widget
|
|
128
128
|
|
package/README.mustache
CHANGED
|
@@ -122,7 +122,7 @@ The SearchstaxAnswerWidget component provides a React and Next.js AI answer widg
|
|
|
122
122
|
|
|
123
123
|
**Props**
|
|
124
124
|
|
|
125
|
-
- showMoreAfterWordCount - number(default 100) determining after how many
|
|
125
|
+
- showMoreAfterWordCount - number(default 100) determining after how many words UI will show “Read More” view.
|
|
126
126
|
- feedbackWidget – an optional object that configures thumbs-up and thumbs-down feedback functionality.
|
|
127
127
|
- searchAnswerTemplate - template override for answers widget
|
|
128
128
|
|