@bridgeline-digital/hawksearch-handlebars-ui 5.2.2 → 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,3 +1,18 @@
|
|
|
1
|
+
# 5.2.4
|
|
2
|
+
|
|
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
|
|
13
|
+
|
|
14
|
+
1. Fix issue where range facet not working when currency or number are false.
|
|
15
|
+
|
|
1
16
|
# 5.2.2
|
|
2
17
|
|
|
3
18
|
## New Features
|
|
@@ -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
|
};
|
|
@@ -213,7 +213,7 @@ export declare function decode(value: string): string;
|
|
|
213
213
|
*/
|
|
214
214
|
export declare function decodeNested(value: string): string;
|
|
215
215
|
/**
|
|
216
|
-
* This function is a wrapper of Lodash:
|
|
216
|
+
* This function is a wrapper of Lodash: escapeRegExp
|
|
217
217
|
*
|
|
218
218
|
* @param string — The string to escape.
|
|
219
219
|
* @return — Returns the escaped string.
|