@searchstax-inc/searchstudio-ux-angular 4.1.1 → 4.1.5

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +30 -15
  2. package/README.md +6 -2
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -2,18 +2,18 @@
2
2
 
3
3
  All notable changes to the "searchstudio-ux-angular" project will be documented in this file.
4
4
 
5
- ## [1.2.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
5
+ ## [4.1.5]
11
6
  ### Bug Fixes
12
- - Tracking calls now use unmodified title of the result
7
+ - answers endpoint now have same query parameters as emselect
8
+ - accessibility: feedback widget comment section no longer reads characters left after every key press
13
9
 
14
- ## [1.2.3] - 2024-11-05
10
+ ## [4.1.0]
15
11
  ### Bug Fixes
16
- - fix & and + symbols causing issues in facet values
12
+ - stopped making unnecessary calls on blank search page load
13
+ - accessibility: template modified to only read result title for accessibility
14
+ - accessibility: leave feedback button state change is now announced
15
+ - accessibility: focus persistance added for feedback rating
16
+ - added support for react 19
17
17
 
18
18
  ## [2.0.0]
19
19
  ### Features
@@ -22,10 +22,25 @@ All notable changes to the "searchstudio-ux-angular" project will be documented
22
22
  - NVDA facet groups now announce state
23
23
  - NVDA added ability to jump from facets to results section
24
24
 
25
- ## [4.1.0]
25
+ ## [1.0.24]
26
+ ### Features
27
+ - added answer widget
28
+
29
+ ## [1.0.11] - 2024-12-26
26
30
  ### 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
31
+ - fix order of non mapped fields
32
+ - fix styling of grid view for accelerator
33
+
34
+ ## [1.0.10] - 2024-12-05
35
+ ### Bug Fixes
36
+ - fix & and + symbols causing issues in facet values
37
+
38
+ ## [1.0.3] - 2024-10-08
39
+ ### ⚠️ BREAKING CHANGES
40
+ - Result template needs to be updated to print variables as HTML because they now will contain html <em> tags if highlighting is enabled
41
+ ### Features
42
+ - Added support for highlighting controlled via studio UI
43
+ - Results per page are now configured through studio UI
44
+ ### Bug Fixes
45
+ - Tracking calls now use unmodified title of the result
46
+
package/README.md CHANGED
@@ -165,7 +165,7 @@ The AppSearchstaxAnswer component for Angular provides an AI answer widget for y
165
165
 
166
166
  **Props**
167
167
 
168
- - showMoreAfterWordCount - number(default 100) determining after how many symbols UI will show “Read More” view.
168
+ - showMoreAfterWordCount - number(default 100) determining after how many words UI will show “Read More” view.
169
169
  - feedbackWidget – an optional object that configures thumbs-up and thumbs-down feedback functionality.
170
170
 
171
171
  Example of feedbackWidget config:
@@ -657,7 +657,7 @@ The SearchstaxResultsWidget for Angular component displays the search results.
657
657
  ```
658
658
  <app-searchstax-results
659
659
  [afterLinkClick]="afterLinkClick"
660
- [renderMethod]="'pagination'"
660
+ [renderMethod]="'pagination'"
661
661
  [resultsPerPage]="10"
662
662
  ></app-searchstax-results>
663
663
  ```
@@ -1517,6 +1517,10 @@ The SearchstaxSortingWidget displays sorting options for search results.
1517
1517
  <app-searchstax-search-sorting></app-searchstax-search-sorting>
1518
1518
  ```
1519
1519
 
1520
+ **Props**
1521
+
1522
+ - templateOverride - template override for sorting widget
1523
+
1520
1524
  **Main Template Override**
1521
1525
 
1522
1526
  Main template for sorting widget.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@searchstax-inc/searchstudio-ux-angular",
3
3
  "private": false,
4
- "version": "4.1.1",
4
+ "version": "4.1.5",
5
5
  "type": "module",
6
6
  "peerDependencies": {
7
7
  "@angular/common": "13 - 19",
@@ -9,7 +9,7 @@
9
9
  },
10
10
  "dependencies": {
11
11
  "tslib": "^2.3.0",
12
- "@searchstax-inc/searchstudio-ux-js": "npm:@searchstax-inc/searchstudio-ux-js@^4.1.0"
12
+ "@searchstax-inc/searchstudio-ux-js": "npm:@searchstax-inc/searchstudio-ux-js@^4.1.5"
13
13
  },
14
14
  "module": "fesm2022/searchstax-inc-searchstudio-ux-angular.mjs",
15
15
  "typings": "index.d.ts",