@2uinc/frontend-enterprise-catalog-search 11.0.2

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 (69) hide show
  1. package/CHANGELOG.md +1125 -0
  2. package/ClearCurrentRefinements.js +47 -0
  3. package/ClearCurrentRefinements.js.map +1 -0
  4. package/CurrentRefinements.js +152 -0
  5. package/CurrentRefinements.js.map +1 -0
  6. package/FacetDropdown.js +40 -0
  7. package/FacetDropdown.js.map +1 -0
  8. package/FacetItem.js +50 -0
  9. package/FacetItem.js.map +1 -0
  10. package/FacetListBase.js +140 -0
  11. package/FacetListBase.js.map +1 -0
  12. package/FacetListRefinement.js +25 -0
  13. package/FacetListRefinement.js.map +1 -0
  14. package/LICENSE +661 -0
  15. package/LearningTypeRadioFacet.js +165 -0
  16. package/LearningTypeRadioFacet.js.map +1 -0
  17. package/MobileFilterMenu.js +122 -0
  18. package/MobileFilterMenu.js.map +1 -0
  19. package/PrequerySearchSuggestionItem.js +48 -0
  20. package/PrequerySearchSuggestionItem.js.map +1 -0
  21. package/README.md +10 -0
  22. package/SearchBox.js +266 -0
  23. package/SearchBox.js.map +1 -0
  24. package/SearchContext.js +115 -0
  25. package/SearchContext.js.map +1 -0
  26. package/SearchFilters.js +73 -0
  27. package/SearchFilters.js.map +1 -0
  28. package/SearchHeader.js +117 -0
  29. package/SearchHeader.js.map +1 -0
  30. package/SearchPagination.js +78 -0
  31. package/SearchPagination.js.map +1 -0
  32. package/SearchSuggestionItem.js +58 -0
  33. package/SearchSuggestionItem.js.map +1 -0
  34. package/SearchSuggestions.js +137 -0
  35. package/SearchSuggestions.js.map +1 -0
  36. package/TypeaheadFacetDropdown.js +58 -0
  37. package/TypeaheadFacetDropdown.js.map +1 -0
  38. package/config/index.js +18 -0
  39. package/config/index.js.map +1 -0
  40. package/data/actions.js +46 -0
  41. package/data/actions.js.map +1 -0
  42. package/data/constants.js +92 -0
  43. package/data/constants.js.map +1 -0
  44. package/data/hooks.js +97 -0
  45. package/data/hooks.js.map +1 -0
  46. package/data/reducer.js +70 -0
  47. package/data/reducer.js.map +1 -0
  48. package/data/tests/constants.js +13 -0
  49. package/data/tests/constants.js.map +1 -0
  50. package/data/utils.js +69 -0
  51. package/data/utils.js.map +1 -0
  52. package/index.js +9 -0
  53. package/index.js.map +1 -0
  54. package/index.scss +3 -0
  55. package/messages.js +166 -0
  56. package/messages.js.map +1 -0
  57. package/package.json +68 -0
  58. package/styles/_CurrentRefinements.scss +19 -0
  59. package/styles/_FacetList.scss +49 -0
  60. package/styles/_MobileSearchFilters.scss +59 -0
  61. package/styles/_SearchBox.scss +8 -0
  62. package/styles/_SearchField.scss +14 -0
  63. package/styles/_SearchPagination.scss +5 -0
  64. package/styles/_SearchSuggestions.scss +97 -0
  65. package/styles/_index.scss +7 -0
  66. package/tests/utils.js +22 -0
  67. package/tests/utils.js.map +1 -0
  68. package/utils.js +159 -0
  69. package/utils.js.map +1 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1125 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [11.0.2](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@11.0.1...@edx/frontend-enterprise-catalog-search@11.0.2) (2025-04-25)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * removes content type video from search suggestions ([#462](https://github.com/openedx/frontend-enterprise/issues/462)) ([807ece5](https://github.com/openedx/frontend-enterprise/commit/807ece576bab2647751530943c1c4a07c09d6e47))
12
+
13
+
14
+
15
+ ## [11.0.1](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@11.0.0...@edx/frontend-enterprise-catalog-search@11.0.1) (2025-03-02)
16
+
17
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
18
+
19
+
20
+
21
+
22
+
23
+ ## [11.0.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@10.8.2...@edx/frontend-enterprise-catalog-search@11.0.0) (2025-02-26)
24
+
25
+
26
+ ### ⚠ BREAKING CHANGES
27
+
28
+ * drop support for Paragon v21 in `@edx/frontend-enterprise-catalog-search`
29
+
30
+ * fix: use secondary pagination variant
31
+
32
+ ### Features
33
+
34
+ * support React 18; drop support for Paragon v21 in favor of v22 ([#441](https://github.com/openedx/frontend-enterprise/issues/441)) ([7046540](https://github.com/openedx/frontend-enterprise/commit/70465404bf8d9fc1a426639d8ce1a3cc18fee3db))
35
+
36
+
37
+
38
+ ## [10.8.2](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@10.8.1...@edx/frontend-enterprise-catalog-search@10.8.2) (2025-02-26)
39
+
40
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
41
+
42
+
43
+
44
+
45
+
46
+ ## [10.8.1](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@10.8.0...@edx/frontend-enterprise-catalog-search@10.8.1) (2025-02-24)
47
+
48
+
49
+ ### Bug Fixes
50
+
51
+ * **deps:** update all non-major dependencies ([#419](https://github.com/openedx/frontend-enterprise/issues/419)) ([2958977](https://github.com/openedx/frontend-enterprise/commit/2958977042b774b3753034c2ade895c44514f99c))
52
+
53
+
54
+
55
+ ## [10.8.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@10.7.1...@edx/frontend-enterprise-catalog-search@10.8.0) (2024-11-25)
56
+
57
+
58
+ ### Features
59
+
60
+ * add segment event to track the selected value for learning type dropdown ([#415](https://github.com/openedx/frontend-enterprise/issues/415)) ([10e2c35](https://github.com/openedx/frontend-enterprise/commit/10e2c35b17da40191b58d0d41977ac47f2b6157e))
61
+
62
+
63
+
64
+ ## [10.7.1](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@10.7.0...@edx/frontend-enterprise-catalog-search@10.7.1) (2024-09-16)
65
+
66
+
67
+ ### Bug Fixes
68
+
69
+ * removing prequery optimizely code ([#413](https://github.com/openedx/frontend-enterprise/issues/413)) ([68d3497](https://github.com/openedx/frontend-enterprise/commit/68d3497511f953a46cf1dfc4fadd639f001b6a3f))
70
+
71
+
72
+
73
+ ## [10.7.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@10.6.0...@edx/frontend-enterprise-catalog-search@10.7.0) (2024-09-09)
74
+
75
+
76
+ ### Features
77
+
78
+ * Add Beta label to videos in the learning type facet ([#409](https://github.com/openedx/frontend-enterprise/issues/409)) ([776e35e](https://github.com/openedx/frontend-enterprise/commit/776e35e5d9fd35cfa521527e8c00f5a9249a4ef2))
79
+
80
+
81
+
82
+ ## [10.6.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@10.5.0...@edx/frontend-enterprise-catalog-search@10.6.0) (2024-08-07)
83
+
84
+
85
+ ### Features
86
+
87
+ * show video learning type to learners with active subscription ([#404](https://github.com/openedx/frontend-enterprise/issues/404)) ([0207bb9](https://github.com/openedx/frontend-enterprise/commit/0207bb9ee4a9951377964364b4b4f7f07eb6ab1b))
88
+
89
+
90
+
91
+ ## [10.5.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@10.4.0...@edx/frontend-enterprise-catalog-search@10.5.0) (2024-07-12)
92
+
93
+
94
+ ### Features
95
+
96
+ * added video in learning type facet ([#401](https://github.com/openedx/frontend-enterprise/issues/401)) ([fea3bbd](https://github.com/openedx/frontend-enterprise/commit/fea3bbd522048fe021a1ccee3783ae8a6c6f48ae))
97
+
98
+
99
+
100
+ ## [10.4.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@10.3.0...@edx/frontend-enterprise-catalog-search@10.4.0) (2024-07-11)
101
+
102
+
103
+ ### Features
104
+
105
+ * translate language, level and availability dropdown options ([#399](https://github.com/openedx/frontend-enterprise/issues/399)) ([330c4ce](https://github.com/openedx/frontend-enterprise/commit/330c4ce1a1e320cff5268d606c94d743e0df2891))
106
+
107
+
108
+
109
+ ## [10.3.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@10.2.0...@edx/frontend-enterprise-catalog-search@10.3.0) (2024-05-21)
110
+
111
+
112
+ ### Features
113
+
114
+ * Added scripts and marked strings for i18n. ([#396](https://github.com/openedx/frontend-enterprise/issues/396)) ([a0fb639](https://github.com/openedx/frontend-enterprise/commit/a0fb639c34f7907ac8d0ef41ffff730065b27662))
115
+
116
+
117
+
118
+ ## [10.2.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@10.1.0...@edx/frontend-enterprise-catalog-search@10.2.0) (2024-05-15)
119
+
120
+
121
+ ### Features
122
+
123
+ * control visibility of search box via flag prop ([#394](https://github.com/openedx/frontend-enterprise/issues/394)) ([30d8f49](https://github.com/openedx/frontend-enterprise/commit/30d8f49151d7fb8ca9d98dc0d487bfea2f63c482))
124
+
125
+
126
+
127
+ ## [10.1.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@10.0.0...@edx/frontend-enterprise-catalog-search@10.1.0) (2024-04-29)
128
+
129
+
130
+ ### Features
131
+
132
+ * updated frontend-build & frontend-platform major versions ([#387](https://github.com/openedx/frontend-enterprise/issues/387)) ([e9da78e](https://github.com/openedx/frontend-enterprise/commit/e9da78e264c6e5b590eff351b5c1477c0716f928))
133
+
134
+
135
+
136
+ ## [10.0.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@5.0.0...@edx/frontend-enterprise-catalog-search@10.0.0) (2024-03-29)
137
+
138
+
139
+ ### ⚠ BREAKING CHANGES
140
+
141
+ * consuming applications must now provide paragon from the @openedx scope
142
+
143
+ * refactor: replace @edx/paragon and @edx/frontend-build
144
+
145
+ * fix: fixed package issues
146
+
147
+ * fix: updated dependency
148
+
149
+ * fix: updated package lock file to fix ci issue
150
+
151
+ * refactor: updated frontend-platform to v7 along with peer Dependencies
152
+
153
+ ### Features
154
+
155
+ * add prequery search suggestions ([#371](https://github.com/openedx/frontend-enterprise/issues/371)) ([3651ee0](https://github.com/openedx/frontend-enterprise/commit/3651ee0f0e77e461956175d98aaa4addb38a1762))
156
+ * add subtitle facet to SearchHeader ([#382](https://github.com/openedx/frontend-enterprise/issues/382)) ([047844f](https://github.com/openedx/frontend-enterprise/commit/047844fc32df30a09fddcefdc436a951bc821849))
157
+ * added prequery event handler to search ([#373](https://github.com/openedx/frontend-enterprise/issues/373)) ([5705327](https://github.com/openedx/frontend-enterprise/commit/5705327b5aac701cf5288a697071ed48980b9859))
158
+ * allow Paragon v21 in catalog-search ([#356](https://github.com/openedx/frontend-enterprise/issues/356)) ([75005f5](https://github.com/openedx/frontend-enterprise/commit/75005f5e27304e3147fc141ef5dc1bc6ac64a834))
159
+ * bumped frontend-platform to v6 ([#364](https://github.com/openedx/frontend-enterprise/issues/364)) ([1541b86](https://github.com/openedx/frontend-enterprise/commit/1541b864dc6c351ea595d9f0c5669299af3b64cc))
160
+ * enable prequery suggestions only for variant group ([#377](https://github.com/openedx/frontend-enterprise/issues/377)) ([fbee42a](https://github.com/openedx/frontend-enterprise/commit/fbee42a8b2a7a3111a83bf34b1917fc96454ba01))
161
+ * fix prequery suggestion highlight container ([#380](https://github.com/openedx/frontend-enterprise/issues/380)) ([d54a0c7](https://github.com/openedx/frontend-enterprise/commit/d54a0c765def9850e37296e3fd8d7709664d08b4))
162
+ * removing free/all filter ([#359](https://github.com/openedx/frontend-enterprise/issues/359)) ([f187fbd](https://github.com/openedx/frontend-enterprise/commit/f187fbd89eb8c6b490b8a0fafb7f192ed9dcf24c))
163
+
164
+
165
+ ### Bug Fixes
166
+
167
+ * bump frontend-platform ([#363](https://github.com/openedx/frontend-enterprise/issues/363)) ([1413ef2](https://github.com/openedx/frontend-enterprise/commit/1413ef21a1736d572bddb770352f33d505242bef))
168
+ * remove pathways from customers search ([#366](https://github.com/openedx/frontend-enterprise/issues/366)) ([d4625c9](https://github.com/openedx/frontend-enterprise/commit/d4625c92443d088c2319f81ea516c2613b8d3943))
169
+
170
+
171
+ ### Miscellaneous Chores
172
+
173
+ * move paragon to peer dependency using [@openedx](https://github.com/openedx) scope and upgrade frontend-platform ([#367](https://github.com/openedx/frontend-enterprise/issues/367)) ([d121d67](https://github.com/openedx/frontend-enterprise/commit/d121d67efa6e84de86a7f3eb84acb674f2d4a380))
174
+
175
+
176
+
177
+ ## [9.0.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@5.0.0...@edx/frontend-enterprise-catalog-search@9.0.0) (2024-03-11)
178
+
179
+
180
+ ### ⚠ BREAKING CHANGES
181
+
182
+ * consuming applications must now provide paragon from the @openedx scope
183
+
184
+ * refactor: replace @edx/paragon and @edx/frontend-build
185
+
186
+ * fix: fixed package issues
187
+
188
+ * fix: updated dependency
189
+
190
+ * fix: updated package lock file to fix ci issue
191
+
192
+ * refactor: updated frontend-platform to v7 along with peer Dependencies
193
+
194
+ ### Features
195
+
196
+ * add prequery search suggestions ([#371](https://github.com/openedx/frontend-enterprise/issues/371)) ([3651ee0](https://github.com/openedx/frontend-enterprise/commit/3651ee0f0e77e461956175d98aaa4addb38a1762))
197
+ * added prequery event handler to search ([#373](https://github.com/openedx/frontend-enterprise/issues/373)) ([5705327](https://github.com/openedx/frontend-enterprise/commit/5705327b5aac701cf5288a697071ed48980b9859))
198
+ * allow Paragon v21 in catalog-search ([#356](https://github.com/openedx/frontend-enterprise/issues/356)) ([75005f5](https://github.com/openedx/frontend-enterprise/commit/75005f5e27304e3147fc141ef5dc1bc6ac64a834))
199
+ * bumped frontend-platform to v6 ([#364](https://github.com/openedx/frontend-enterprise/issues/364)) ([1541b86](https://github.com/openedx/frontend-enterprise/commit/1541b864dc6c351ea595d9f0c5669299af3b64cc))
200
+ * enable prequery suggestions only for variant group ([#377](https://github.com/openedx/frontend-enterprise/issues/377)) ([fbee42a](https://github.com/openedx/frontend-enterprise/commit/fbee42a8b2a7a3111a83bf34b1917fc96454ba01))
201
+ * fix prequery suggestion highlight container ([#380](https://github.com/openedx/frontend-enterprise/issues/380)) ([d54a0c7](https://github.com/openedx/frontend-enterprise/commit/d54a0c765def9850e37296e3fd8d7709664d08b4))
202
+ * removing free/all filter ([#359](https://github.com/openedx/frontend-enterprise/issues/359)) ([f187fbd](https://github.com/openedx/frontend-enterprise/commit/f187fbd89eb8c6b490b8a0fafb7f192ed9dcf24c))
203
+
204
+
205
+ ### Bug Fixes
206
+
207
+ * bump frontend-platform ([#363](https://github.com/openedx/frontend-enterprise/issues/363)) ([1413ef2](https://github.com/openedx/frontend-enterprise/commit/1413ef21a1736d572bddb770352f33d505242bef))
208
+ * remove pathways from customers search ([#366](https://github.com/openedx/frontend-enterprise/issues/366)) ([d4625c9](https://github.com/openedx/frontend-enterprise/commit/d4625c92443d088c2319f81ea516c2613b8d3943))
209
+
210
+
211
+ ### Miscellaneous Chores
212
+
213
+ * move paragon to peer dependency using [@openedx](https://github.com/openedx) scope and upgrade frontend-platform ([#367](https://github.com/openedx/frontend-enterprise/issues/367)) ([d121d67](https://github.com/openedx/frontend-enterprise/commit/d121d67efa6e84de86a7f3eb84acb674f2d4a380))
214
+
215
+
216
+
217
+ ## [8.0.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@5.0.0...@edx/frontend-enterprise-catalog-search@8.0.0) (2024-03-05)
218
+
219
+
220
+ ### ⚠ BREAKING CHANGES
221
+
222
+ * consuming applications must now provide paragon from the @openedx scope
223
+
224
+ * refactor: replace @edx/paragon and @edx/frontend-build
225
+
226
+ * fix: fixed package issues
227
+
228
+ * fix: updated dependency
229
+
230
+ * fix: updated package lock file to fix ci issue
231
+
232
+ * refactor: updated frontend-platform to v7 along with peer Dependencies
233
+
234
+ ### Features
235
+
236
+ * add prequery search suggestions ([#371](https://github.com/openedx/frontend-enterprise/issues/371)) ([3651ee0](https://github.com/openedx/frontend-enterprise/commit/3651ee0f0e77e461956175d98aaa4addb38a1762))
237
+ * added prequery event handler to search ([#373](https://github.com/openedx/frontend-enterprise/issues/373)) ([5705327](https://github.com/openedx/frontend-enterprise/commit/5705327b5aac701cf5288a697071ed48980b9859))
238
+ * allow Paragon v21 in catalog-search ([#356](https://github.com/openedx/frontend-enterprise/issues/356)) ([75005f5](https://github.com/openedx/frontend-enterprise/commit/75005f5e27304e3147fc141ef5dc1bc6ac64a834))
239
+ * bumped frontend-platform to v6 ([#364](https://github.com/openedx/frontend-enterprise/issues/364)) ([1541b86](https://github.com/openedx/frontend-enterprise/commit/1541b864dc6c351ea595d9f0c5669299af3b64cc))
240
+ * enable prequery suggestions only for variant group ([#377](https://github.com/openedx/frontend-enterprise/issues/377)) ([fbee42a](https://github.com/openedx/frontend-enterprise/commit/fbee42a8b2a7a3111a83bf34b1917fc96454ba01))
241
+ * removing free/all filter ([#359](https://github.com/openedx/frontend-enterprise/issues/359)) ([f187fbd](https://github.com/openedx/frontend-enterprise/commit/f187fbd89eb8c6b490b8a0fafb7f192ed9dcf24c))
242
+
243
+
244
+ ### Bug Fixes
245
+
246
+ * bump frontend-platform ([#363](https://github.com/openedx/frontend-enterprise/issues/363)) ([1413ef2](https://github.com/openedx/frontend-enterprise/commit/1413ef21a1736d572bddb770352f33d505242bef))
247
+ * remove pathways from customers search ([#366](https://github.com/openedx/frontend-enterprise/issues/366)) ([d4625c9](https://github.com/openedx/frontend-enterprise/commit/d4625c92443d088c2319f81ea516c2613b8d3943))
248
+
249
+
250
+ ### Miscellaneous Chores
251
+
252
+ * move paragon to peer dependency using [@openedx](https://github.com/openedx) scope and upgrade frontend-platform ([#367](https://github.com/openedx/frontend-enterprise/issues/367)) ([d121d67](https://github.com/openedx/frontend-enterprise/commit/d121d67efa6e84de86a7f3eb84acb674f2d4a380))
253
+
254
+
255
+
256
+ ## [7.0.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@5.0.0...@edx/frontend-enterprise-catalog-search@7.0.0) (2024-02-20)
257
+
258
+
259
+ ### ⚠ BREAKING CHANGES
260
+
261
+ * consuming applications must now provide paragon from the @openedx scope
262
+
263
+ * refactor: replace @edx/paragon and @edx/frontend-build
264
+
265
+ * fix: fixed package issues
266
+
267
+ * fix: updated dependency
268
+
269
+ * fix: updated package lock file to fix ci issue
270
+
271
+ * refactor: updated frontend-platform to v7 along with peer Dependencies
272
+
273
+ ### Features
274
+
275
+ * add prequery search suggestions ([#371](https://github.com/openedx/frontend-enterprise/issues/371)) ([3651ee0](https://github.com/openedx/frontend-enterprise/commit/3651ee0f0e77e461956175d98aaa4addb38a1762))
276
+ * added prequery event handler to search ([4fe2195](https://github.com/openedx/frontend-enterprise/commit/4fe2195944c8d7bd048a4df729bba1cf9bcb3c89))
277
+ * allow Paragon v21 in catalog-search ([#356](https://github.com/openedx/frontend-enterprise/issues/356)) ([75005f5](https://github.com/openedx/frontend-enterprise/commit/75005f5e27304e3147fc141ef5dc1bc6ac64a834))
278
+ * bumped frontend-platform to v6 ([#364](https://github.com/openedx/frontend-enterprise/issues/364)) ([1541b86](https://github.com/openedx/frontend-enterprise/commit/1541b864dc6c351ea595d9f0c5669299af3b64cc))
279
+ * removing free/all filter ([#359](https://github.com/openedx/frontend-enterprise/issues/359)) ([f187fbd](https://github.com/openedx/frontend-enterprise/commit/f187fbd89eb8c6b490b8a0fafb7f192ed9dcf24c))
280
+
281
+
282
+ ### Bug Fixes
283
+
284
+ * bump frontend-platform ([#363](https://github.com/openedx/frontend-enterprise/issues/363)) ([1413ef2](https://github.com/openedx/frontend-enterprise/commit/1413ef21a1736d572bddb770352f33d505242bef))
285
+ * remove pathways from customers search ([#366](https://github.com/openedx/frontend-enterprise/issues/366)) ([d4625c9](https://github.com/openedx/frontend-enterprise/commit/d4625c92443d088c2319f81ea516c2613b8d3943))
286
+ * renamed testing unit ([f1ce26f](https://github.com/openedx/frontend-enterprise/commit/f1ce26f844e14bc19a4e180701f496b819b1a7be))
287
+ * updated test and fixed lint error ([287dc26](https://github.com/openedx/frontend-enterprise/commit/287dc261789c7481881a42eb3c8fd28093cc377e))
288
+
289
+
290
+ ### Miscellaneous Chores
291
+
292
+ * move paragon to peer dependency using [@openedx](https://github.com/openedx) scope and upgrade frontend-platform ([#367](https://github.com/openedx/frontend-enterprise/issues/367)) ([d121d67](https://github.com/openedx/frontend-enterprise/commit/d121d67efa6e84de86a7f3eb84acb674f2d4a380))
293
+
294
+
295
+
296
+ ## [6.0.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.1.5...@edx/frontend-enterprise-catalog-search@6.0.0) (2024-02-12)
297
+
298
+
299
+ ### ⚠ BREAKING CHANGES
300
+
301
+ * consuming applications must now provide paragon from the @openedx scope
302
+
303
+ * refactor: replace @edx/paragon and @edx/frontend-build
304
+
305
+ * fix: fixed package issues
306
+
307
+ * fix: updated dependency
308
+
309
+ * fix: updated package lock file to fix ci issue
310
+
311
+ * refactor: updated frontend-platform to v7 along with peer Dependencies
312
+ * Upgrade react-router-dom from v5 to v6.
313
+ Upgrade frontend-platform from v4 to v5.
314
+
315
+ ### Features
316
+
317
+ * Add .npmrc file to more .gitignore files ([#303](https://github.com/openedx/frontend-enterprise/issues/303)) ([d890c21](https://github.com/openedx/frontend-enterprise/commit/d890c212c3f8c5ec81e6dee63f68029ad0b00552))
318
+ * add prequery search suggestions ([#371](https://github.com/openedx/frontend-enterprise/issues/371)) ([3651ee0](https://github.com/openedx/frontend-enterprise/commit/3651ee0f0e77e461956175d98aaa4addb38a1762))
319
+ * adding exec ed compatibility to suggested search ([#288](https://github.com/openedx/frontend-enterprise/issues/288)) ([21d608c](https://github.com/openedx/frontend-enterprise/commit/21d608ce49b764e62101b5f696b463f6800ddcb0))
320
+ * allow Paragon v21 in catalog-search ([#356](https://github.com/openedx/frontend-enterprise/issues/356)) ([75005f5](https://github.com/openedx/frontend-enterprise/commit/75005f5e27304e3147fc141ef5dc1bc6ac64a834))
321
+ * bumped frontend-platform to v6 ([#364](https://github.com/openedx/frontend-enterprise/issues/364)) ([1541b86](https://github.com/openedx/frontend-enterprise/commit/1541b864dc6c351ea595d9f0c5669299af3b64cc))
322
+ * removing free/all filter ([#359](https://github.com/openedx/frontend-enterprise/issues/359)) ([f187fbd](https://github.com/openedx/frontend-enterprise/commit/f187fbd89eb8c6b490b8a0fafb7f192ed9dcf24c))
323
+ * update react & react-dom to v17 ([#338](https://github.com/openedx/frontend-enterprise/issues/338)) ([b1b548c](https://github.com/openedx/frontend-enterprise/commit/b1b548c0ec27572d639f276507a1495b78db9497))
324
+ * Updated course link for executive4 education courses. ([#336](https://github.com/openedx/frontend-enterprise/issues/336)) ([4212580](https://github.com/openedx/frontend-enterprise/commit/4212580f4fd6c2de4696f25e81f50f2714db1672))
325
+ * upgrade react router to v6 ([#344](https://github.com/openedx/frontend-enterprise/issues/344)) ([54f6340](https://github.com/openedx/frontend-enterprise/commit/54f6340f764a9120bebd654564e0d61918a3cffa))
326
+ * upgraded to node v18, added .nvmrc and updated workflows ([#306](https://github.com/openedx/frontend-enterprise/issues/306)) ([0508783](https://github.com/openedx/frontend-enterprise/commit/050878307ff5f8a94385b7f41070dec19c7e84cc))
327
+
328
+
329
+ ### Bug Fixes
330
+
331
+ * Bump all versions one final time I hope.... ([#297](https://github.com/openedx/frontend-enterprise/issues/297)) ([3452d81](https://github.com/openedx/frontend-enterprise/commit/3452d810bad4b7292ce342ac96bec500809b532d))
332
+ * bump frontend-platform ([#363](https://github.com/openedx/frontend-enterprise/issues/363)) ([1413ef2](https://github.com/openedx/frontend-enterprise/commit/1413ef21a1736d572bddb770352f33d505242bef))
333
+ * manully bump versions after failed automation run ([#301](https://github.com/openedx/frontend-enterprise/issues/301)) ([f1e8616](https://github.com/openedx/frontend-enterprise/commit/f1e8616996c46ffda1c7596be6fc323136ac34c2))
334
+ * missing space in search ([#333](https://github.com/openedx/frontend-enterprise/issues/333)) ([c604834](https://github.com/openedx/frontend-enterprise/commit/c604834d2efcfeba5d692e0f8dc7bb1681e72262))
335
+ * remove pathways from customers search ([#366](https://github.com/openedx/frontend-enterprise/issues/366)) ([d4625c9](https://github.com/openedx/frontend-enterprise/commit/d4625c92443d088c2319f81ea516c2613b8d3943))
336
+
337
+
338
+ ### Miscellaneous Chores
339
+
340
+ * move paragon to peer dependency using [@openedx](https://github.com/openedx) scope and upgrade frontend-platform ([#367](https://github.com/openedx/frontend-enterprise/issues/367)) ([d121d67](https://github.com/openedx/frontend-enterprise/commit/d121d67efa6e84de86a7f3eb84acb674f2d4a380))
341
+
342
+
343
+
344
+ ## [5.6.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@5.0.0...@edx/frontend-enterprise-catalog-search@5.6.0) (2024-02-01)
345
+
346
+
347
+ ### Features
348
+
349
+ * add prequery search suggestions ([f8dfe85](https://github.com/openedx/frontend-enterprise/commit/f8dfe85cdbcfd70a290d61ddea8242768e437080))
350
+ * allow Paragon v21 in catalog-search ([#356](https://github.com/openedx/frontend-enterprise/issues/356)) ([75005f5](https://github.com/openedx/frontend-enterprise/commit/75005f5e27304e3147fc141ef5dc1bc6ac64a834))
351
+ * bumped frontend-platform to v6 ([#364](https://github.com/openedx/frontend-enterprise/issues/364)) ([1541b86](https://github.com/openedx/frontend-enterprise/commit/1541b864dc6c351ea595d9f0c5669299af3b64cc))
352
+ * removing free/all filter ([#359](https://github.com/openedx/frontend-enterprise/issues/359)) ([f187fbd](https://github.com/openedx/frontend-enterprise/commit/f187fbd89eb8c6b490b8a0fafb7f192ed9dcf24c))
353
+
354
+
355
+ ### Bug Fixes
356
+
357
+ * bump frontend-platform ([#363](https://github.com/openedx/frontend-enterprise/issues/363)) ([1413ef2](https://github.com/openedx/frontend-enterprise/commit/1413ef21a1736d572bddb770352f33d505242bef))
358
+ * refactored to include additional prop for feature flag ([bd600b6](https://github.com/openedx/frontend-enterprise/commit/bd600b624e51f9b8f0eff0b5eb467ec92fa6a828))
359
+ * remove pathways from customers search ([#366](https://github.com/openedx/frontend-enterprise/issues/366)) ([d4625c9](https://github.com/openedx/frontend-enterprise/commit/d4625c92443d088c2319f81ea516c2613b8d3943))
360
+
361
+
362
+
363
+ ## [5.5.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@5.0.0...@edx/frontend-enterprise-catalog-search@5.5.0) (2024-01-10)
364
+
365
+
366
+ ### Features
367
+
368
+ * allow Paragon v21 in catalog-search ([#356](https://github.com/openedx/frontend-enterprise/issues/356)) ([75005f5](https://github.com/openedx/frontend-enterprise/commit/75005f5e27304e3147fc141ef5dc1bc6ac64a834))
369
+ * removing free/all filter ([#359](https://github.com/openedx/frontend-enterprise/issues/359)) ([f187fbd](https://github.com/openedx/frontend-enterprise/commit/f187fbd89eb8c6b490b8a0fafb7f192ed9dcf24c))
370
+
371
+
372
+ ### Bug Fixes
373
+
374
+ * bump frontend-platform ([#363](https://github.com/openedx/frontend-enterprise/issues/363)) ([1413ef2](https://github.com/openedx/frontend-enterprise/commit/1413ef21a1736d572bddb770352f33d505242bef))
375
+ * remove pathways from customers search ([#366](https://github.com/openedx/frontend-enterprise/issues/366)) ([d4625c9](https://github.com/openedx/frontend-enterprise/commit/d4625c92443d088c2319f81ea516c2613b8d3943))
376
+
377
+
378
+
379
+ ## [5.4.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@5.0.0...@edx/frontend-enterprise-catalog-search@5.4.0) (2023-10-17)
380
+
381
+
382
+ ### Features
383
+
384
+ * allow Paragon v21 in catalog-search ([#356](https://github.com/openedx/frontend-enterprise/issues/356)) ([75005f5](https://github.com/openedx/frontend-enterprise/commit/75005f5e27304e3147fc141ef5dc1bc6ac64a834))
385
+ * removing free/all filter ([#359](https://github.com/openedx/frontend-enterprise/issues/359)) ([f187fbd](https://github.com/openedx/frontend-enterprise/commit/f187fbd89eb8c6b490b8a0fafb7f192ed9dcf24c))
386
+
387
+
388
+ ### Bug Fixes
389
+
390
+ * bump frontend-platform ([#363](https://github.com/openedx/frontend-enterprise/issues/363)) ([1413ef2](https://github.com/openedx/frontend-enterprise/commit/1413ef21a1736d572bddb770352f33d505242bef))
391
+
392
+
393
+
394
+ ## [5.3.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@5.0.0...@edx/frontend-enterprise-catalog-search@5.3.0) (2023-09-28)
395
+
396
+
397
+ ### Features
398
+
399
+ * allow Paragon v21 in catalog-search ([#356](https://github.com/openedx/frontend-enterprise/issues/356)) ([75005f5](https://github.com/openedx/frontend-enterprise/commit/75005f5e27304e3147fc141ef5dc1bc6ac64a834))
400
+ * removing free/all filter ([#359](https://github.com/openedx/frontend-enterprise/issues/359)) ([f187fbd](https://github.com/openedx/frontend-enterprise/commit/f187fbd89eb8c6b490b8a0fafb7f192ed9dcf24c))
401
+
402
+
403
+
404
+ ## [5.2.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@5.0.0...@edx/frontend-enterprise-catalog-search@5.2.0) (2023-09-28)
405
+
406
+
407
+ ### Features
408
+
409
+ * allow Paragon v21 in catalog-search ([#356](https://github.com/openedx/frontend-enterprise/issues/356)) ([75005f5](https://github.com/openedx/frontend-enterprise/commit/75005f5e27304e3147fc141ef5dc1bc6ac64a834))
410
+ * removing free/all filter ([#359](https://github.com/openedx/frontend-enterprise/issues/359)) ([f187fbd](https://github.com/openedx/frontend-enterprise/commit/f187fbd89eb8c6b490b8a0fafb7f192ed9dcf24c))
411
+
412
+
413
+
414
+ ## [5.1.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@5.0.0...@edx/frontend-enterprise-catalog-search@5.1.0) (2023-09-07)
415
+
416
+
417
+ ### Features
418
+
419
+ * allow Paragon v21 in catalog-search ([#356](https://github.com/openedx/frontend-enterprise/issues/356)) ([75005f5](https://github.com/openedx/frontend-enterprise/commit/75005f5e27304e3147fc141ef5dc1bc6ac64a834))
420
+
421
+
422
+
423
+ ## [5.0.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.1.5...@edx/frontend-enterprise-catalog-search@5.0.0) (2023-08-15)
424
+
425
+
426
+ ### ⚠ BREAKING CHANGES
427
+
428
+ * Upgrade react-router-dom from v5 to v6.
429
+ Upgrade frontend-platform from v4 to v5.
430
+
431
+ ### Features
432
+
433
+ * Add .npmrc file to more .gitignore files ([#303](https://github.com/openedx/frontend-enterprise/issues/303)) ([d890c21](https://github.com/openedx/frontend-enterprise/commit/d890c212c3f8c5ec81e6dee63f68029ad0b00552))
434
+ * adding exec ed compatibility to suggested search ([#288](https://github.com/openedx/frontend-enterprise/issues/288)) ([21d608c](https://github.com/openedx/frontend-enterprise/commit/21d608ce49b764e62101b5f696b463f6800ddcb0))
435
+ * update react & react-dom to v17 ([#338](https://github.com/openedx/frontend-enterprise/issues/338)) ([b1b548c](https://github.com/openedx/frontend-enterprise/commit/b1b548c0ec27572d639f276507a1495b78db9497))
436
+ * Updated course link for executive4 education courses. ([#336](https://github.com/openedx/frontend-enterprise/issues/336)) ([4212580](https://github.com/openedx/frontend-enterprise/commit/4212580f4fd6c2de4696f25e81f50f2714db1672))
437
+ * upgrade react router to v6 ([#344](https://github.com/openedx/frontend-enterprise/issues/344)) ([54f6340](https://github.com/openedx/frontend-enterprise/commit/54f6340f764a9120bebd654564e0d61918a3cffa))
438
+ * upgraded to node v18, added .nvmrc and updated workflows ([#306](https://github.com/openedx/frontend-enterprise/issues/306)) ([0508783](https://github.com/openedx/frontend-enterprise/commit/050878307ff5f8a94385b7f41070dec19c7e84cc))
439
+
440
+
441
+ ### Bug Fixes
442
+
443
+ * Bump all versions one final time I hope.... ([#297](https://github.com/openedx/frontend-enterprise/issues/297)) ([3452d81](https://github.com/openedx/frontend-enterprise/commit/3452d810bad4b7292ce342ac96bec500809b532d))
444
+ * manully bump versions after failed automation run ([#301](https://github.com/openedx/frontend-enterprise/issues/301)) ([f1e8616](https://github.com/openedx/frontend-enterprise/commit/f1e8616996c46ffda1c7596be6fc323136ac34c2))
445
+ * missing space in search ([#333](https://github.com/openedx/frontend-enterprise/issues/333)) ([c604834](https://github.com/openedx/frontend-enterprise/commit/c604834d2efcfeba5d692e0f8dc7bb1681e72262))
446
+
447
+
448
+
449
+ ## [4.6.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.1.5...@edx/frontend-enterprise-catalog-search@4.6.0) (2023-08-09)
450
+
451
+
452
+ ### Features
453
+
454
+ * Add .npmrc file to more .gitignore files ([#303](https://github.com/openedx/frontend-enterprise/issues/303)) ([d890c21](https://github.com/openedx/frontend-enterprise/commit/d890c212c3f8c5ec81e6dee63f68029ad0b00552))
455
+ * adding exec ed compatibility to suggested search ([#288](https://github.com/openedx/frontend-enterprise/issues/288)) ([21d608c](https://github.com/openedx/frontend-enterprise/commit/21d608ce49b764e62101b5f696b463f6800ddcb0))
456
+ * update react & react-dom to v17 ([#338](https://github.com/openedx/frontend-enterprise/issues/338)) ([b1b548c](https://github.com/openedx/frontend-enterprise/commit/b1b548c0ec27572d639f276507a1495b78db9497))
457
+ * Updated course link for executive4 education courses. ([#336](https://github.com/openedx/frontend-enterprise/issues/336)) ([4212580](https://github.com/openedx/frontend-enterprise/commit/4212580f4fd6c2de4696f25e81f50f2714db1672))
458
+ * upgraded to node v18, added .nvmrc and updated workflows ([#306](https://github.com/openedx/frontend-enterprise/issues/306)) ([0508783](https://github.com/openedx/frontend-enterprise/commit/050878307ff5f8a94385b7f41070dec19c7e84cc))
459
+
460
+
461
+ ### Bug Fixes
462
+
463
+ * Bump all versions one final time I hope.... ([#297](https://github.com/openedx/frontend-enterprise/issues/297)) ([3452d81](https://github.com/openedx/frontend-enterprise/commit/3452d810bad4b7292ce342ac96bec500809b532d))
464
+ * manully bump versions after failed automation run ([#301](https://github.com/openedx/frontend-enterprise/issues/301)) ([f1e8616](https://github.com/openedx/frontend-enterprise/commit/f1e8616996c46ffda1c7596be6fc323136ac34c2))
465
+ * missing space in search ([#333](https://github.com/openedx/frontend-enterprise/issues/333)) ([c604834](https://github.com/openedx/frontend-enterprise/commit/c604834d2efcfeba5d692e0f8dc7bb1681e72262))
466
+
467
+
468
+
469
+ ## [4.5.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.1.5...@edx/frontend-enterprise-catalog-search@4.5.0) (2023-07-20)
470
+
471
+
472
+ ### Features
473
+
474
+ * Add .npmrc file to more .gitignore files ([#303](https://github.com/openedx/frontend-enterprise/issues/303)) ([d890c21](https://github.com/openedx/frontend-enterprise/commit/d890c212c3f8c5ec81e6dee63f68029ad0b00552))
475
+ * adding exec ed compatibility to suggested search ([#288](https://github.com/openedx/frontend-enterprise/issues/288)) ([21d608c](https://github.com/openedx/frontend-enterprise/commit/21d608ce49b764e62101b5f696b463f6800ddcb0))
476
+ * update react & react-dom to v17 ([#338](https://github.com/openedx/frontend-enterprise/issues/338)) ([b1b548c](https://github.com/openedx/frontend-enterprise/commit/b1b548c0ec27572d639f276507a1495b78db9497))
477
+ * Updated course link for executive4 education courses. ([#336](https://github.com/openedx/frontend-enterprise/issues/336)) ([4212580](https://github.com/openedx/frontend-enterprise/commit/4212580f4fd6c2de4696f25e81f50f2714db1672))
478
+ * upgraded to node v18, added .nvmrc and updated workflows ([#306](https://github.com/openedx/frontend-enterprise/issues/306)) ([0508783](https://github.com/openedx/frontend-enterprise/commit/050878307ff5f8a94385b7f41070dec19c7e84cc))
479
+
480
+
481
+ ### Bug Fixes
482
+
483
+ * Bump all versions one final time I hope.... ([#297](https://github.com/openedx/frontend-enterprise/issues/297)) ([3452d81](https://github.com/openedx/frontend-enterprise/commit/3452d810bad4b7292ce342ac96bec500809b532d))
484
+ * manully bump versions after failed automation run ([#301](https://github.com/openedx/frontend-enterprise/issues/301)) ([f1e8616](https://github.com/openedx/frontend-enterprise/commit/f1e8616996c46ffda1c7596be6fc323136ac34c2))
485
+ * missing space in search ([#333](https://github.com/openedx/frontend-enterprise/issues/333)) ([c604834](https://github.com/openedx/frontend-enterprise/commit/c604834d2efcfeba5d692e0f8dc7bb1681e72262))
486
+
487
+
488
+
489
+ ## [4.4.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.1.5...@edx/frontend-enterprise-catalog-search@4.4.0) (2023-06-15)
490
+
491
+
492
+ ### Features
493
+
494
+ * Add .npmrc file to more .gitignore files ([#303](https://github.com/openedx/frontend-enterprise/issues/303)) ([d890c21](https://github.com/openedx/frontend-enterprise/commit/d890c212c3f8c5ec81e6dee63f68029ad0b00552))
495
+ * adding exec ed compatibility to suggested search ([#288](https://github.com/openedx/frontend-enterprise/issues/288)) ([21d608c](https://github.com/openedx/frontend-enterprise/commit/21d608ce49b764e62101b5f696b463f6800ddcb0))
496
+ * Updated course link for executive4 education courses. ([#336](https://github.com/openedx/frontend-enterprise/issues/336)) ([4212580](https://github.com/openedx/frontend-enterprise/commit/4212580f4fd6c2de4696f25e81f50f2714db1672))
497
+ * upgraded to node v18, added .nvmrc and updated workflows ([#306](https://github.com/openedx/frontend-enterprise/issues/306)) ([0508783](https://github.com/openedx/frontend-enterprise/commit/050878307ff5f8a94385b7f41070dec19c7e84cc))
498
+
499
+
500
+ ### Bug Fixes
501
+
502
+ * Bump all versions one final time I hope.... ([#297](https://github.com/openedx/frontend-enterprise/issues/297)) ([3452d81](https://github.com/openedx/frontend-enterprise/commit/3452d810bad4b7292ce342ac96bec500809b532d))
503
+ * manully bump versions after failed automation run ([#301](https://github.com/openedx/frontend-enterprise/issues/301)) ([f1e8616](https://github.com/openedx/frontend-enterprise/commit/f1e8616996c46ffda1c7596be6fc323136ac34c2))
504
+ * missing space in search ([#333](https://github.com/openedx/frontend-enterprise/issues/333)) ([c604834](https://github.com/openedx/frontend-enterprise/commit/c604834d2efcfeba5d692e0f8dc7bb1681e72262))
505
+
506
+
507
+
508
+ ## [4.3.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@4.2.0...@edx/frontend-enterprise-catalog-search@4.3.0) (2023-06-08)
509
+
510
+
511
+ ### Features
512
+
513
+ * Updated course link for executive education courses. ([4212580](https://github.com/openedx/frontend-enterprise/commit/4212580f4fd6c2de4696f25e81f50f2714db1672))
514
+
515
+ ## [4.2.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.1.5...@edx/frontend-enterprise-catalog-search@4.2.0) (2023-05-31)
516
+
517
+
518
+ ### Features
519
+
520
+ * Add .npmrc file to more .gitignore files ([#303](https://github.com/openedx/frontend-enterprise/issues/303)) ([d890c21](https://github.com/openedx/frontend-enterprise/commit/d890c212c3f8c5ec81e6dee63f68029ad0b00552))
521
+ * adding exec ed compatibility to suggested search ([#288](https://github.com/openedx/frontend-enterprise/issues/288)) ([21d608c](https://github.com/openedx/frontend-enterprise/commit/21d608ce49b764e62101b5f696b463f6800ddcb0))
522
+ * upgraded to node v18, added .nvmrc and updated workflows ([#306](https://github.com/openedx/frontend-enterprise/issues/306)) ([0508783](https://github.com/openedx/frontend-enterprise/commit/050878307ff5f8a94385b7f41070dec19c7e84cc))
523
+
524
+
525
+ ### Bug Fixes
526
+
527
+ * Bump all versions one final time I hope.... ([#297](https://github.com/openedx/frontend-enterprise/issues/297)) ([3452d81](https://github.com/openedx/frontend-enterprise/commit/3452d810bad4b7292ce342ac96bec500809b532d))
528
+ * manully bump versions after failed automation run ([#301](https://github.com/openedx/frontend-enterprise/issues/301)) ([f1e8616](https://github.com/openedx/frontend-enterprise/commit/f1e8616996c46ffda1c7596be6fc323136ac34c2))
529
+ * missing space in search ([#333](https://github.com/openedx/frontend-enterprise/issues/333)) ([c604834](https://github.com/openedx/frontend-enterprise/commit/c604834d2efcfeba5d692e0f8dc7bb1681e72262))
530
+
531
+
532
+
533
+ ## [4.1.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.1.5...@edx/frontend-enterprise-catalog-search@4.1.0) (2023-05-12)
534
+
535
+
536
+ ### Features
537
+
538
+ * Add .npmrc file to more .gitignore files ([#303](https://github.com/openedx/frontend-enterprise/issues/303)) ([d890c21](https://github.com/openedx/frontend-enterprise/commit/d890c212c3f8c5ec81e6dee63f68029ad0b00552))
539
+ * adding exec ed compatibility to suggested search ([#288](https://github.com/openedx/frontend-enterprise/issues/288)) ([21d608c](https://github.com/openedx/frontend-enterprise/commit/21d608ce49b764e62101b5f696b463f6800ddcb0))
540
+ * upgraded to node v18, added .nvmrc and updated workflows ([#306](https://github.com/openedx/frontend-enterprise/issues/306)) ([0508783](https://github.com/openedx/frontend-enterprise/commit/050878307ff5f8a94385b7f41070dec19c7e84cc))
541
+
542
+
543
+ ### Bug Fixes
544
+
545
+ * Bump all versions one final time I hope.... ([#297](https://github.com/openedx/frontend-enterprise/issues/297)) ([3452d81](https://github.com/openedx/frontend-enterprise/commit/3452d810bad4b7292ce342ac96bec500809b532d))
546
+ * manully bump versions after failed automation run ([#301](https://github.com/openedx/frontend-enterprise/issues/301)) ([f1e8616](https://github.com/openedx/frontend-enterprise/commit/f1e8616996c46ffda1c7596be6fc323136ac34c2))
547
+
548
+
549
+
550
+ ## [4.0.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.1.5...@edx/frontend-enterprise-catalog-search@4.0.0) (2023-05-09)
551
+
552
+
553
+ ### Features
554
+
555
+ * Add .npmrc file to more .gitignore files ([#303](https://github.com/openedx/frontend-enterprise/issues/303)) ([d890c21](https://github.com/openedx/frontend-enterprise/commit/d890c212c3f8c5ec81e6dee63f68029ad0b00552))
556
+ * upgraded to node v18, added .nvmrc and updated workflows ([#306](https://github.com/openedx/frontend-enterprise/issues/306)) ([0508783](https://github.com/openedx/frontend-enterprise/commit/050878307ff5f8a94385b7f41070dec19c7e84cc))
557
+
558
+
559
+ ### Bug Fixes
560
+
561
+ * Bump all versions one final time I hope.... ([#297](https://github.com/openedx/frontend-enterprise/issues/297)) ([3452d81](https://github.com/openedx/frontend-enterprise/commit/3452d810bad4b7292ce342ac96bec500809b532d))
562
+ * manully bump versions after failed automation run ([#301](https://github.com/openedx/frontend-enterprise/issues/301)) ([f1e8616](https://github.com/openedx/frontend-enterprise/commit/f1e8616996c46ffda1c7596be6fc323136ac34c2))
563
+
564
+
565
+
566
+ ## [3.3.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.1.5...@edx/frontend-enterprise-catalog-search@3.3.0) (2023-04-24)
567
+
568
+
569
+ ### Features
570
+
571
+ * Add .npmrc file to more .gitignore files ([#303](https://github.com/openedx/frontend-enterprise/issues/303)) ([d890c21](https://github.com/openedx/frontend-enterprise/commit/d890c212c3f8c5ec81e6dee63f68029ad0b00552))
572
+
573
+
574
+ ### Bug Fixes
575
+
576
+ * Bump all versions one final time I hope.... ([#297](https://github.com/openedx/frontend-enterprise/issues/297)) ([3452d81](https://github.com/openedx/frontend-enterprise/commit/3452d810bad4b7292ce342ac96bec500809b532d))
577
+ * manully bump versions after failed automation run ([#301](https://github.com/openedx/frontend-enterprise/issues/301)) ([f1e8616](https://github.com/openedx/frontend-enterprise/commit/f1e8616996c46ffda1c7596be6fc323136ac34c2))
578
+
579
+
580
+
581
+ ## [3.2.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.1.5...@edx/frontend-enterprise-catalog-search@3.2.0) (2023-04-24)
582
+
583
+
584
+ ### Features
585
+
586
+ * Add .npmrc file to more .gitignore files ([#303](https://github.com/openedx/frontend-enterprise/issues/303)) ([d890c21](https://github.com/openedx/frontend-enterprise/commit/d890c212c3f8c5ec81e6dee63f68029ad0b00552))
587
+
588
+
589
+ ### Bug Fixes
590
+
591
+ * Bump all versions one final time I hope.... ([#297](https://github.com/openedx/frontend-enterprise/issues/297)) ([3452d81](https://github.com/openedx/frontend-enterprise/commit/3452d810bad4b7292ce342ac96bec500809b532d))
592
+ * manully bump versions after failed automation run ([#301](https://github.com/openedx/frontend-enterprise/issues/301)) ([f1e8616](https://github.com/openedx/frontend-enterprise/commit/f1e8616996c46ffda1c7596be6fc323136ac34c2))
593
+
594
+
595
+
596
+ ### [3.1.9](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.1.5...@edx/frontend-enterprise-catalog-search@3.1.9) (2023-02-17)
597
+
598
+
599
+ ### Bug Fixes
600
+
601
+ * Bump all versions one final time I hope.... ([#297](https://github.com/openedx/frontend-enterprise/issues/297)) ([3452d81](https://github.com/openedx/frontend-enterprise/commit/3452d810bad4b7292ce342ac96bec500809b532d))
602
+
603
+
604
+
605
+ ### [3.1.7](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.1.5...@edx/frontend-enterprise-catalog-search@3.1.7) (2023-02-16)
606
+
607
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
608
+
609
+
610
+
611
+
612
+
613
+ ### [3.1.5](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.1.4...@edx/frontend-enterprise-catalog-search@3.1.5) (2022-12-06)
614
+
615
+
616
+ ### Bug Fixes
617
+
618
+ * only apply bg-brand-primary to SearchHeader if variant=inverse ([#281](https://github.com/openedx/frontend-enterprise/issues/281)) ([7f77bfd](https://github.com/openedx/frontend-enterprise/commit/7f77bfda3c98374b28f95e650ce0b9e093053212))
619
+
620
+
621
+
622
+ ### [3.1.4](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.1.3...@edx/frontend-enterprise-catalog-search@3.1.4) (2022-09-20)
623
+
624
+
625
+ ### Bug Fixes
626
+
627
+ * hotfix for explore catalog issue ([#275](https://github.com/openedx/frontend-enterprise/issues/275)) ([74e88be](https://github.com/openedx/frontend-enterprise/commit/74e88bef518f8491230677798156078d13ec62df))
628
+
629
+
630
+
631
+ ### [3.1.3](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.1.2...@edx/frontend-enterprise-catalog-search@3.1.3) (2022-08-24)
632
+
633
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
634
+
635
+
636
+
637
+
638
+
639
+ ### [3.1.2](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.1.1...@edx/frontend-enterprise-catalog-search@3.1.2) (2022-08-03)
640
+
641
+
642
+ ### Bug Fixes
643
+
644
+ * small fix to dropdown toggle ([#269](https://github.com/openedx/frontend-enterprise/issues/269)) ([3a515c0](https://github.com/openedx/frontend-enterprise/commit/3a515c0e8db46e2e590bf3bd5e55cea81e0f2af1))
645
+
646
+
647
+
648
+ ### 3.1.1 (2022-07-15)
649
+
650
+
651
+ ### Bug Fixes
652
+
653
+ * search reset after checkbox click in dropdown ([#267](https://github.com/openedx/frontend-enterprise/issues/267)) ([eb1d15a](https://github.com/openedx/frontend-enterprise/commit/eb1d15a7acd86f06dcc8fb6ae14efc00f13e9778))
654
+
655
+
656
+
657
+ ## [3.1.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.0.5...@edx/frontend-enterprise-catalog-search@3.1.0) (2022-06-22)
658
+
659
+
660
+ ### Features
661
+
662
+ * add hotjar library ([#264](https://github.com/openedx/frontend-enterprise/issues/264)) ([f132ce1](https://github.com/openedx/frontend-enterprise/commit/f132ce1716bb64714a8c368a80f673d1e9ef12fc))
663
+
664
+
665
+
666
+ ### [3.0.5](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.0.4...@edx/frontend-enterprise-catalog-search@3.0.5) (2022-06-17)
667
+
668
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
669
+
670
+
671
+
672
+
673
+
674
+ ### [3.0.4](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.0.3...@edx/frontend-enterprise-catalog-search@3.0.4) (2022-06-02)
675
+
676
+
677
+ ### Bug Fixes
678
+
679
+ * update devDependencies in `utils` and `logistration`; add more docs to README ([#260](https://github.com/openedx/frontend-enterprise/issues/260)) ([db5204d](https://github.com/openedx/frontend-enterprise/commit/db5204dd417a57d4e20a66d5cc1fdfd5fee298cb))
680
+
681
+
682
+
683
+ ### [3.0.3](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.0.2...@edx/frontend-enterprise-catalog-search@3.0.3) (2022-06-02)
684
+
685
+
686
+ ### Bug Fixes
687
+
688
+ * Use media query to resize for mobile in SearchFilters ([#259](https://github.com/openedx/frontend-enterprise/issues/259)) ([6780f94](https://github.com/openedx/frontend-enterprise/commit/6780f94058badbf82b909430db209574698dd596))
689
+
690
+
691
+
692
+ ### [3.0.2](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.0.1...@edx/frontend-enterprise-catalog-search@3.0.2) (2022-05-11)
693
+
694
+
695
+ ### Bug Fixes
696
+
697
+ * switch SearchFilters to mobile menu when smaller than large bp. ENT-5800 ([#256](https://github.com/openedx/frontend-enterprise/issues/256)) ([65f5e10](https://github.com/openedx/frontend-enterprise/commit/65f5e10017133b0887bcd86cb61433522d7b962f))
698
+
699
+
700
+
701
+ ### [3.0.1](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@3.0.0...@edx/frontend-enterprise-catalog-search@3.0.1) (2022-04-15)
702
+
703
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
704
+
705
+
706
+
707
+
708
+
709
+ ## [3.0.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.9.0...@edx/frontend-enterprise-catalog-search@3.0.0) (2022-04-14)
710
+
711
+
712
+ ### ⚠ BREAKING CHANGES
713
+
714
+ * The Open edX platform is collectively moving towards Node 16. By doing so in this repository, we can now use NPM workspaces in place of Lerna in many places. Lerna is still used for publishing to NPM, updating CHANGELOGs and package.json files upon released. But NPM workspace commands can now be used instead of Lerna commands for the developer experience, which is more performant, easier to reason about, and natively supported by NPM.
715
+
716
+ * Node 16 upgrade and peer dependency cleanup (#250) ([d4e3caf](https://github.com/openedx/frontend-enterprise/commit/d4e3caf7e15a626f1c5e4b4d27f5e09c6f412120)), closes [#250](https://github.com/openedx/frontend-enterprise/issues/250)
717
+
718
+
719
+
720
+ ## [2.9.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.8.0...@edx/frontend-enterprise-catalog-search@2.9.0) (2022-04-12)
721
+
722
+
723
+ ### Features
724
+
725
+ * persistent facet filters ([#251](https://github.com/openedx/frontend-enterprise/issues/251)) ([c67fc7f](https://github.com/openedx/frontend-enterprise/commit/c67fc7ff950d757ba8f97b7b562ba0c86168a682))
726
+
727
+
728
+
729
+ ## [2.8.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.7.0...@edx/frontend-enterprise-catalog-search@2.8.0) (2022-04-05)
730
+
731
+
732
+ ### Features
733
+
734
+ * making suggested items backwards compatible and redirect func overridable ([#242](https://github.com/openedx/frontend-enterprise/issues/242)) ([01f284d](https://github.com/openedx/frontend-enterprise/commit/01f284d7999e046df2c6a395997ac410e92a5fdb))
735
+
736
+
737
+
738
+ ## [2.7.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.6.1...@edx/frontend-enterprise-catalog-search@2.7.0) (2022-03-07)
739
+
740
+
741
+ ### Features
742
+
743
+ * add learning type `Pathways` ([#237](https://github.com/openedx/frontend-enterprise/issues/237)) ([2641323](https://github.com/openedx/frontend-enterprise/commit/26413236489e2b256ae13f43a209dc9ba64ba264))
744
+
745
+
746
+
747
+ ### [2.6.1](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.6.0...@edx/frontend-enterprise-catalog-search@2.6.1) (2022-03-03)
748
+
749
+
750
+ ### Bug Fixes
751
+
752
+ * autocomplete defensive code fix ([#236](https://github.com/openedx/frontend-enterprise/issues/236)) ([c5653a4](https://github.com/openedx/frontend-enterprise/commit/c5653a4b0d1958d5d6ebe543a851a7c28ad4349b))
753
+
754
+
755
+
756
+ ## [2.6.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.5.0...@edx/frontend-enterprise-catalog-search@2.6.0) (2022-02-23)
757
+
758
+
759
+ ### Features
760
+
761
+ * add type ahead autocomplete suggestion support ([#215](https://github.com/openedx/frontend-enterprise/issues/215)) ([66d80f2](https://github.com/openedx/frontend-enterprise/commit/66d80f253922fe3494b26df36f63b720160d1ce2))
762
+
763
+
764
+
765
+ ## [2.5.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.4.1...@edx/frontend-enterprise-catalog-search@2.5.0) (2022-01-24)
766
+
767
+
768
+ ### Features
769
+
770
+ * add hasFeatureFlagEnabled util function ([#209](https://github.com/openedx/frontend-enterprise/issues/209)) ([9dca2e4](https://github.com/openedx/frontend-enterprise/commit/9dca2e41ea0b043d17356b4accb5e40c582a5b26))
771
+
772
+
773
+
774
+ ### [2.4.1](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.4.0...@edx/frontend-enterprise-catalog-search@2.4.1) (2022-01-24)
775
+
776
+
777
+ ### Bug Fixes
778
+
779
+ * remove query-string dependency ([#204](https://github.com/openedx/frontend-enterprise/issues/204)) ([b027561](https://github.com/openedx/frontend-enterprise/commit/b0275613e1eaa8ddc8bf233a906ddfb6becc858f))
780
+
781
+
782
+
783
+ ## [2.4.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.3.0...@edx/frontend-enterprise-catalog-search@2.4.0) (2021-12-13)
784
+
785
+
786
+ ### Features
787
+
788
+ * add functionality to hide searchbox header ([#194](https://github.com/openedx/frontend-enterprise/issues/194)) ([c56e3da](https://github.com/openedx/frontend-enterprise/commit/c56e3da34162a58202d4f34efa7b7542657e6616))
789
+
790
+
791
+
792
+ ## [2.3.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.2.5...@edx/frontend-enterprise-catalog-search@2.3.0) (2021-12-09)
793
+
794
+
795
+ ### Features
796
+
797
+ * support enterprise customer invite key in LoginRedirect ([#192](https://github.com/openedx/frontend-enterprise/issues/192)) ([9b8a200](https://github.com/openedx/frontend-enterprise/commit/9b8a200633d5fc665ed9faf79d10f43cb7a9386a))
798
+
799
+
800
+
801
+ ### [2.2.5](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.2.4...@edx/frontend-enterprise-catalog-search@2.2.5) (2021-11-09)
802
+
803
+
804
+ ### Bug Fixes
805
+
806
+ * Change the Search Box title to include programs ([#180](https://github.com/openedx/frontend-enterprise/issues/180)) ([ec450eb](https://github.com/openedx/frontend-enterprise/commit/ec450ebd7d028885d66cd0ed5ea9e22f28b521a9))
807
+
808
+
809
+
810
+ ### [2.2.4](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.2.3...@edx/frontend-enterprise-catalog-search@2.2.4) (2021-11-03)
811
+
812
+
813
+ ### Reverts
814
+
815
+ * Revert "fix: reverted changes to use program_title and now using program title instead of program title. (#181)" (#182) ([838300f](https://github.com/openedx/frontend-enterprise/commit/838300f38979c2d3920661182c956e4b70497625)), closes [#181](https://github.com/openedx/frontend-enterprise/issues/181) [#182](https://github.com/openedx/frontend-enterprise/issues/182)
816
+
817
+
818
+
819
+ ### [2.2.3](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.2.2...@edx/frontend-enterprise-catalog-search@2.2.3) (2021-11-03)
820
+
821
+
822
+ ### Bug Fixes
823
+
824
+ * reverted changes to use program_title and now using program title instead of program title. ([#181](https://github.com/openedx/frontend-enterprise/issues/181)) ([a812b88](https://github.com/openedx/frontend-enterprise/commit/a812b88971c62c41deac8e5e06d6170856295a98))
825
+
826
+
827
+
828
+ ### [2.2.2](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.2.1...@edx/frontend-enterprise-catalog-search@2.2.2) (2021-11-03)
829
+
830
+
831
+ ### Bug Fixes
832
+
833
+ * use shared browserslist configuration ([#179](https://github.com/openedx/frontend-enterprise/issues/179)) ([6ffebe5](https://github.com/openedx/frontend-enterprise/commit/6ffebe5ba490567c691eac978125eee530707556))
834
+
835
+
836
+
837
+ ### [2.2.1](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.2.0...@edx/frontend-enterprise-catalog-search@2.2.1) (2021-10-29)
838
+
839
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
840
+
841
+
842
+
843
+
844
+
845
+ ## [2.2.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.1.2...@edx/frontend-enterprise-catalog-search@2.2.0) (2021-10-21)
846
+
847
+
848
+ ### Features
849
+
850
+ * hide refinement tags with url param ([#175](https://github.com/openedx/frontend-enterprise/issues/175)) ([9d251a9](https://github.com/openedx/frontend-enterprise/commit/9d251a9bf638e3a85f7291337129be3c47dc25eb))
851
+
852
+
853
+
854
+ ### [2.1.2](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.1.1...@edx/frontend-enterprise-catalog-search@2.1.2) (2021-10-14)
855
+
856
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
857
+
858
+
859
+
860
+
861
+
862
+ ### [2.1.1](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.1.0...@edx/frontend-enterprise-catalog-search@2.1.1) (2021-09-23)
863
+
864
+
865
+ ### Bug Fixes
866
+
867
+ * show count on dropdown list items only when showBadge is true ([64f8aac](https://github.com/openedx/frontend-enterprise/commit/64f8aac7f655d8c8317438531e23c5bb7ff2da43))
868
+
869
+
870
+
871
+ ## [2.1.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.0.7...@edx/frontend-enterprise-catalog-search@2.1.0) (2021-09-03)
872
+
873
+
874
+ ### Features
875
+
876
+ * ENT4876: Added delete functionality in single-item refinement type ([#168](https://github.com/openedx/frontend-enterprise/issues/168)) ([49da3d6](https://github.com/openedx/frontend-enterprise/commit/49da3d6bf95e2a7e5e4110a5924ca972a8e384ea))
877
+
878
+
879
+
880
+ ### [2.0.7](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.0.5...@edx/frontend-enterprise-catalog-search@2.0.7) (2021-09-01)
881
+
882
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
883
+
884
+
885
+
886
+
887
+
888
+ ### [2.0.6](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.0.5...@edx/frontend-enterprise-catalog-search@2.0.6) (2021-09-01)
889
+
890
+ ### Bug Fixes
891
+
892
+ * update alignment in Facet dropdown items
893
+ * Badges were showing an unformatted '0' instead of 0 in badge form when result count was 0
894
+
895
+
896
+ ### [2.0.5](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.0.4...@edx/frontend-enterprise-catalog-search@2.0.5) (2021-08-24)
897
+
898
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
899
+
900
+
901
+
902
+
903
+
904
+ ### [2.0.4](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.0.3...@edx/frontend-enterprise-catalog-search@2.0.4) (2021-08-18)
905
+
906
+
907
+ ### Bug Fixes
908
+
909
+ * update Algolia link in catalog-search README ([#163](https://github.com/openedx/frontend-enterprise/issues/163)) ([2cfa8ca](https://github.com/openedx/frontend-enterprise/commit/2cfa8ca1cabcfad6c0733b764b9a78ed8921d464))
910
+
911
+
912
+
913
+ ### [2.0.3](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.0.2...@edx/frontend-enterprise-catalog-search@2.0.3) (2021-08-17)
914
+
915
+
916
+ ### Bug Fixes
917
+
918
+ * update readme to test lerna publishing ([#161](https://github.com/openedx/frontend-enterprise/issues/161)) ([fcb3357](https://github.com/openedx/frontend-enterprise/commit/fcb33570c8e270983ed2bc692c3283e63e16ce38))
919
+
920
+
921
+
922
+ ### [2.0.2](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.0.1...@edx/frontend-enterprise-catalog-search@2.0.2) (2021-08-17)
923
+
924
+
925
+ ### Bug Fixes
926
+
927
+ * update readme to test lerna publishing ([#160](https://github.com/openedx/frontend-enterprise/issues/160)) ([7ea3248](https://github.com/openedx/frontend-enterprise/commit/7ea3248171f22cd6db62f492377cc5deafda367c))
928
+
929
+
930
+
931
+ ### [2.0.1](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@2.0.0...@edx/frontend-enterprise-catalog-search@2.0.1) (2021-08-17)
932
+
933
+
934
+ ### Bug Fixes
935
+
936
+ * update readme heading ([#158](https://github.com/openedx/frontend-enterprise/issues/158)) ([81e9b61](https://github.com/openedx/frontend-enterprise/commit/81e9b615b40e818688af588881ef30971c860087))
937
+
938
+
939
+
940
+ ## [2.0.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@1.0.0...@edx/frontend-enterprise-catalog-search@2.0.0) (2021-08-17)
941
+
942
+
943
+ ### ⚠ BREAKING CHANGES
944
+
945
+ * `refinementsFromQueryParams` renamed to `refinements`
946
+
947
+ ### Bug Fixes
948
+
949
+ * improved support for lists of attribute values in algolia facet filtering ([#145](https://github.com/openedx/frontend-enterprise/issues/145)) ([ef26cda](https://github.com/openedx/frontend-enterprise/commit/ef26cda0008a26f1c1073d74c11868064ee65004))
950
+
951
+
952
+
953
+ # [1.0.0](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.17...@edx/frontend-enterprise-catalog-search@1.0.0) (2021-08-17)
954
+
955
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
956
+
957
+
958
+
959
+
960
+
961
+ ## [0.1.17](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.16...@edx/frontend-enterprise-catalog-search@0.1.17) (2021-08-17)
962
+
963
+
964
+ ### Bug Fixes
965
+
966
+ * update readme ([99705d5](https://github.com/openedx/frontend-enterprise/commit/99705d53082c54c493930f873bd4fbb0ab7dc52c))
967
+
968
+
969
+
970
+
971
+
972
+ ## [0.1.16](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.15...@edx/frontend-enterprise-catalog-search@0.1.16) (2021-08-17)
973
+
974
+
975
+ ### Bug Fixes
976
+
977
+ * update readme ([#153](https://github.com/openedx/frontend-enterprise/issues/153)) ([73b087a](https://github.com/openedx/frontend-enterprise/commit/73b087a8fbfddf5bea131664fffdae21cb64b265))
978
+
979
+
980
+
981
+
982
+
983
+ ## [0.1.15](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.14...@edx/frontend-enterprise-catalog-search@0.1.15) (2021-08-17)
984
+
985
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
986
+
987
+
988
+
989
+
990
+
991
+ ## [0.1.14](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.13...@edx/frontend-enterprise-catalog-search@0.1.14) (2021-08-16)
992
+
993
+
994
+ ### Bug Fixes
995
+
996
+ * Updated FacetListBase to save list of selected item even for single-item facetValueType ([#147](https://github.com/openedx/frontend-enterprise/issues/147)) ([95da33c](https://github.com/openedx/frontend-enterprise/commit/95da33c2decf9133be36363ed01c9dc18b96b08f))
997
+
998
+
999
+
1000
+
1001
+
1002
+ ## [0.1.13](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.12...@edx/frontend-enterprise-catalog-search@0.1.13) (2021-08-05)
1003
+
1004
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
1005
+
1006
+
1007
+
1008
+
1009
+
1010
+ ## [0.1.12](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.12...@edx/frontend-enterprise-catalog-search@0.1.12) (2021-08-05)
1011
+
1012
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
1013
+
1014
+
1015
+
1016
+
1017
+
1018
+ ## [0.1.11](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.10...@edx/frontend-enterprise-catalog-search@0.1.11) (2021-06-09)
1019
+
1020
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
1021
+
1022
+
1023
+
1024
+
1025
+
1026
+ ## [0.1.10](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.9...@edx/frontend-enterprise-catalog-search@0.1.10) (2021-05-20)
1027
+
1028
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
1029
+
1030
+
1031
+
1032
+
1033
+
1034
+ ## [0.1.9](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.8...@edx/frontend-enterprise-catalog-search@0.1.9) (2021-05-20)
1035
+
1036
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
1037
+
1038
+
1039
+
1040
+
1041
+
1042
+ ## [0.1.8](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.7...@edx/frontend-enterprise-catalog-search@0.1.8) (2021-05-14)
1043
+
1044
+
1045
+ ### Bug Fixes
1046
+
1047
+ * add hotjar to searchbox ([ad9f087](https://github.com/openedx/frontend-enterprise/commit/ad9f087a09ac7831676f63d66391973d2a0e4432))
1048
+
1049
+
1050
+
1051
+
1052
+
1053
+ ## [0.1.7](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.6...@edx/frontend-enterprise-catalog-search@0.1.7) (2021-05-11)
1054
+
1055
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
1056
+
1057
+
1058
+
1059
+
1060
+
1061
+ ## [0.1.6](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.4...@edx/frontend-enterprise-catalog-search@0.1.6) (2021-05-10)
1062
+
1063
+
1064
+ ### Bug Fixes
1065
+
1066
+ * run lerna commands for all packages regardless of whether they changed in release.yml ([#109](https://github.com/openedx/frontend-enterprise/issues/109)) ([608b1fb](https://github.com/openedx/frontend-enterprise/commit/608b1fb4c3b5343f05ef994436dbbd2418668e17))
1067
+ * update publishing behavior and add additional docs ([#104](https://github.com/openedx/frontend-enterprise/issues/104)) ([525c430](https://github.com/openedx/frontend-enterprise/commit/525c430d5027e4514a27edccfed3d6ed4ddae091))
1068
+
1069
+
1070
+
1071
+
1072
+
1073
+ ## [0.1.5](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.4...@edx/frontend-enterprise-catalog-search@0.1.5) (2021-05-10)
1074
+
1075
+
1076
+ ### Bug Fixes
1077
+
1078
+ * run lerna commands for all packages regardless of whether they changed in release.yml ([#109](https://github.com/openedx/frontend-enterprise/issues/109)) ([608b1fb](https://github.com/openedx/frontend-enterprise/commit/608b1fb4c3b5343f05ef994436dbbd2418668e17))
1079
+ * update publishing behavior and add additional docs ([#104](https://github.com/openedx/frontend-enterprise/issues/104)) ([525c430](https://github.com/openedx/frontend-enterprise/commit/525c430d5027e4514a27edccfed3d6ed4ddae091))
1080
+
1081
+
1082
+
1083
+
1084
+
1085
+ ## [0.1.4](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.3...@edx/frontend-enterprise-catalog-search@0.1.4) (2021-05-08)
1086
+
1087
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
1088
+
1089
+
1090
+
1091
+
1092
+
1093
+ ## [0.1.3](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.2...@edx/frontend-enterprise-catalog-search@0.1.3) (2021-05-07)
1094
+
1095
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
1096
+
1097
+
1098
+
1099
+
1100
+
1101
+ ## [0.1.2](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.1...@edx/frontend-enterprise-catalog-search@0.1.2) (2021-05-07)
1102
+
1103
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
1104
+
1105
+
1106
+
1107
+
1108
+
1109
+ ## [0.1.1](https://github.com/openedx/frontend-enterprise/compare/@edx/frontend-enterprise-catalog-search@0.1.0...@edx/frontend-enterprise-catalog-search@0.1.1) (2021-05-07)
1110
+
1111
+ **Note:** Version bump only for package @edx/frontend-enterprise-catalog-search
1112
+
1113
+
1114
+
1115
+
1116
+
1117
+ # 0.1.0 (2021-05-06)
1118
+
1119
+
1120
+ * refactor!: separate components into npm packages in monorepo; add logistration-redirect (#97) ([3e2a3ac](https://github.com/openedx/frontend-enterprise/commit/3e2a3acf327211ed82415e8052d008bd1fdd2e33)), closes [#97](https://github.com/openedx/frontend-enterprise/issues/97)
1121
+
1122
+
1123
+ ### BREAKING CHANGES
1124
+
1125
+ * refactor to split ui components into separate packages using Lerna