@blaze-cms/react-page-builder 0.123.0-alpha.23 → 0.123.0-alpha.27

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 +42 -870
  2. package/lib/components/Card/Card.js +9 -6
  3. package/lib/components/Card/Card.js.map +1 -1
  4. package/lib/components/DataSummary/helpers/get-link-based-on-value.js +4 -0
  5. package/lib/components/DataSummary/helpers/get-link-based-on-value.js.map +1 -1
  6. package/lib/components/SearchFilter/SearchFilter/FiltersList.js +16 -11
  7. package/lib/components/SearchFilter/SearchFilter/FiltersList.js.map +1 -1
  8. package/lib/components/SearchFilter/components/Select.js +22 -10
  9. package/lib/components/SearchFilter/components/Select.js.map +1 -1
  10. package/lib/constants/index.js +5 -2
  11. package/lib/constants/index.js.map +1 -1
  12. package/lib-es/components/Card/Card.js +9 -6
  13. package/lib-es/components/Card/Card.js.map +1 -1
  14. package/lib-es/components/DataSummary/helpers/get-link-based-on-value.js +5 -1
  15. package/lib-es/components/DataSummary/helpers/get-link-based-on-value.js.map +1 -1
  16. package/lib-es/components/SearchFilter/SearchFilter/FiltersList.js +20 -16
  17. package/lib-es/components/SearchFilter/SearchFilter/FiltersList.js.map +1 -1
  18. package/lib-es/components/SearchFilter/components/Select.js +22 -6
  19. package/lib-es/components/SearchFilter/components/Select.js.map +1 -1
  20. package/lib-es/constants/index.js +3 -1
  21. package/lib-es/constants/index.js.map +1 -1
  22. package/package.json +3 -3
  23. package/src/components/Card/Card.js +15 -5
  24. package/src/components/DataSummary/helpers/get-link-based-on-value.js +9 -1
  25. package/src/components/SearchFilter/SearchFilter/FiltersList.js +5 -2
  26. package/src/components/SearchFilter/components/Select.js +29 -6
  27. package/src/constants/index.js +3 -1
  28. package/tests/unit/src/components/Card/__snapshots__/Card.test.js.snap +10 -10
  29. package/tests/unit/src/components/Card/__snapshots__/CardContainer.test.js.snap +4 -4
  30. package/tests/unit/src/components/Card/__snapshots__/CardRender.test.js.snap +1 -1
  31. package/tests/unit/src/components/DataSummary/helpers/get-link-based-on-value.test.js +29 -0
  32. package/tests/unit/src/components/List/components/Cards/__snapshots__/CardsRender.test.js.snap +12 -12
  33. package/tests/unit/src/components/SearchFilter/components/Select.test.js +58 -4
  34. package/tests/unit/src/components/SearchFilter/components/__snapshots__/Select.test.js.snap +28 -5
package/CHANGELOG.md CHANGED
@@ -3,7 +3,7 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- # [0.123.0-alpha.23](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.22...v0.123.0-alpha.23) (2022-04-04)
6
+ # [0.123.0-alpha.27](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.26...v0.123.0-alpha.27) (2022-04-07)
7
7
 
8
8
  **Note:** Version bump only for package @blaze-cms/react-page-builder
9
9
 
@@ -11,7 +11,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
11
11
 
12
12
 
13
13
 
14
- # [0.123.0-alpha.22](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.21...v0.123.0-alpha.22) (2022-04-04)
14
+ # [0.123.0-alpha.25](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.24...v0.123.0-alpha.25) (2022-04-07)
15
15
 
16
16
  **Note:** Version bump only for package @blaze-cms/react-page-builder
17
17
 
@@ -19,384 +19,257 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
19
19
 
20
20
 
21
21
 
22
- # [0.123.0-alpha.21](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.20...v0.123.0-alpha.21) (2022-04-01)
23
-
24
- **Note:** Version bump only for package @blaze-cms/react-page-builder
25
-
26
-
22
+ # [0.123.0-alpha.24](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.23...v0.123.0-alpha.24) (2022-04-05)
27
23
 
28
24
 
25
+ ### Bug Fixes
29
26
 
