@blaze-cms/react-page-builder 0.128.0-project-admin-customisations.0 → 0.128.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.
- package/CHANGELOG.md +53 -372
- package/lib/components/ContentGroupSection/ContentGroupSection.js +4 -1
- package/lib/components/ContentGroupSection/ContentGroupSection.js.map +1 -1
- package/lib/components/DataSummary/DataSummaryFactory.js +2 -1
- package/lib/components/DataSummary/DataSummaryFactory.js.map +1 -1
- package/lib/components/DataSummary/helpers/get-link-props.js +23 -0
- package/lib/components/DataSummary/helpers/get-link-props.js.map +1 -0
- package/lib/components/DataSummary/helpers/get-link-to-published-content.js +7 -12
- package/lib/components/DataSummary/helpers/get-link-to-published-content.js.map +1 -1
- package/lib/components/DataSummary/helpers/index.js +7 -0
- package/lib/components/DataSummary/helpers/index.js.map +1 -1
- package/lib/helpers/build-props-query.js +34 -24
- package/lib/helpers/build-props-query.js.map +1 -1
- package/lib-es/components/ContentGroupSection/ContentGroupSection.js +8 -4
- package/lib-es/components/ContentGroupSection/ContentGroupSection.js.map +1 -1
- package/lib-es/components/DataSummary/DataSummaryFactory.js +3 -2
- package/lib-es/components/DataSummary/DataSummaryFactory.js.map +1 -1
- package/lib-es/components/DataSummary/helpers/get-link-props.js +6 -0
- package/lib-es/components/DataSummary/helpers/get-link-props.js.map +1 -0
- package/lib-es/components/DataSummary/helpers/get-link-to-published-content.js +4 -7
- package/lib-es/components/DataSummary/helpers/get-link-to-published-content.js.map +1 -1
- package/lib-es/components/DataSummary/helpers/index.js +2 -1
- package/lib-es/components/DataSummary/helpers/index.js.map +1 -1
- package/lib-es/helpers/build-props-query.js +22 -9
- package/lib-es/helpers/build-props-query.js.map +1 -1
- package/package.json +10 -10
- package/src/components/ContentGroupSection/ContentGroupSection.js +1 -1
- package/src/components/DataSummary/DataSummaryFactory.js +3 -2
- package/src/components/DataSummary/helpers/get-link-props.js +7 -0
- package/src/components/DataSummary/helpers/get-link-to-published-content.js +4 -8
- package/src/components/DataSummary/helpers/index.js +3 -1
- package/src/helpers/build-props-query.js +46 -33
- package/tests/unit/src/components/DataSummary/helpers/get-link-props.test.js +35 -0
- package/tests/unit/src/components/DataSummary/helpers/get-link-to-published-content.test.js +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,601 +3,396 @@
|
|
|
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
|
-
|
|
6
|
+
## [0.128.1-alpha.0](https://github.com/thebyte9/blaze/compare/v0.128.0-alpha.4...v0.128.1-alpha.0) (2023-04-14)
|
|
7
7
|
|
|
8
|
+
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
8
9
|
|
|
9
|
-
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
* added handling of blank spaces for content groups ([#3828](https://github.com/thebyte9/blaze/issues/3828)) ([e196b41](https://github.com/thebyte9/blaze/commit/e196b41f2c424b05cc07642af9697e65e0ab26e1))
|
|
12
|
-
* deconstruct correct query variable to fix filtered card loading ([#3839](https://github.com/thebyte9/blaze/issues/3839)) ([aa282ed](https://github.com/thebyte9/blaze/commit/aa282ed971768d935eba9bd8a32538f98f0abdc7))
|
|
13
|
-
* ignore DOMException errors in ErrorBoundary ([05b66af](https://github.com/thebyte9/blaze/commit/05b66afff5f8cb3ee6618e7a6b5521d8bdfbf7a0))
|
|
14
11
|
|
|
15
12
|
|
|
16
|
-
### Features
|
|
17
13
|
|
|
18
|
-
|
|
19
|
-
* added label for itemDetailsSummary component ([#3859](https://github.com/thebyte9/blaze/issues/3859)) ([e6b16ce](https://github.com/thebyte9/blaze/commit/e6b16ce4bdb60abe15564bece73f7b99f2c669f8))
|
|
20
|
-
* entity multi select for card and list components ([#3603](https://github.com/thebyte9/blaze/issues/3603)) ([af3441c](https://github.com/thebyte9/blaze/commit/af3441c5f9cb0033124bb92f8d9cd81a68fefc14))
|
|
21
|
-
* removed h2 from all but layout and withTitle hoc ([#3853](https://github.com/thebyte9/blaze/issues/3853)) ([b05160b](https://github.com/thebyte9/blaze/commit/b05160b568115f64b560dd5803f1d81fac55adca))
|
|
22
|
-
* update banner repetition settings for list and card components ([#3809](https://github.com/thebyte9/blaze/issues/3809)) ([8804687](https://github.com/thebyte9/blaze/commit/88046871e16ade178fa0f89a5f8c463a0ac4c701))
|
|
14
|
+
# [0.128.0](https://github.com/thebyte9/blaze/compare/v0.128.0-alpha.4...v0.128.0) (2023-04-13)
|
|
23
15
|
|
|
16
|
+
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
24
17
|
|
|
25
18
|
|
|
26
19
|
|
|
27
20
|
|
|
28
|
-
# [0.127.0](https://github.com/thebyte9/blaze/compare/v0.126.1...v0.127.0) (2023-02-10)
|
|
29
21
|
|
|
22
|
+
# [0.128.0-alpha.4](https://github.com/thebyte9/blaze/compare/v0.128.0-alpha.3...v0.128.0-alpha.4) (2023-04-13)
|
|
30
23
|
|
|
31
|
-
### Features
|
|
32
24
|
|
|
33
|
-
|
|
25
|
+
### Bug Fixes
|
|
34
26
|
|
|
27
|
+
* data summary now uses url if prop matches checks ([68e2119](https://github.com/thebyte9/blaze/commit/68e2119559ac9f0005e16f0c85620aa823b62b76))
|
|
35
28
|
|
|
36
29
|
|
|
37
30
|
|
|
31
|
+
## [0.127.3](https://github.com/thebyte9/blaze/compare/v0.128.0-alpha.2...v0.127.3) (2023-03-31)
|
|
38
32
|
|
|
39
|
-
# [0.126.0](https://github.com/thebyte9/blaze/compare/v0.126.0-alpha.6...v0.126.0) (2023-01-17)
|
|
40
33
|
|
|
41
|
-
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
42
34
|
|
|
43
35
|
|
|
44
36
|
|
|
37
|
+
# [0.128.0-alpha.3](https://github.com/thebyte9/blaze/compare/v0.128.0-alpha.2...v0.128.0-alpha.3) (2023-04-12)
|
|
45
38
|
|
|
39
|
+
## [0.127.3](https://github.com/thebyte9/blaze/compare/v0.127.2...v0.127.3) (2023-03-31)
|
|
46
40
|
|
|
47
|
-
|
|
41
|
+
### Bug Fixes
|
|
48
42
|
|
|
43
|
+
* ignore DOMException errors in ErrorBoundary ([05b66af](https://github.com/thebyte9/blaze/commit/05b66afff5f8cb3ee6618e7a6b5521d8bdfbf7a0))
|
|
44
|
+
|
|
45
|
+
# [0.127.0](https://github.com/thebyte9/blaze/compare/v0.126.1...v0.127.0) (2023-02-10)
|
|
49
46
|
|
|
50
47
|
### Features
|
|
51
48
|
|
|
52
|
-
*
|
|
49
|
+
* shorthand story plugins ([#3806](https://github.com/thebyte9/blaze/issues/3806)) ([08d9b82](https://github.com/thebyte9/blaze/commit/08d9b82aa1983291450c616c9bd8fd81f6ddae9d))
|
|
53
50
|
|
|
51
|
+
# [0.126.0](https://github.com/thebyte9/blaze/compare/v0.126.0-alpha.6...v0.126.0) (2023-01-17)
|
|
54
52
|
|
|
53
|
+
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
55
54
|
|
|
55
|
+
# [0.128.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.128.0-alpha.1...v0.128.0-alpha.2) (2023-03-31)
|
|
56
56
|
|
|
57
|
+
## [0.127.3](https://github.com/thebyte9/blaze/compare/v0.127.2...v0.127.3) (2023-03-31)
|
|
57
58
|
|
|
58
|
-
|
|
59
|
+
### Bug Fixes
|
|
59
60
|
|
|
61
|
+
* ignore DOMException errors in ErrorBoundary ([05b66af](https://github.com/thebyte9/blaze/commit/05b66afff5f8cb3ee6618e7a6b5521d8bdfbf7a0))
|
|
60
62
|
|
|
61
|
-
|
|
63
|
+
# [0.128.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.128.0-alpha.0...v0.128.0-alpha.1) (2023-03-29)
|
|
62
64
|
|
|
63
|
-
|
|
64
|
-
* vimeo player lazy loading ([#3723](https://github.com/thebyte9/blaze/issues/3723)) ([c2814eb](https://github.com/thebyte9/blaze/commit/c2814eb03f89d885dcf845ecdf07728645a607cb))
|
|
65
|
+
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
65
66
|
|
|
67
|
+
# [0.128.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.127.2...v0.128.0-alpha.0) (2023-03-28)
|
|
66
68
|
|
|
69
|
+
### Bug Fixes
|
|
67
70
|
|
|
71
|
+
* added handling of blank spaces for content groups ([#3828](https://github.com/thebyte9/blaze/issues/3828)) ([e196b41](https://github.com/thebyte9/blaze/commit/e196b41f2c424b05cc07642af9697e65e0ab26e1))
|
|
72
|
+
* deconstruct correct query variable to fix filtered card loading ([#3839](https://github.com/thebyte9/blaze/issues/3839)) ([aa282ed](https://github.com/thebyte9/blaze/commit/aa282ed971768d935eba9bd8a32538f98f0abdc7))
|
|
68
73
|
|
|
74
|
+
### Features
|
|
69
75
|
|
|
70
|
-
|
|
76
|
+
* added iframe component ([#3793](https://github.com/thebyte9/blaze/issues/3793)) ([71d1029](https://github.com/thebyte9/blaze/commit/71d102984896f7fd571a6c60499978e5c8e2d044))
|
|
77
|
+
* added label for itemDetailsSummary component ([#3859](https://github.com/thebyte9/blaze/issues/3859)) ([e6b16ce](https://github.com/thebyte9/blaze/commit/e6b16ce4bdb60abe15564bece73f7b99f2c669f8))
|
|
78
|
+
* entity multi select for card and list components ([#3603](https://github.com/thebyte9/blaze/issues/3603)) ([af3441c](https://github.com/thebyte9/blaze/commit/af3441c5f9cb0033124bb92f8d9cd81a68fefc14))
|
|
79
|
+
* removed h2 from all but layout and withTitle hoc ([#3853](https://github.com/thebyte9/blaze/issues/3853)) ([b05160b](https://github.com/thebyte9/blaze/commit/b05160b568115f64b560dd5803f1d81fac55adca))
|
|
80
|
+
* update banner repetition settings for list and card components ([#3809](https://github.com/thebyte9/blaze/issues/3809)) ([8804687](https://github.com/thebyte9/blaze/commit/88046871e16ade178fa0f89a5f8c463a0ac4c701))
|
|
71
81
|
|
|
72
|
-
|
|
82
|
+
# [0.127.0](https://github.com/thebyte9/blaze/compare/v0.126.1...v0.127.0) (2023-02-10)
|
|
73
83
|
|
|
84
|
+
### Features
|
|
74
85
|
|
|
86
|
+
* shorthand story plugins ([#3806](https://github.com/thebyte9/blaze/issues/3806)) ([08d9b82](https://github.com/thebyte9/blaze/commit/08d9b82aa1983291450c616c9bd8fd81f6ddae9d))
|
|
75
87
|
|
|
88
|
+
# [0.126.0](https://github.com/thebyte9/blaze/compare/v0.126.0-alpha.6...v0.126.0) (2023-01-17)
|
|
76
89
|
|
|
90
|
+
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
77
91
|
|
|
78
|
-
# [0.
|
|
92
|
+
# [0.126.0-alpha.5](https://github.com/thebyte9/blaze/compare/v0.126.0-alpha.4...v0.126.0-alpha.5) (2023-01-12)
|
|
79
93
|
|
|
94
|
+
### Features
|
|
95
|
+
|
|
96
|
+
* content groups anchor links in the url ([#3736](https://github.com/thebyte9/blaze/issues/3736)) ([b0fb981](https://github.com/thebyte9/blaze/commit/b0fb9814a62bba34e005537a7410550b1ac79afc))
|
|
97
|
+
|
|
98
|
+
# [0.126.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.125.0...v0.126.0-alpha.0) (2022-12-02)
|
|
80
99
|
|
|
81
100
|
### Features
|
|
82
101
|
|
|
83
|
-
*
|
|
84
|
-
*
|
|
102
|
+
* frontend should always search with pageBuilderIndexed property ([#3725](https://github.com/thebyte9/blaze/issues/3725)) ([dea4943](https://github.com/thebyte9/blaze/commit/dea49431c36cc28afb99a715a764bb5bb4a6da30))
|
|
103
|
+
* vimeo player lazy loading ([#3723](https://github.com/thebyte9/blaze/issues/3723)) ([c2814eb](https://github.com/thebyte9/blaze/commit/c2814eb03f89d885dcf845ecdf07728645a607cb))
|
|
104
|
+
|
|
105
|
+
# [0.125.0](https://github.com/thebyte9/blaze/compare/v0.125.0-alpha.18...v0.125.0) (2022-11-30)
|
|
85
106
|
|
|
107
|
+
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
86
108
|
|
|
109
|
+
# [0.125.0-alpha.18](https://github.com/thebyte9/blaze/compare/v0.125.0-alpha.17...v0.125.0-alpha.18) (2022-11-28)
|
|
87
110
|
|
|
111
|
+
### Features
|
|
88
112
|
|
|
113
|
+
* add autoLogin function to auth provider requirements ([3f5e7ed](https://github.com/thebyte9/blaze/commit/3f5e7ed949052dcc6296ac7defe87ddce6869a65))
|
|
114
|
+
* allow setting custom html attribute on props to display ([115e3f1](https://github.com/thebyte9/blaze/commit/115e3f1540abfe6a5dd32dbebc2a4474197c262e))
|
|
89
115
|
|
|
90
116
|
# [0.125.0-alpha.15](https://github.com/thebyte9/blaze/compare/v0.125.0-alpha.14...v0.125.0-alpha.15) (2022-11-16)
|
|
91
117
|
|
|
92
|
-
|
|
93
118
|
### Bug Fixes
|
|
94
119
|
|
|
95
120
|
* added link handler to card ([#3692](https://github.com/thebyte9/blaze/issues/3692)) ([d7c003d](https://github.com/thebyte9/blaze/commit/d7c003d85e4e8fba4c7707a61ea33cb9ac86fceb))
|
|
96
121
|
|
|
97
|
-
|
|
98
122
|
### Features
|
|
99
123
|
|
|
100
124
|
* GroupContent components ([#3678](https://github.com/thebyte9/blaze/issues/3678)) ([b6f5c7e](https://github.com/thebyte9/blaze/commit/b6f5c7e6e5a03f2322f3d3c1568c9d42b33ede45))
|
|
101
125
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
126
|
# [0.125.0-alpha.14](https://github.com/thebyte9/blaze/compare/v0.125.0-alpha.13...v0.125.0-alpha.14) (2022-10-25)
|
|
107
127
|
|
|
108
128
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
109
129
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
130
|
# [0.125.0-alpha.13](https://github.com/thebyte9/blaze/compare/v0.125.0-alpha.12...v0.125.0-alpha.13) (2022-10-24)
|
|
115
131
|
|
|
116
|
-
|
|
117
132
|
### Features
|
|
118
133
|
|
|
119
134
|
* dynamic values hook and dynamic PB button properties ([#3643](https://github.com/thebyte9/blaze/issues/3643)) ([16411e7](https://github.com/thebyte9/blaze/commit/16411e731e9ac1d05312bca59156be89a554e25b))
|
|
120
135
|
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
136
|
# [0.125.0-alpha.7](https://github.com/thebyte9/blaze/compare/v0.125.0-alpha.6...v0.125.0-alpha.7) (2022-10-07)
|
|
126
137
|
|
|
127
138
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
128
139
|
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
140
|
# [0.125.0-alpha.3](https://github.com/thebyte9/blaze/compare/v0.125.0-alpha.2...v0.125.0-alpha.3) (2022-09-27)
|
|
134
141
|
|
|
135
|
-
|
|
136
142
|
### Features
|
|
137
143
|
|
|
138
144
|
* adding vimeo provider ([#3605](https://github.com/thebyte9/blaze/issues/3605)) ([458c810](https://github.com/thebyte9/blaze/commit/458c810c647a6bcb0d69281865fd0afa0966475c))
|
|
139
145
|
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
146
|
# [0.125.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.125.0-alpha.0...v0.125.0-alpha.1) (2022-09-15)
|
|
145
147
|
|
|
146
148
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
147
149
|
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
150
|
## [0.124.1](https://github.com/thebyte9/blaze/compare/v0.124.1-alpha.5...v0.124.1) (2022-09-06)
|
|
153
151
|
|
|
154
152
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
155
153
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
154
|
## [0.124.1-alpha.5](https://github.com/thebyte9/blaze/compare/v0.124.1-alpha.4...v0.124.1-alpha.5) (2022-09-05)
|
|
161
155
|
|
|
162
|
-
|
|
163
156
|
### Bug Fixes
|
|
164
157
|
|
|
165
158
|
* unpersist show/hide when navigating to next page ([#3584](https://github.com/thebyte9/blaze/issues/3584)) ([5ea63ce](https://github.com/thebyte9/blaze/commit/5ea63cefd780bf3e9e85c1471571c58a1170a473))
|
|
166
159
|
* use arrays for banner targetting ([#3579](https://github.com/thebyte9/blaze/issues/3579)) ([fd78f18](https://github.com/thebyte9/blaze/commit/fd78f189ba4bde01147be2d3021bdf1c17a27d58))
|
|
167
160
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
161
|
## [0.124.1-alpha.3](https://github.com/thebyte9/blaze/compare/v0.124.1-alpha.2...v0.124.1-alpha.3) (2022-08-25)
|
|
173
162
|
|
|
174
|
-
|
|
175
163
|
### Bug Fixes
|
|
176
164
|
|
|
177
165
|
* search filter handles range values, show range filter even when min/max are the same ([#3568](https://github.com/thebyte9/blaze/issues/3568)) ([0c7e561](https://github.com/thebyte9/blaze/commit/0c7e561bd4bbd8fff9968dfa373cfa66ffc7a8ae))
|
|
178
166
|
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
167
|
## [0.124.1-alpha.2](https://github.com/thebyte9/blaze/compare/v0.124.1-alpha.1...v0.124.1-alpha.2) (2022-08-23)
|
|
184
168
|
|
|
185
|
-
|
|
186
169
|
### Bug Fixes
|
|
187
170
|
|
|
188
171
|
* resolve reset filters not updating filter options ([#3563](https://github.com/thebyte9/blaze/issues/3563)) ([b230507](https://github.com/thebyte9/blaze/commit/b230507476b811f0a4d141b8e20956738c53d2fc))
|
|
189
172
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
173
|
## [0.124.1-alpha.1](https://github.com/thebyte9/blaze/compare/v0.124.1-alpha.0...v0.124.1-alpha.1) (2022-08-19)
|
|
195
174
|
|
|
196
|
-
|
|
197
175
|
### Bug Fixes
|
|
198
176
|
|
|
199
177
|
* search filter component handling range values properly ([#3559](https://github.com/thebyte9/blaze/issues/3559)) ([8a261b4](https://github.com/thebyte9/blaze/commit/8a261b4b4ac472290654761e068621317f5a242f))
|
|
200
178
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
179
|
# [0.124.0](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.43...v0.124.0) (2022-08-08)
|
|
206
180
|
|
|
207
181
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
208
182
|
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
183
|
# [0.124.0-alpha.43](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.42...v0.124.0-alpha.43) (2022-08-05)
|
|
214
184
|
|
|
215
|
-
|
|
216
185
|
### Bug Fixes
|
|
217
186
|
|
|
218
187
|
* set initial filter keys on initial load ([#3550](https://github.com/thebyte9/blaze/issues/3550)) ([0b4910a](https://github.com/thebyte9/blaze/commit/0b4910ae9ca751023f4a110f3bb0de42adce6549))
|
|
219
188
|
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
189
|
# [0.124.0-alpha.42](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.41...v0.124.0-alpha.42) (2022-08-04)
|
|
225
190
|
|
|
226
|
-
|
|
227
191
|
### Bug Fixes
|
|
228
192
|
|
|
229
193
|
* added special value escape check to all filters ([#3542](https://github.com/thebyte9/blaze/issues/3542)) ([7455391](https://github.com/thebyte9/blaze/commit/7455391b48f82c242c5340fecbd5f76e9b6678b1))
|
|
230
194
|
|
|
231
|
-
|
|
232
195
|
### Features
|
|
233
196
|
|
|
234
197
|
* add button show/hide children ([#3541](https://github.com/thebyte9/blaze/issues/3541)) ([db6badf](https://github.com/thebyte9/blaze/commit/db6badf8ab116a4b5507559ca43c153012fda99c))
|
|
235
198
|
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
199
|
# [0.124.0-alpha.40](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.39...v0.124.0-alpha.40) (2022-07-13)
|
|
241
200
|
|
|
242
|
-
|
|
243
201
|
### Bug Fixes
|
|
244
202
|
|
|
245
203
|
* revert carousel classes and add card carousel arrow styles ([#3534](https://github.com/thebyte9/blaze/issues/3534)) ([54e8b07](https://github.com/thebyte9/blaze/commit/54e8b078efa9920a502f30dd0e2703e25a5ecf2a))
|
|
246
204
|
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
205
|
# [0.124.0-alpha.39](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.38...v0.124.0-alpha.39) (2022-07-13)
|
|
252
206
|
|
|
253
|
-
|
|
254
207
|
### Bug Fixes
|
|
255
208
|
|
|
256
209
|
* show filters even if no filter values by setting filter values from query ([#3533](https://github.com/thebyte9/blaze/issues/3533)) ([b8a0080](https://github.com/thebyte9/blaze/commit/b8a00804993b49066712dfbb74f20523e8cea764))
|
|
257
210
|
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
211
|
# [0.124.0-alpha.37](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.36...v0.124.0-alpha.37) (2022-06-29)
|
|
263
212
|
|
|
264
|
-
|
|
265
213
|
### Bug Fixes
|
|
266
214
|
|
|
267
215
|
* update image-cdn-react package to add as to preload tag ([#3527](https://github.com/thebyte9/blaze/issues/3527)) ([d7cab87](https://github.com/thebyte9/blaze/commit/d7cab874e824d9b2e99a0d3d5f2c6c48775132e5))
|
|
268
216
|
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
217
|
# [0.124.0-alpha.36](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.35...v0.124.0-alpha.36) (2022-06-28)
|
|
274
218
|
|
|
275
|
-
|
|
276
219
|
### Features
|
|
277
220
|
|
|
278
221
|
* make menu responsive using css ([#3526](https://github.com/thebyte9/blaze/issues/3526)) ([e8a7f45](https://github.com/thebyte9/blaze/commit/e8a7f45e22d4e31a106bff1b06ab25775a2a13ce))
|
|
279
222
|
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
223
|
# [0.124.0-alpha.35](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.34...v0.124.0-alpha.35) (2022-06-27)
|
|
285
224
|
|
|
286
|
-
|
|
287
225
|
### Bug Fixes
|
|
288
226
|
|
|
289
227
|
* set search filter values correctly. Handle missing buckets for checkbox ([#3520](https://github.com/thebyte9/blaze/issues/3520)) ([c8024f2](https://github.com/thebyte9/blaze/commit/c8024f2be5f39962f491a61ac0cc64de93d8efab))
|
|
290
228
|
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
229
|
# [0.124.0-alpha.34](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.33...v0.124.0-alpha.34) (2022-06-24)
|
|
296
230
|
|
|
297
|
-
|
|
298
231
|
### Features
|
|
299
232
|
|
|
300
233
|
* show clear list button when list in query string ([#3518](https://github.com/thebyte9/blaze/issues/3518)) ([0066907](https://github.com/thebyte9/blaze/commit/00669078ef9177300fcf388f9a01bfd874d20eca))
|
|
301
234
|
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
235
|
# [0.124.0-alpha.33](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.32...v0.124.0-alpha.33) (2022-06-21)
|
|
307
236
|
|
|
308
|
-
|
|
309
237
|
### Features
|
|
310
238
|
|
|
311
239
|
* add new item list component ([#3512](https://github.com/thebyte9/blaze/issues/3512)) ([e3f3a33](https://github.com/thebyte9/blaze/commit/e3f3a33528a46eda907d120ec9e9eaa1def544d5))
|
|
312
240
|
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
241
|
# [0.124.0-alpha.32](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.31...v0.124.0-alpha.32) (2022-06-17)
|
|
318
242
|
|
|
319
243
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
320
244
|
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
245
|
# [0.124.0-alpha.31](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.30...v0.124.0-alpha.31) (2022-06-13)
|
|
326
246
|
|
|
327
|
-
|
|
328
247
|
### Features
|
|
329
248
|
|
|
330
249
|
* add show hide child menu items in mobile menu ([#3494](https://github.com/thebyte9/blaze/issues/3494)) ([41bfa2e](https://github.com/thebyte9/blaze/commit/41bfa2ef1999c169db6c5fc1ebbb4b7a896d1fe4))
|
|
331
250
|
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
251
|
# [0.124.0-alpha.30](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.29...v0.124.0-alpha.30) (2022-06-09)
|
|
337
252
|
|
|
338
|
-
|
|
339
253
|
### Bug Fixes
|
|
340
254
|
|
|
341
255
|
* use correct filter values in search filter ([#3501](https://github.com/thebyte9/blaze/issues/3501)) ([4466948](https://github.com/thebyte9/blaze/commit/446694875dfc2f0f32f1cf82981cbd82f3608ff1))
|
|
342
256
|
|
|
343
|
-
|
|
344
257
|
### Features
|
|
345
258
|
|
|
346
259
|
* update responsive image to preload priority image ([6f50971](https://github.com/thebyte9/blaze/commit/6f5097162151fca62493ab50027a43f3652e949f))
|
|
347
260
|
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
261
|
# [0.124.0-alpha.29](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.28...v0.124.0-alpha.29) (2022-06-06)
|
|
353
262
|
|
|
354
|
-
|
|
355
263
|
### Bug Fixes
|
|
356
264
|
|
|
357
265
|
* contextual filter not using query props on initial load ([#3495](https://github.com/thebyte9/blaze/issues/3495)) ([a52b9e1](https://github.com/thebyte9/blaze/commit/a52b9e1b4005288e58666bb2c30c43605e6ae548))
|
|
358
266
|
|
|
359
|
-
|
|
360
267
|
### Features
|
|
361
268
|
|
|
362
269
|
* filter counts and contextual display ([#3485](https://github.com/thebyte9/blaze/issues/3485)) ([41431fc](https://github.com/thebyte9/blaze/commit/41431fc4509824747dfcf27a0b7ff6045a32ebe4))
|
|
363
270
|
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
271
|
# [0.124.0-alpha.28](https://byte9/thebyte9/blaze/compare/v0.124.0-alpha.27...v0.124.0-alpha.28) (2022-05-27)
|
|
369
272
|
|
|
370
273
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
371
274
|
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
275
|
# [0.124.0-alpha.26](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.25...v0.124.0-alpha.26) (2022-05-24)
|
|
377
276
|
|
|
378
277
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
379
278
|
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
279
|
# [0.124.0-alpha.25](https://byte9/thebyte9/blaze/compare/v0.124.0-alpha.24...v0.124.0-alpha.25) (2022-05-24)
|
|
385
280
|
|
|
386
281
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
387
282
|
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
283
|
# [0.124.0-alpha.24](https://byte9/thebyte9/blaze/compare/v0.124.0-alpha.23...v0.124.0-alpha.24) (2022-05-24)
|
|
393
284
|
|
|
394
285
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
395
286
|
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
287
|
# [0.124.0-alpha.23](https://byte9/thebyte9/blaze/compare/v0.124.0-alpha.22...v0.124.0-alpha.23) (2022-05-24)
|
|
401
288
|
|
|
402
289
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
403
290
|
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
291
|
# [0.124.0-alpha.22](https://byte9/thebyte9/blaze/compare/v0.124.0-alpha.21...v0.124.0-alpha.22) (2022-05-24)
|
|
409
292
|
|
|
410
293
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
411
294
|
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
295
|
# [0.124.0-alpha.21](https://byte9/thebyte9/blaze/compare/v0.124.0-alpha.20...v0.124.0-alpha.21) (2022-05-24)
|
|
417
296
|
|
|
418
297
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
419
298
|
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
299
|
# [0.124.0-alpha.20](https://byte9/thebyte9/blaze/compare/v0.124.0-alpha.19...v0.124.0-alpha.20) (2022-05-24)
|
|
425
300
|
|
|
426
301
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
427
302
|
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
303
|
# [0.124.0-alpha.19](https://byte9/thebyte9/blaze/compare/v0.124.0-alpha.18...v0.124.0-alpha.19) (2022-05-18)
|
|
433
304
|
|
|
434
|
-
|
|
435
305
|
### Features
|
|
436
306
|
|
|
437
307
|
* add useDebounceSearch ([806201b](https://byte9/thebyte9/blaze/commits/806201bd2839162a78d4b64d2634c8bb6737b711))
|
|
438
308
|
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
309
|
# [0.124.0-alpha.18](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.17...v0.124.0-alpha.18) (2022-05-17)
|
|
444
310
|
|
|
445
|
-
|
|
446
311
|
### Bug Fixes
|
|
447
312
|
|
|
448
313
|
* list component add itemListId to query string ([#3477](https://github.com/thebyte9/blaze/issues/3477)) ([5eb7a9f](https://github.com/thebyte9/blaze/commit/5eb7a9f90bb3bea6d33c0ce891b0a13c929280f9))
|
|
449
314
|
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
315
|
# [0.124.0-alpha.15](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.14...v0.124.0-alpha.15) (2022-05-11)
|
|
455
316
|
|
|
456
|
-
|
|
457
317
|
### Bug Fixes
|
|
458
318
|
|
|
459
319
|
* add missing react import ([d29d867](https://github.com/thebyte9/blaze/commit/d29d8670c5c8c5e377308e57e34acec96f39e0c5))
|
|
460
320
|
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
321
|
# [0.124.0-alpha.14](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.13...v0.124.0-alpha.14) (2022-05-11)
|
|
466
322
|
|
|
467
|
-
|
|
468
323
|
### Features
|
|
469
324
|
|
|
470
325
|
* added itemCounter/itemListButton and lis logic for itemList ([#3469](https://github.com/thebyte9/blaze/issues/3469)) ([bd9e1b1](https://github.com/thebyte9/blaze/commit/bd9e1b185c929306089d495316f40ab39e242a68))
|
|
471
326
|
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
327
|
# [0.124.0-alpha.13](https://byte9/thebyte9/blaze/compare/v0.124.0-alpha.12...v0.124.0-alpha.13) (2022-05-11)
|
|
477
328
|
|
|
478
329
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
479
330
|
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
331
|
# [0.124.0-alpha.12](https://byte9/thebyte9/blaze/compare/v0.124.0-alpha.11...v0.124.0-alpha.12) (2022-05-11)
|
|
485
332
|
|
|
486
333
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
487
334
|
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
335
|
# [0.124.0-alpha.11](https://byte9/thebyte9/blaze/compare/v0.124.0-alpha.10...v0.124.0-alpha.11) (2022-05-11)
|
|
493
336
|
|
|
494
337
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
495
338
|
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
339
|
# [0.124.0-alpha.10](https://byte9/thebyte9/blaze/compare/v0.124.0-alpha.9...v0.124.0-alpha.10) (2022-05-11)
|
|
501
340
|
|
|
502
341
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
503
342
|
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
343
|
# [0.124.0-alpha.9](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.8...v0.124.0-alpha.9) (2022-05-10)
|
|
509
344
|
|
|
510
|
-
|
|
511
345
|
### Bug Fixes
|
|
512
346
|
|
|
513
347
|
* close search filter toggles on submit ([#3461](https://github.com/thebyte9/blaze/issues/3461)) ([412ebf1](https://github.com/thebyte9/blaze/commit/412ebf1a93760405f8942af59b8debf4fa69b994))
|
|
514
348
|
* enable changing filter aggregation size ([#3459](https://github.com/thebyte9/blaze/issues/3459)) ([d65111f](https://github.com/thebyte9/blaze/commit/d65111f8353a17a18cb82b0ba63470347f3b63b6))
|
|
515
349
|
* fix apollo client version to 3.5.x while investigating ssr issue ([#3466](https://github.com/thebyte9/blaze/issues/3466)) ([8f14f8e](https://github.com/thebyte9/blaze/commit/8f14f8e9946f0e1e2ed3d9eb747a6d01c34e9937))
|
|
516
350
|
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
351
|
# [0.124.0-alpha.8](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.7...v0.124.0-alpha.8) (2022-05-06)
|
|
522
352
|
|
|
523
353
|
### Bug Fixes
|
|
524
354
|
|
|
525
355
|
* enable changing filter aggregation size ([#3459](https://github.com/thebyte9/blaze/issues/3459)) ([#3460](https://github.com/thebyte9/blaze/issues/3460)) ([04ea731](https://github.com/thebyte9/blaze/commit/04ea7311902ac195f0badd7807fa827e00f1f946))
|
|
526
356
|
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
357
|
## [0.122.5](https://github.com/thebyte9/blaze/compare/v0.122.4...v0.122.5) (2022-05-06)
|
|
531
358
|
|
|
532
|
-
|
|
533
359
|
### Bug Fixes
|
|
534
360
|
|
|
535
361
|
* enable changing filter aggregation size ([#3458](https://github.com/thebyte9/blaze/issues/3458)) ([5693f8a](https://github.com/thebyte9/blaze/commit/5693f8aebc30b4b2e0996a0cbb55f0d732f4e39e))
|
|
536
362
|
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
363
|
# [0.124.0-alpha.7](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.6...v0.124.0-alpha.7) (2022-05-06)
|
|
545
364
|
|
|
546
365
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
547
366
|
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
367
|
# [0.124.0-alpha.6](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.5...v0.124.0-alpha.6) (2022-05-06)
|
|
553
368
|
|
|
554
369
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
555
370
|
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
371
|
# [0.124.0-alpha.4](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.3...v0.124.0-alpha.4) (2022-05-03)
|
|
561
372
|
|
|
562
|
-
|
|
563
373
|
### Bug Fixes
|
|
564
374
|
|
|
565
375
|
* add id prop to filter queries to help data merges in apollo ([#3451](https://github.com/thebyte9/blaze/issues/3451)) ([0e66222](https://github.com/thebyte9/blaze/commit/0e662220e80da84c1713e23b60f2ab4495a8e883))
|
|
566
376
|
|
|
567
|
-
|
|
568
377
|
### Features
|
|
569
378
|
|
|
570
379
|
* adding url property to document and update card to fetch url for non content entity ([#3371](https://github.com/thebyte9/blaze/issues/3371)) ([5a52e05](https://github.com/thebyte9/blaze/commit/5a52e05d83c2ce564aa8faada635660c7e4e3eef))
|
|
571
380
|
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
381
|
# [0.124.0-alpha.3](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.2...v0.124.0-alpha.3) (2022-04-29)
|
|
577
382
|
|
|
578
383
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
579
384
|
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
385
|
# [0.124.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.1...v0.124.0-alpha.2) (2022-04-29)
|
|
585
386
|
|
|
586
387
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
587
388
|
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
389
|
# [0.124.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.122.4...v0.124.0-alpha.1) (2022-04-27)
|
|
593
390
|
|
|
594
|
-
|
|
595
391
|
### Bug Fixes
|
|
596
392
|
|
|
597
393
|
* handle default select filter value correctly ([3453057](https://github.com/thebyte9/blaze/commit/345305725051ae40109bc405246907cf58bbcba3))
|
|
598
394
|
* render empty card block when removing card that same as parent record ([#3171](https://github.com/thebyte9/blaze/issues/3171)) ([bce20cf](https://github.com/thebyte9/blaze/commit/bce20cfd05a7e66444f0aadd67389b6adf18430c))
|
|
599
395
|
|
|
600
|
-
|
|
601
396
|
### Features
|
|
602
397
|
|
|
603
398
|
* add back to top component ([#3436](https://github.com/thebyte9/blaze/issues/3436)) ([e0454fe](https://github.com/thebyte9/blaze/commit/e0454fe0a8b36e9e34539e95b57128d66a3b43cf))
|
|
@@ -606,262 +401,152 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
606
401
|
* add tel: link to data summary data ([#3420](https://github.com/thebyte9/blaze/issues/3420)) ([6223ac9](https://github.com/thebyte9/blaze/commit/6223ac99839c50626173a1cb0f2922e40ec60f10))
|
|
607
402
|
* added video modal play ([#3433](https://github.com/thebyte9/blaze/issues/3433)) ([b88338a](https://github.com/thebyte9/blaze/commit/b88338acf362fe6609e430c039b7dadee0fa8a91))
|
|
608
403
|
|
|
609
|
-
|
|
610
|
-
|
|
611
404
|
# [0.124.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.123.1-alpha.2...v0.124.0-alpha.0) (2022-04-25)
|
|
612
405
|
|
|
613
|
-
|
|
614
|
-
|
|
615
406
|
## [0.123.1-alpha.2](https://github.com/thebyte9/blaze/compare/v0.123.1-alpha.1...v0.123.1-alpha.2) (2022-04-21)
|
|
616
407
|
|
|
617
|
-
|
|
618
|
-
|
|
619
408
|
## [0.123.1-alpha.1](https://github.com/thebyte9/blaze/compare/v0.123.1-alpha.0...v0.123.1-alpha.1) (2022-04-21)
|
|
620
409
|
|
|
621
|
-
|
|
622
|
-
|
|
623
410
|
## [0.123.1-alpha.0](https://github.com/thebyte9/blaze/compare/v0.123.0...v0.123.1-alpha.0) (2022-04-21)
|
|
624
411
|
|
|
625
|
-
|
|
626
|
-
|
|
627
412
|
# [0.123.0](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.29...v0.123.0) (2022-04-11)
|
|
628
413
|
|
|
629
|
-
|
|
630
|
-
|
|
631
414
|
# [0.123.0-alpha.27](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.26...v0.123.0-alpha.27) (2022-04-07)
|
|
632
415
|
|
|
633
|
-
|
|
634
|
-
|
|
635
416
|
# [0.123.0-alpha.25](https://github.com/thebyte9/blaze/compare/v0.122.3...v0.123.0-alpha.25) (2022-04-07)
|
|
636
417
|
|
|
637
|
-
|
|
638
|
-
|
|
639
418
|
# [0.123.0-alpha.24](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.23...v0.123.0-alpha.24) (2022-04-05)
|
|
640
419
|
|
|
641
|
-
|
|
642
420
|
### Bug Fixes
|
|
643
421
|
|
|
644
422
|
* handle default select filter value correctly ([4dfb85a](https://github.com/thebyte9/blaze/commit/4dfb85a6e1aeb9e7b927d06088220ed38e8886e5))
|
|
645
423
|
|
|
646
|
-
|
|
647
424
|
### Features
|
|
648
425
|
|
|
649
426
|
* add display label as placeholder for select filter ([cf3bbf1](https://github.com/thebyte9/blaze/commit/cf3bbf18f0316d7b61b4da4e631750033105bb02))
|
|
650
427
|
* add tel: link to data summary data ([#3420](https://github.com/thebyte9/blaze/issues/3420)) ([9f59a02](https://github.com/thebyte9/blaze/commit/9f59a0200dec1c506b2a7062cbaff812d51c85e1))
|
|
651
428
|
|
|
652
|
-
|
|
653
|
-
|
|
654
429
|
# [0.123.0-alpha.23](https://github.com/thebyte9/blaze/compare/v0.122.2...v0.123.0-alpha.23) (2022-04-04)
|
|
655
430
|
|
|
656
|
-
|
|
657
431
|
### Bug Fixes
|
|
658
432
|
|
|
659
433
|
* 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))
|
|
660
434
|
|
|
661
|
-
|
|
662
435
|
### Features
|
|
663
436
|
|
|
664
437
|
* 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))
|
|
665
438
|
|
|
666
|
-
|
|
667
|
-
|
|
668
439
|
# [0.123.0-alpha.22](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.21...v0.123.0-alpha.22) (2022-04-04)
|
|
669
440
|
|
|
670
|
-
|
|
671
|
-
|
|
672
441
|
# [0.123.0-alpha.21](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.20...v0.123.0-alpha.21) (2022-04-01)
|
|
673
442
|
|
|
674
|
-
|
|
675
|
-
|
|
676
443
|
# [0.123.0-alpha.20](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.19...v0.123.0-alpha.20) (2022-04-01)
|
|
677
444
|
|
|
678
|
-
|
|
679
|
-
|
|
680
445
|
# [0.123.0-alpha.19](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.18...v0.123.0-alpha.19) (2022-03-31)
|
|
681
446
|
|
|
682
|
-
|
|
683
447
|
### Bug Fixes
|
|
684
448
|
|
|
685
449
|
* handle search filter with css ([#3395](https://github.com/thebyte9/blaze/issues/3395)) ([41cef02](https://github.com/thebyte9/blaze/commit/41cef02add747256cb813b0d2985f54ec92a4061))
|
|
686
450
|
|
|
687
|
-
|
|
688
|
-
|
|
689
451
|
# [0.123.0-alpha.18](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.17...v0.123.0-alpha.18) (2022-03-31)
|
|
690
452
|
|
|
691
|
-
|
|
692
|
-
|
|
693
453
|
# [0.123.0-alpha.17](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.16...v0.123.0-alpha.17) (2022-03-31)
|
|
694
454
|
|
|
695
|
-
|
|
696
|
-
|
|
697
455
|
# [0.123.0-alpha.16](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.15...v0.123.0-alpha.16) (2022-03-30)
|
|
698
456
|
|
|
699
|
-
|
|
700
|
-
|
|
701
457
|
# [0.123.0-alpha.15](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.14...v0.123.0-alpha.15) (2022-03-30)
|
|
702
458
|
|
|
703
|
-
|
|
704
|
-
|
|
705
459
|
# [0.123.0-alpha.14](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.13...v0.123.0-alpha.14) (2022-03-30)
|
|
706
460
|
|
|
707
|
-
|
|
708
461
|
### Bug Fixes
|
|
709
462
|
|
|
710
463
|
* hide error if query fails ([fdfbc41](https://github.com/thebyte9/blaze/commit/fdfbc417b767ea68a20fb300f453500f0ab11098))
|
|
711
464
|
|
|
712
|
-
|
|
713
|
-
|
|
714
465
|
# [0.123.0-alpha.13](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.12...v0.123.0-alpha.13) (2022-03-30)
|
|
715
466
|
|
|
716
|
-
|
|
717
|
-
|
|
718
467
|
# [0.123.0-alpha.12](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.9...v0.123.0-alpha.12) (2022-03-30)
|
|
719
468
|
|
|
720
|
-
|
|
721
|
-
|
|
722
469
|
# [0.123.0-alpha.9](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.8...v0.123.0-alpha.9) (2022-03-26)
|
|
723
470
|
|
|
724
|
-
|
|
725
|
-
|
|
726
471
|
# [0.123.0-alpha.8](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.7...v0.123.0-alpha.8) (2022-03-26)
|
|
727
472
|
|
|
728
|
-
|
|
729
|
-
|
|
730
473
|
# [0.123.0-alpha.7](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.6...v0.123.0-alpha.7) (2022-03-26)
|
|
731
474
|
|
|
732
|
-
|
|
733
475
|
### Bug Fixes
|
|
734
476
|
|
|
735
477
|
* logo and search input alignment ([c0e9382](https://github.com/thebyte9/blaze/commit/c0e9382769a569b84ba61fbe43d29c6c3a3f6553))
|
|
736
478
|
|
|
737
|
-
|
|
738
|
-
|
|
739
479
|
# [0.123.0-alpha.6](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.5...v0.123.0-alpha.6) (2022-03-26)
|
|
740
480
|
|
|
741
|
-
|
|
742
|
-
|
|
743
481
|
# [0.123.0-alpha.5](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.4...v0.123.0-alpha.5) (2022-03-26)
|
|
744
482
|
|
|
745
|
-
|
|
746
|
-
|
|
747
483
|
# [0.123.0-alpha.4](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.3...v0.123.0-alpha.4) (2022-03-25)
|
|
748
484
|
|
|
749
|
-
|
|
750
485
|
### Features
|
|
751
486
|
|
|
752
487
|
* 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))
|
|
753
488
|
|
|
754
|
-
|
|
755
|
-
|
|
756
489
|
# [0.123.0-alpha.3](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.2...v0.123.0-alpha.3) (2022-03-25)
|
|
757
490
|
|
|
758
|
-
|
|
759
491
|
### Bug Fixes
|
|
760
492
|
|
|
761
493
|
* 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))
|
|
762
494
|
|
|
763
|
-
|
|
764
|
-
|
|
765
495
|
# [0.123.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.1...v0.123.0-alpha.2) (2022-03-22)
|
|
766
496
|
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
497
|
# [0.124.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.123.1-alpha.2...v0.124.0-alpha.0) (2022-04-25)
|
|
772
498
|
|
|
773
499
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
774
500
|
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
501
|
## [0.122.3](https://github.com/thebyte9/blaze/compare/v0.122.2...v0.122.3) (2022-04-06)
|
|
779
502
|
|
|
780
|
-
|
|
781
503
|
### Bug Fixes
|
|
782
504
|
|
|
783
505
|
* add id to elasticsearch index data and update frontend item to display sort to use ([#3426](https://github.com/thebyte9/blaze/issues/3426)) ([0e3572c](https://github.com/thebyte9/blaze/commit/0e3572cdc69a8a59f9a500c1ae452a940c0f97cd))
|
|
784
506
|
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
507
|
## [0.122.2](https://github.com/thebyte9/blaze/compare/v0.122.1...v0.122.2) (2022-04-04)
|
|
790
508
|
|
|
791
509
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
792
510
|
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
511
|
## [0.123.1-alpha.2](https://github.com/thebyte9/blaze/compare/v0.123.1-alpha.1...v0.123.1-alpha.2) (2022-04-21)
|
|
798
512
|
|
|
799
513
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
800
514
|
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
515
|
## [0.123.1-alpha.1](https://github.com/thebyte9/blaze/compare/v0.123.1-alpha.0...v0.123.1-alpha.1) (2022-04-21)
|
|
806
516
|
|
|
807
517
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
808
518
|
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
519
|
## [0.123.1-alpha.0](https://github.com/thebyte9/blaze/compare/v0.123.0...v0.123.1-alpha.0) (2022-04-21)
|
|
814
520
|
|
|
815
521
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
816
522
|
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
523
|
# [0.123.0](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.29...v0.123.0) (2022-04-11)
|
|
822
524
|
|
|
823
525
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
824
526
|
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
527
|
# [0.123.0-alpha.27](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.26...v0.123.0-alpha.27) (2022-04-07)
|
|
830
528
|
|
|
831
529
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
832
530
|
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
531
|
# [0.123.0-alpha.25](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.24...v0.123.0-alpha.25) (2022-04-07)
|
|
838
532
|
|
|
839
533
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|
|
840
534
|
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
535
|
# [0.123.0-alpha.24](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.23...v0.123.0-alpha.24) (2022-04-05)
|
|
846
536
|
|
|
847
|
-
|
|
848
537
|
### Bug Fixes
|
|
849
538
|
|
|
850
539
|
* handle default select filter value correctly ([4dfb85a](https://github.com/thebyte9/blaze/commit/4dfb85a6e1aeb9e7b927d06088220ed38e8886e5))
|
|
851
540
|
* 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))
|
|
852
541
|
|
|
853
|
-
|
|
854
542
|
### Features
|
|
855
543
|
|
|
856
544
|
* add display label as placeholder for select filter ([cf3bbf1](https://github.com/thebyte9/blaze/commit/cf3bbf18f0316d7b61b4da4e631750033105bb02))
|
|
857
545
|
* 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))
|
|
858
546
|
* add tel: link to data summary data ([#3420](https://github.com/thebyte9/blaze/issues/3420)) ([9f59a02](https://github.com/thebyte9/blaze/commit/9f59a0200dec1c506b2a7062cbaff812d51c85e1))
|
|
859
547
|
|
|
860
|
-
|
|
861
|
-
|
|
862
548
|
## [0.122.2](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.22...v0.122.2) (2022-04-04)
|
|
863
549
|
|
|
864
|
-
|
|
865
550
|
### Bug Fixes
|
|
866
551
|
|
|
867
552
|
* add initial modifier to filter form ([be2254c](https://github.com/thebyte9/blaze/commit/be2254c967137b1c08e9989fcd1bf29d3675bb05))
|
|
@@ -870,10 +555,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
870
555
|
* remove visibility ([32afbb4](https://github.com/thebyte9/blaze/commit/32afbb49f097a43e3e58a4938862a839beabe394))
|
|
871
556
|
* update to handle isCollapseOnMobile more consistently ([3123d99](https://github.com/thebyte9/blaze/commit/3123d9952f3d19391f91252bc1cfc716c787bed1))
|
|
872
557
|
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
558
|
# [0.123.0-alpha.23](https://github.com/thebyte9/blaze/compare/v0.123.0-alpha.22...v0.123.0-alpha.23) (2022-04-04)
|
|
878
559
|
|
|
879
560
|
**Note:** Version bump only for package @blaze-cms/react-page-builder
|