@searchstax-inc/searchstudio-ux-js 4.1.9 → 4.1.14

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,6 +2,14 @@
2
2
 
3
3
  All notable changes to the "searchstudio-ux-js" project will be documented in this file.
4
4
 
5
+ ## [4.1.14]
6
+ ### Bug Fixes
7
+ - accessibility: feedback widget closing upon submit
8
+ - accessibility: feedback widget tab order fixed
9
+ - fixed double click being needed on feedback submit
10
+ - accessibility: fixed state and role of facet groups
11
+ - accessibility: fixed focus persistance upon facet click as well as more/less click
12
+
5
13
  ## [4.1.9]
6
14
  ### Bug Fixes
7
15
  - accessibility: focus is now being trapped in feedback widget
package/README.md CHANGED
@@ -901,10 +901,10 @@ It receives following props:
901
901
  template: `
902
902
  <div class="searchstax-facet-show-more-container" data-test-id="searchstax-facet-show-more-container">
903
903
  {{#showingAllFacets}}
904
- <div class="searchstax-facet-show-less-button searchstax-facet-show-button" tabindex="0" data-test-id="searchstax-facet-show-less-button" role="button">less</div>
904
+ <div class="searchstax-facet-show-less-button searchstax-facet-show-button" tabindex="0" data-test-id="searchstax-facet-show-less-button" data-focus="{{focusId}}" role="button">less</div>
905
905
  {{/showingAllFacets}}
906
906
  {{^showingAllFacets}}
907
- <div class="searchstax-facet-show-more-button searchstax-facet-show-button" tabindex="0" data-test-id="searchstax-facet-show-more-button" role="button">more {{onShowMoreLessClick}}</div>
907
+ <div class="searchstax-facet-show-more-button searchstax-facet-show-button" tabindex="0" data-test-id="searchstax-facet-show-more-button" data-focus="{{focusId}}" role="button">more {{onShowMoreLessClick}}</div>
908
908
  {{/showingAllFacets}}
909
909
  </div>
910
910
  `,
@@ -914,7 +914,7 @@ It receives following props:
914
914
  template: `
915
915
  <div>
916
916
  <div class="searchstax-facet-title-container" data-test-id="searchstax-facet-title-container">
917
- <div class="searchstax-facet-title" aria-label="Facet group: {{label}}" tabindex="0">
917
+ <div class="searchstax-facet-title" aria-label="Facet group: {{label}}" tabindex="0" role="button">
918
918
  {{label}}
919
919
  </div>
920
920
  <div class="searchstax-facet-title-arrow active"></div>