@searchstax-inc/searchstudio-ux-js 4.1.9 → 4.1.33
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 +19 -0
- package/README.md +3 -3
- package/dist/@searchstax-inc/searchstudio-ux-js.cjs +70 -64
- package/dist/@searchstax-inc/searchstudio-ux-js.d.mts +2 -1
- package/dist/@searchstax-inc/searchstudio-ux-js.d.ts +2 -1
- package/dist/@searchstax-inc/searchstudio-ux-js.iife.js +68 -62
- package/dist/@searchstax-inc/searchstudio-ux-js.mjs +1315 -1233
- package/dist/feedbackWidget.css +64 -13
- package/dist/feedbackWidget.mjs +228 -196
- package/dist/styles/mainTheme.css +42 -30
- package/dist/styles/mainTheme.css.map +1 -1
- package/dist/styles/scss/colors.scss +3 -2
- package/dist/styles/scss/mainTheme.scss +2 -0
- package/dist/styles/scss/widgets/answer/style.scss +1 -1
- package/dist/styles/scss/widgets/facets/style.scss +6 -2
- package/dist/styles/scss/widgets/location/style.scss +2 -1
- package/dist/styles/scss/widgets/pagination/style.scss +4 -2
- package/dist/styles/scss/widgets/sorting/style.scss +3 -3
- package/dist/templates.js +19 -13
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the "searchstudio-ux-js" project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [4.1.33]
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
- samples repository: fixed language passing
|
|
8
|
+
- accessibility: added searchstax to focus queue on leave feedback widget
|
|
9
|
+
- accessibility: fixed feedback widget not reflowing properly
|
|
10
|
+
- accessibility: fixed required inputs not being indicated on feedback form
|
|
11
|
+
- accessibility: fixed focus indicator contrast issues
|
|
12
|
+
- accessibility: fixed view style accessibility issues
|
|
13
|
+
- accessibility: fixed spacing for facets to have minimum spacing needed for accessibility
|
|
14
|
+
- accessibility: added checkmark animation of successful feedback submission
|
|
15
|
+
|
|
16
|
+
## [4.1.14]
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
- accessibility: feedback widget closing upon submit
|
|
19
|
+
- accessibility: feedback widget tab order fixed
|
|
20
|
+
- fixed double click being needed on feedback submit
|
|
21
|
+
- accessibility: fixed state and role of facet groups
|
|
22
|
+
- accessibility: fixed focus persistance upon facet click as well as more/less click
|
|
23
|
+
|
|
5
24
|
## [4.1.9]
|
|
6
25
|
### Bug Fixes
|
|
7
26
|
- 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>
|