@bridgeline-digital/hawksearch-handlebars-ui 6.0.0-beta.2 → 6.0.0-rc.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.
Files changed (34) hide show
  1. package/changelog.md +32 -1
  2. package/dist/hawksearch-handlebars-ui.cjs +1 -1
  3. package/dist/hawksearch-handlebars-ui.js +134 -153
  4. package/dist/hawksearch-handlebars-ui.min.js +115 -115
  5. package/dist/hawksearch-handlebars-ui.umd.cjs +1 -1
  6. package/dist/index.d.ts +130 -2761
  7. package/docs/assets/search.js +1 -1
  8. package/docs/functions/Helpers.add.html +2 -0
  9. package/docs/functions/Helpers.and.html +2 -0
  10. package/docs/functions/Helpers.arrayFilterObjects.html +2 -0
  11. package/docs/functions/Helpers.arrayHasObjectsWithValue.html +2 -0
  12. package/docs/functions/Helpers.attribute.html +2 -0
  13. package/docs/functions/Helpers.concat.html +2 -0
  14. package/docs/functions/Helpers.currency.html +2 -0
  15. package/docs/functions/Helpers.decode.html +82 -0
  16. package/docs/functions/Helpers.decodeNested.html +82 -0
  17. package/docs/functions/Helpers.eq.html +2 -0
  18. package/docs/functions/Helpers.exclude.html +2 -0
  19. package/docs/functions/Helpers.gt.html +2 -0
  20. package/docs/functions/Helpers.gte.html +2 -0
  21. package/docs/functions/Helpers.html.html +2 -0
  22. package/docs/functions/Helpers.ifElse.html +2 -0
  23. package/docs/functions/Helpers.lt.html +2 -0
  24. package/docs/functions/Helpers.lte.html +2 -0
  25. package/docs/functions/Helpers.number.html +2 -0
  26. package/docs/functions/Helpers.or.html +2 -0
  27. package/docs/functions/Helpers.string.html +2 -0
  28. package/docs/functions/Helpers.subtract.html +2 -0
  29. package/docs/index.html +4 -4
  30. package/docs/interfaces/Configuration.HawkSearchConfig.html +26 -3
  31. package/docs/modules/Components.html +5 -3
  32. package/docs/modules/Helpers.html +4 -0
  33. package/package.json +6 -6
  34. package/readme.md +1 -1
package/changelog.md CHANGED
@@ -7,13 +7,44 @@
7
7
  3. Build output now contains cjs, es, and umd formats along with typing to allow custom implementations to reference this as a libary
8
8
  4. Changed TypeDoc theme to support latest version of Typedoc and allow bundling in npm package
9
9
  5. Added support for storing custom templates in `script` as an alternative to `template` elements for greater flexibility and avoiding some edge case browser issues
10
+ 6. Tests added and executed by `vitest`
10
11
 
11
12
  ## Bug Fixes
12
13
 
13
14
  1. Prevented "empty" range facets from displaying when facet configuration is incorrect
15
+ 2. Add decodeURI helper for Templates
16
+
17
+ ## Breaking Changes
18
+
19
+ 1. Hawksearch configuration requires executing the `HawkSearch.init` function which should be triggered after `hawksearch:loaded` event
20
+
21
+ # 5.0.17
22
+
23
+ ## Enhancements
24
+
25
+ 1. Added `HawkSearch.config.autocomplete.minCharacterCount` property with a default value of `1` to specify the minimum length of a query before triggering autocomplete recommendations
26
+
27
+ # 5.0.16
28
+
29
+ ## Enhancements
30
+
31
+ 1. Add support for script elements for custom templates
32
+ 2. Added support for content result images in default templates
33
+
34
+ ## Bug Fixes
35
+
36
+ 1. Added check to not display range facets that do not have range data (from API bug)
37
+
38
+ # 5.0.15
39
+
40
+ ## Bug Fixes
41
+
42
+ 1. Fixed bug with QueryString not adding correct param names when same facet parents are selected
14
43
 
15
44
  # 5.0.1
16
45
 
46
+ ## Bug Fixes
47
+
17
48
  1. Fixed bug in API endpoint construction when overriding the default `endpointUrl` for Autocomplete
18
49
 
19
50
  # 5.0.0
@@ -117,4 +148,4 @@
117
148
 
118
149
  1. Changed entry file from `hawksearch-handlebars-ui.js` to `index.js`
119
150
  2. Renamed `Hawksearch` global object to `HawkSearch`
120
- 3. Changes to `HawkSearch.config` model to support Enhancements
151
+ 3. Changes to `HawkSearch.config` model to support enhancements