@searchstax-inc/searchstudio-ux-react 4.1.39 → 4.1.46
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,6 +1,14 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
3
|
All notable changes to the "searchstudio-ux-react" project will be documented in this file.
|
|
4
|
+
## [4.1.46]
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
- accessibility: added ability to tab to result paragraphs
|
|
7
|
+
- accessibility: pagination buttons are now focusable when disabled and have aria-disabled
|
|
8
|
+
- accessibility: fixed buttons in some cases being hidden behind results
|
|
9
|
+
- accessibility: focus for feedback widget is not trapped within modal correctly
|
|
10
|
+
- fixed: interaction between different types of facets had been resolved to update facets accordingly
|
|
11
|
+
|
|
4
12
|
## [4.1.39]
|
|
5
13
|
### Bug Fixes
|
|
6
14
|
- added minification for hosted library files
|
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,
|