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