@blaze-cms/react-page-builder 0.123.0-alpha.8 → 0.123.1-alpha.0

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