@searchstax-inc/searchstudio-ux-react 1.0.49 → 4.1.0
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 +31 -0
- package/README.md +1307 -706
- package/README.mustache +590 -0
- package/dist/@searchstax-inc/components/SearchstaxAnswerWidget.d.ts +1 -1
- package/dist/@searchstax-inc/components/SearchstaxResultWidget.d.ts +1 -0
- package/dist/@searchstax-inc/components/templates/SearchstaxAnswerWidgetTemplate.d.ts +3 -0
- package/dist/@searchstax-inc/components/templates/SearchstaxExternalPromotionsWidgetTemplate.d.ts +3 -0
- package/dist/@searchstax-inc/components/templates/SearchstaxFacetsWidgetTemplate.d.ts +8 -0
- package/dist/@searchstax-inc/components/templates/SearchstaxInputWidgetTemplate.d.ts +4 -0
- package/dist/@searchstax-inc/components/templates/SearchstaxLocationWidgetTemplate.d.ts +3 -0
- package/dist/@searchstax-inc/components/templates/SearchstaxLocationWidgetTemplateConfig.d.ts +13 -0
- package/dist/@searchstax-inc/components/templates/SearchstaxOverviewWidgetTemplate.d.ts +3 -0
- package/dist/@searchstax-inc/components/templates/SearchstaxPaginationWidgetTemplate.d.ts +4 -0
- package/dist/@searchstax-inc/components/templates/SearchstaxRelatedSearchesWidgetTemplate.d.ts +3 -0
- package/dist/@searchstax-inc/components/templates/SearchstaxResultWidgetTemplate.d.ts +4 -0
- package/dist/@searchstax-inc/components/templates/SearchstaxSortingWidgetTemplate.d.ts +3 -0
- package/dist/@searchstax-inc/main.d.ts +1 -12
- package/dist/@searchstax-inc/searchstudio-ux-react.cjs +62 -70
- package/dist/@searchstax-inc/searchstudio-ux-react.d.cts +1 -12
- package/dist/@searchstax-inc/searchstudio-ux-react.iife.js +62 -70
- package/dist/@searchstax-inc/searchstudio-ux-react.mjs +2540 -2704
- package/dist/main.d.ts +12 -0
- package/package.json +12 -7
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to the "searchstudio-ux-react" project will be documented in this file.
|
|
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
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
- Tracking calls now use unmodified title of the result
|
|
13
|
+
|
|
14
|
+
## [1.0.5] - 2024-11-05
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
- fix & and + symbols causing issues in facet values
|
|
17
|
+
|
|
18
|
+
## [2.0.0]
|
|
19
|
+
### Features
|
|
20
|
+
- Readme updated to give more information on how widgets work
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
- NVDA facet groups now announce state
|
|
23
|
+
- NVDA added ability to jump from facets to results section
|
|
24
|
+
|
|
25
|
+
## [4.1.0]
|
|
26
|
+
### 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
|