@bridgeline-digital/hawksearch-handlebars-ui 5.2.3 → 5.2.4
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,8 +1,17 @@
|
|
|
1
|
-
# 5.2.
|
|
1
|
+
# 5.2.4
|
|
2
2
|
|
|
3
3
|
## New Features
|
|
4
|
+
1. Make `decodeQuery` and `decodeFacetValue` defaults to `true` on Search and Autocomplete services.
|
|
5
|
+
|
|
6
|
+
## Bug Fixes
|
|
7
|
+
|
|
8
|
+
1. Fix issue where facets and categories on Autocomplete popup are not decoded.
|
|
9
|
+
|
|
10
|
+
# 5.2.3
|
|
11
|
+
|
|
12
|
+
## Bug Fixes
|
|
4
13
|
|
|
5
|
-
1. Fix issue
|
|
14
|
+
1. Fix issue where range facet not working when currency or number are false.
|
|
6
15
|
|
|
7
16
|
# 5.2.2
|
|
8
17
|
|
|
@@ -350,7 +350,7 @@ export interface HawkSearchConfig {
|
|
|
350
350
|
* Whether to automatically URI decode the search query value. Runs recursively until value is fully decoded. For example, `Test%2520Value` would become `Test Value`.
|
|
351
351
|
*
|
|
352
352
|
* #### Default Value
|
|
353
|
-
* `
|
|
353
|
+
* `true`
|
|
354
354
|
*/
|
|
355
355
|
decodeQuery?: boolean;
|
|
356
356
|
/**
|
|
@@ -441,14 +441,14 @@ export interface HawkSearchConfig {
|
|
|
441
441
|
* Whether to automatically URI decode the search query value. Runs recursively until value is fully decoded. For example, `Test%2520Value` would become `Test Value`.
|
|
442
442
|
*
|
|
443
443
|
* #### Default Value
|
|
444
|
-
* `
|
|
444
|
+
* `true`
|
|
445
445
|
*/
|
|
446
446
|
decodeQuery?: boolean;
|
|
447
447
|
/**
|
|
448
448
|
* Whether to automatically URI decode facet selection values. Runs recursively until value is fully decoded. For example, `Test%2520Value` would become `Test Value`.
|
|
449
449
|
*
|
|
450
450
|
* #### Default Value
|
|
451
|
-
* `
|
|
451
|
+
* `true`
|
|
452
452
|
*/
|
|
453
453
|
decodeFacetValues?: boolean;
|
|
454
454
|
};
|