30
- # [0.123.0-alpha.20](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.19...v0.123.0-alpha.20) (2022-04-01)
27
+ * handle default select filter value correctly ([4dfb85a](https://github.com/thebyte9/blaze/commit/4dfb85a6e1aeb9e7b927d06088220ed38e8886e5))
28
+ * render empty card block when removing card that same as parent record ([#3171](https://github.com/thebyte9/blaze/issues/3171)) ([31c1644](https://github.com/thebyte9/blaze/commit/31c1644db187a1a2ac0337254770d914a4542410))
31
29
 
32
- **Note:** Version bump only for package @blaze-cms/react-page-builder
33
30
 
31
+ ### Features
34
32
 
33
+ * add display label as placeholder for select filter ([cf3bbf1](https://github.com/thebyte9/blaze/commit/cf3bbf18f0316d7b61b4da4e631750033105bb02))
34
+ * add email/web links around matching data summary values ([#3407](https://github.com/thebyte9/blaze/issues/3407)) ([78257b2](https://github.com/thebyte9/blaze/commit/78257b2f9b75e05e229a45c7d0a09d1bea452b57))
35
+ * add tel: link to data summary data ([#3420](https://github.com/thebyte9/blaze/issues/3420)) ([9f59a02](https://github.com/thebyte9/blaze/commit/9f59a0200dec1c506b2a7062cbaff812d51c85e1))
35
36
 
36
37
 
37
38
 
38
- # [0.123.0-alpha.19](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.18...v0.123.0-alpha.19) (2022-03-31)
39
+ ## [0.122.2](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.22...v0.122.2) (2022-04-04)
39
40
 
40
41
 
41
42
  ### Bug Fixes
42
43
 
43
- * handle search filter with css ([#3395](https://github.com/thebyte9/blaze/issues/3395)) ([41cef02](https://github.com/thebyte9/blaze/commit/41cef02add747256cb813b0d2985f54ec92a4061))
44
+ * add initial modifier to filter form ([be2254c](https://github.com/thebyte9/blaze/commit/be2254c967137b1c08e9989fcd1bf29d3675bb05))
45
+ * handle search filter with css ([872dc99](https://github.com/thebyte9/blaze/commit/872dc99b2ff26931bad9280f62b771d01a8c1c10))
46
+ * remove visibility ([7479231](https://github.com/thebyte9/blaze/commit/747923186c1c127dd82b4c4565b91b93e5812593))
47
+ * remove visibility ([32afbb4](https://github.com/thebyte9/blaze/commit/32afbb49f097a43e3e58a4938862a839beabe394))
48
+ * update to handle isCollapseOnMobile more consistently ([3123d99](https://github.com/thebyte9/blaze/commit/3123d9952f3d19391f91252bc1cfc716c787bed1))
44
49
 
45
50
 
46
51
 
47
52
 
48
53
 
49
- # [0.123.0-alpha.18](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.17...v0.123.0-alpha.18) (2022-03-31)
54
+ # [0.123.0-alpha.23](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.22...v0.123.0-alpha.23) (2022-04-04)
50
55
 
51
56
  **Note:** Version bump only for package @blaze-cms/react-page-builder
52
57
 
58
+ # [0.123.0-alpha.22](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.21...v0.123.0-alpha.22) (2022-04-04)
53
59
 
60
+ **Note:** Version bump only for package @blaze-cms/react-page-builder
54
61
 
62
+ # [0.123.0-alpha.21](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.20...v0.123.0-alpha.21) (2022-04-01)
55
63
 
64
+ **Note:** Version bump only for package @blaze-cms/react-page-builder
56
65
 
57
- # [0.123.0-alpha.17](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.16...v0.123.0-alpha.17) (2022-03-31)
66
+ # [0.123.0-alpha.20](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.19...v0.123.0-alpha.20) (2022-04-01)
58
67
 
59
68
  **Note:** Version bump only for package @blaze-cms/react-page-builder
60
69
 
70
+ # [0.123.0-alpha.19](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.18...v0.123.0-alpha.19) (2022-03-31)
61
71
 
72
+ ### Bug Fixes
62
73
 
74
+ * handle search filter with css ([#3395](https://github.com/thebyte9/blaze/issues/3395)) ([41cef02](https://github.com/thebyte9/blaze/commit/41cef02add747256cb813b0d2985f54ec92a4061))
63
75
 
64
-
65
- # [0.123.0-alpha.16](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.15...v0.123.0-alpha.16) (2022-03-30)
76
+ # [0.123.0-alpha.18](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.17...v0.123.0-alpha.18) (2022-03-31)
66
77
 
67
78
  **Note:** Version bump only for package @blaze-cms/react-page-builder
68
79
 
80
+ # [0.123.0-alpha.17](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.16...v0.123.0-alpha.17) (2022-03-31)
69
81
 
82
+ **Note:** Version bump only for package @blaze-cms/react-page-builder
70
83
 
84
+ # [0.123.0-alpha.16](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.15...v0.123.0-alpha.16) (2022-03-30)
71
85
 
86
+ **Note:** Version bump only for package @blaze-cms/react-page-builder
72
87
 
73
88
  # [0.123.0-alpha.15](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.14...v0.123.0-alpha.15) (2022-03-30)
74
89
 
75
90
  **Note:** Version bump only for package @blaze-cms/react-page-builder
76
91
 
77
-
78
-
79
-
80
-
81
92
  # [0.123.0-alpha.14](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.13...v0.123.0-alpha.14) (2022-03-30)
82
93
 
83
-
84
94
  ### Bug Fixes
85
95
 
86
96
  * hide error if query fails ([fdfbc41](https://github.com/thebyte9/blaze/commit/fdfbc417b767ea68a20fb300f453500f0ab11098))
87
97
 
88
-
89
-
90
-
91
-
92
98
  # [0.123.0-alpha.13](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.12...v0.123.0-alpha.13) (2022-03-30)
93
99
 
94
100
  **Note:** Version bump only for package @blaze-cms/react-page-builder
95
101
 
96
-
97
-
98
-
99
-
100
102
  # [0.123.0-alpha.12](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.9...v0.123.0-alpha.12) (2022-03-30)
101
103
 
102
104
  **Note:** Version bump only for package @blaze-cms/react-page-builder
103
105
 
104
-
105
-
106
-
107
-
108
106
  # [0.123.0-alpha.11](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.9...v0.123.0-alpha.11) (2022-03-30)
109
107
 
110
108
  **Note:** Version bump only for package @blaze-cms/react-page-builder
111
109
 
112
-
113
-
114
-
115
-
116
110
  # [0.123.0-alpha.10](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.9...v0.123.0-alpha.10) (2022-03-30)
117
111
 
118
112
  **Note:** Version bump only for package @blaze-cms/react-page-builder
119
113
 
120
-
121
-
122
-
123
-
124
114
  # [0.123.0-alpha.9](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.8...v0.123.0-alpha.9) (2022-03-26)
125
115
 
126
116
  **Note:** Version bump only for package @blaze-cms/react-page-builder
127
117
 
128
-
129
-
130
-
131
-
132
118
  # [0.123.0-alpha.8](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.7...v0.123.0-alpha.8) (2022-03-26)
133
119
 
134
120
  **Note:** Version bump only for package @blaze-cms/react-page-builder
135
121
 
136
-
137
-
138
-
139
-
140
122
  # [0.123.0-alpha.7](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.6...v0.123.0-alpha.7) (2022-03-26)
141
123
 
142
-
143
124
  ### Bug Fixes
144
125
 
145
126
  * logo and search input alignment ([c0e9382](https://github.com/thebyte9/blaze/commit/c0e9382769a569b84ba61fbe43d29c6c3a3f6553))
146
127
 
147
-
148
-
149
-
150
-
151
128
  # [0.123.0-alpha.6](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.5...v0.123.0-alpha.6) (2022-03-26)
152
129
 
153
130
  **Note:** Version bump only for package @blaze-cms/react-page-builder
154
131
 
155
-
156
-
157
-
158
-
159
132
  # [0.123.0-alpha.5](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.4...v0.123.0-alpha.5) (2022-03-26)
160
133
 
161
134
  **Note:** Version bump only for package @blaze-cms/react-page-builder
162
135
 
163
-
164
-
165
-
166
-
167
136
  # [0.123.0-alpha.4](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.3...v0.123.0-alpha.4) (2022-03-25)
168
137
 
169
-
170
138
  ### Features
171
139
 
172
140
  * add email/web links around matching data summary values ([#3407](https://github.com/thebyte9/blaze/issues/3407)) ([d2e4496](https://github.com/thebyte9/blaze/commit/d2e449622eaba85eb03612b14bd9cfcfb47bca4f))
173
141
 
174
-
175
-
176
-
177
-
178
142
  # [0.123.0-alpha.3](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.2...v0.123.0-alpha.3) (2022-03-25)
179
143
 
180
-
181
144
  ### Bug Fixes
182
145
 
183
146
  * render empty card block when removing card that same as parent record ([#3171](https://github.com/thebyte9/blaze/issues/3171)) ([011bd77](https://github.com/thebyte9/blaze/commit/011bd77cab7eba6462e42e7d61e075a6c4e58248))
184
147
 
185
-
186
-
187
-
188
-
189
148
  # [0.123.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.1...v0.123.0-alpha.2) (2022-03-22)
190
149
 
191
150
  **Note:** Version bump only for package @blaze-cms/react-page-builder
192
151
 
152
+ ## [0.122.2](https://github.com/thebyte9/blaze/compare/v0.122.1...v0.122.2) (2022-04-04)
193
153
 
154
+ ### Bug Fixes
194
155
 
195
-
156
+ * add initial modifier to filter form ([be2254c](https://github.com/thebyte9/blaze/commit/be2254c967137b1c08e9989fcd1bf29d3675bb05))
157
+ * handle search filter with css ([872dc99](https://github.com/thebyte9/blaze/commit/872dc99b2ff26931bad9280f62b771d01a8c1c10))
158
+ * remove visibility ([7479231](https://github.com/thebyte9/blaze/commit/747923186c1c127dd82b4c4565b91b93e5812593))
159
+ * remove visibility ([32afbb4](https://github.com/thebyte9/blaze/commit/32afbb49f097a43e3e58a4938862a839beabe394))
160
+ * update to handle isCollapseOnMobile more consistently ([3123d99](https://github.com/thebyte9/blaze/commit/3123d9952f3d19391f91252bc1cfc716c787bed1))
196
161
 
197
162
  ## [0.122.1](https://github.com/thebyte9/blaze/compare/v0.122.1-alpha.0...v0.122.1) (2022-03-21)
198
163
 
199
164
  **Note:** Version bump only for package @blaze-cms/react-page-builder
200
165
 
201
-
202
-
203
-
204
-
205
166
  ## [0.122.1-alpha.0](https://github.com/thebyte9/blaze/compare/v0.122.0...v0.122.1-alpha.0) (2022-03-16)
206
167
 
207
-
208
168
  ### Bug Fixes
209
169
 
210
170
  * handle non array data types when adding link to data summary ([#3382](https://github.com/thebyte9/blaze/issues/3382)) ([dd3ae87](https://github.com/thebyte9/blaze/commit/dd3ae8738d2ccc53909954b46b3f06d2cda93484))
211
171
 
212
-
213
-
214
-
215
-
216
172
  # [0.122.0](https://github.com/thebyte9/blaze/compare/v0.122.0-alpha.2...v0.122.0) (2022-03-15)
217
173
 
218
174
  **Note:** Version bump only for package @blaze-cms/react-page-builder
219
175
 
220
-
221
-
222
-
223
-
224
176
  # [0.122.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.122.0-alpha.1...v0.122.0-alpha.2) (2022-03-14)
225
177
 
226
-
227
178
  ### Bug Fixes
228
179
 
229
180
  * added parsing of & on filters ([#3251](https://github.com/thebyte9/blaze/issues/3251)) ([9bf0cb5](https://github.com/thebyte9/blaze/commit/9bf0cb5e14e43aa556c2e216739efb0834ef1d6f))
230
181
 
231
-
232
-
233
-
234
-
235
182
  # [0.122.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.122.0-alpha.0...v0.122.0-alpha.1) (2022-03-10)
236
183
 
237
-
238
184
  ### Bug Fixes
239
185
 
240
186
  * use same dependency for main context provider ([#3375](https://github.com/thebyte9/blaze/issues/3375)) ([5da84b0](https://github.com/thebyte9/blaze/commit/5da84b0510a80c75efda0e25ce575e73ffb28235))
241
187
 
242
-
243
-
244
-
245
-
246
188
  # [0.122.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.121.0...v0.122.0-alpha.0) (2022-03-10)
247
189
 
248
-
249
190
  ### Bug Fixes
250
191
 
251
192
  * getting credits from image ([#3362](https://github.com/thebyte9/blaze/issues/3362)) ([92308e7](https://github.com/thebyte9/blaze/commit/92308e7950028c1062f0c1c51c36c7c010bf1de0))
252
193
  * set preview to false on listing ([#3366](https://github.com/thebyte9/blaze/issues/3366)) ([c0b0302](https://github.com/thebyte9/blaze/commit/c0b030280a49a02f844a4cfd641aa8649b34dbd3))
253
194
 
254
-
255
195
  ### Features
256
196
 
257
197
  * add tiktok social ([#3363](https://github.com/thebyte9/blaze/issues/3363)) ([fb30ee2](https://github.com/thebyte9/blaze/commit/fb30ee2d49f6e8120a999d8b751a521dde2f2ec7))
258
198
 
259
-
260
-
261
-
262
-
263
199
  # [0.121.0](https://github.com/thebyte9/blaze/compare/v0.121.0-alpha.1...v0.121.0) (2022-03-09)
264
200
 
265
201
  **Note:** Version bump only for package @blaze-cms/react-page-builder
266
202
 
267
-
268
-
269
-
270
-
271
203
  # [0.121.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.121.0-alpha.0...v0.121.0-alpha.1) (2022-03-02)
272
204
 
273
-
274
205
  ### Features
275
206
 
276
207
  * add breadcrumb component and parent hierarchy query ([#3354](https://github.com/thebyte9/blaze/issues/3354)) ([1c81cc7](https://github.com/thebyte9/blaze/commit/1c81cc7d5fec746938fa4686b9f166bb0f11a577))
277
208
 
278
-
279
-
280
-
281
-
282
209
  ## [0.120.1](https://github.com/thebyte9/blaze/compare/v0.120.0...v0.120.1) (2022-02-23)
283
210
 
284
-
285
211
  ### Bug Fixes
286
212
 
287
213
  * handle if banner targeting property not set ([#3355](https://github.com/thebyte9/blaze/issues/3355)) ([c36ab5a](https://github.com/thebyte9/blaze/commit/c36ab5a70f144e0e1f5c84b7089ed3e928755ec7))
288
214
 
289
-
290
-
291
-
292
-
293
215
  # [0.120.0](https://github.com/thebyte9/blaze/compare/v0.120.0-alpha.5...v0.120.0) (2022-02-22)
294
216
 
295
217
  **Note:** Version bump only for package @blaze-cms/react-page-builder
296
218
 
297
-
298
-
299
-
300
-
301
219
  # [0.120.0-alpha.5](https://github.com/thebyte9/blaze/compare/v0.120.0-alpha.4...v0.120.0-alpha.5) (2022-02-22)
302
220
 
303
-
304
221
  ### Bug Fixes
305
222
 
306
223
  * query format for list component ([cc8233b](https://github.com/thebyte9/blaze/commit/cc8233b9fc12aa7701f321246e66cdaeb2be14e0))
307
224
 
308
-
309
-
310
-
311
-
312
225
  # [0.120.0-alpha.4](https://github.com/thebyte9/blaze/compare/v0.120.0-alpha.3...v0.120.0-alpha.4) (2022-02-21)
313
226
 
314
-
315
227
  ### Bug Fixes
316
228
 
317
229
  * set trageting even if value is not truthy ([#3347](https://github.com/thebyte9/blaze/issues/3347)) ([757e7f3](https://github.com/thebyte9/blaze/commit/757e7f3e78292175d3d9b6f551ecf89c6ecfd500))
318
230
 
319
-
320
-
321
-
322
-
323
231
  # [0.120.0-alpha.3](https://github.com/thebyte9/blaze/compare/v0.120.0-alpha.2...v0.120.0-alpha.3) (2022-02-16)
324
232
 
325
-
326
233
  ### Bug Fixes
327
234
 
328
235
  * added array handling for banner props ([#3339](https://github.com/thebyte9/blaze/issues/3339)) ([b6e7b84](https://github.com/thebyte9/blaze/commit/b6e7b84b95d63ff978de1ac5921cdbf8e3be5f8a))
329
236
 
330
-
331
-
332
-
333
-
334
237
  # [0.120.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.120.0-alpha.1...v0.120.0-alpha.2) (2022-02-15)
335
238
 
336
-
337
239
  ### Features
338
240
 
339
241
  * add user props to baners ([#3332](https://github.com/thebyte9/blaze/issues/3332)) ([e6818c7](https://github.com/thebyte9/blaze/commit/e6818c738864e7e1ccf7ea7072c9c2bb3bb3d367))
340
242
 
341
-
342
-
343
-
344
-
345
243
  # [0.120.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.120.0-alpha.0...v0.120.0-alpha.1) (2022-02-10)
346
244
 
347
-
348
245
  ### Features
349
246
 
350
247
  * allow card images for non content entities ([#3335](https://github.com/thebyte9/blaze/issues/3335)) ([ebbcdaf](https://github.com/thebyte9/blaze/commit/ebbcdaf3310c3ddc4f39f4bb70ed5f9939099559))
351
248
 
352
-
353
-
354
-
355
-
356
249
  # [0.120.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.119.1...v0.120.0-alpha.0) (2022-02-09)
357
250
 
358
-
359
251
  ### Features
360
252
 
361
253
  * added random sort and non published entities to cards ([#3327](https://github.com/thebyte9/blaze/issues/3327)) ([7e60156](https://github.com/thebyte9/blaze/commit/7e60156e55769f3fc83d276c73ac3726e1c9cade))
362
254
 
363
-
364
-
365
-
366
-
367
255
  ## [0.119.1](https://github.com/thebyte9/blaze/compare/v0.119.0...v0.119.1) (2022-01-31)
368
256
 
369
-
370
257
  ### Bug Fixes
371
258
 
372
259
  * make banner styles ssr consistent with client ([#3324](https://github.com/thebyte9/blaze/issues/3324)) ([fecfb34](https://github.com/thebyte9/blaze/commit/fecfb34d46ec624f3affc53e5f572784b1bfaf5e))
373
260
 
374
-
375
-
376
-
377
-
378
261
  # [0.119.0](https://github.com/thebyte9/blaze/compare/v0.119.0-alpha.2...v0.119.0) (2022-01-28)
379
262
 
380
263
  **Note:** Version bump only for package @blaze-cms/react-page-builder
381
264
 
382
-
383
-
384
-
385
-
386
265
  # [0.119.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.119.0-alpha.1...v0.119.0-alpha.2) (2022-01-28)
387
266
 
388
-
389
267
  ### Bug Fixes
390
268
 
391
269
  * fixed setInterval not clearing ([#3321](https://github.com/thebyte9/blaze/issues/3321)) ([b1b1287](https://github.com/thebyte9/blaze/commit/b1b1287bc6ad6232533e80984641e64683dceb20))
392
270
 
393
-
394
-
395
-
396
-
397
271
  # [0.119.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.118.1-alpha.0...v0.119.0-alpha.0) (2022-01-26)
398
272
 
399
-
400
273
  ### Features
401
274
 
402
275
  * add responsive banner skeleton ([#3286](https://github.com/thebyte9/blaze/issues/3286)) ([ac712df](https://github.com/thebyte9/blaze/commit/ac712df7ade4a9fbbcac17cf03a62ea6ea980e89))
@@ -404,849 +277,469 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
404
277
  * update apollo client to v3.5 add cache redirects and optimise queries ([#3308](https://github.com/thebyte9/blaze/issues/3308)) ([5281b17](https://github.com/thebyte9/blaze/commit/5281b17fd972f8c727d099f0c814e747896af431))
405
278
  * upgrade next to latest version ([#3290](https://github.com/thebyte9/blaze/issues/3290)) ([d2c37bd](https://github.com/thebyte9/blaze/commit/d2c37bd1bf7847dbbbaf7ab8634008c2042f91f9))
406
279
 
407
-
408
-
409
-
410
-
411
280
  # [0.118.0](https://github.com/thebyte9/blaze/compare/v0.118.0-alpha.3...v0.118.0) (2022-01-25)
412
281
 
413
282
  **Note:** Version bump only for package @blaze-cms/react-page-builder
414
283
 
415
-
416
-
417
-
418
-
419
284
  # [0.118.0-alpha.3](https://github.com/thebyte9/blaze/compare/v0.118.0-alpha.2...v0.118.0-alpha.3) (2022-01-24)
420
285
 
421
286
  **Note:** Version bump only for package @blaze-cms/react-page-builder
422
287
 
423
-
424
-
425
-
426
-
427
288
  # [0.118.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.118.0-alpha.1...v0.118.0-alpha.2) (2022-01-14)
428
289
 
429
-
430
290
  ### Bug Fixes
431
291
 
432
292
  * set correct funciton type for video image onload ([6df1060](https://github.com/thebyte9/blaze/commit/6df1060a7a3d0ba18f49d6d7e757ae1c79a7509d))
433
293
 
434
-
435
-
436
-
437
-
438
294
  # [0.118.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.118.0-alpha.0...v0.118.0-alpha.1) (2022-01-14)
439
295
 
440
-
441
296
  ### Bug Fixes
442
297
 
443
298
  * added youtube facade lazy loading ([#3243](https://github.com/thebyte9/blaze/issues/3243)) ([7f2bef9](https://github.com/thebyte9/blaze/commit/7f2bef9269333aa7c248dce18e06a459ad7a3572))
444
299
 
445
-
446
-
447
-
448
-
449
300
  # [0.118.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.117.0...v0.118.0-alpha.0) (2022-01-13)
450
301
 
451
302
  **Note:** Version bump only for package @blaze-cms/react-page-builder
452
303
 
453
-
454
-
455
-
456
-
457
304
  # [0.116.0](https://github.com/thebyte9/blaze/compare/v0.116.0-alpha.2...v0.116.0) (2021-12-21)
458
305
 
459
306
  **Note:** Version bump only for package @blaze-cms/react-page-builder
460
307
 
461
-
462
-
463
-
464
-
465
308
  # [0.116.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.116.0-alpha.1...v0.116.0-alpha.2) (2021-12-21)
466
309
 
467
310
  **Note:** Version bump only for package @blaze-cms/react-page-builder
468
311
 
469
-
470
-
471
-
472
-
473
312
  # [0.116.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.116.0-alpha.0...v0.116.0-alpha.1) (2021-12-20)
474
313
 
475
314
  **Note:** Version bump only for package @blaze-cms/react-page-builder
476
315
 
477
-
478
-
479
-
480
-
481
316
  # [0.115.0](https://github.com/thebyte9/blaze/compare/v0.115.0-alpha.1...v0.115.0) (2021-12-16)
482
317
 
483
318
  **Note:** Version bump only for package @blaze-cms/react-page-builder
484
319
 
485
-
486
-
487
-
488
-
489
320
  # [0.115.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.115.0-alpha.0...v0.115.0-alpha.1) (2021-12-16)
490
321
 
491
-
492
322
  ### Features
493
323
 
494
324
  * move textblock parsing to the api and add page builder manipulation events ([#3267](https://github.com/thebyte9/blaze/issues/3267)) ([fd472b5](https://github.com/thebyte9/blaze/commit/fd472b58c716bdf8fc0a69a63c1f341a65828f12))
495
325
 
496
-
497
-
498
-
499
-
500
326
  ## [0.114.1](https://github.com/thebyte9/blaze/compare/v0.114.1-alpha.1...v0.114.1) (2021-12-13)
501
327
 
502
328
  **Note:** Version bump only for package @blaze-cms/react-page-builder
503
329
 
504
-
505
-
506
-
507
-
508
330
  ## [0.114.1-alpha.0](https://github.com/thebyte9/blaze/compare/v0.114.0...v0.114.1-alpha.0) (2021-12-09)
509
331
 
510
-
511
332
  ### Bug Fixes
512
333
 
513
334
  * add selected class to selected letter in A-Z filter ([#3255](https://github.com/thebyte9/blaze/issues/3255)) ([f82540b](https://github.com/thebyte9/blaze/commit/f82540b1793888f326a2597d2cc742f038392521))
514
335
  * update range filter in react page builder ([#3254](https://github.com/thebyte9/blaze/issues/3254)) ([cf71584](https://github.com/thebyte9/blaze/commit/cf715849141161a04e2011f2e1d1d7c0895fac0e))
515
336
 
516
-
517
-
518
-
519
-
520
337
  # [0.114.0](https://github.com/thebyte9/blaze/compare/v0.114.0-alpha.6...v0.114.0) (2021-11-30)
521
338
 
522
339
  **Note:** Version bump only for package @blaze-cms/react-page-builder
523
340
 
524
-
525
-
526
-
527
-
528
341
  # [0.114.0-alpha.5](https://github.com/thebyte9/blaze/compare/v0.114.0-alpha.4...v0.114.0-alpha.5) (2021-11-30)
529
342
 
530
-
531
343
  ### Bug Fixes
532
344
 
533
345
  * handle legacy sortby property as a string ([#3235](https://github.com/thebyte9/blaze/issues/3235)) ([2d25fc3](https://github.com/thebyte9/blaze/commit/2d25fc3e55125fec711d4a06f78d35a6b26d443a))
534
346
 
535
-
536
-
537
-
538
-
539
347
  # [0.114.0-alpha.4](https://github.com/thebyte9/blaze/compare/v0.114.0-alpha.3...v0.114.0-alpha.4) (2021-11-29)
540
348
 
541
349
  **Note:** Version bump only for package @blaze-cms/react-page-builder
542
350
 
543
-
544
-
545
-
546
-
547
351
  # [0.114.0-alpha.3](https://github.com/thebyte9/blaze/compare/v0.114.0-alpha.2...v0.114.0-alpha.3) (2021-11-25)
548
352
 
549
-
550
353
  ### Bug Fixes
551
354
 
552
355
  * filters with url wont auto submit ([#3229](https://github.com/thebyte9/blaze/issues/3229)) ([44c08dc](https://github.com/thebyte9/blaze/commit/44c08dc1c1a34459f8cd6234aa4daa2cb4bcf1e1))
553
356
 
554
-
555
-
556
-
557
-
558
357
  # [0.114.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.113.1...v0.114.0-alpha.2) (2021-11-25)
559
358
 
560
-
561
359
  ### Bug Fixes
562
360
 
563
361
  * hidden more filters dont auto submit ([#3228](https://github.com/thebyte9/blaze/issues/3228)) ([daae97e](https://github.com/thebyte9/blaze/commit/daae97ec697788c3f3ec4993b05594eb92095331))
564
362
 
565
-
566
363
  ### Features
567
364
 
568
365
  * added extended sort properties to list and card ([#3226](https://github.com/thebyte9/blaze/issues/3226)) ([1feaa62](https://github.com/thebyte9/blaze/commit/1feaa6279d9ab3491b328dbfd230d4b996393687))
569
366
  * Wrap more filters for mobile with groupAfterMobile option ([#3213](https://github.com/thebyte9/blaze/issues/3213)) ([1b951a3](https://github.com/thebyte9/blaze/commit/1b951a316be151963c845da651baedb2e2e6817a))
570
367
 
571
-
572
-
573
368
  # [0.114.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.114.0-alpha.0...v0.114.0-alpha.1) (2021-11-24)
574
369
 
575
-
576
370
  ### Features
577
371
 
578
372
  * added extended sort properties to list and card ([#3226](https://github.com/thebyte9/blaze/issues/3226)) ([8b6946e](https://github.com/thebyte9/blaze/commit/8b6946efd0fd80468858643ec9e79477d23613da))
579
373
 
580
-
581
-
582
374
  # [0.114.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.113.0...v0.114.0-alpha.0) (2021-11-22)
583
375
 
584
-
585
376
  ### Features
586
377
 
587
378
  * Wrap more filters for mobile with groupAfterMobile option ([#3213](https://github.com/thebyte9/blaze/issues/3213)) ([8914aaa](https://github.com/thebyte9/blaze/commit/8914aaa33d29e8ff7d6a762f7c73adf6e559a344))
588
379
 
589
-
590
-
591
-
592
-
593
380
  # [0.114.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.114.0-alpha.0...v0.114.0-alpha.1) (2021-11-24)
594
381
 
595
-
596
382
  ### Features
597
383
 
598
384
  * added extended sort properties to list and card ([#3226](https://github.com/thebyte9/blaze/issues/3226)) ([8b6946e](https://github.com/thebyte9/blaze/commit/8b6946efd0fd80468858643ec9e79477d23613da))
599
385
 
600
-
601
-
602
-
603
-
604
386
  # [0.114.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.113.0...v0.114.0-alpha.0) (2021-11-22)
605
387
 
606
-
607
388
  ### Features
608
389
 
609
390
  * Wrap more filters for mobile with groupAfterMobile option ([#3213](https://github.com/thebyte9/blaze/issues/3213)) ([8914aaa](https://github.com/thebyte9/blaze/commit/8914aaa33d29e8ff7d6a762f7c73adf6e559a344))
610
391
 
611
-
612
-
613
-
614
-
615
392
  ## [0.113.1](https://github.com/thebyte9/blaze/compare/v0.113.0...v0.113.1) (2021-11-24)
616
393
 
617
-
618
394
  ### Bug Fixes
619
395
 
620
396
  * do not display loop data summary prop if label not set ([#3225](https://github.com/thebyte9/blaze/issues/3225)) ([1929b13](https://github.com/thebyte9/blaze/commit/1929b134e1631fda047e4bc142208676fdf2da01))
621
397
 
622
-
623
-
624
-
625
-
626
398
  # [0.113.0](https://github.com/thebyte9/blaze/compare/v0.113.0-alpha.9...v0.113.0) (2021-11-19)
627
399
 
628
400
  **Note:** Version bump only for package @blaze-cms/react-page-builder
629
401
 
630
-
631
-
632
-
633
-
634
402
  # [0.113.0-alpha.9](https://github.com/thebyte9/blaze/compare/v0.113.0-alpha.8...v0.113.0-alpha.9) (2021-11-19)
635
403
 
636
-
637
404
  ### Bug Fixes
638
405
 
639
406
  * render form when now aggregations are needed ([#3221](https://github.com/thebyte9/blaze/issues/3221)) ([50f4b15](https://github.com/thebyte9/blaze/commit/50f4b157b9fe74b423d20035a34cb5a7d59fb557))
640
407
 
641
-
642
-
643
-
644
-
645
408
  # [0.113.0-alpha.8](https://github.com/thebyte9/blaze/compare/v0.113.0-alpha.7...v0.113.0-alpha.8) (2021-11-18)
646
409
 
647
-
648
410
  ### Bug Fixes
649
411
 
650
412
  * move submit function above first call ([#3219](https://github.com/thebyte9/blaze/issues/3219)) ([ca0af48](https://github.com/thebyte9/blaze/commit/ca0af4802d144a9825f361a7271788d123e04885))
651
413
 
652
-
653
-
654
-
655
-
656
414
  # [0.113.0-alpha.7](https://github.com/thebyte9/blaze/compare/v0.113.0-alpha.6...v0.113.0-alpha.7) (2021-11-17)
657
415
 
658
-
659
416
  ### Features
660
417
 
661
418
  * debounce search filters component ([#3210](https://github.com/thebyte9/blaze/issues/3210)) ([27c39fd](https://github.com/thebyte9/blaze/commit/27c39fdebf5aeecdec745c2a892224e400d4b9b8))
662
419
 
663
-
664
-
665
-
666
-
667
420
  # [0.113.0-alpha.6](https://github.com/thebyte9/blaze/compare/v0.113.0-alpha.5...v0.113.0-alpha.6) (2021-11-17)
668
421
 
669
-
670
422
  ### Bug Fixes
671
423
 
672
424
  * HTML structure changes for more filters ([#3212](https://github.com/thebyte9/blaze/issues/3212)) ([5738f24](https://github.com/thebyte9/blaze/commit/5738f244843217013de943e68471a3a71d69700e))
673
425
  * scroll to first list ([#3215](https://github.com/thebyte9/blaze/issues/3215)) ([6b729db](https://github.com/thebyte9/blaze/commit/6b729dbca6983e6a86145257495b0ca003913ead))
674
426
 
675
-
676
427
  ### Features
677
428
 
678
429
  * add sponsored and featured modifiers to cards ([#3216](https://github.com/thebyte9/blaze/issues/3216)) ([8f5d3df](https://github.com/thebyte9/blaze/commit/8f5d3dfb115988f2545d3dc6be3a912742b4226f))
679
430
 
680
-
681
-
682
-
683
-
684
431
  # [0.113.0-alpha.4](https://github.com/thebyte9/blaze/compare/v0.113.0-alpha.3...v0.113.0-alpha.4) (2021-11-09)
685
432
 
686
-
687
433
  ### Bug Fixes
688
434
 
689
435
  * scroll to top of filter if navigating to different page ([#3202](https://github.com/thebyte9/blaze/issues/3202)) ([f26f68e](https://github.com/thebyte9/blaze/commit/f26f68ec8ed7448306b59258b6ff2d6096ef0e67))
690
436
 
691
-
692
-
693
-
694
-
695
437
  # [0.113.0-alpha.3](https://github.com/thebyte9/blaze/compare/v0.113.0-alpha.2...v0.113.0-alpha.3) (2021-11-08)
696
438
 
697
-
698
439
  ### Bug Fixes
699
440
 
700
441
  * add BLAZE_SCROLL_OFFSET env var to help offset scroll ([83109c0](https://github.com/thebyte9/blaze/commit/83109c01f31b648b7dbb33c2ed586d3dc4f1fb18))
701
442
  * remove scroll from sort component ([677923d](https://github.com/thebyte9/blaze/commit/677923d8b69f38b72108695b213e9d602f5aadeb))
702
443
 
703
-
704
444
  ### Features
705
445
 
706
446
  * scroll to top of list with classic pagination ([#3194](https://github.com/thebyte9/blaze/issues/3194)) ([73fdd67](https://github.com/thebyte9/blaze/commit/73fdd6719707d6b29a4f2a49ce3f4bb17f98217e))
707
447
 
708
-
709
-
710
-
711
-
712
448
  # [0.113.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.113.0-alpha.1...v0.113.0-alpha.2) (2021-11-08)
713
449
 
714
-
715
450
  ### Bug Fixes
716
451
 
717
452
  * reset filter ([#3164](https://github.com/thebyte9/blaze/issues/3164)) ([b47b809](https://github.com/thebyte9/blaze/commit/b47b8099cf00e05be69928c4ec3fcbe9104e222c))
718
453
 
719
-
720
-
721
-
722
-
723
454
  # [0.113.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.113.0-alpha.0...v0.113.0-alpha.1) (2021-11-05)
724
455
 
725
-
726
456
  ### Bug Fixes
727
457
 
728
458
  * scroll to the parent node ([#3168](https://github.com/thebyte9/blaze/issues/3168)) ([198bd90](https://github.com/thebyte9/blaze/commit/198bd90d4abd220f2731a4c0a0e04dd5eebb56df))
729
459
 
730
-
731
-
732
-
733
-
734
460
  # [0.113.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.112.0...v0.113.0-alpha.0) (2021-11-04)
735
461
 
736
-
737
462
  ### Features
738
463
 
739
464
  * Option to omit wrappers in lists ([#3183](https://github.com/thebyte9/blaze/issues/3183)) ([c11c4c8](https://github.com/thebyte9/blaze/commit/c11c4c894e07309cdd1de4c8c4ad414d6ad7b3a5))
740
465
 
741
-
742
-
743
-
744
-
745
466
  # [0.112.0](https://github.com/thebyte9/blaze/compare/v0.112.0-alpha.2...v0.112.0) (2021-11-01)
746
467
 
747
468
  **Note:** Version bump only for package @blaze-cms/react-page-builder
748
469
 
749
-
750
-
751
-
752
-
753
470
  # [0.112.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.112.0-alpha.1...v0.112.0-alpha.2) (2021-11-01)
754
471
 
755
472
  **Note:** Version bump only for package @blaze-cms/react-page-builder
756
473
 
757
-
758
-
759
-
760
-
761
474
  # [0.112.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.112.0-alpha.0...v0.112.0-alpha.1) (2021-11-01)
762
475
 
763
-
764
476
  ### Bug Fixes
765
477
 
766
478
  * don't do pagination scroll on initial load ([#3187](https://github.com/thebyte9/blaze/issues/3187)) ([fccd5f0](https://github.com/thebyte9/blaze/commit/fccd5f0f371510824d26fe778960562e445734b2))
767
479
 
768
-
769
-
770
-
771
-
772
480
  # [0.112.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.111.1-alpha.0...v0.112.0-alpha.0) (2021-10-29)
773
481
 
774
-
775
482
  ### Bug Fixes
776
483
 
777
484
  * added ALL option on az list ([#3177](https://github.com/thebyte9/blaze/issues/3177)) ([85093cc](https://github.com/thebyte9/blaze/commit/85093ccc2d37e64955b98416b905f0b901c58bfe))
778
485
 
779
-
780
486
  ### Features
781
487
 
782
488
  * added list total display to list ([#3172](https://github.com/thebyte9/blaze/issues/3172)) ([2ba6435](https://github.com/thebyte9/blaze/commit/2ba64354e3e54fb7729eb2c390f61e8ad899e4e7))
783
489
 
784
-
785
-
786
-
787
-
788
490
  ## [0.111.1-alpha.0](https://github.com/thebyte9/blaze/compare/v0.111.0...v0.111.1-alpha.0) (2021-10-28)
789
491
 
790
-
791
492
  ### Bug Fixes
792
493
 
793
494
  * data summary boolean values ([#3182](https://github.com/thebyte9/blaze/issues/3182)) ([9653ab6](https://github.com/thebyte9/blaze/commit/9653ab69830ab34ed20f629542a40e3bdb2be368))
794
495
  * data summary loopable follow up ([#3140](https://github.com/thebyte9/blaze/issues/3140)) ([99c42d3](https://github.com/thebyte9/blaze/commit/99c42d36303d661a185217ae66bfa7f1c98ec018))
795
496
  * scroll to top of list when using classic pagination ([#3181](https://github.com/thebyte9/blaze/issues/3181)) ([9d38c0b](https://github.com/thebyte9/blaze/commit/9d38c0b5ae2371b3867b8f039022d3727c429009))
796
497
 
797
-
798
-
799
-
800
-
801
498
  # [0.111.0](https://github.com/thebyte9/blaze/compare/v0.111.0-alpha.3...v0.111.0) (2021-10-25)
802
499
 
803
500
  **Note:** Version bump only for package @blaze-cms/react-page-builder
804
501
 
805
-
806
-
807
-
808
-
809
502
  # [0.111.0-alpha.3](https://github.com/thebyte9/blaze/compare/v0.111.0-alpha.2...v0.111.0-alpha.3) (2021-10-22)
810
503
 
811
-
812
504
  ### Bug Fixes
813
505
 
814
506
  * added az load all on initial load ([#3167](https://github.com/thebyte9/blaze/issues/3167)) ([990f4ef](https://github.com/thebyte9/blaze/commit/990f4ef69c81f766b8a0bba5b5ba554cfefc8947))
815
507
 
816
-
817
-
818
-
819
-
820
508
  # [0.111.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.111.0-alpha.1...v0.111.0-alpha.2) (2021-10-21)
821
509
 
822
-
823
510
  ### Bug Fixes
824
511
 
825
512
  * cards and full lists now updated banner position ([#3163](https://github.com/thebyte9/blaze/issues/3163)) ([dbd3ecd](https://github.com/thebyte9/blaze/commit/dbd3ecda9a9f96d2e1bc7934a3b08a39f45c4518))
826
513
 
827
-
828
-
829
-
830
-
831
514
  # [0.111.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.111.0-alpha.0...v0.111.0-alpha.1) (2021-10-20)
832
515
 
833
-
834
516
  ### Bug Fixes
835
517
 
836
518
  * fixed limit helper function ([#3160](https://github.com/thebyte9/blaze/issues/3160)) ([9996ea2](https://github.com/thebyte9/blaze/commit/9996ea2d00e61db1be24ff25a5495b0f193c55db))
837
519
 
838
-
839
-
840
-
841
-
842
520
  # [0.110.0](https://github.com/thebyte9/blaze/compare/v0.110.0-alpha.3...v0.110.0) (2021-10-18)
843
521
 
844
522
  **Note:** Version bump only for package @blaze-cms/react-page-builder
845
523
 
846
-
847
-
848
-
849
-
850
524
  # [0.110.0-alpha.3](https://github.com/thebyte9/blaze/compare/v0.110.0-alpha.2...v0.110.0-alpha.3) (2021-10-14)
851
525
 
852
-
853
526
  ### Bug Fixes
854
527
 
855
528
  * added lazy loading to image component ([#3150](https://github.com/thebyte9/blaze/issues/3150)) ([ac59e54](https://github.com/thebyte9/blaze/commit/ac59e545a5d41333ee46136694117884a311f5f8))
856
529
 
857
-
858
-
859
-
860
-
861
530
  # [0.110.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.110.0-alpha.1...v0.110.0-alpha.2) (2021-10-13)
862
531
 
863
-
864
532
  ### Bug Fixes
865
533
 
866
534
  * set correct list type ([#3152](https://github.com/thebyte9/blaze/issues/3152)) ([d07c14e](https://github.com/thebyte9/blaze/commit/d07c14ee536ae731fe29ef56ed6cf1259ca21f60))
867
535
 
868
-
869
-
870
-
871
-
872
536
  # [0.110.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.110.0-alpha.0...v0.110.0-alpha.1) (2021-10-13)
873
537
 
874
-
875
538
  ### Features
876
539
 
877
- * added az list type ([#3136](https://github.com/thebyte9/blaze/issues/3136)) ([4f9c99f](https://github.com/thebyte9/blaze/commit/4f9c99f14e600feb867d2b353702fe46402af0dc))
878
-
879
-
880
-
881
-
540
+ * added az list type ([#3136](https://github.com/thebyte9/blaze/issues/3136)) ([4f9c99f](https://github.com/thebyte9/blaze/commit/4f9c99f14e600feb867d2b353702fe46402af0dc))
882
541
 
883
542
  # [0.109.0](https://github.com/thebyte9/blaze/compare/v0.109.0-alpha.1...v0.109.0) (2021-10-05)
884
543
 
885
544
  **Note:** Version bump only for package @blaze-cms/react-page-builder
886
545
 
887
-
888
-
889
-
890
-
891
546
  # [0.109.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.109.0-alpha.0...v0.109.0-alpha.1) (2021-10-04)
892
547
 
893
-
894
548
  ### Bug Fixes
895
549
 
896
550
  * handle when video provider not set ([#3135](https://github.com/thebyte9/blaze/issues/3135)) ([0dc2186](https://github.com/thebyte9/blaze/commit/0dc21860e8ec9e66e9cee9bca99a3a2492e2a786))
897
551
 
898
-
899
-
900
-
901
-
902
552
  # [0.109.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.108.0...v0.109.0-alpha.0) (2021-10-04)
903
553
 
904
-
905
554
  ### Features
906
555
 
907
556
  * add video provider modifier ([#3132](https://github.com/thebyte9/blaze/issues/3132)) ([6974ca1](https://github.com/thebyte9/blaze/commit/6974ca122b7a51457bc4aad57df91a8f71ada579))
908
557
 
909
-
910
-
911
-
912
-
913
558
  # [0.108.0](https://github.com/thebyte9/blaze/compare/v0.108.0-alpha.0...v0.108.0) (2021-09-30)
914
559
 
915
560
  **Note:** Version bump only for package @blaze-cms/react-page-builder
916
561
 
917
-
918
-
919
-
920
-
921
562
  # [0.108.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.107.0...v0.108.0-alpha.0) (2021-09-29)
922
563
 
923
-
924
564
  ### Bug Fixes
925
565
 
926
566
  * pass modifiers to image responsive sizeKey ([#3123](https://github.com/thebyte9/blaze/issues/3123)) ([0989581](https://github.com/thebyte9/blaze/commit/09895814ea54b223563db971468989b061ed2c21))
927
567
  * styles when image has no link and lightbox is not enabled ([#3121](https://github.com/thebyte9/blaze/issues/3121)) ([9c773e5](https://github.com/thebyte9/blaze/commit/9c773e5f54858ba7070e1695d8548b972cb0303e))
928
568
 
929
-
930
-
931
-
932
-
933
569
  # [0.107.0](https://github.com/thebyte9/blaze/compare/v0.107.0-alpha.2...v0.107.0) (2021-09-29)
934
570
 
935
571
  **Note:** Version bump only for package @blaze-cms/react-page-builder
936
572
 
937
-
938
-
939
-
940
-
941
573
  # [0.107.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.107.0-alpha.1...v0.107.0-alpha.2) (2021-09-28)
942
574
 
943
-
944
575
  ### Bug Fixes
945
576
 
946
577
  * do not insert components next to non standard parsed tag ([#3120](https://github.com/thebyte9/blaze/issues/3120)) ([f3f6f04](https://github.com/thebyte9/blaze/commit/f3f6f04b13ffa52206b55dbc48ecb9a429ddcd04))
947
578
 
948
-
949
-
950
-
951
-
952
579
  # [0.107.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.107.0-alpha.0...v0.107.0-alpha.1) (2021-09-27)
953
580
 
954
-
955
581
  ### Bug Fixes
956
582
 
957
583
  * update banner injections collision checking around H tags ([#3111](https://github.com/thebyte9/blaze/issues/3111)) ([a3ea2dd](https://github.com/thebyte9/blaze/commit/a3ea2dd720429a04a28c08afaed72c2adc77d275))
958
584
 
959
-
960
585
  ### Features
961
586
 
962
587
  * update alternative headline/preHeader logic to only display when both set ([#3115](https://github.com/thebyte9/blaze/issues/3115)) ([8a4a98f](https://github.com/thebyte9/blaze/commit/8a4a98f485c6dcdd6381d7b21b8a8ba9ab51dbfc))
963
588
 
964
-
965
-
966
-
967
-
968
589
  # [0.107.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.106.2...v0.107.0-alpha.0) (2021-09-22)
969
590
 
970
-
971
591
  ### Features
972
592
 
973
593
  * added loopableProps to dataSummary ([#3108](https://github.com/thebyte9/blaze/issues/3108)) ([3398fbb](https://github.com/thebyte9/blaze/commit/3398fbbdee3e9146702292bfcf0599de3c6161c3))
974
594
 
975
-
976
-
977
-
978
-
979
595
  ## [0.106.2](https://github.com/thebyte9/blaze/compare/v0.106.1...v0.106.2) (2021-09-22)
980
596
 
981
-
982
597
  ### Bug Fixes
983
598
 
984
599
  * do not reset lightbox images when lightbox open ([#3107](https://github.com/thebyte9/blaze/issues/3107)) ([8900d75](https://github.com/thebyte9/blaze/commit/8900d759db0c216728dfd75e7d918a4e0bc68bd3))
985
600
 
986
-
987
-
988
-
989
-
990
601
  ## [0.106.1](https://github.com/thebyte9/blaze/compare/v0.106.0...v0.106.1) (2021-09-21)
991
602
 
992
-
993
603
  ### Bug Fixes
994
604
 
995
605
  * do not render cards if updatedFilters is falsey ([#3106](https://github.com/thebyte9/blaze/issues/3106)) ([c2a5456](https://github.com/thebyte9/blaze/commit/c2a54561149017253fa6d6dd2311beb1e5ad9fe4))
996
606
 
997
-
998
-
999
-
1000
-
1001
607
  # [0.106.0](https://github.com/thebyte9/blaze/compare/v0.106.0-alpha.0...v0.106.0) (2021-09-20)
1002
608
 
1003
609
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1004
610
 
1005
-
1006
-
1007
-
1008
-
1009
611
  # [0.106.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.105.1...v0.106.0-alpha.0) (2021-09-17)
1010
612
 
1011
-
1012
613
  ### Features
1013
614
 
1014
615
  * Cards and CardLists now have the option to select an image for the items to display ([#3095](https://github.com/thebyte9/blaze/issues/3095)) ([2f66ec7](https://github.com/thebyte9/blaze/commit/2f66ec7b5f59a72ec9194019777313886ade7ce3))
1015
616
 
1016
-
1017
-
1018
-
1019
-
1020
617
  ## [0.105.1](https://github.com/thebyte9/blaze/compare/v0.105.0...v0.105.1) (2021-09-16)
1021
618
 
1022
-
1023
619
  ### Bug Fixes
1024
620
 
1025
621
  * stop using state for banner insertion as it can rerender old content ([87294ec](https://github.com/thebyte9/blaze/commit/87294ec36b988bc38d8223d3033a487c2e520655))
1026
622
 
1027
-
1028
-
1029
-
1030
-
1031
623
  # [0.105.0](https://github.com/thebyte9/blaze/compare/v0.105.0-alpha.7...v0.105.0) (2021-09-15)
1032
624
 
1033
625
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1034
626
 
1035
-
1036
-
1037
-
1038
-
1039
627
  # [0.105.0-alpha.7](https://github.com/thebyte9/blaze/compare/v0.105.0-alpha.6...v0.105.0-alpha.7) (2021-09-15)
1040
628
 
1041
-
1042
629
  ### Bug Fixes
1043
630
 
1044
631
  * reset global lightbox images when route changes ([#3096](https://github.com/thebyte9/blaze/issues/3096)) ([3cf4dee](https://github.com/thebyte9/blaze/commit/3cf4dee5a4fd5b158ce4873010b68658c2766154))
1045
632
 
1046
-
1047
-
1048
-
1049
-
1050
633
  # [0.105.0-alpha.6](https://github.com/thebyte9/blaze/compare/v0.105.0-alpha.5...v0.105.0-alpha.6) (2021-09-14)
1051
634
 
1052
-
1053
635
  ### Bug Fixes
1054
636
 
1055
637
  * default displayCategory and displayThumbnail to true to handle components where not set ([e26adbf](https://github.com/thebyte9/blaze/commit/e26adbf62f5f522f83f19ccc577af37d193222fd))
1056
638
 
1057
-
1058
-
1059
-
1060
-
1061
639
  # [0.105.0-alpha.4](https://github.com/thebyte9/blaze/compare/v0.105.0-alpha.3...v0.105.0-alpha.4) (2021-09-14)
1062
640
 
1063
-
1064
641
  ### Features
1065
642
 
1066
643
  * update cards to support customPreHeader and alterntiveHeadlines ([b9d79e9](https://github.com/thebyte9/blaze/commit/b9d79e9eb687baf551b22cf58bae38c4052f7045))
1067
644
 
1068
-
1069
-
1070
-
1071
-
1072
645
  # [0.105.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.104.2...v0.105.0-alpha.1) (2021-09-09)
1073
646
 
1074
-
1075
647
  ### Features
1076
648
 
1077
649
  * Card Carousel ([#3080](https://github.com/thebyte9/blaze/issues/3080)) ([35dce0c](https://github.com/thebyte9/blaze/commit/35dce0c7efffd00392d8ed1dd566db9a6e99baa9))
1078
650
 
1079
-
1080
-
1081
651
  # [0.105.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.104.0...v0.105.0-alpha.0) (2021-09-09)
1082
652
 
1083
-
1084
653
  ### Features
1085
654
 
1086
655
  * Card Carousel ([#3080](https://github.com/thebyte9/blaze/issues/3080)) ([e8288ad](https://github.com/thebyte9/blaze/commit/e8288adf9095ccb07e5b283e803e3534e2d07d86))
1087
656
 
1088
-
1089
-
1090
-
1091
-
1092
657
  # [0.105.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.104.0...v0.105.0-alpha.0) (2021-09-09)
1093
658
 
1094
-
1095
659
  ### Features
1096
660
 
1097
661
  * Card Carousel ([#3080](https://github.com/thebyte9/blaze/issues/3080)) ([e8288ad](https://github.com/thebyte9/blaze/commit/e8288adf9095ccb07e5b283e803e3534e2d07d86))
1098
662
 
1099
-
1100
-
1101
-
1102
-
1103
-
1104
663
  ## [0.104.2](https://github.com/thebyte9/blaze/compare/v0.104.1...v0.104.2) (2021-09-09)
1105
664
 
1106
-
1107
665
  ### Bug Fixes
1108
666
 
1109
667
  * update logic for displaying search filters on desktop/mobile ([2954a54](https://github.com/thebyte9/blaze/commit/2954a54923c759a9a61935f8a2ad4a1636f5822d))
1110
668
 
1111
-
1112
-
1113
-
1114
-
1115
669
  ## [0.104.1](https://github.com/thebyte9/blaze/compare/v0.104.0...v0.104.1) (2021-09-09)
1116
670
 
1117
671
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1118
672
 
1119
-
1120
-
1121
-
1122
-
1123
673
  # [0.104.0](https://github.com/thebyte9/blaze/compare/v0.104.0-alpha.5...v0.104.0) (2021-09-07)
1124
674
 
1125
675
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1126
676
 
1127
-
1128
-
1129
-
1130
-
1131
677
  # [0.104.0-alpha.5](https://github.com/thebyte9/blaze/compare/v0.104.0-alpha.4...v0.104.0-alpha.5) (2021-09-07)
1132
678
 
1133
-
1134
679
  ### Bug Fixes
1135
680
 
1136
681
  * use correct context in for full item render ([#3077](https://github.com/thebyte9/blaze/issues/3077)) ([3fb15ee](https://github.com/thebyte9/blaze/commit/3fb15ee0beea0a0f0bbbf84fc261381a022e0c14))
1137
682
 
683
+ # [0.104.0-alpha.4](https://github.com/thebyte9/blaze/compare/v0.104.0-alpha.3...v0.104.0-alpha.4) (2021-09-03)
1138
684
 
685
+ ### Bug Fixes
1139
686
 
1140
-
1141
-
1142
- # [0.104.0-alpha.4](https://github.com/thebyte9/blaze/compare/v0.104.0-alpha.3...v0.104.0-alpha.4) (2021-09-03)
1143
-
1144
-
1145
- ### Bug Fixes
1146
-
1147
- * do not override id on banner insert ([ef42786](https://github.com/thebyte9/blaze/commit/ef427863668f2b36d8ef4f02b32df8257e96c453))
1148
-
1149
-
1150
-
1151
-
687
+ * do not override id on banner insert ([ef42786](https://github.com/thebyte9/blaze/commit/ef427863668f2b36d8ef4f02b32df8257e96c453))
1152
688
 
1153
689
  # [0.104.0-alpha.3](https://github.com/thebyte9/blaze/compare/v0.104.0-alpha.2...v0.104.0-alpha.3) (2021-09-03)
1154
690
 
1155
691
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1156
692
 
1157
-
1158
-
1159
-
1160
-
1161
693
  # [0.104.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.104.0-alpha.1...v0.104.0-alpha.2) (2021-09-03)
1162
694
 
1163
-
1164
695
  ### Bug Fixes
1165
696
 
1166
697
  * setting component name prop correctly and handling textblock object ([#3072](https://github.com/thebyte9/blaze/issues/3072)) ([35ee48c](https://github.com/thebyte9/blaze/commit/35ee48cd2c9ec5a8d50c30c3ae80c7bbd1c58189))
1167
698
 
1168
-
1169
-
1170
-
1171
-
1172
699
  # [0.104.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.104.0-alpha.0...v0.104.0-alpha.1) (2021-09-02)
1173
700
 
1174
-
1175
701
  ### Bug Fixes
1176
702
 
1177
703
  * handle legacy banner settings ([#3070](https://github.com/thebyte9/blaze/issues/3070)) ([2fbe2bf](https://github.com/thebyte9/blaze/commit/2fbe2bf1b66647bce3fbfeb735c2b7b77e2430e9))
1178
704
 
1179
-
1180
-
1181
-
1182
-
1183
705
  # [0.104.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.103.0...v0.104.0-alpha.0) (2021-09-02)
1184
706
 
1185
-
1186
707
  ### Bug Fixes
1187
708
 
1188
709
  * handle null children in card render click wrapper ([#3067](https://github.com/thebyte9/blaze/issues/3067)) ([9ec0455](https://github.com/thebyte9/blaze/commit/9ec04552228be7ab876755a917af0ad922bef917))
1189
710
  * Simpler HTML structure + logic for search filters component ([#3026](https://github.com/thebyte9/blaze/issues/3026)) ([dfb4a88](https://github.com/thebyte9/blaze/commit/dfb4a88ef79cca1f5b98e8f8e22826d1461e84d6))
1190
711
 
1191
-
1192
712
  ### Features
1193
713
 
1194
714
  * allow setting of tag type to render row/column components ([#3057](https://github.com/thebyte9/blaze/issues/3057)) ([3f46a11](https://github.com/thebyte9/blaze/commit/3f46a11f41883df1c05e25df6f92e92523fd315d))
1195
715
  * update banner insertion/repetition to allow insertion within textblocks ([#3060](https://github.com/thebyte9/blaze/issues/3060)) ([171cae8](https://github.com/thebyte9/blaze/commit/171cae8a824bc217184d99d6765724e0f7bcfa8a))
1196
716
 
1197
-
1198
-
1199
-
1200
-
1201
717
  # [0.103.0](https://github.com/thebyte9/blaze/compare/v0.103.0-alpha.6...v0.103.0) (2021-08-31)
1202
718
 
1203
719
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1204
720
 
1205
-
1206
-
1207
-
1208
-
1209
721
  # [0.103.0-alpha.6](https://github.com/thebyte9/blaze/compare/v0.103.0-alpha.5...v0.103.0-alpha.6) (2021-08-18)
1210
722
 
1211
-
1212
723
  ### Features
1213
724
 
1214
725
  * remove textblock wrapper except when using a modifier ([#3052](https://github.com/thebyte9/blaze/issues/3052)) ([e48058a](https://github.com/thebyte9/blaze/commit/e48058ae1faaba4b30e1b39518e0be179bcf52c3))
1215
726
 
1216
-
1217
-
1218
-
1219
-
1220
727
  # [0.103.0-alpha.3](https://github.com/thebyte9/blaze/compare/v0.102.2...v0.103.0-alpha.3) (2021-08-17)
1221
728
 
1222
-
1223
729
  ### Bug Fixes
1224
730
 
1225
731
  * run script tags in code block html ([#3043](https://github.com/thebyte9/blaze/issues/3043)) ([fc4ff7e](https://github.com/thebyte9/blaze/commit/fc4ff7e876728a7a7bb980e85e44e00eec9820f6))
1226
732
 
1227
-
1228
-
1229
733
  # [0.103.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.103.0-alpha.1...v0.103.0-alpha.2) (2021-08-13)
1230
734
 
1231
-
1232
-
1233
735
  # [0.103.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.103.0-alpha.0...v0.103.0-alpha.1) (2021-08-12)
1234
736
 
1235
-
1236
-
1237
-
1238
-
1239
737
  # [0.103.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.103.0-alpha.1...v0.103.0-alpha.2) (2021-08-13)
1240
738
 
1241
-
1242
739
  ### Bug Fixes
1243
740
 
1244
741
  * do not add size if has a falsey dimension ([8b2f60e](https://github.com/thebyte9/blaze/commit/8b2f60e0c45b612610b76905bc95ece21ceca62e))
1245
742
 
1246
-
1247
-
1248
-
1249
-
1250
743
  # [0.103.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.103.0-alpha.0...v0.103.0-alpha.1) (2021-08-12)
1251
744
 
1252
745
  ### Bug Fixes
@@ -1254,92 +747,56 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1254
747
  * allow banners to have 0/null values for sizes and viewport ([4076c35](https://github.com/thebyte9/blaze/commit/4076c358dca21e9dcade8fffff995f6e417ced5a))
1255
748
  * do not add size if has a falsey dimension ([8b2f60e](https://github.com/thebyte9/blaze/commit/8b2f60e0c45b612610b76905bc95ece21ceca62e))
1256
749
 
1257
-
1258
-
1259
-
1260
-
1261
750
  ## [0.102.2](https://github.com/thebyte9/blaze/compare/v0.102.1...v0.102.2) (2021-08-16)
1262
751
 
1263
-
1264
752
  ### Bug Fixes
1265
753
 
1266
754
  * allow banners to have 0/null values for sizes and viewport ([4076c35](https://github.com/thebyte9/blaze/commit/4076c358dca21e9dcade8fffff995f6e417ced5a))
1267
755
  * do not add size if has a falsey dimension ([8b2f60e](https://github.com/thebyte9/blaze/commit/8b2f60e0c45b612610b76905bc95ece21ceca62e))
1268
756
 
1269
-
1270
-
1271
-
1272
-
1273
757
  # [0.102.0](https://github.com/thebyte9/blaze/compare/v0.102.0-alpha.5...v0.102.0) (2021-08-06)
1274
758
 
1275
759
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1276
760
 
1277
-
1278
-
1279
-
1280
-
1281
761
  # [0.102.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.101.2...v0.102.0-alpha.2) (2021-07-23)
1282
762
 
1283
-
1284
763
  ### Features
1285
764
 
1286
765
  * lightbox/images now wont allow banner as children and will not render them if they are present ([#2995](https://github.com/thebyte9/blaze/issues/2995)) ([67e49b0](https://github.com/thebyte9/blaze/commit/67e49b0b93b6befbb1ec7c6fcb3eba38ef9602ac))
1287
766
  * password reset api commands and page builder components ([#3005](https://github.com/thebyte9/blaze/issues/3005)) ([f3a55db](https://github.com/thebyte9/blaze/commit/f3a55dbbed6a4e7d1ab63b59e6e94b5d68f9e2e5))
1288
767
 
1289
-
1290
-
1291
768
  # [0.102.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.101.1...v0.102.0-alpha.0) (2021-07-22)
1292
769
 
1293
-
1294
770
  ### Features
1295
771
 
1296
772
  * lightbox/images now wont allow banner as children and will not render them if they are present ([#2995](https://github.com/thebyte9/blaze/issues/2995)) ([5206dfa](https://github.com/thebyte9/blaze/commit/5206dfafc02da5b29fcf878c07796c1d0ae89854))
1297
773
  * password reset api commands and page builder components ([#3005](https://github.com/thebyte9/blaze/issues/3005)) ([72c309b](https://github.com/thebyte9/blaze/commit/72c309b2efb3fd577708f376f9cbb0233d481e3a))
1298
774
 
1299
-
1300
-
1301
-
1302
-
1303
775
  # [0.102.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.101.1...v0.102.0-alpha.0) (2021-07-22)
1304
776
 
1305
-
1306
777
  ### Features
1307
778
 
1308
779
  * lightbox/images now wont allow banner as children and will not render them if they are present ([#2995](https://github.com/thebyte9/blaze/issues/2995)) ([5206dfa](https://github.com/thebyte9/blaze/commit/5206dfafc02da5b29fcf878c07796c1d0ae89854))
1309
780
  * password reset api commands and page builder components ([#3005](https://github.com/thebyte9/blaze/issues/3005)) ([72c309b](https://github.com/thebyte9/blaze/commit/72c309b2efb3fd577708f376f9cbb0233d481e3a))
1310
- ## [0.101.2](https://github.com/thebyte9/blaze/compare/v0.101.1...v0.101.2) (2021-07-23)
1311
781
 
782
+ ## [0.101.2](https://github.com/thebyte9/blaze/compare/v0.101.1...v0.101.2) (2021-07-23)
1312
783
 
1313
784
  ### Bug Fixes
1314
785
 
1315
786
  * revert image credits ([#3010](https://github.com/thebyte9/blaze/issues/3010)) ([18f4f74](https://github.com/thebyte9/blaze/commit/18f4f74dfdacfe89376d6cddb18602ba2b4f77c8))
1316
787
 
1317
-
1318
-
1319
-
1320
-
1321
788
  # [0.101.0](https://github.com/thebyte9/blaze/compare/v0.101.0-alpha.3...v0.101.0) (2021-07-21)
1322
789
 
1323
790
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1324
791
 
1325
-
1326
-
1327
-
1328
-
1329
792
  # [0.101.0-alpha.3](https://github.com/thebyte9/blaze/compare/v0.101.0-alpha.2...v0.101.0-alpha.3) (2021-07-19)
1330
793
 
1331
-
1332
794
  ### Bug Fixes
1333
795
 
1334
796
  * update @blaze-cms/image-cdn-react version ([f189d64](https://github.com/thebyte9/blaze/commit/f189d64b7e4c983fbad086b0b2d41715ee3ca434))
1335
797
 
1336
-
1337
-
1338
-
1339
-
1340
798
  # [0.101.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.101.0-alpha.0...v0.101.0-alpha.1) (2021-07-14)
1341
799
 
1342
-
1343
800
  ### Bug Fixes
1344
801
 
1345
802
  * add lazyload to carousel ([e6d273f](https://github.com/thebyte9/blaze/commit/e6d273f4a5e47601071d7769403d09ba68786af9))
@@ -1350,634 +807,349 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1350
807
  * solve conflicts ([5d0880a](https://github.com/thebyte9/blaze/commit/5d0880afcb33e64b88c82cd73374f44039013908))
1351
808
  * update video tests ([6d350a2](https://github.com/thebyte9/blaze/commit/6d350a2e11ed1d371f3eef2b635cca86ac85d016))
1352
809
 
1353
-
1354
810
  ### Features
1355
811
 
1356
812
  * add credits to video ([357b115](https://github.com/thebyte9/blaze/commit/357b11537ddbc91512391d305d3a7e34390312d5))
1357
813
  * add video caption ([bb68ce1](https://github.com/thebyte9/blaze/commit/bb68ce1917d0db4fe623d2191272295a4ccad4cc))
1358
814
 
1359
-
1360
-
1361
-
1362
-
1363
815
  # [0.101.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.100.0...v0.101.0-alpha.0) (2021-07-07)
1364
816
 
1365
817
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1366
818
 
1367
-
1368
-
1369
-
1370
-
1371
819
  # [0.100.0](https://github.com/thebyte9/blaze/compare/v0.100.0-alpha.4...v0.100.0) (2021-07-07)
1372
820
 
1373
821
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1374
822
 
1375
-
1376
-
1377
-
1378
-
1379
823
  # [0.100.0-alpha.4](https://github.com/thebyte9/blaze/compare/v0.100.0-alpha.3...v0.100.0-alpha.4) (2021-07-06)
1380
824
 
1381
-
1382
825
  ### Bug Fixes
1383
826
 
1384
827
  * fixed click events overriding other events within list BZ2-2500 ([#2968](https://github.com/thebyte9/blaze/issues/2968)) ([c423916](https://github.com/thebyte9/blaze/commit/c423916df318bb4efb3830c425a8e5c5489c0018))
1385
828
 
1386
-
1387
-
1388
-
1389
-
1390
829
  # [0.100.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.100.0-alpha.1...v0.100.0-alpha.2) (2021-07-02)
1391
830
 
1392
-
1393
831
  ### Bug Fixes
1394
832
 
1395
833
  * renamed onComplete events to onSuccess / fixed onSucces undefined callback crash ([#2964](https://github.com/thebyte9/blaze/issues/2964)) ([20519c3](https://github.com/thebyte9/blaze/commit/20519c35a01f3985364964b24dc0216393da2525))
1396
834
 
1397
-
1398
-
1399
-
1400
-
1401
835
  # [0.100.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.100.0-alpha.0...v0.100.0-alpha.1) (2021-07-02)
1402
836
 
1403
-
1404
837
  ### Bug Fixes
1405
838
 
1406
839
  * await for apollo client clearStore BZ2-2566 ([#2960](https://github.com/thebyte9/blaze/issues/2960)) ([3a12474](https://github.com/thebyte9/blaze/commit/3a1247472889972bd7da198bb26e4d01be5021f1))
1407
840
 
1408
-
1409
841
  ### Features
1410
842
 
1411
843
  * insert components title as gtm id ([#2959](https://github.com/thebyte9/blaze/issues/2959)) ([9f78c80](https://github.com/thebyte9/blaze/commit/9f78c80734dc7925ea19cfc2c98f34cd50d1534e))
1412
844
 
1413
-
1414
-
1415
-
1416
-
1417
845
  # [0.100.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.99.0...v0.100.0-alpha.0) (2021-07-01)
1418
846
 
1419
-
1420
847
  ### Features
1421
848
 
1422
849
  * added user object to dataLayer if setup on admin ([#2946](https://github.com/thebyte9/blaze/issues/2946)) ([fd98d37](https://github.com/thebyte9/blaze/commit/fd98d37d777ba55f55752220ff12668ca09484a6))
1423
850
  * gtm events onComplete trigger ([#2950](https://github.com/thebyte9/blaze/issues/2950)) ([8be8ae2](https://github.com/thebyte9/blaze/commit/8be8ae23507806fa86838c6e3debed67a2dfc56d))
1424
851
 
1425
-
1426
-
1427
-
1428
-
1429
852
  # [0.99.0](https://github.com/thebyte9/blaze/compare/v0.99.0-alpha.1...v0.99.0) (2021-06-30)
1430
853
 
1431
854
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1432
855
 
1433
-
1434
-
1435
-
1436
-
1437
856
  # [0.99.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.99.0-alpha.0...v0.99.0-alpha.1) (2021-06-25)
1438
857
 
1439
858
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1440
859
 
1441
-
1442
-
1443
-
1444
-
1445
860
  # [0.99.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.98.0...v0.99.0-alpha.0) (2021-06-23)
1446
861
 
1447
862
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1448
863
 
1449
-
1450
-
1451
-
1452
-
1453
864
  # [0.98.0](https://github.com/thebyte9/blaze/compare/v0.98.0-alpha.2...v0.98.0) (2021-06-21)
1454
865
 
1455
866
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1456
867
 
1457
-
1458
-
1459
-
1460
-
1461
868
  # [0.98.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.98.0-alpha.0...v0.98.0-alpha.1) (2021-06-17)
1462
869
 
1463
870
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1464
871
 
1465
-
1466
-
1467
-
1468
-
1469
872
  # [0.98.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.97.3...v0.98.0-alpha.0) (2021-06-17)
1470
873
 
1471
-
1472
874
  ### Bug Fixes
1473
875
 
1474
876
  * moved button from login outside of form ([#2893](https://github.com/thebyte9/blaze/issues/2893)) ([6a1b870](https://github.com/thebyte9/blaze/commit/6a1b8708e3e164050d612479386699bb9469853e)), closes [#2894](https://github.com/thebyte9/blaze/issues/2894) [#2897](https://github.com/thebyte9/blaze/issues/2897)
1475
877
 
1476
-
1477
878
  ### Features
1478
879
 
1479
880
  * added refresh to admin ([#2903](https://github.com/thebyte9/blaze/issues/2903)) ([0a3c50a](https://github.com/thebyte9/blaze/commit/0a3c50a15b0b1853384f50ff14dc46e83cdd8ec4)), closes [#2894](https://github.com/thebyte9/blaze/issues/2894) [#2897](https://github.com/thebyte9/blaze/issues/2897) [#2884](https://github.com/thebyte9/blaze/issues/2884) [#2894](https://github.com/thebyte9/blaze/issues/2894) [#2897](https://github.com/thebyte9/blaze/issues/2897) [#2884](https://github.com/thebyte9/blaze/issues/2884) [#2902](https://github.com/thebyte9/blaze/issues/2902) [#2909](https://github.com/thebyte9/blaze/issues/2909)
1480
881
 
1481
-
1482
-
1483
-
1484
-
1485
882
  ## [0.97.3](https://github.com/thebyte9/blaze/compare/v0.97.3-alpha.1...v0.97.3) (2021-06-16)
1486
883
 
1487
884
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1488
885
 
1489
-
1490
-
1491
-
1492
-
1493
886
  ## [0.97.3-alpha.1](https://github.com/thebyte9/blaze/compare/v0.97.3-alpha.0...v0.97.3-alpha.1) (2021-06-16)
1494
887
 
1495
-
1496
888
  ### Bug Fixes
1497
889
 
1498
890
  * do not show logged in message after submit BZ2-2512 ([#2919](https://github.com/thebyte9/blaze/issues/2919)) ([5a36b03](https://github.com/thebyte9/blaze/commit/5a36b03d273f324232714a71b1a324ab38a4895d))
1499
891
 
1500
-
1501
-
1502
-
1503
-
1504
892
  ## [0.97.3-alpha.0](https://github.com/thebyte9/blaze/compare/v0.97.2...v0.97.3-alpha.0) (2021-06-15)
1505
893
 
1506
-
1507
894
  ### Bug Fixes
1508
895
 
1509
896
  * login component now checks if logged in ([#2897](https://github.com/thebyte9/blaze/issues/2897)) ([a78f247](https://github.com/thebyte9/blaze/commit/a78f247f4549719b1f8e8cdc8330f0de83c5a694))
1510
897
 
1511
-
1512
-
1513
-
1514
-
1515
898
  ## [0.97.2-alpha.0](https://github.com/thebyte9/blaze/compare/v0.97.1...v0.97.2-alpha.0) (2021-06-10)
1516
899
 
1517
-
1518
900
  ### Bug Fixes
1519
901
 
1520
902
  * login component now checks if logged in ([#2897](https://github.com/thebyte9/blaze/issues/2897)) ([a58fe93](https://github.com/thebyte9/blaze/commit/a58fe93f8d52ef50372ad9c0a27b9dc89c6c4c01))
1521
903
 
1522
-
1523
-
1524
-
1525
-
1526
904
  # [0.97.0](https://github.com/thebyte9/blaze/compare/v0.97.0-alpha.16...v0.97.0) (2021-06-09)
1527
905
 
1528
906
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1529
907
 
1530
-
1531
-
1532
-
1533
-
1534
908
  # [0.97.0-alpha.16](https://github.com/thebyte9/blaze/compare/v0.97.0-alpha.15...v0.97.0-alpha.16) (2021-06-09)
1535
909
 
1536
910
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1537
911
 
1538
-
1539
-
1540
-
1541
-
1542
912
  # [0.97.0-alpha.15](https://github.com/thebyte9/blaze/compare/v0.97.0-alpha.14...v0.97.0-alpha.15) (2021-06-08)
1543
913
 
1544
-
1545
914
  ### Bug Fixes
1546
915
 
1547
916
  * remove duplicate page reload added in feature branch merge ([e10c26f](https://github.com/thebyte9/blaze/commit/e10c26fcbd710682d86d56d021ef9191d629b285))
1548
917
 
1549
-
1550
-
1551
-
1552
-
1553
918
  # [0.97.0-alpha.12](https://github.com/thebyte9/blaze/compare/v0.97.0-alpha.11...v0.97.0-alpha.12) (2021-06-08)
1554
919
 
1555
920
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1556
921
 
1557
-
1558
-
1559
-
1560
-
1561
922
  # [0.97.0-alpha.11](https://github.com/thebyte9/blaze/compare/v0.97.0-alpha.10...v0.97.0-alpha.11) (2021-06-08)
1562
923
 
1563
-
1564
924
  ### Bug Fixes
1565
925
 
1566
926
  * show menu children and mobile button ([37a2d2f](https://github.com/thebyte9/blaze/commit/37a2d2f2c033fe773e916d7d4e500f72238a39ca))
1567
927
 
1568
-
1569
928
  ### Features
1570
929
 
1571
930
  * refresh tokens ([#2883](https://github.com/thebyte9/blaze/issues/2883)) ([7f7d450](https://github.com/thebyte9/blaze/commit/7f7d45066bc8051edd2c947842b2a92fc0b1542c))
1572
931
 
1573
-
1574
-
1575
-
1576
-
1577
932
  # [0.97.0-alpha.10](https://github.com/thebyte9/blaze/compare/v0.97.0-alpha.9...v0.97.0-alpha.10) (2021-06-07)
1578
933
 
1579
-
1580
934
  ### Bug Fixes
1581
935
 
1582
936
  * hamburger button renders on top level instead of ul ([5f22e3c](https://github.com/thebyte9/blaze/commit/5f22e3ca2e3f8d01ce96a79fa5655f33b8dc88eb))
1583
937
  * menu item children now render within li if needed ([e83727a](https://github.com/thebyte9/blaze/commit/e83727a8f32d375df2fff978465c219325c41313))
1584
938
  * updated tests ([90e01be](https://github.com/thebyte9/blaze/commit/90e01beccf0deb17532a9a902f0420a68b9c649e))
1585
939
 
1586
-
1587
940
  ### Features
1588
941
 
1589
942
  * added subMenu component which wrapps children within an ul ([85b8a6e](https://github.com/thebyte9/blaze/commit/85b8a6eaae38f7072a829fd5b9e298c237475b28))
1590
943
 
1591
-
1592
-
1593
-
1594
-
1595
944
  # [0.97.0-alpha.8](https://github.com/thebyte9/blaze/compare/v0.97.0-alpha.7...v0.97.0-alpha.8) (2021-06-04)
1596
945
 
1597
-
1598
946
  ### Bug Fixes
1599
947
 
1600
948
  * menu item checks children before rendering ([#2868](https://github.com/thebyte9/blaze/issues/2868)) ([76eb355](https://github.com/thebyte9/blaze/commit/76eb355f8270ecbd6d541c23ab3fae845abeb0ae))
1601
949
 
1602
-
1603
-
1604
-
1605
-
1606
950
  # [0.97.0-alpha.7](https://github.com/thebyte9/blaze/compare/v0.97.0-alpha.6...v0.97.0-alpha.7) (2021-06-04)
1607
951
 
1608
-
1609
952
  ### Bug Fixes
1610
953
 
1611
954
  * handle array redirectUrl in login BZ2-249. ([#2864](https://github.com/thebyte9/blaze/issues/2864)) ([809d7f7](https://github.com/thebyte9/blaze/commit/809d7f7873412d0895a02116109a67062245417b))
1612
955
  * menu uses correct markup and handles external routes ([307c6fc](https://github.com/thebyte9/blaze/commit/307c6fce2dc8b424a277109e5f892ace7a3dcc05))
1613
956
  * updated tests ([108fdab](https://github.com/thebyte9/blaze/commit/108fdabe5d897f42c01bd1502ecf6bd0281b7d2e))
1614
957
 
1615
-
1616
-
1617
-
1618
-
1619
958
  # [0.97.0-alpha.6](https://github.com/thebyte9/blaze/compare/v0.97.0-alpha.5...v0.97.0-alpha.6) (2021-06-03)
1620
959
 
1621
-
1622
960
  ### Bug Fixes
1623
961
 
1624
962
  * card now sends list name for gtm click events ([#2856](https://github.com/thebyte9/blaze/issues/2856)) ([25f3b7e](https://github.com/thebyte9/blaze/commit/25f3b7ede67c3f2a6d360e02fbdc5a5fd7a45007))
1625
963
 
1626
-
1627
-
1628
-
1629
-
1630
964
  # [0.97.0-alpha.5](https://github.com/thebyte9/blaze/compare/v0.97.0-alpha.4...v0.97.0-alpha.5) (2021-06-02)
1631
965
 
1632
-
1633
966
  ### Features
1634
967
 
1635
968
  * added emailConfirm component ([#2857](https://github.com/thebyte9/blaze/issues/2857)) ([04be9a9](https://github.com/thebyte9/blaze/commit/04be9a9f5be920d761d4e343bf0db15841c84493))
1636
969
 
1637
-
1638
-
1639
-
1640
-
1641
970
  # [0.97.0-alpha.4](https://github.com/thebyte9/blaze/compare/v0.97.0-alpha.3...v0.97.0-alpha.4) (2021-05-28)
1642
971
 
1643
-
1644
972
  ### Bug Fixes
1645
973
 
1646
974
  * fixed menu item hover bug ([#2852](https://github.com/thebyte9/blaze/issues/2852)) ([6b5ebcc](https://github.com/thebyte9/blaze/commit/6b5ebcca13a94465724999ed45d1621edfe21ca3))
1647
975
 
1648
-
1649
-
1650
-
1651
-
1652
976
  # [0.97.0-alpha.3](https://github.com/thebyte9/blaze/compare/v0.97.0-alpha.2...v0.97.0-alpha.3) (2021-05-28)
1653
977
 
1654
-
1655
978
  ### Bug Fixes
1656
979
 
1657
980
  * login form now submits on enter keypress ([#2848](https://github.com/thebyte9/blaze/issues/2848)) ([dfb5809](https://github.com/thebyte9/blaze/commit/dfb580995677d93c625dac55cc1cae443d3720e2))
1658
981
 
1659
-
1660
982
  ### Features
1661
983
 
1662
984
  * added menu components to blaze ([#2845](https://github.com/thebyte9/blaze/issues/2845)) ([01d0d73](https://github.com/thebyte9/blaze/commit/01d0d739a97c168722cb25e987d631156058d496))
1663
985
 
1664
-
1665
-
1666
-
1667
-
1668
986
  # [0.97.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.97.0-alpha.1...v0.97.0-alpha.2) (2021-05-27)
1669
987
 
1670
988
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1671
989
 
1672
-
1673
-
1674
-
1675
-
1676
990
  # [0.97.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.97.0-alpha.0...v0.97.0-alpha.1) (2021-05-26)
1677
991
 
1678
992
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1679
993
 
1680
-
1681
-
1682
-
1683
-
1684
994
  # [0.97.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.96.0...v0.97.0-alpha.0) (2021-05-25)
1685
995
 
1686
-
1687
996
  ### Bug Fixes
1688
997
 
1689
998
  * Prevent link title from showing the internal card title on cards ([31c20a5](https://github.com/thebyte9/blaze/commit/31c20a5dcd8eb88fd7762d8b1ba24d7e44aec9aa))
1690
999
 
1691
-
1692
-
1693
-
1694
-
1695
1000
  # [0.96.0](https://github.com/thebyte9/blaze/compare/v0.96.0-alpha.1...v0.96.0) (2021-05-25)
1696
1001
 
1697
1002
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1698
1003
 
1699
-
1700
-
1701
-
1702
-
1703
1004
  # [0.96.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.96.0-alpha.0...v0.96.0-alpha.1) (2021-05-18)
1704
1005
 
1705
-
1706
1006
  ### Bug Fixes
1707
1007
 
1708
1008
  * added actionLabel to gtm click events ([#2810](https://github.com/thebyte9/blaze/issues/2810)) ([75fa3a1](https://github.com/thebyte9/blaze/commit/75fa3a1245c40a0467035e1be8b4dae954d54768))
1709
1009
  * removed custom errorMessage added reload when no url is passed ([#2814](https://github.com/thebyte9/blaze/issues/2814)) ([fc96715](https://github.com/thebyte9/blaze/commit/fc96715ee13ca5db6a972c0ff59a7b5d4efcd1c0))
1710
1010
 
1711
-
1712
1011
  ### Features
1713
1012
 
1714
1013
  * add video caption ([#2807](https://github.com/thebyte9/blaze/issues/2807)) ([7cd3ef9](https://github.com/thebyte9/blaze/commit/7cd3ef91ea0e43a928ca5c107610775a7713879d))
1715
1014
 
1716
-
1717
-
1718
-
1719
-
1720
1015
  # [0.96.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.95.1-alpha.2...v0.96.0-alpha.0) (2021-05-11)
1721
1016
 
1722
-
1723
1017
  ### Bug Fixes
1724
1018
 
1725
1019
  * memory leaks in tests ([1839da2](https://github.com/thebyte9/blaze/commit/1839da23a9fdbed883b8622ca77380850ae144a8))
1726
1020
 
1727
-
1728
1021
  ### Features
1729
1022
 
1730
1023
  * added login component to blaze ([#2767](https://github.com/thebyte9/blaze/issues/2767)) ([2d49ba7](https://github.com/thebyte9/blaze/commit/2d49ba7f3c08749c3bd268dc9550f9913d3e8d40))
1731
1024
 
1732
-
1733
-
1734
-
1735
-
1736
1025
  ## [0.95.1-alpha.2](https://github.com/thebyte9/blaze/compare/v0.95.1-alpha.1...v0.95.1-alpha.2) (2021-05-05)
1737
1026
 
1738
1027
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1739
1028
 
1740
-
1741
-
1742
-
1743
-
1744
1029
  ## [0.95.1-alpha.0](https://github.com/thebyte9/blaze/compare/v0.95.0...v0.95.1-alpha.0) (2021-04-30)
1745
1030
 
1746
1031
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1747
1032
 
1748
-
1749
-
1750
-
1751
-
1752
1033
  # [0.95.0](https://github.com/thebyte9/blaze/compare/v0.95.0-alpha.0...v0.95.0) (2021-04-26)
1753
1034
 
1754
1035
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1755
1036
 
1756
-
1757
-
1758
-
1759
-
1760
1037
  # [0.95.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.94.1-alpha.1...v0.95.0-alpha.0) (2021-04-26)
1761
1038
 
1762
-
1763
1039
  ### Bug Fixes
1764
1040
 
1765
1041
  * remove noreferrer form links ([#2757](https://github.com/thebyte9/blaze/issues/2757)) ([6b9b260](https://github.com/thebyte9/blaze/commit/6b9b2601f0d07993587ec1744bd5c8e7bc81f6fa))
1766
1042
 
1767
-
1768
-
1769
-
1770
-
1771
1043
  ## [0.94.1-alpha.1](https://github.com/thebyte9/blaze/compare/v0.94.1-alpha.0...v0.94.1-alpha.1) (2021-04-26)
1772
1044
 
1773
1045
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1774
1046
 
1775
-
1776
-
1777
-
1778
-
1779
1047
  ## [0.94.1-alpha.0](https://github.com/thebyte9/blaze/compare/v0.94.0...v0.94.1-alpha.0) (2021-04-23)
1780
1048
 
1781
1049
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1782
1050
 
1783
-
1784
-
1785
-
1786
-
1787
1051
  # [0.94.0](https://github.com/thebyte9/blaze/compare/v0.94.0-alpha.5...v0.94.0) (2021-04-22)
1788
1052
 
1789
1053
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1790
1054
 
1791
-
1792
-
1793
-
1794
-
1795
1055
  # [0.94.0-alpha.5](https://github.com/thebyte9/blaze/compare/v0.94.0-alpha.4...v0.94.0-alpha.5) (2021-04-20)
1796
1056
 
1797
1057
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1798
1058
 
1799
-
1800
-
1801
-
1802
-
1803
1059
  # [0.94.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.93.0...v0.94.0-alpha.0) (2021-03-29)
1804
1060
 
1805
-
1806
1061
  ### Bug Fixes
1807
1062
 
1808
1063
  * textblock hyperlink issue ([#2342](https://github.com/thebyte9/blaze/issues/2342)) ([#2674](https://github.com/thebyte9/blaze/issues/2674)) ([c7f8286](https://github.com/thebyte9/blaze/commit/c7f8286008697059c2c8ae1e4c05c6185bfc111e))
1809
1064
 
1810
-
1811
-
1812
-
1813
-
1814
1065
  # [0.93.0](https://github.com/thebyte9/blaze/compare/v0.93.0-alpha.0...v0.93.0) (2021-03-19)
1815
1066
 
1816
1067
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1817
1068
 
1818
-
1819
-
1820
-
1821
-
1822
1069
  # [0.93.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.92.2...v0.93.0-alpha.0) (2021-03-19)
1823
1070
 
1824
-
1825
1071
  ### Features
1826
1072
 
1827
1073
  * update lazy loading images in carousel BZ2-2369 ([#2687](https://github.com/thebyte9/blaze/issues/2687)) ([f9d89fc](https://github.com/thebyte9/blaze/commit/f9d89fc191cfa7c986595b52db3dbeb6e70ec561))
1828
1074
 
1829
-
1830
-
1831
-
1832
-
1833
1075
  ## [0.92.2](https://github.com/thebyte9/blaze/compare/v0.92.2-alpha.0...v0.92.2) (2021-03-16)
1834
1076
 
1835
1077
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1836
1078
 
1837
-
1838
-
1839
-
1840
-
1841
1079
  ## [0.92.2-alpha.0](https://github.com/thebyte9/blaze/compare/v0.92.1...v0.92.2-alpha.0) (2021-03-15)
1842
1080
 
1843
-
1844
1081
  ### Bug Fixes
1845
1082
 
1846
1083
  * handling search files values with forward slash BZ2-2355 ([#2676](https://github.com/thebyte9/blaze/issues/2676)) ([0b6d557](https://github.com/thebyte9/blaze/commit/0b6d557cec453b04f3766b34dd927270a3c109de))
1847
1084
 
1848
-
1849
-
1850
-
1851
-
1852
1085
  ## [0.92.1](https://github.com/thebyte9/blaze/compare/v0.92.1-alpha.0...v0.92.1) (2021-03-12)
1853
1086
 
1854
1087
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1855
1088
 
1856
-
1857
-
1858
-
1859
-
1860
1089
  ## [0.92.1-alpha.0](https://github.com/thebyte9/blaze/compare/v0.92.0...v0.92.1-alpha.0) (2021-03-11)
1861
1090
 
1862
1091
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1863
1092
 
1864
-
1865
-
1866
-
1867
-
1868
1093
  # [0.92.0](https://github.com/thebyte9/blaze/compare/v0.92.0-alpha.2...v0.92.0) (2021-03-05)
1869
1094
 
1870
1095
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1871
1096
 
1872
-
1873
-
1874
-
1875
-
1876
1097
  # [0.92.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.92.0-alpha.1...v0.92.0-alpha.2) (2021-03-04)
1877
1098
 
1878
-
1879
1099
  ### Bug Fixes
1880
1100
 
1881
1101
  * added banner entity select option ([#2647](https://github.com/thebyte9/blaze/issues/2647)) ([edae6df](https://github.com/thebyte9/blaze/commit/edae6dfaab497a94161a49e42a56855b37e0e20c))
1882
1102
 
1883
-
1884
-
1885
-
1886
-
1887
1103
  # [0.92.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.92.0-alpha.0...v0.92.0-alpha.1) (2021-03-04)
1888
1104
 
1889
-
1890
1105
  ### Bug Fixes
1891
1106
 
1892
1107
  * changed breakpointConfig save structure ([#2630](https://github.com/thebyte9/blaze/issues/2630)) ([b0c3d8a](https://github.com/thebyte9/blaze/commit/b0c3d8afcd03fc8bcfc8bea739256e15532ac338))
1893
1108
 
1894
-
1895
-
1896
-
1897
-
1898
1109
  # [0.92.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.91.0...v0.92.0-alpha.0) (2021-03-03)
1899
1110
 
1900
1111
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1901
1112
 
1902
-
1903
-
1904
-
1905
-
1906
1113
  # [0.91.0](https://github.com/thebyte9/blaze/compare/v0.91.0-alpha.1...v0.91.0) (2021-02-26)
1907
1114
 
1908
1115
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1909
1116
 
1910
-
1911
-
1912
-
1913
-
1914
1117
  # [0.91.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.90.0...v0.91.0-alpha.0) (2021-02-25)
1915
1118
 
1916
-
1917
1119
  ### Features
1918
1120
 
1919
1121
  * changed npm to yarn ([#2591](https://github.com/thebyte9/blaze/issues/2591)) ([b785e32](https://github.com/thebyte9/blaze/commit/b785e32455f86fd7353ede7928de192a91e6b2c7))
1920
1122
 
1921
-
1922
-
1923
-
1924
-
1925
1123
  # [0.90.0](https://github.com/thebyte9/blaze/compare/v0.90.0-alpha.0...v0.90.0) (2021-02-24)
1926
1124
 
1927
1125
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1928
1126
 
1929
-
1930
-
1931
-
1932
-
1933
1127
  # [0.90.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.89.0...v0.90.0-alpha.0) (2021-02-23)
1934
1128
 
1935
1129
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1936
1130
 
1937
-
1938
-
1939
-
1940
-
1941
1131
  # [0.89.0](https://github.com/thebyte9/blaze/compare/v0.89.0-alpha.0...v0.89.0) (2021-02-17)
1942
1132
 
1943
1133
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1944
1134
 
1945
-
1946
-
1947
-
1948
-
1949
1135
  # [0.89.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.88.4...v0.89.0-alpha.0) (2021-02-15)
1950
1136
 
1951
-
1952
1137
  ### Bug Fixes
1953
1138
 
1954
1139
  * banner now uses correct actionKey in preview mode ([#2590](https://github.com/thebyte9/blaze/issues/2590)) ([b554a8c](https://github.com/thebyte9/blaze/commit/b554a8cd60006de5ec625cb10a022d03aca52550))
1955
1140
 
1956
-
1957
1141
  ### Features
1958
1142
 
1959
1143
  * Bz2 2199/breakpoint settings ([#2582](https://github.com/thebyte9/blaze/issues/2582)) ([b11068e](https://github.com/thebyte9/blaze/commit/b11068e9bb47885b8c86ae7c32ed0654bb26788a))
1960
1144
 
1961
-
1962
-
1963
-
1964
-
1965
1145
  # [0.88.0](https://github.com/thebyte9/blaze/compare/v0.88.0-alpha.0...v0.88.0) (2021-02-01)
1966
1146
 
1967
1147
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1968
1148
 
1969
-
1970
-
1971
-
1972
-
1973
1149
  # [0.87.0](https://github.com/thebyte9/blaze/compare/v0.87.0-alpha.1...v0.87.0) (2021-01-29)
1974
1150
 
1975
1151
  **Note:** Version bump only for package @blaze-cms/react-page-builder
1976
1152
 
1977
-
1978
-
1979
-
1980
-
1981
1153
  # [0.87.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.87.0-alpha.0...v0.87.0-alpha.1) (2021-01-29)
1982
1154
 
1983
1155
  **Note:** Version bump only for package @blaze-cms/react-page-builder