@searchstax-inc/searchstudio-ux-react 4.1.0 → 4.1.9

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,18 +2,25 @@
2
2
 
3
3
  All notable changes to the "searchstudio-ux-react" project will be documented in this file.
4
4
 
5
- ## [1.0.1] - 2024-10-08
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.9]
11
6
  ### Bug Fixes
12
- - Tracking calls now use unmodified title of the result
7
+ - accessibility: focus is now being trapped in feedback widget
8
+ - accessibility: more/less buttons have role and changes are announced
9
+ - accessibility: fixed feedback widget roles
10
+ - accessibility: pagination disabled state fixes
13
11
 
14
- ## [1.0.5] - 2024-11-05
12
+ ## [4.1.5]
15
13
  ### Bug Fixes
16
- - fix & and + symbols causing issues in facet values
14
+ - answers endpoint now have same query parameters as emselect
15
+ - accessibility: feedback widget comment section no longer reads characters left after every key press
16
+
17
+ ## [4.1.0]
18
+ ### Bug Fixes
19
+ - stopped making unnecessary calls on blank search page load
20
+ - accessibility: template modified to only read result title for accessibility
21
+ - accessibility: leave feedback button state change is now announced
22
+ - accessibility: focus persistance added for feedback rating
23
+ - added support for react 19
17
24
 
18
25
  ## [2.0.0]
19
26
  ### Features
@@ -22,10 +29,25 @@ All notable changes to the "searchstudio-ux-react" project will be documented in
22
29
  - NVDA facet groups now announce state
23
30
  - NVDA added ability to jump from facets to results section
24
31
 
25
- ## [4.1.0]
32
+ ## [1.0.24]
33
+ ### Features
34
+ - added answer widget
35
+
36
+ ## [1.0.11] - 2024-12-26
26
37
  ### Bug Fixes
27
- - stopped making unnecessary calls on blank search page load
28
- - accessibility: template modified to only read result title for accessibility
29
- - accessibility: leave feedback button state change is now announced
30
- - accessibility: focus persistance added for feedback rating
31
- - added support for react 19
38
+ - fix order of non mapped fields
39
+ - fix styling of grid view for accelerator
40
+
41
+ ## [1.0.10] - 2024-12-05
42
+ ### Bug Fixes
43
+ - fix & and + symbols causing issues in facet values
44
+
45
+ ## [1.0.3] - 2024-10-08
46
+ ### ⚠️ BREAKING CHANGES
47
+ - Result template needs to be updated to print variables as HTML because they now will contain html <em> tags if highlighting is enabled
48
+ ### Features
49
+ - Added support for highlighting controlled via studio UI
50
+ - Results per page are now configured through studio UI
51
+ ### Bug Fixes
52
+ - Tracking calls now use unmodified title of the result
53
+
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 symbols UI will show “Read More” view.
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
 
@@ -1495,6 +1495,7 @@ function facetsTemplateMobile(
1495
1495
  }
1496
1496
  }}
1497
1497
  tabIndex={0}
1498
+ role="button"
1498
1499
  >
1499
1500
  {facet.showingAllFacets && (
1500
1501
  <div className="searchstax-facet-show-less-button searchstax-facet-show-button">
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 symbols UI will show “Read More” view.
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