@searchstax-inc/searchstudio-ux-react 4.1.39 → 4.1.47

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
@@ -1,14 +1,36 @@
1
1
  # Change Log
2
2
 
3
3
  All notable changes to the "searchstudio-ux-react" project will be documented in this file.
4
+
5
+ ## [4.1.47]
6
+
7
+ ### Features
8
+
9
+ - added totalPages and currentPage variables to pagination template
10
+ - added sample page for standalone implementation of answer widget on samples repo
11
+
12
+ ## [4.1.46]
13
+
14
+ ### Bug Fixes
15
+
16
+ - accessibility: added ability to tab to result paragraphs
17
+ - accessibility: pagination buttons are now focusable when disabled and have aria-disabled
18
+ - accessibility: fixed buttons in some cases being hidden behind results
19
+ - accessibility: focus for feedback widget is not trapped within modal correctly
20
+ - fixed: interaction between different types of facets had been resolved to update facets accordingly
21
+
4
22
  ## [4.1.39]
23
+
5
24
  ### Bug Fixes
25
+
6
26
  - added minification for hosted library files
7
27
  - fixed related searches tracking for statistics displaying
8
28
  - fixed pagination state not being retained
9
29
 
10
30
  ## [4.1.33]
31
+
11
32
  ### Bug Fixes
33
+
12
34
  - samples repository: fixed language passing
13
35
  - accessibility: added searchstax to focus queue on leave feedback widget
14
36
  - accessibility: fixed feedback widget not reflowing properly
@@ -19,23 +41,31 @@ All notable changes to the "searchstudio-ux-react" project will be documented in
19
41
  - accessibility: added checkmark animation of successful feedback submission
20
42
 
21
43
  ## [4.1.14]
44
+
22
45
  ### Bug Fixes
46
+
23
47
  - fixed double click being needed on feedback submit
24
48
 
25
49
  ## [4.1.9]
50
+
26
51
  ### Bug Fixes
52
+
27
53
  - accessibility: focus is now being trapped in feedback widget
28
54
  - accessibility: more/less buttons have role and changes are announced
29
55
  - accessibility: fixed feedback widget roles
30
56
  - accessibility: pagination disabled state fixes
31
57
 
32
58
  ## [4.1.5]
59
+
33
60
  ### Bug Fixes
61
+
34
62
  - answers endpoint now have same query parameters as emselect
35
63
  - accessibility: feedback widget comment section no longer reads characters left after every key press
36
64
 
37
65
  ## [4.1.0]
66
+
38
67
  ### Bug Fixes
68
+
39
69
  - stopped making unnecessary calls on blank search page load
40
70
  - accessibility: template modified to only read result title for accessibility
41
71
  - accessibility: leave feedback button state change is now announced
@@ -43,31 +73,46 @@ All notable changes to the "searchstudio-ux-react" project will be documented in
43
73
  - added support for react 19
44
74
 
45
75
  ## [2.0.0]
76
+
46
77
  ### Features
78
+
47
79
  - Readme updated to give more information on how widgets work
80
+
48
81
  ### Bug Fixes
82
+
49
83
  - NVDA facet groups now announce state
50
84
  - NVDA added ability to jump from facets to results section
51
85
 
52
86
  ## [1.0.24]
87
+
53
88
  ### Features
89
+
54
90
  - added answer widget
55
91
 
56
92
  ## [1.0.11] - 2024-12-26
93
+
57
94
  ### Bug Fixes
95
+
58
96
  - fix order of non mapped fields
59
97
  - fix styling of grid view for accelerator
60
98
 
61
99
  ## [1.0.10] - 2024-12-05
100
+
62
101
  ### Bug Fixes
102
+
63
103
  - fix & and + symbols causing issues in facet values
64
104
 
65
105
  ## [1.0.3] - 2024-10-08
106
+
66
107
  ### ⚠️ BREAKING CHANGES
108
+
67
109
  - Result template needs to be updated to print variables as HTML because they now will contain html <em> tags if highlighting is enabled
110
+
68
111
  ### Features
112
+
69
113
  - Added support for highlighting controlled via studio UI
70
114
  - Results per page are now configured through studio UI
115
+
71
116
  ### Bug Fixes
72
- - Tracking calls now use unmodified title of the result
73
117
 
118
+ - Tracking calls now use unmodified title of the result
package/README.md CHANGED
@@ -919,6 +919,7 @@ function resultsTemplate(
919
919
  {searchResult.paths && (
920
920
  <p
921
921
  className="searchstax-search-result-common"
922
+ tabIndex={0}
922
923
  dangerouslySetInnerHTML={{ __html: searchResult.paths }}
923
924
  ></p>
924
925
  )}
@@ -926,6 +927,7 @@ function resultsTemplate(
926
927
  {searchResult.description && (
927
928
  <p
928
929
  className="searchstax-search-result-description searchstax-search-result-common"
930
+ tabIndex={0}
929
931
  dangerouslySetInnerHTML={{
930
932
  __html: searchResult.description,
931
933
  }}
@@ -951,6 +953,7 @@ function resultsTemplate(
951
953
  {!unmappedField.isImage && (
952
954
  <div>
953
955
  <p
956
+ tabIndex={0}
954
957
  className="searchstax-search-result-common"
955
958
  dangerouslySetInnerHTML={{
956
959
  __html: unmappedField.value,