gatsby-theme-q3 4.5.17 → 4.5.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. package/.eslintrc.js +12 -12
  2. package/CHANGELOG.md +1208 -1200
  3. package/LICENSE +21 -21
  4. package/__fixtures__/en/titles.json +2 -2
  5. package/__fixtures__/fr/titles.json +2 -2
  6. package/gatsby-browser.js +38 -38
  7. package/gatsby-config.js +62 -62
  8. package/gatsby-node.js +77 -77
  9. package/gatsby-ssr.js +11 -11
  10. package/index.js +1 -1
  11. package/lib/components/AccountPublicGateway.js +2 -3
  12. package/lib/components/AdminLoader.js +2 -3
  13. package/lib/components/AdminPrivateGateway.js +3 -4
  14. package/lib/components/AdminPublicGateway.js +3 -4
  15. package/lib/components/AdminRouter.js +3 -4
  16. package/lib/components/BlogArchiveTemplate.js +2 -3
  17. package/lib/components/BlogTemplate.js +2 -3
  18. package/lib/components/FormBox.js +2 -3
  19. package/lib/components/FormBoxContent.js +2 -3
  20. package/lib/components/FormBoxNotice.js +2 -3
  21. package/lib/components/IsBrowserReady.js +2 -3
  22. package/lib/components/PageWrapper.js +2 -3
  23. package/lib/components/PublicTemplate.js +2 -3
  24. package/lib/components/Redirect.js +2 -3
  25. package/lib/components/RedirectToIndex.js +2 -3
  26. package/lib/components/RichText.js +2 -3
  27. package/lib/components/SearchEngine.js +4 -7
  28. package/lib/components/ShareButton.js +2 -3
  29. package/lib/components/Wrapper.js +2 -3
  30. package/lib/components/__tests__/useSiteMetaData.test.js +44 -44
  31. package/lib/components/__tests__/withAuthenticate.test.js +2 -2
  32. package/lib/components/__tests__/withSuccessOp.test.js +4 -4
  33. package/lib/components/index.js +2 -3
  34. package/lib/components/useSiteMetaData.js +1 -1
  35. package/lib/components/utils.js +2 -3
  36. package/lib/components/withAuthenticate.js +2 -2
  37. package/lib/components/withPublicTemplate.js +2 -3
  38. package/lib/components/withSuccessOp.js +3 -4
  39. package/lib/pages/404.js +2 -3
  40. package/lib/pages/login.js +2 -3
  41. package/lib/pages/password-change.js +2 -3
  42. package/lib/pages/password-reset.js +2 -3
  43. package/lib/pages/reverify.js +2 -3
  44. package/lib/pages/verify.js +2 -3
  45. package/package.json +5 -5
  46. package/src/components/AccountPublicGateway.jsx +18 -18
  47. package/src/components/AdminLoader.jsx +16 -16
  48. package/src/components/AdminPrivateGateway.jsx +37 -37
  49. package/src/components/AdminPublicGateway.jsx +34 -34
  50. package/src/components/AdminRouter.jsx +44 -44
  51. package/src/components/BlogArchiveTemplate.jsx +55 -55
  52. package/src/components/BlogTemplate.jsx +104 -104
  53. package/src/components/FormBox.jsx +22 -22
  54. package/src/components/FormBoxContent.jsx +26 -26
  55. package/src/components/FormBoxNotice.jsx +21 -21
  56. package/src/components/IsBrowserReady.jsx +13 -13
  57. package/src/components/PageWrapper.jsx +20 -20
  58. package/src/components/PublicTemplate.jsx +198 -198
  59. package/src/components/Redirect.jsx +13 -13
  60. package/src/components/RedirectToIndex.jsx +9 -9
  61. package/src/components/RichText.jsx +196 -196
  62. package/src/components/SearchEngine.jsx +124 -124
  63. package/src/components/ShareButton.jsx +80 -80
  64. package/src/components/Wrapper.jsx +14 -14
  65. package/src/components/__tests__/SearchEngine.test.jsx +58 -58
  66. package/src/components/__tests__/useSiteMetaData.test.js +44 -44
  67. package/src/components/__tests__/withAuthenticate.test.jsx +52 -52
  68. package/src/components/__tests__/withSuccessOp.test.jsx +57 -57
  69. package/src/components/index.js +16 -16
  70. package/src/components/useSiteMetaData.js +35 -35
  71. package/src/components/utils.js +23 -23
  72. package/src/components/withAuthenticate.jsx +20 -20
  73. package/src/components/withPublicTemplate.jsx +11 -11
  74. package/src/components/withSuccessOp.jsx +43 -43
  75. package/src/pages/404.jsx +31 -31
  76. package/src/pages/login.jsx +71 -71
  77. package/src/pages/password-change.jsx +72 -72
  78. package/src/pages/password-reset.jsx +47 -47
  79. package/src/pages/reverify.jsx +72 -72
  80. package/src/pages/verify.jsx +70 -70
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
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
+ ## [4.5.19](https://github.com/3merge/q3-client/compare/v4.5.18...v4.5.19) (2025-07-04)
7
+
8
+ **Note:** Version bump only for package gatsby-theme-q3
9
+
10
+
11
+
12
+
13
+
6
14
  ## [4.5.17](https://github.com/3merge/q/compare/v4.5.16...v4.5.17) (2024-06-26)
7
15
 
8
16
  **Note:** Version bump only for package gatsby-theme-q3
@@ -11,1204 +19,1204 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
11
19
 
12
20
 
13
21
 
14
-
15
- ## [4.5.16](https://github.com/3merge/q/compare/v4.5.15...v4.5.16) (2024-02-24)
16
-
17
-
18
- ### Bug Fixes
19
-
20
- * pin polyfill ([edf4e92](https://github.com/3merge/q/commit/edf4e925779548443fbed3f16b488a801a1b8dbc))
21
-
22
-
23
-
24
-
25
-
26
- ## [4.5.15](https://github.com/3merge/q/compare/v4.5.14...v4.5.15) (2023-03-03)
27
-
28
- **Note:** Version bump only for package gatsby-theme-q3
29
-
30
-
31
-
32
-
33
-
34
- ## [4.5.14](https://github.com/3merge/q/compare/v4.5.13...v4.5.14) (2023-02-22)
35
-
36
- **Note:** Version bump only for package gatsby-theme-q3
37
-
38
-
39
-
40
-
41
-
42
- ## [4.5.13](https://github.com/3merge/q/compare/v4.5.12...v4.5.13) (2023-02-22)
43
-
44
- **Note:** Version bump only for package gatsby-theme-q3
45
-
46
-
47
-
48
-
49
-
50
-
51
- ## [4.5.12](https://github.com/3merge/q/compare/v4.5.11...v4.5.12) (2023-02-21)
52
-
53
- **Note:** Version bump only for package gatsby-theme-q3
54
-
55
-
56
-
57
-
58
-
59
- ## [4.5.11](https://github.com/3merge/q/compare/v4.5.10...v4.5.11) (2023-02-21)
60
-
61
- **Note:** Version bump only for package gatsby-theme-q3
62
-
63
-
64
-
65
-
66
-
67
- ## [4.5.10](https://github.com/3merge/q/compare/v4.5.9...v4.5.10) (2023-02-15)
68
-
69
- **Note:** Version bump only for package gatsby-theme-q3
70
-
71
-
72
-
73
-
74
-
75
- ## [4.5.4](https://github.com/3merge/q/compare/v4.5.3...v4.5.4) (2023-02-06)
76
-
77
- **Note:** Version bump only for package gatsby-theme-q3
78
-
79
-
80
-
81
-
82
-
83
- ## [4.4.9](https://github.com/3merge/q/compare/v4.4.8...v4.4.9) (2023-01-11)
84
-
85
- **Note:** Version bump only for package gatsby-theme-q3
86
-
87
-
88
-
89
-
90
-
91
- ## [4.4.8](https://github.com/3merge/q/compare/v4.4.7...v4.4.8) (2023-01-10)
92
-
93
- **Note:** Version bump only for package gatsby-theme-q3
94
-
95
-
96
-
97
-
98
-
99
- ## [4.4.4](https://github.com/3merge/q/compare/v4.4.3...v4.4.4) (2022-12-16)
100
-
101
- **Note:** Version bump only for package gatsby-theme-q3
102
-
103
-
104
-
105
-
106
-
107
- # [4.4.0](https://github.com/3merge/q/compare/v4.3.2...v4.4.0) (2022-12-15)
108
-
109
- **Note:** Version bump only for package gatsby-theme-q3
110
-
111
-
112
-
113
-
114
-
115
- ## [4.3.2](https://github.com/3merge/q/compare/v4.3.1...v4.3.2) (2022-12-07)
116
-
117
- **Note:** Version bump only for package gatsby-theme-q3
118
-
119
-
120
-
121
-
122
-
123
- ## [4.3.1](https://github.com/3merge/q/compare/v4.3.0...v4.3.1) (2022-12-07)
124
-
125
- **Note:** Version bump only for package gatsby-theme-q3
126
-
127
-
128
-
129
-
130
-
131
- ## [4.2.2](https://github.com/3merge/q/compare/v4.2.1...v4.2.2) (2022-11-30)
132
-
133
- **Note:** Version bump only for package gatsby-theme-q3
134
-
135
-
136
-
137
-
138
-
139
- # [4.2.0](https://github.com/3merge/q/compare/v4.1.0...v4.2.0) (2022-11-29)
140
-
141
- **Note:** Version bump only for package gatsby-theme-q3
142
-
143
-
144
-
145
-
146
-
147
- ## [4.0.20](https://github.com/3merge/q/compare/v4.0.19...v4.0.20) (2022-11-25)
148
-
149
- **Note:** Version bump only for package gatsby-theme-q3
150
-
151
-
152
-
153
-
154
-
155
- ## [4.0.5](https://github.com/3merge/q/compare/v4.0.4...v4.0.5) (2022-11-16)
156
-
157
- **Note:** Version bump only for package gatsby-theme-q3
158
-
159
-
160
-
161
-
162
-
163
- ## [4.0.3](https://github.com/3merge/q/compare/v4.0.2...v4.0.3) (2022-11-16)
164
-
165
- **Note:** Version bump only for package gatsby-theme-q3
166
-
167
-
168
-
169
-
170
-
171
- ## [4.0.1](https://github.com/3merge/q/compare/v4.0.0...v4.0.1) (2022-11-15)
172
-
173
- **Note:** Version bump only for package gatsby-theme-q3
174
-
175
-
176
-
177
-
178
-
179
- # [4.0.0](https://github.com/3merge/q/compare/v3.16.5...v4.0.0) (2022-11-15)
180
-
181
- **Note:** Version bump only for package gatsby-theme-q3
182
-
183
-
184
-
185
-
186
-
187
- ## [3.16.4](https://github.com/3merge/q/compare/v3.16.3...v3.16.4) (2022-11-04)
188
-
189
- **Note:** Version bump only for package gatsby-theme-q3
190
-
191
-
192
-
193
-
194
-
195
- # [3.16.0](https://github.com/3merge/q/compare/v3.15.4...v3.16.0) (2022-11-03)
196
-
197
- **Note:** Version bump only for package gatsby-theme-q3
198
-
199
-
200
-
201
-
202
-
203
- ## [3.15.4](https://github.com/3merge/q/compare/v3.15.3...v3.15.4) (2022-11-01)
204
-
205
- **Note:** Version bump only for package gatsby-theme-q3
206
-
207
-
208
-
209
-
210
-
211
- ## [3.14.3](https://github.com/3merge/q/compare/v3.14.2...v3.14.3) (2022-10-27)
212
-
213
- **Note:** Version bump only for package gatsby-theme-q3
214
-
215
-
216
-
217
-
218
-
219
- ## [3.14.1](https://github.com/3merge/q/compare/v3.14.0...v3.14.1) (2022-10-26)
220
-
221
- **Note:** Version bump only for package gatsby-theme-q3
222
-
223
-
224
-
225
-
226
-
227
- ## [3.13.1](https://github.com/3merge/q/compare/v3.13.0...v3.13.1) (2022-10-25)
228
-
229
- **Note:** Version bump only for package gatsby-theme-q3
230
-
231
-
232
-
233
-
234
-
235
- # [3.13.0](https://github.com/3merge/q/compare/v3.12.0...v3.13.0) (2022-10-24)
236
-
237
- **Note:** Version bump only for package gatsby-theme-q3
238
-
239
-
240
-
241
-
242
-
243
- # [3.11.0](https://github.com/3merge/q/compare/v3.10.11...v3.11.0) (2022-10-13)
244
-
245
-
246
- ### Features
247
-
248
- * login public notice ([#433](https://github.com/3merge/q/issues/433)) ([8cf9a38](https://github.com/3merge/q/commit/8cf9a38f8bfc1cd5ee5b66b529d0b3bd6ff7bbe1))
249
-
250
-
251
-
252
-
253
-
254
- ## [3.10.11](https://github.com/3merge/q/compare/v3.10.10...v3.10.11) (2022-10-11)
255
-
256
- **Note:** Version bump only for package gatsby-theme-q3
257
-
258
-
259
-
260
-
261
-
262
- ## [3.10.8](https://github.com/3merge/q/compare/v3.10.7...v3.10.8) (2022-10-04)
263
-
264
- **Note:** Version bump only for package gatsby-theme-q3
265
-
266
-
267
-
268
-
269
-
270
- ## [3.10.7](https://github.com/3merge/q/compare/v3.10.6...v3.10.7) (2022-10-04)
271
-
272
- **Note:** Version bump only for package gatsby-theme-q3
273
-
274
-
275
-
276
-
277
-
278
- ## [3.10.4](https://github.com/3merge/q/compare/v3.10.3...v3.10.4) (2022-09-29)
279
-
280
- **Note:** Version bump only for package gatsby-theme-q3
281
-
282
-
283
-
284
-
285
-
286
- # [3.10.0](https://github.com/3merge/q/compare/v3.9.1...v3.10.0) (2022-09-27)
287
-
288
- **Note:** Version bump only for package gatsby-theme-q3
289
-
290
-
291
-
292
-
293
-
294
- ## [3.9.1](https://github.com/3merge/q/compare/v3.9.0...v3.9.1) (2022-09-01)
295
-
296
- **Note:** Version bump only for package gatsby-theme-q3
297
-
298
-
299
-
300
-
301
-
302
- # [3.9.0](https://github.com/3merge/q/compare/v3.8.22...v3.9.0) (2022-09-01)
303
-
304
- **Note:** Version bump only for package gatsby-theme-q3
305
-
306
-
307
-
308
-
309
-
310
-
311
- ## [3.8.22](https://github.com/3merge/q/compare/v3.8.21...v3.8.22) (2022-08-30)
312
-
313
- **Note:** Version bump only for package gatsby-theme-q3
314
-
315
-
316
-
317
-
318
-
319
- ## [3.8.16](https://github.com/3merge/q/compare/v3.8.15...v3.8.16) (2022-08-15)
320
-
321
- **Note:** Version bump only for package gatsby-theme-q3
322
-
323
-
324
-
325
-
326
-
327
- ## [3.8.15](https://github.com/3merge/q/compare/v3.8.14...v3.8.15) (2022-08-15)
328
-
329
- **Note:** Version bump only for package gatsby-theme-q3
330
-
331
-
332
-
333
-
334
-
335
- ## [3.8.12](https://github.com/3merge/q/compare/v3.8.11...v3.8.12) (2022-08-02)
336
-
337
- **Note:** Version bump only for package gatsby-theme-q3
338
-
339
-
340
-
341
-
342
-
343
- ## [3.8.9](https://github.com/3merge/q/compare/v3.8.8...v3.8.9) (2022-07-29)
344
-
345
- **Note:** Version bump only for package gatsby-theme-q3
346
-
347
-
348
-
349
-
350
-
351
- ## [3.8.6](https://github.com/3merge/q/compare/v3.8.5...v3.8.6) (2022-07-27)
352
-
353
- **Note:** Version bump only for package gatsby-theme-q3
354
-
355
-
356
-
357
-
358
-
359
- ## [3.8.3](https://github.com/3merge/q/compare/v3.8.2...v3.8.3) (2022-07-26)
360
-
361
- **Note:** Version bump only for package gatsby-theme-q3
362
-
363
-
364
-
365
-
366
-
367
- # [3.8.0](https://github.com/3merge/q/compare/v3.7.3...v3.8.0) (2022-07-26)
368
-
369
- **Note:** Version bump only for package gatsby-theme-q3
370
-
371
-
372
-
373
-
374
-
375
-
376
- ## [3.7.3](https://github.com/3merge/q/compare/v3.7.2...v3.7.3) (2022-07-22)
377
-
378
- **Note:** Version bump only for package gatsby-theme-q3
379
-
380
-
381
-
382
-
383
-
384
- ## [3.7.1](https://github.com/3merge/q/compare/v3.7.0...v3.7.1) (2022-07-21)
385
-
386
- **Note:** Version bump only for package gatsby-theme-q3
387
-
388
-
389
-
390
-
391
-
392
- # [3.7.0](https://github.com/3merge/q/compare/v3.6.11...v3.7.0) (2022-07-21)
393
-
394
- **Note:** Version bump only for package gatsby-theme-q3
395
-
396
-
397
-
398
-
399
-
400
- ## [3.6.10](https://github.com/3merge/q/compare/v3.6.9...v3.6.10) (2022-07-05)
401
-
402
- **Note:** Version bump only for package gatsby-theme-q3
403
-
404
-
405
-
406
-
407
-
408
- ## [3.6.8](https://github.com/3merge/q/compare/v3.6.7...v3.6.8) (2022-06-30)
409
-
410
-
411
- ### Bug Fixes
412
-
413
- * rte overflow buttons ([3efdab9](https://github.com/3merge/q/commit/3efdab93af5e240663868475bf1ed7763b0cd216))
414
-
415
-
416
-
417
-
418
-
419
- ## [3.6.3](https://github.com/3merge/q/compare/v3.6.2...v3.6.3) (2022-06-28)
420
-
421
- **Note:** Version bump only for package gatsby-theme-q3
422
-
423
-
424
-
425
-
426
-
427
- ## [3.6.1](https://github.com/3merge/q/compare/v3.6.0...v3.6.1) (2022-06-28)
428
-
429
- **Note:** Version bump only for package gatsby-theme-q3
430
-
431
-
432
-
433
-
434
-
435
- # [3.6.0](https://github.com/3merge/q/compare/v3.5.3...v3.6.0) (2022-06-27)
436
-
437
- **Note:** Version bump only for package gatsby-theme-q3
438
-
439
-
440
-
441
-
442
-
443
- # [3.5.0](https://github.com/3merge/q/compare/v3.4.17...v3.5.0) (2022-05-10)
444
-
445
- **Note:** Version bump only for package gatsby-theme-q3
446
-
447
-
448
-
449
-
450
-
451
- ## [3.4.16](https://github.com/3merge/q/compare/v3.4.15...v3.4.16) (2022-04-28)
452
-
453
-
454
- ### Bug Fixes
455
-
456
- * small repeater bugs ([#398](https://github.com/3merge/q/issues/398)) ([55bfcb8](https://github.com/3merge/q/commit/55bfcb85bdd51476c49fee5a2d79fc68538f0520))
457
-
458
-
459
-
460
-
461
-
462
- ## [3.4.15](https://github.com/3merge/q/compare/v3.4.14...v3.4.15) (2022-04-12)
463
-
464
-
465
- ### Bug Fixes
466
-
467
- * segments and forced tenancy ([#397](https://github.com/3merge/q/issues/397)) ([82e1802](https://github.com/3merge/q/commit/82e1802fe1cde096b442e294896e0ad2dd9530a7))
468
-
469
-
470
-
471
-
472
-
473
- ## [3.4.11](https://github.com/3merge/q/compare/v3.4.10...v3.4.11) (2022-04-05)
474
-
475
- **Note:** Version bump only for package gatsby-theme-q3
476
-
477
-
478
-
479
-
480
-
481
- ## [3.4.10](https://github.com/3merge/q/compare/v3.4.9...v3.4.10) (2022-04-04)
482
-
483
- **Note:** Version bump only for package gatsby-theme-q3
484
-
485
-
486
-
487
-
488
-
489
- ## [3.4.9](https://github.com/3merge/q/compare/v3.4.8...v3.4.9) (2022-04-01)
490
-
491
- **Note:** Version bump only for package gatsby-theme-q3
492
-
493
-
494
-
495
-
496
-
497
- ## [3.3.11](https://github.com/3merge/q/compare/v3.3.10...v3.3.11) (2022-03-14)
498
-
499
- **Note:** Version bump only for package gatsby-theme-q3
500
-
501
-
502
-
503
-
504
-
505
- ## [3.3.10](https://github.com/3merge/q/compare/v3.3.9...v3.3.10) (2022-03-07)
506
-
507
- **Note:** Version bump only for package gatsby-theme-q3
508
-
509
-
510
-
511
-
512
-
513
-
514
- ## [3.3.8](https://github.com/3merge/q/compare/v3.3.7...v3.3.8) (2022-02-22)
515
-
516
- **Note:** Version bump only for package gatsby-theme-q3
517
-
518
-
519
-
520
-
521
-
522
- ## [3.3.6](https://github.com/3merge/q/compare/v3.3.5...v3.3.6) (2022-02-22)
523
-
524
- **Note:** Version bump only for package gatsby-theme-q3
525
-
526
-
527
-
528
-
529
-
530
-
531
- ## [3.3.5](https://github.com/3merge/q/compare/v3.3.4...v3.3.5) (2022-02-17)
532
-
533
- **Note:** Version bump only for package gatsby-theme-q3
534
-
535
-
536
-
537
-
538
-
539
- ## [3.3.4](https://github.com/3merge/q/compare/v3.3.3...v3.3.4) (2022-02-17)
540
-
541
- **Note:** Version bump only for package gatsby-theme-q3
542
-
543
-
544
-
545
-
546
-
547
- ## [3.3.3](https://github.com/3merge/q/compare/v3.3.2...v3.3.3) (2022-02-17)
548
-
549
- **Note:** Version bump only for package gatsby-theme-q3
550
-
551
-
552
-
553
-
554
-
555
- ## [3.3.2](https://github.com/3merge/q/compare/v3.3.1...v3.3.2) (2022-02-15)
556
-
557
- **Note:** Version bump only for package gatsby-theme-q3
558
-
559
-
560
-
561
-
562
-
563
- ## [3.3.1](https://github.com/3merge/q/compare/v3.3.0...v3.3.1) (2022-02-14)
564
-
565
- **Note:** Version bump only for package gatsby-theme-q3
566
-
567
-
568
-
569
-
570
-
571
- # [3.3.0](https://github.com/3merge/q/compare/v3.2.5...v3.3.0) (2022-02-14)
572
-
573
- **Note:** Version bump only for package gatsby-theme-q3
574
-
575
-
576
-
577
-
578
-
579
- ## [3.2.5](https://github.com/3merge/q/compare/v3.2.4...v3.2.5) (2022-02-11)
580
-
581
-
582
- ### Bug Fixes
583
-
584
- * subdomain detection in production ([c7d91ca](https://github.com/3merge/q/commit/c7d91ca8a694335fc5fc13888a529755d718ce3c))
585
-
586
-
587
-
588
-
589
-
590
- ## [3.2.4](https://github.com/3merge/q/compare/v3.2.3...v3.2.4) (2022-02-10)
591
-
592
-
593
- ### Bug Fixes
594
-
595
- * feature photo and margins ([c8cd20a](https://github.com/3merge/q/commit/c8cd20a4f51a5ef0be67a4fbffa25f007641171e))
596
-
597
-
598
-
599
-
600
-
601
- ## [3.2.3](https://github.com/3merge/q/compare/v3.2.2...v3.2.3) (2022-02-10)
602
-
603
- **Note:** Version bump only for package gatsby-theme-q3
604
-
605
-
606
-
607
-
608
-
609
- ## [3.2.2](https://github.com/3merge/q/compare/v3.2.1...v3.2.2) (2022-02-10)
610
-
611
- **Note:** Version bump only for package gatsby-theme-q3
612
-
613
-
614
-
615
-
616
-
617
- ## [3.2.1](https://github.com/3merge/q/compare/v3.2.0...v3.2.1) (2022-02-09)
618
-
619
-
620
- ### Bug Fixes
621
-
622
- * misc domain issues ([17cb74b](https://github.com/3merge/q/commit/17cb74b927721f11b5fcd8f8a9a1a28a86867048))
623
-
624
-
625
-
626
-
627
-
628
- # [3.2.0](https://github.com/3merge/q/compare/v3.1.5...v3.2.0) (2022-02-09)
629
-
630
-
631
- ### Features
632
-
633
- * text locale editor ([#377](https://github.com/3merge/q/issues/377)) ([e827875](https://github.com/3merge/q/commit/e8278757be7505554376c1d1d78d9b8900fdf35e))
634
-
635
-
636
-
637
-
638
-
639
-
640
- ## [3.1.5](https://github.com/3merge/q/compare/v3.1.4...v3.1.5) (2022-02-01)
641
-
642
- **Note:** Version bump only for package gatsby-theme-q3
643
-
644
-
645
-
646
-
647
-
648
- ## [3.1.4](https://github.com/3merge/q/compare/v3.1.3...v3.1.4) (2022-02-01)
649
-
650
- **Note:** Version bump only for package gatsby-theme-q3
651
-
652
-
653
-
654
-
655
-
656
- # [3.1.0](https://github.com/3merge/q/compare/v3.0.4...v3.1.0) (2022-01-31)
657
-
658
- **Note:** Version bump only for package gatsby-theme-q3
659
-
660
-
661
-
662
-
663
-
664
- ## [3.0.4](https://github.com/3merge/q/compare/v3.0.3...v3.0.4) (2022-01-29)
665
-
666
- **Note:** Version bump only for package gatsby-theme-q3
667
-
668
-
669
-
670
-
671
-
672
- ## [3.0.3](https://github.com/3merge/q/compare/v3.0.2...v3.0.3) (2022-01-29)
673
-
674
-
675
- ### Bug Fixes
676
-
677
- * major release bugs ([#372](https://github.com/3merge/q/issues/372)) ([d3e0681](https://github.com/3merge/q/commit/d3e0681a8d9ce61558b3aeaabe94ce8bc326dfa7))
678
-
679
-
680
-
681
-
682
-
683
- ## [3.0.2](https://github.com/3merge/q/compare/v3.0.1...v3.0.2) (2022-01-28)
684
-
685
- **Note:** Version bump only for package gatsby-theme-q3
686
-
687
-
688
-
689
-
690
-
691
- ## [3.0.1](https://github.com/3merge/q/compare/v3.0.0...v3.0.1) (2022-01-28)
692
-
693
- **Note:** Version bump only for package gatsby-theme-q3
694
-
695
-
696
-
697
-
698
-
699
- # [3.0.0](https://github.com/3merge/q/compare/v2.3.13...v3.0.0) (2022-01-28)
700
-
701
- **Note:** Version bump only for package gatsby-theme-q3
702
-
703
-
704
-
705
-
706
-
707
-
708
- ## [2.3.11](https://github.com/3merge/q/compare/v2.3.10...v2.3.11) (2022-01-18)
709
-
710
- **Note:** Version bump only for package gatsby-theme-q3
711
-
712
-
713
-
714
-
715
-
716
- ## [2.3.10](https://github.com/3merge/q/compare/v2.3.9...v2.3.10) (2022-01-18)
717
-
718
- **Note:** Version bump only for package gatsby-theme-q3
719
-
720
-
721
-
722
-
723
-
724
- ## [2.3.9](https://github.com/3merge/q/compare/v2.3.8...v2.3.9) (2022-01-17)
725
-
726
- **Note:** Version bump only for package gatsby-theme-q3
727
-
728
-
729
-
730
-
731
-
732
- ## [2.3.8](https://github.com/3merge/q/compare/v2.3.7...v2.3.8) (2022-01-10)
733
-
734
- **Note:** Version bump only for package gatsby-theme-q3
735
-
736
-
737
-
738
-
739
-
740
- ## [2.3.7](https://github.com/3merge/q/compare/v2.3.6...v2.3.7) (2021-12-16)
741
-
742
- **Note:** Version bump only for package gatsby-theme-q3
743
-
744
-
745
-
746
-
747
-
748
- ## [2.3.6](https://github.com/3merge/q/compare/v2.3.5...v2.3.6) (2021-12-16)
749
-
750
- **Note:** Version bump only for package gatsby-theme-q3
751
-
752
-
753
-
754
-
755
-
756
- ## [2.3.4](https://github.com/3merge/q/compare/v2.3.3...v2.3.4) (2021-12-10)
757
-
758
-
759
- ### Bug Fixes
760
-
761
- * notistack ([4e40fa1](https://github.com/3merge/q/commit/4e40fa10a8c05ad07978b0f9dfcdb9317f67e712))
762
-
763
-
764
-
765
-
766
-
767
- ## [2.3.2](https://github.com/3merge/q/compare/v2.3.1...v2.3.2) (2021-12-09)
768
-
769
- **Note:** Version bump only for package gatsby-theme-q3
770
-
771
-
772
-
773
-
774
-
775
- ## [2.3.1](https://github.com/3merge/q/compare/v2.3.0...v2.3.1) (2021-12-09)
776
-
777
-
778
- ### Bug Fixes
779
-
780
- * forward all config ([c4c512d](https://github.com/3merge/q/commit/c4c512da530866327940d56dba3976764cf53293))
781
-
782
-
783
-
784
-
785
-
786
- # [2.3.0](https://github.com/3merge/q/compare/v2.2.2...v2.3.0) (2021-12-09)
787
-
788
-
789
- ### Features
790
-
791
- * theme for prevent unstyled load ([#361](https://github.com/3merge/q/issues/361)) ([a1f1535](https://github.com/3merge/q/commit/a1f15358262b40829d3e1312864a1c0d08c778dc))
792
-
793
-
794
-
795
-
796
-
797
- ## [2.2.2](https://github.com/3merge/q/compare/v2.2.1...v2.2.2) (2021-12-09)
798
-
799
- **Note:** Version bump only for package gatsby-theme-q3
800
-
801
-
802
-
803
-
804
-
805
- ## [2.1.1](https://github.com/3merge/q/compare/v2.1.0...v2.1.1) (2021-11-29)
806
-
807
-
808
- ### Bug Fixes
809
-
810
- * webpack util resolve ([60b3713](https://github.com/3merge/q/commit/60b37132309dc0b6167b469ee9849a9585b2466b))
811
-
812
-
813
-
814
-
815
-
816
- # [2.1.0](https://github.com/3merge/q/compare/v1.43.11...v2.1.0) (2021-11-29)
817
-
818
-
819
- ### Features
820
-
821
- * v2 ([#358](https://github.com/3merge/q/issues/358)) ([8e4a15a](https://github.com/3merge/q/commit/8e4a15a99f1f433b4f5770497e8af971d7663c23))
822
-
823
-
824
-
825
-
826
-
827
-
828
- # [2.0.0](https://github.com/3merge/q/compare/v1.43.11...v2.0.0) (2021-11-29)
829
-
830
- **Note:** Version bump only for package gatsby-theme-q3
831
-
832
-
833
-
834
-
835
-
836
- ## [1.43.10](https://github.com/3merge/q/compare/v1.43.9...v1.43.10) (2021-11-26)
837
-
838
- **Note:** Version bump only for package gatsby-theme-q3
839
-
840
-
841
-
842
-
843
-
844
- ## [1.43.6](https://github.com/3merge/q/compare/v1.43.5...v1.43.6) (2021-11-09)
845
-
846
- **Note:** Version bump only for package gatsby-theme-q3
847
-
848
-
849
-
850
-
851
-
852
- # [1.42.0](https://github.com/3merge/q/compare/v1.41.8...v1.42.0) (2021-10-14)
853
-
854
-
855
- ### Features
856
-
857
- * hook for looking up records by ID ([#350](https://github.com/3merge/q/issues/350)) ([3a73f61](https://github.com/3merge/q/commit/3a73f617a5d9747bd6435b68a238d78de1a4c125))
858
-
859
-
860
-
861
-
862
-
863
- ## [1.41.8](https://github.com/3merge/q/compare/v1.41.7...v1.41.8) (2021-10-14)
864
-
865
-
866
- ### Bug Fixes
867
-
868
- * child props ([331bee7](https://github.com/3merge/q/commit/331bee7e62862d0ce91408883c4b5a0c250199d5))
869
-
870
-
871
-
872
-
873
-
874
- ## [1.41.7](https://github.com/3merge/q/compare/v1.41.6...v1.41.7) (2021-10-13)
875
-
876
- **Note:** Version bump only for package gatsby-theme-q3
877
-
878
-
879
-
880
-
881
-
882
- ## [1.41.6](https://github.com/3merge/q/compare/v1.41.5...v1.41.6) (2021-10-13)
883
-
884
- **Note:** Version bump only for package gatsby-theme-q3
885
-
886
-
887
-
888
-
889
-
890
- ## [1.41.4](https://github.com/3merge/q/compare/v1.41.3...v1.41.4) (2021-10-12)
891
-
892
-
893
- ### Bug Fixes
894
-
895
- * invalid hook ([79641d2](https://github.com/3merge/q/commit/79641d263282868ff7d344dcd74eb340313a5e14))
896
-
897
-
898
-
899
-
900
-
901
- ## [1.41.3](https://github.com/3merge/q/compare/v1.41.2...v1.41.3) (2021-10-12)
902
-
903
-
904
- ### Bug Fixes
905
-
906
- * react dep ([4488a6e](https://github.com/3merge/q/commit/4488a6e2e039eabb34bb072219404cee4cc95e88))
907
-
908
-
909
-
910
-
911
-
912
- ## [1.41.2](https://github.com/3merge/q/compare/v1.41.1...v1.41.2) (2021-10-11)
913
-
914
-
915
- ### Bug Fixes
916
-
917
- * ssr ([3748086](https://github.com/3merge/q/commit/3748086da42bd1f1ecebad74608c3a785bab38d7))
918
-
919
-
920
-
921
-
922
-
923
- # [1.40.0](https://github.com/3merge/q/compare/v1.39.3...v1.40.0) (2021-10-07)
924
-
925
-
926
- ### Features
927
-
928
- * remember redirect to login ([#348](https://github.com/3merge/q/issues/348)) ([ce98193](https://github.com/3merge/q/commit/ce9819377be5acbd7c5624b30efa9ea31264aef5))
929
-
930
-
931
-
932
-
933
-
934
- ## [1.36.7](https://github.com/3merge/q/compare/v1.36.6...v1.36.7) (2021-07-15)
935
-
936
- **Note:** Version bump only for package gatsby-theme-q3
937
-
938
-
939
-
940
-
941
-
942
-
943
- # [1.35.0](https://github.com/3merge/q/compare/v1.34.13...v1.35.0) (2021-06-09)
944
-
945
-
946
- ### Features
947
-
948
- * dynamic authorization ([#326](https://github.com/3merge/q/issues/326)) ([4caf375](https://github.com/3merge/q/commit/4caf3750f17090cc22b0f523497eb071e9ed1ced))
949
-
950
-
951
-
952
-
953
-
954
- ## [1.30.11](https://github.com/3merge/q/compare/v1.30.10...v1.30.11) (2021-04-12)
955
-
956
- **Note:** Version bump only for package gatsby-theme-q3
957
-
958
-
959
-
960
-
961
-
962
-
963
- ## [1.27.20](https://github.com/3merge/q/compare/v1.27.19...v1.27.20) (2021-03-02)
964
-
965
- **Note:** Version bump only for package gatsby-theme-q3
966
-
967
-
968
-
969
-
970
-
971
-
972
- ## [1.27.3](https://github.com/3merge/q/compare/v1.27.2...v1.27.3) (2021-02-05)
973
-
974
- **Note:** Version bump only for package gatsby-theme-q3
975
-
976
-
977
-
978
-
979
-
980
- ## [1.27.1](https://github.com/3merge/q/compare/v1.27.0...v1.27.1) (2021-02-01)
981
-
982
- **Note:** Version bump only for package gatsby-theme-q3
983
-
984
-
985
-
986
-
987
-
988
-
989
- ## [1.26.1](https://github.com/3merge/q/compare/v1.26.0...v1.26.1) (2021-01-27)
990
-
991
-
992
- ### Bug Fixes
993
-
994
- * gatsby build process due to pdfkit ([9d1c250](https://github.com/3merge/q/commit/9d1c250136587fbcad53258ea68592939505b140))
995
-
996
-
997
-
998
-
999
-
1000
-
1001
- # [1.25.0](https://github.com/3merge/q/compare/v1.24.47...v1.25.0) (2021-01-15)
1002
-
1003
-
1004
- ### Features
1005
-
1006
- * enable displaying labels in multiSelect field ([#280](https://github.com/3merge/q/issues/280)) ([dfa160a](https://github.com/3merge/q/commit/dfa160ad8f00729bb6c90ec7611e67c3db111dea))
1007
-
1008
-
1009
-
1010
-
1011
-
1012
-
1013
- ## [1.24.29](https://github.com/3merge/q/compare/v1.24.28...v1.24.29) (2020-12-01)
1014
-
1015
- **Note:** Version bump only for package gatsby-theme-q3
1016
-
1017
-
1018
-
1019
-
1020
-
1021
- ## [1.24.26](https://github.com/3merge/q/compare/v1.24.25...v1.24.26) (2020-12-01)
1022
-
1023
- **Note:** Version bump only for package gatsby-theme-q3
1024
-
1025
-
1026
-
1027
-
1028
-
1029
- ## [1.24.8](https://github.com/3merge/q/compare/v1.24.7...v1.24.8) (2020-09-11)
1030
-
1031
- **Note:** Version bump only for package gatsby-theme-q3
1032
-
1033
-
1034
-
1035
-
1036
-
1037
- ## [1.24.2](https://github.com/3merge/q/compare/v1.24.1...v1.24.2) (2020-09-02)
1038
-
1039
- **Note:** Version bump only for package gatsby-theme-q3
1040
-
1041
-
1042
-
1043
-
1044
-
1045
-
1046
- ## [1.21.1](https://github.com/3merge/q/compare/v1.21.0...v1.21.1) (2020-08-14)
1047
-
1048
- **Note:** Version bump only for package gatsby-theme-q3
1049
-
1050
-
1051
-
1052
-
1053
-
1054
-
1055
- ## [1.19.34](https://github.com/3merge/q/compare/v1.19.32...v1.19.34) (2020-07-21)
1056
-
1057
-
1058
- ### Bug Fixes
1059
-
1060
- * repeater exports ([#201](https://github.com/3merge/q/issues/201)) ([6cd2037](https://github.com/3merge/q/commit/6cd20375d29439245c115d037c059e678d2378c6))
1061
-
1062
-
1063
-
1064
-
1065
-
1066
- ## [1.19.33](https://github.com/3merge/q/compare/v1.19.32...v1.19.33) (2020-07-21)
1067
-
1068
-
1069
- ### Bug Fixes
1070
-
1071
- * repeater exports ([#201](https://github.com/3merge/q/issues/201)) ([6cd2037](https://github.com/3merge/q/commit/6cd20375d29439245c115d037c059e678d2378c6))
1072
-
1073
-
1074
-
1075
-
1076
-
1077
-
1078
- ## [1.19.31](https://github.com/3merge/q/compare/v1.16.7...v1.19.31) (2020-07-14)
1079
-
1080
- **Note:** Version bump only for package gatsby-theme-q3
1081
-
1082
-
1083
-
1084
-
1085
-
1086
-
1087
- ## [1.19.10](https://github.com/3merge/q/compare/v1.19.9...v1.19.10) (2020-06-17)
1088
-
1089
-
1090
- ### Bug Fixes
1091
-
1092
- * nested yup validating for repeaters and server responses ([b6303c4](https://github.com/3merge/q/commit/b6303c43da7edb67b50215918ab3e1daaa31ca99))
1093
-
1094
-
1095
-
1096
-
1097
-
1098
- ## [1.19.9](https://github.com/3merge/q/compare/v1.19.8...v1.19.9) (2020-06-17)
1099
-
1100
-
1101
- ### Bug Fixes
1102
-
1103
- * move helpers to prevent issues with gatsby shadowing ([abc4eed](https://github.com/3merge/q/commit/abc4eede30ec50aebb70ea2aaa2b72086237f57b))
1104
-
1105
-
1106
-
1107
-
1108
-
1109
- ## [1.19.8](https://github.com/3merge/q/compare/v1.19.7...v1.19.8) (2020-06-17)
1110
-
1111
-
1112
- ### Bug Fixes
1113
-
1114
- * notify/persistence now integrated with toast provider ([34b64c2](https://github.com/3merge/q/commit/34b64c2ada3d131fc98df955ea758441511be948))
1115
-
1116
-
1117
-
1118
-
1119
-
1120
- ## [1.19.5](https://github.com/3merge/q/compare/v1.19.4...v1.19.5) (2020-06-16)
1121
-
1122
- **Note:** Version bump only for package gatsby-theme-q3
1123
-
1124
-
1125
-
1126
-
1127
-
1128
- ## [1.18.14](https://github.com/3merge/q/compare/v1.18.13...v1.18.14) (2020-05-27)
1129
-
1130
-
1131
- ### Bug Fixes
1132
-
1133
- * localized timezone ([8e9e3f6](https://github.com/3merge/q/commit/8e9e3f6cbff86dd530cf53216461cd09fc463bfe))
1134
-
1135
-
1136
-
1137
-
1138
-
1139
- ## [1.18.12](https://github.com/3merge/q/compare/v1.18.11...v1.18.12) (2020-05-27)
1140
-
1141
- **Note:** Version bump only for package gatsby-theme-q3
1142
-
1143
-
1144
-
1145
-
1146
-
1147
- ## [1.17.11](https://github.com/3merge/q/compare/v1.17.10...v1.17.11) (2020-05-20)
1148
-
1149
-
1150
- ### Bug Fixes
1151
-
1152
- * template layouts ([edff406](https://github.com/3merge/q/commit/edff4062250f3fa3c865d6b61f5832be6fbea83a))
1153
-
1154
-
1155
-
1156
-
1157
-
1158
- ## [1.17.10](https://github.com/3merge/q/compare/v1.17.9...v1.17.10) (2020-05-20)
1159
-
1160
- **Note:** Version bump only for package gatsby-theme-q3
1161
-
1162
-
1163
-
1164
-
1165
-
1166
- ## [1.16.9](https://github.com/3merge/q/compare/v1.16.8...v1.16.9) (2020-05-12)
1167
-
1168
- **Note:** Version bump only for package gatsby-theme-q3
1169
-
1170
-
1171
-
1172
-
1173
-
1174
- ## [1.16.8](https://github.com/3merge/q/compare/v1.16.7...v1.16.8) (2020-05-11)
1175
-
1176
- **Note:** Version bump only for package gatsby-theme-q3
1177
-
1178
-
1179
-
1180
-
1181
-
1182
- ## [1.16.5](https://github.com/3merge/q/compare/v1.16.4...v1.16.5) (2020-05-04)
1183
-
1184
- **Note:** Version bump only for package gatsby-theme-q3
1185
-
1186
-
1187
-
1188
-
1189
-
1190
- ## [1.16.1](https://github.com/3merge/q/compare/v1.16.0...v1.16.1) (2020-05-04)
1191
-
1192
-
1193
- ### Bug Fixes
1194
-
1195
- * **gatsby-theme-q3:** robots.txt and 404 ([021e405](https://github.com/3merge/q/commit/021e405636a709169bbac9224cfc08874026b7a7))
1196
-
1197
-
1198
-
1199
-
1200
-
1201
- # [1.16.0](https://github.com/3merge/q/compare/v1.15.5...v1.16.0) (2020-05-04)
1202
-
1203
-
1204
- ### Features
1205
-
1206
- * **q3-components:** Chart with filterable popover integration ([388f5ea](https://github.com/3merge/q/commit/388f5eaa5cd59a2db2f35cb2479bcc3b3278edff))
1207
-
1208
-
1209
-
1210
-
1211
-
1212
- ## [1.15.5](https://github.com/3merge/q/compare/v1.15.4...v1.15.5) (2020-05-03)
1213
-
22
+
23
+ ## [4.5.16](https://github.com/3merge/q/compare/v4.5.15...v4.5.16) (2024-02-24)
24
+
25
+
26
+ ### Bug Fixes
27
+
28
+ * pin polyfill ([edf4e92](https://github.com/3merge/q/commit/edf4e925779548443fbed3f16b488a801a1b8dbc))
29
+
30
+
31
+
32
+
33
+
34
+ ## [4.5.15](https://github.com/3merge/q/compare/v4.5.14...v4.5.15) (2023-03-03)
35
+
36
+ **Note:** Version bump only for package gatsby-theme-q3
37
+
38
+
39
+
40
+
41
+
42
+ ## [4.5.14](https://github.com/3merge/q/compare/v4.5.13...v4.5.14) (2023-02-22)
43
+
44
+ **Note:** Version bump only for package gatsby-theme-q3
45
+
46
+
47
+
48
+
49
+
50
+ ## [4.5.13](https://github.com/3merge/q/compare/v4.5.12...v4.5.13) (2023-02-22)
51
+
52
+ **Note:** Version bump only for package gatsby-theme-q3
53
+
54
+
55
+
56
+
57
+
58
+
59
+ ## [4.5.12](https://github.com/3merge/q/compare/v4.5.11...v4.5.12) (2023-02-21)
60
+
61
+ **Note:** Version bump only for package gatsby-theme-q3
62
+
63
+
64
+
65
+
66
+
67
+ ## [4.5.11](https://github.com/3merge/q/compare/v4.5.10...v4.5.11) (2023-02-21)
68
+
69
+ **Note:** Version bump only for package gatsby-theme-q3
70
+
71
+
72
+
73
+
74
+
75
+ ## [4.5.10](https://github.com/3merge/q/compare/v4.5.9...v4.5.10) (2023-02-15)
76
+
77
+ **Note:** Version bump only for package gatsby-theme-q3
78
+
79
+
80
+
81
+
82
+
83
+ ## [4.5.4](https://github.com/3merge/q/compare/v4.5.3...v4.5.4) (2023-02-06)
84
+
85
+ **Note:** Version bump only for package gatsby-theme-q3
86
+
87
+
88
+
89
+
90
+
91
+ ## [4.4.9](https://github.com/3merge/q/compare/v4.4.8...v4.4.9) (2023-01-11)
92
+
93
+ **Note:** Version bump only for package gatsby-theme-q3
94
+
95
+
96
+
97
+
98
+
99
+ ## [4.4.8](https://github.com/3merge/q/compare/v4.4.7...v4.4.8) (2023-01-10)
100
+
101
+ **Note:** Version bump only for package gatsby-theme-q3
102
+
103
+
104
+
105
+
106
+
107
+ ## [4.4.4](https://github.com/3merge/q/compare/v4.4.3...v4.4.4) (2022-12-16)
108
+
109
+ **Note:** Version bump only for package gatsby-theme-q3
110
+
111
+
112
+
113
+
114
+
115
+ # [4.4.0](https://github.com/3merge/q/compare/v4.3.2...v4.4.0) (2022-12-15)
116
+
117
+ **Note:** Version bump only for package gatsby-theme-q3
118
+
119
+
120
+
121
+
122
+
123
+ ## [4.3.2](https://github.com/3merge/q/compare/v4.3.1...v4.3.2) (2022-12-07)
124
+
125
+ **Note:** Version bump only for package gatsby-theme-q3
126
+
127
+
128
+
129
+
130
+
131
+ ## [4.3.1](https://github.com/3merge/q/compare/v4.3.0...v4.3.1) (2022-12-07)
132
+
133
+ **Note:** Version bump only for package gatsby-theme-q3
134
+
135
+
136
+
137
+
138
+
139
+ ## [4.2.2](https://github.com/3merge/q/compare/v4.2.1...v4.2.2) (2022-11-30)
140
+
141
+ **Note:** Version bump only for package gatsby-theme-q3
142
+
143
+
144
+
145
+
146
+
147
+ # [4.2.0](https://github.com/3merge/q/compare/v4.1.0...v4.2.0) (2022-11-29)
148
+
149
+ **Note:** Version bump only for package gatsby-theme-q3
150
+
151
+
152
+
153
+
154
+
155
+ ## [4.0.20](https://github.com/3merge/q/compare/v4.0.19...v4.0.20) (2022-11-25)
156
+
157
+ **Note:** Version bump only for package gatsby-theme-q3
158
+
159
+
160
+
161
+
162
+
163
+ ## [4.0.5](https://github.com/3merge/q/compare/v4.0.4...v4.0.5) (2022-11-16)
164
+
165
+ **Note:** Version bump only for package gatsby-theme-q3
166
+
167
+
168
+
169
+
170
+
171
+ ## [4.0.3](https://github.com/3merge/q/compare/v4.0.2...v4.0.3) (2022-11-16)
172
+
173
+ **Note:** Version bump only for package gatsby-theme-q3
174
+
175
+
176
+
177
+
178
+
179
+ ## [4.0.1](https://github.com/3merge/q/compare/v4.0.0...v4.0.1) (2022-11-15)
180
+
181
+ **Note:** Version bump only for package gatsby-theme-q3
182
+
183
+
184
+
185
+
186
+
187
+ # [4.0.0](https://github.com/3merge/q/compare/v3.16.5...v4.0.0) (2022-11-15)
188
+
189
+ **Note:** Version bump only for package gatsby-theme-q3
190
+
191
+
192
+
193
+
194
+
195
+ ## [3.16.4](https://github.com/3merge/q/compare/v3.16.3...v3.16.4) (2022-11-04)
196
+
197
+ **Note:** Version bump only for package gatsby-theme-q3
198
+
199
+
200
+
201
+
202
+
203
+ # [3.16.0](https://github.com/3merge/q/compare/v3.15.4...v3.16.0) (2022-11-03)
204
+
205
+ **Note:** Version bump only for package gatsby-theme-q3
206
+
207
+
208
+
209
+
210
+
211
+ ## [3.15.4](https://github.com/3merge/q/compare/v3.15.3...v3.15.4) (2022-11-01)
212
+
213
+ **Note:** Version bump only for package gatsby-theme-q3
214
+
215
+
216
+
217
+
218
+
219
+ ## [3.14.3](https://github.com/3merge/q/compare/v3.14.2...v3.14.3) (2022-10-27)
220
+
221
+ **Note:** Version bump only for package gatsby-theme-q3
222
+
223
+
224
+
225
+
226
+
227
+ ## [3.14.1](https://github.com/3merge/q/compare/v3.14.0...v3.14.1) (2022-10-26)
228
+
229
+ **Note:** Version bump only for package gatsby-theme-q3
230
+
231
+
232
+
233
+
234
+
235
+ ## [3.13.1](https://github.com/3merge/q/compare/v3.13.0...v3.13.1) (2022-10-25)
236
+
237
+ **Note:** Version bump only for package gatsby-theme-q3
238
+
239
+
240
+
241
+
242
+
243
+ # [3.13.0](https://github.com/3merge/q/compare/v3.12.0...v3.13.0) (2022-10-24)
244
+
245
+ **Note:** Version bump only for package gatsby-theme-q3
246
+
247
+
248
+
249
+
250
+
251
+ # [3.11.0](https://github.com/3merge/q/compare/v3.10.11...v3.11.0) (2022-10-13)
252
+
253
+
254
+ ### Features
255
+
256
+ * login public notice ([#433](https://github.com/3merge/q/issues/433)) ([8cf9a38](https://github.com/3merge/q/commit/8cf9a38f8bfc1cd5ee5b66b529d0b3bd6ff7bbe1))
257
+
258
+
259
+
260
+
261
+
262
+ ## [3.10.11](https://github.com/3merge/q/compare/v3.10.10...v3.10.11) (2022-10-11)
263
+
264
+ **Note:** Version bump only for package gatsby-theme-q3
265
+
266
+
267
+
268
+
269
+
270
+ ## [3.10.8](https://github.com/3merge/q/compare/v3.10.7...v3.10.8) (2022-10-04)
271
+
272
+ **Note:** Version bump only for package gatsby-theme-q3
273
+
274
+
275
+
276
+
277
+
278
+ ## [3.10.7](https://github.com/3merge/q/compare/v3.10.6...v3.10.7) (2022-10-04)
279
+
280
+ **Note:** Version bump only for package gatsby-theme-q3
281
+
282
+
283
+
284
+
285
+
286
+ ## [3.10.4](https://github.com/3merge/q/compare/v3.10.3...v3.10.4) (2022-09-29)
287
+
288
+ **Note:** Version bump only for package gatsby-theme-q3
289
+
290
+
291
+
292
+
293
+
294
+ # [3.10.0](https://github.com/3merge/q/compare/v3.9.1...v3.10.0) (2022-09-27)
295
+
296
+ **Note:** Version bump only for package gatsby-theme-q3
297
+
298
+
299
+
300
+
301
+
302
+ ## [3.9.1](https://github.com/3merge/q/compare/v3.9.0...v3.9.1) (2022-09-01)
303
+
304
+ **Note:** Version bump only for package gatsby-theme-q3
305
+
306
+
307
+
308
+
309
+
310
+ # [3.9.0](https://github.com/3merge/q/compare/v3.8.22...v3.9.0) (2022-09-01)
311
+
312
+ **Note:** Version bump only for package gatsby-theme-q3
313
+
314
+
315
+
316
+
317
+
318
+
319
+ ## [3.8.22](https://github.com/3merge/q/compare/v3.8.21...v3.8.22) (2022-08-30)
320
+
321
+ **Note:** Version bump only for package gatsby-theme-q3
322
+
323
+
324
+
325
+
326
+
327
+ ## [3.8.16](https://github.com/3merge/q/compare/v3.8.15...v3.8.16) (2022-08-15)
328
+
329
+ **Note:** Version bump only for package gatsby-theme-q3
330
+
331
+
332
+
333
+
334
+
335
+ ## [3.8.15](https://github.com/3merge/q/compare/v3.8.14...v3.8.15) (2022-08-15)
336
+
337
+ **Note:** Version bump only for package gatsby-theme-q3
338
+
339
+
340
+
341
+
342
+
343
+ ## [3.8.12](https://github.com/3merge/q/compare/v3.8.11...v3.8.12) (2022-08-02)
344
+
345
+ **Note:** Version bump only for package gatsby-theme-q3
346
+
347
+
348
+
349
+
350
+
351
+ ## [3.8.9](https://github.com/3merge/q/compare/v3.8.8...v3.8.9) (2022-07-29)
352
+
353
+ **Note:** Version bump only for package gatsby-theme-q3
354
+
355
+
356
+
357
+
358
+
359
+ ## [3.8.6](https://github.com/3merge/q/compare/v3.8.5...v3.8.6) (2022-07-27)
360
+
361
+ **Note:** Version bump only for package gatsby-theme-q3
362
+
363
+
364
+
365
+
366
+
367
+ ## [3.8.3](https://github.com/3merge/q/compare/v3.8.2...v3.8.3) (2022-07-26)
368
+
369
+ **Note:** Version bump only for package gatsby-theme-q3
370
+
371
+
372
+
373
+
374
+
375
+ # [3.8.0](https://github.com/3merge/q/compare/v3.7.3...v3.8.0) (2022-07-26)
376
+
377
+ **Note:** Version bump only for package gatsby-theme-q3
378
+
379
+
380
+
381
+
382
+
383
+
384
+ ## [3.7.3](https://github.com/3merge/q/compare/v3.7.2...v3.7.3) (2022-07-22)
385
+
386
+ **Note:** Version bump only for package gatsby-theme-q3
387
+
388
+
389
+
390
+
391
+
392
+ ## [3.7.1](https://github.com/3merge/q/compare/v3.7.0...v3.7.1) (2022-07-21)
393
+
394
+ **Note:** Version bump only for package gatsby-theme-q3
395
+
396
+
397
+
398
+
399
+
400
+ # [3.7.0](https://github.com/3merge/q/compare/v3.6.11...v3.7.0) (2022-07-21)
401
+
402
+ **Note:** Version bump only for package gatsby-theme-q3
403
+
404
+
405
+
406
+
407
+
408
+ ## [3.6.10](https://github.com/3merge/q/compare/v3.6.9...v3.6.10) (2022-07-05)
409
+
410
+ **Note:** Version bump only for package gatsby-theme-q3
411
+
412
+
413
+
414
+
415
+
416
+ ## [3.6.8](https://github.com/3merge/q/compare/v3.6.7...v3.6.8) (2022-06-30)
417
+
418
+
419
+ ### Bug Fixes
420
+
421
+ * rte overflow buttons ([3efdab9](https://github.com/3merge/q/commit/3efdab93af5e240663868475bf1ed7763b0cd216))
422
+
423
+
424
+
425
+
426
+
427
+ ## [3.6.3](https://github.com/3merge/q/compare/v3.6.2...v3.6.3) (2022-06-28)
428
+
429
+ **Note:** Version bump only for package gatsby-theme-q3
430
+
431
+
432
+
433
+
434
+
435
+ ## [3.6.1](https://github.com/3merge/q/compare/v3.6.0...v3.6.1) (2022-06-28)
436
+
437
+ **Note:** Version bump only for package gatsby-theme-q3
438
+
439
+
440
+
441
+
442
+
443
+ # [3.6.0](https://github.com/3merge/q/compare/v3.5.3...v3.6.0) (2022-06-27)
444
+
445
+ **Note:** Version bump only for package gatsby-theme-q3
446
+
447
+
448
+
449
+
450
+
451
+ # [3.5.0](https://github.com/3merge/q/compare/v3.4.17...v3.5.0) (2022-05-10)
452
+
453
+ **Note:** Version bump only for package gatsby-theme-q3
454
+
455
+
456
+
457
+
458
+
459
+ ## [3.4.16](https://github.com/3merge/q/compare/v3.4.15...v3.4.16) (2022-04-28)
460
+
461
+
462
+ ### Bug Fixes
463
+
464
+ * small repeater bugs ([#398](https://github.com/3merge/q/issues/398)) ([55bfcb8](https://github.com/3merge/q/commit/55bfcb85bdd51476c49fee5a2d79fc68538f0520))
465
+
466
+
467
+
468
+
469
+
470
+ ## [3.4.15](https://github.com/3merge/q/compare/v3.4.14...v3.4.15) (2022-04-12)
471
+
472
+
473
+ ### Bug Fixes
474
+
475
+ * segments and forced tenancy ([#397](https://github.com/3merge/q/issues/397)) ([82e1802](https://github.com/3merge/q/commit/82e1802fe1cde096b442e294896e0ad2dd9530a7))
476
+
477
+
478
+
479
+
480
+
481
+ ## [3.4.11](https://github.com/3merge/q/compare/v3.4.10...v3.4.11) (2022-04-05)
482
+
483
+ **Note:** Version bump only for package gatsby-theme-q3
484
+
485
+
486
+
487
+
488
+
489
+ ## [3.4.10](https://github.com/3merge/q/compare/v3.4.9...v3.4.10) (2022-04-04)
490
+
491
+ **Note:** Version bump only for package gatsby-theme-q3
492
+
493
+
494
+
495
+
496
+
497
+ ## [3.4.9](https://github.com/3merge/q/compare/v3.4.8...v3.4.9) (2022-04-01)
498
+
499
+ **Note:** Version bump only for package gatsby-theme-q3
500
+
501
+
502
+
503
+
504
+
505
+ ## [3.3.11](https://github.com/3merge/q/compare/v3.3.10...v3.3.11) (2022-03-14)
506
+
507
+ **Note:** Version bump only for package gatsby-theme-q3
508
+
509
+
510
+
511
+
512
+
513
+ ## [3.3.10](https://github.com/3merge/q/compare/v3.3.9...v3.3.10) (2022-03-07)
514
+
515
+ **Note:** Version bump only for package gatsby-theme-q3
516
+
517
+
518
+
519
+
520
+
521
+
522
+ ## [3.3.8](https://github.com/3merge/q/compare/v3.3.7...v3.3.8) (2022-02-22)
523
+
524
+ **Note:** Version bump only for package gatsby-theme-q3
525
+
526
+
527
+
528
+
529
+
530
+ ## [3.3.6](https://github.com/3merge/q/compare/v3.3.5...v3.3.6) (2022-02-22)
531
+
532
+ **Note:** Version bump only for package gatsby-theme-q3
533
+
534
+
535
+
536
+
537
+
538
+
539
+ ## [3.3.5](https://github.com/3merge/q/compare/v3.3.4...v3.3.5) (2022-02-17)
540
+
541
+ **Note:** Version bump only for package gatsby-theme-q3
542
+
543
+
544
+
545
+
546
+
547
+ ## [3.3.4](https://github.com/3merge/q/compare/v3.3.3...v3.3.4) (2022-02-17)
548
+
549
+ **Note:** Version bump only for package gatsby-theme-q3
550
+
551
+
552
+
553
+
554
+
555
+ ## [3.3.3](https://github.com/3merge/q/compare/v3.3.2...v3.3.3) (2022-02-17)
556
+
557
+ **Note:** Version bump only for package gatsby-theme-q3
558
+
559
+
560
+
561
+
562
+
563
+ ## [3.3.2](https://github.com/3merge/q/compare/v3.3.1...v3.3.2) (2022-02-15)
564
+
565
+ **Note:** Version bump only for package gatsby-theme-q3
566
+
567
+
568
+
569
+
570
+
571
+ ## [3.3.1](https://github.com/3merge/q/compare/v3.3.0...v3.3.1) (2022-02-14)
572
+
573
+ **Note:** Version bump only for package gatsby-theme-q3
574
+
575
+
576
+
577
+
578
+
579
+ # [3.3.0](https://github.com/3merge/q/compare/v3.2.5...v3.3.0) (2022-02-14)
580
+
581
+ **Note:** Version bump only for package gatsby-theme-q3
582
+
583
+
584
+
585
+
586
+
587
+ ## [3.2.5](https://github.com/3merge/q/compare/v3.2.4...v3.2.5) (2022-02-11)
588
+
589
+
590
+ ### Bug Fixes
591
+
592
+ * subdomain detection in production ([c7d91ca](https://github.com/3merge/q/commit/c7d91ca8a694335fc5fc13888a529755d718ce3c))
593
+
594
+
595
+
596
+
597
+
598
+ ## [3.2.4](https://github.com/3merge/q/compare/v3.2.3...v3.2.4) (2022-02-10)
599
+
600
+
601
+ ### Bug Fixes
602
+
603
+ * feature photo and margins ([c8cd20a](https://github.com/3merge/q/commit/c8cd20a4f51a5ef0be67a4fbffa25f007641171e))
604
+
605
+
606
+
607
+
608
+
609
+ ## [3.2.3](https://github.com/3merge/q/compare/v3.2.2...v3.2.3) (2022-02-10)
610
+
611
+ **Note:** Version bump only for package gatsby-theme-q3
612
+
613
+
614
+
615
+
616
+
617
+ ## [3.2.2](https://github.com/3merge/q/compare/v3.2.1...v3.2.2) (2022-02-10)
618
+
619
+ **Note:** Version bump only for package gatsby-theme-q3
620
+
621
+
622
+
623
+
624
+
625
+ ## [3.2.1](https://github.com/3merge/q/compare/v3.2.0...v3.2.1) (2022-02-09)
626
+
627
+
628
+ ### Bug Fixes
629
+
630
+ * misc domain issues ([17cb74b](https://github.com/3merge/q/commit/17cb74b927721f11b5fcd8f8a9a1a28a86867048))
631
+
632
+
633
+
634
+
635
+
636
+ # [3.2.0](https://github.com/3merge/q/compare/v3.1.5...v3.2.0) (2022-02-09)
637
+
638
+
639
+ ### Features
640
+
641
+ * text locale editor ([#377](https://github.com/3merge/q/issues/377)) ([e827875](https://github.com/3merge/q/commit/e8278757be7505554376c1d1d78d9b8900fdf35e))
642
+
643
+
644
+
645
+
646
+
647
+
648
+ ## [3.1.5](https://github.com/3merge/q/compare/v3.1.4...v3.1.5) (2022-02-01)
649
+
650
+ **Note:** Version bump only for package gatsby-theme-q3
651
+
652
+
653
+
654
+
655
+
656
+ ## [3.1.4](https://github.com/3merge/q/compare/v3.1.3...v3.1.4) (2022-02-01)
657
+
658
+ **Note:** Version bump only for package gatsby-theme-q3
659
+
660
+
661
+
662
+
663
+
664
+ # [3.1.0](https://github.com/3merge/q/compare/v3.0.4...v3.1.0) (2022-01-31)
665
+
666
+ **Note:** Version bump only for package gatsby-theme-q3
667
+
668
+
669
+
670
+
671
+
672
+ ## [3.0.4](https://github.com/3merge/q/compare/v3.0.3...v3.0.4) (2022-01-29)
673
+
674
+ **Note:** Version bump only for package gatsby-theme-q3
675
+
676
+
677
+
678
+
679
+
680
+ ## [3.0.3](https://github.com/3merge/q/compare/v3.0.2...v3.0.3) (2022-01-29)
681
+
682
+
683
+ ### Bug Fixes
684
+
685
+ * major release bugs ([#372](https://github.com/3merge/q/issues/372)) ([d3e0681](https://github.com/3merge/q/commit/d3e0681a8d9ce61558b3aeaabe94ce8bc326dfa7))
686
+
687
+
688
+
689
+
690
+
691
+ ## [3.0.2](https://github.com/3merge/q/compare/v3.0.1...v3.0.2) (2022-01-28)
692
+
693
+ **Note:** Version bump only for package gatsby-theme-q3
694
+
695
+
696
+
697
+
698
+
699
+ ## [3.0.1](https://github.com/3merge/q/compare/v3.0.0...v3.0.1) (2022-01-28)
700
+
701
+ **Note:** Version bump only for package gatsby-theme-q3
702
+
703
+
704
+
705
+
706
+
707
+ # [3.0.0](https://github.com/3merge/q/compare/v2.3.13...v3.0.0) (2022-01-28)
708
+
709
+ **Note:** Version bump only for package gatsby-theme-q3
710
+
711
+
712
+
713
+
714
+
715
+
716
+ ## [2.3.11](https://github.com/3merge/q/compare/v2.3.10...v2.3.11) (2022-01-18)
717
+
718
+ **Note:** Version bump only for package gatsby-theme-q3
719
+
720
+
721
+
722
+
723
+
724
+ ## [2.3.10](https://github.com/3merge/q/compare/v2.3.9...v2.3.10) (2022-01-18)
725
+
726
+ **Note:** Version bump only for package gatsby-theme-q3
727
+
728
+
729
+
730
+
731
+
732
+ ## [2.3.9](https://github.com/3merge/q/compare/v2.3.8...v2.3.9) (2022-01-17)
733
+
734
+ **Note:** Version bump only for package gatsby-theme-q3
735
+
736
+
737
+
738
+
739
+
740
+ ## [2.3.8](https://github.com/3merge/q/compare/v2.3.7...v2.3.8) (2022-01-10)
741
+
742
+ **Note:** Version bump only for package gatsby-theme-q3
743
+
744
+
745
+
746
+
747
+
748
+ ## [2.3.7](https://github.com/3merge/q/compare/v2.3.6...v2.3.7) (2021-12-16)
749
+
750
+ **Note:** Version bump only for package gatsby-theme-q3
751
+
752
+
753
+
754
+
755
+
756
+ ## [2.3.6](https://github.com/3merge/q/compare/v2.3.5...v2.3.6) (2021-12-16)
757
+
758
+ **Note:** Version bump only for package gatsby-theme-q3
759
+
760
+
761
+
762
+
763
+
764
+ ## [2.3.4](https://github.com/3merge/q/compare/v2.3.3...v2.3.4) (2021-12-10)
765
+
766
+
767
+ ### Bug Fixes
768
+
769
+ * notistack ([4e40fa1](https://github.com/3merge/q/commit/4e40fa10a8c05ad07978b0f9dfcdb9317f67e712))
770
+
771
+
772
+
773
+
774
+
775
+ ## [2.3.2](https://github.com/3merge/q/compare/v2.3.1...v2.3.2) (2021-12-09)
776
+
777
+ **Note:** Version bump only for package gatsby-theme-q3
778
+
779
+
780
+
781
+
782
+
783
+ ## [2.3.1](https://github.com/3merge/q/compare/v2.3.0...v2.3.1) (2021-12-09)
784
+
785
+
786
+ ### Bug Fixes
787
+
788
+ * forward all config ([c4c512d](https://github.com/3merge/q/commit/c4c512da530866327940d56dba3976764cf53293))
789
+
790
+
791
+
792
+
793
+
794
+ # [2.3.0](https://github.com/3merge/q/compare/v2.2.2...v2.3.0) (2021-12-09)
795
+
796
+
797
+ ### Features
798
+
799
+ * theme for prevent unstyled load ([#361](https://github.com/3merge/q/issues/361)) ([a1f1535](https://github.com/3merge/q/commit/a1f15358262b40829d3e1312864a1c0d08c778dc))
800
+
801
+
802
+
803
+
804
+
805
+ ## [2.2.2](https://github.com/3merge/q/compare/v2.2.1...v2.2.2) (2021-12-09)
806
+
807
+ **Note:** Version bump only for package gatsby-theme-q3
808
+
809
+
810
+
811
+
812
+
813
+ ## [2.1.1](https://github.com/3merge/q/compare/v2.1.0...v2.1.1) (2021-11-29)
814
+
815
+
816
+ ### Bug Fixes
817
+
818
+ * webpack util resolve ([60b3713](https://github.com/3merge/q/commit/60b37132309dc0b6167b469ee9849a9585b2466b))
819
+
820
+
821
+
822
+
823
+
824
+ # [2.1.0](https://github.com/3merge/q/compare/v1.43.11...v2.1.0) (2021-11-29)
825
+
826
+
827
+ ### Features
828
+
829
+ * v2 ([#358](https://github.com/3merge/q/issues/358)) ([8e4a15a](https://github.com/3merge/q/commit/8e4a15a99f1f433b4f5770497e8af971d7663c23))
830
+
831
+
832
+
833
+
834
+
835
+
836
+ # [2.0.0](https://github.com/3merge/q/compare/v1.43.11...v2.0.0) (2021-11-29)
837
+
838
+ **Note:** Version bump only for package gatsby-theme-q3
839
+
840
+
841
+
842
+
843
+
844
+ ## [1.43.10](https://github.com/3merge/q/compare/v1.43.9...v1.43.10) (2021-11-26)
845
+
846
+ **Note:** Version bump only for package gatsby-theme-q3
847
+
848
+
849
+
850
+
851
+
852
+ ## [1.43.6](https://github.com/3merge/q/compare/v1.43.5...v1.43.6) (2021-11-09)
853
+
854
+ **Note:** Version bump only for package gatsby-theme-q3
855
+
856
+
857
+
858
+
859
+
860
+ # [1.42.0](https://github.com/3merge/q/compare/v1.41.8...v1.42.0) (2021-10-14)
861
+
862
+
863
+ ### Features
864
+
865
+ * hook for looking up records by ID ([#350](https://github.com/3merge/q/issues/350)) ([3a73f61](https://github.com/3merge/q/commit/3a73f617a5d9747bd6435b68a238d78de1a4c125))
866
+
867
+
868
+
869
+
870
+
871
+ ## [1.41.8](https://github.com/3merge/q/compare/v1.41.7...v1.41.8) (2021-10-14)
872
+
873
+
874
+ ### Bug Fixes
875
+
876
+ * child props ([331bee7](https://github.com/3merge/q/commit/331bee7e62862d0ce91408883c4b5a0c250199d5))
877
+
878
+
879
+
880
+
881
+
882
+ ## [1.41.7](https://github.com/3merge/q/compare/v1.41.6...v1.41.7) (2021-10-13)
883
+
884
+ **Note:** Version bump only for package gatsby-theme-q3
885
+
886
+
887
+
888
+
889
+
890
+ ## [1.41.6](https://github.com/3merge/q/compare/v1.41.5...v1.41.6) (2021-10-13)
891
+
892
+ **Note:** Version bump only for package gatsby-theme-q3
893
+
894
+
895
+
896
+
897
+
898
+ ## [1.41.4](https://github.com/3merge/q/compare/v1.41.3...v1.41.4) (2021-10-12)
899
+
900
+
901
+ ### Bug Fixes
902
+
903
+ * invalid hook ([79641d2](https://github.com/3merge/q/commit/79641d263282868ff7d344dcd74eb340313a5e14))
904
+
905
+
906
+
907
+
908
+
909
+ ## [1.41.3](https://github.com/3merge/q/compare/v1.41.2...v1.41.3) (2021-10-12)
910
+
911
+
912
+ ### Bug Fixes
913
+
914
+ * react dep ([4488a6e](https://github.com/3merge/q/commit/4488a6e2e039eabb34bb072219404cee4cc95e88))
915
+
916
+
917
+
918
+
919
+
920
+ ## [1.41.2](https://github.com/3merge/q/compare/v1.41.1...v1.41.2) (2021-10-11)
921
+
922
+
923
+ ### Bug Fixes
924
+
925
+ * ssr ([3748086](https://github.com/3merge/q/commit/3748086da42bd1f1ecebad74608c3a785bab38d7))
926
+
927
+
928
+
929
+
930
+
931
+ # [1.40.0](https://github.com/3merge/q/compare/v1.39.3...v1.40.0) (2021-10-07)
932
+
933
+
934
+ ### Features
935
+
936
+ * remember redirect to login ([#348](https://github.com/3merge/q/issues/348)) ([ce98193](https://github.com/3merge/q/commit/ce9819377be5acbd7c5624b30efa9ea31264aef5))
937
+
938
+
939
+
940
+
941
+
942
+ ## [1.36.7](https://github.com/3merge/q/compare/v1.36.6...v1.36.7) (2021-07-15)
943
+
944
+ **Note:** Version bump only for package gatsby-theme-q3
945
+
946
+
947
+
948
+
949
+
950
+
951
+ # [1.35.0](https://github.com/3merge/q/compare/v1.34.13...v1.35.0) (2021-06-09)
952
+
953
+
954
+ ### Features
955
+
956
+ * dynamic authorization ([#326](https://github.com/3merge/q/issues/326)) ([4caf375](https://github.com/3merge/q/commit/4caf3750f17090cc22b0f523497eb071e9ed1ced))
957
+
958
+
959
+
960
+
961
+
962
+ ## [1.30.11](https://github.com/3merge/q/compare/v1.30.10...v1.30.11) (2021-04-12)
963
+
964
+ **Note:** Version bump only for package gatsby-theme-q3
965
+
966
+
967
+
968
+
969
+
970
+
971
+ ## [1.27.20](https://github.com/3merge/q/compare/v1.27.19...v1.27.20) (2021-03-02)
972
+
973
+ **Note:** Version bump only for package gatsby-theme-q3
974
+
975
+
976
+
977
+
978
+
979
+
980
+ ## [1.27.3](https://github.com/3merge/q/compare/v1.27.2...v1.27.3) (2021-02-05)
981
+
982
+ **Note:** Version bump only for package gatsby-theme-q3
983
+
984
+
985
+
986
+
987
+
988
+ ## [1.27.1](https://github.com/3merge/q/compare/v1.27.0...v1.27.1) (2021-02-01)
989
+
990
+ **Note:** Version bump only for package gatsby-theme-q3
991
+
992
+
993
+
994
+
995
+
996
+
997
+ ## [1.26.1](https://github.com/3merge/q/compare/v1.26.0...v1.26.1) (2021-01-27)
998
+
999
+
1000
+ ### Bug Fixes
1001
+
1002
+ * gatsby build process due to pdfkit ([9d1c250](https://github.com/3merge/q/commit/9d1c250136587fbcad53258ea68592939505b140))
1003
+
1004
+
1005
+
1006
+
1007
+
1008
+
1009
+ # [1.25.0](https://github.com/3merge/q/compare/v1.24.47...v1.25.0) (2021-01-15)
1010
+
1011
+
1012
+ ### Features
1013
+
1014
+ * enable displaying labels in multiSelect field ([#280](https://github.com/3merge/q/issues/280)) ([dfa160a](https://github.com/3merge/q/commit/dfa160ad8f00729bb6c90ec7611e67c3db111dea))
1015
+
1016
+
1017
+
1018
+
1019
+
1020
+
1021
+ ## [1.24.29](https://github.com/3merge/q/compare/v1.24.28...v1.24.29) (2020-12-01)
1022
+
1023
+ **Note:** Version bump only for package gatsby-theme-q3
1024
+
1025
+
1026
+
1027
+
1028
+
1029
+ ## [1.24.26](https://github.com/3merge/q/compare/v1.24.25...v1.24.26) (2020-12-01)
1030
+
1031
+ **Note:** Version bump only for package gatsby-theme-q3
1032
+
1033
+
1034
+
1035
+
1036
+
1037
+ ## [1.24.8](https://github.com/3merge/q/compare/v1.24.7...v1.24.8) (2020-09-11)
1038
+
1039
+ **Note:** Version bump only for package gatsby-theme-q3
1040
+
1041
+
1042
+
1043
+
1044
+
1045
+ ## [1.24.2](https://github.com/3merge/q/compare/v1.24.1...v1.24.2) (2020-09-02)
1046
+
1047
+ **Note:** Version bump only for package gatsby-theme-q3
1048
+
1049
+
1050
+
1051
+
1052
+
1053
+
1054
+ ## [1.21.1](https://github.com/3merge/q/compare/v1.21.0...v1.21.1) (2020-08-14)
1055
+
1056
+ **Note:** Version bump only for package gatsby-theme-q3
1057
+
1058
+
1059
+
1060
+
1061
+
1062
+
1063
+ ## [1.19.34](https://github.com/3merge/q/compare/v1.19.32...v1.19.34) (2020-07-21)
1064
+
1065
+
1066
+ ### Bug Fixes
1067
+
1068
+ * repeater exports ([#201](https://github.com/3merge/q/issues/201)) ([6cd2037](https://github.com/3merge/q/commit/6cd20375d29439245c115d037c059e678d2378c6))
1069
+
1070
+
1071
+
1072
+
1073
+
1074
+ ## [1.19.33](https://github.com/3merge/q/compare/v1.19.32...v1.19.33) (2020-07-21)
1075
+
1076
+
1077
+ ### Bug Fixes
1078
+
1079
+ * repeater exports ([#201](https://github.com/3merge/q/issues/201)) ([6cd2037](https://github.com/3merge/q/commit/6cd20375d29439245c115d037c059e678d2378c6))
1080
+
1081
+
1082
+
1083
+
1084
+
1085
+
1086
+ ## [1.19.31](https://github.com/3merge/q/compare/v1.16.7...v1.19.31) (2020-07-14)
1087
+
1088
+ **Note:** Version bump only for package gatsby-theme-q3
1089
+
1090
+
1091
+
1092
+
1093
+
1094
+
1095
+ ## [1.19.10](https://github.com/3merge/q/compare/v1.19.9...v1.19.10) (2020-06-17)
1096
+
1097
+
1098
+ ### Bug Fixes
1099
+
1100
+ * nested yup validating for repeaters and server responses ([b6303c4](https://github.com/3merge/q/commit/b6303c43da7edb67b50215918ab3e1daaa31ca99))
1101
+
1102
+
1103
+
1104
+
1105
+
1106
+ ## [1.19.9](https://github.com/3merge/q/compare/v1.19.8...v1.19.9) (2020-06-17)
1107
+
1108
+
1109
+ ### Bug Fixes
1110
+
1111
+ * move helpers to prevent issues with gatsby shadowing ([abc4eed](https://github.com/3merge/q/commit/abc4eede30ec50aebb70ea2aaa2b72086237f57b))
1112
+
1113
+
1114
+
1115
+
1116
+
1117
+ ## [1.19.8](https://github.com/3merge/q/compare/v1.19.7...v1.19.8) (2020-06-17)
1118
+
1119
+
1120
+ ### Bug Fixes
1121
+
1122
+ * notify/persistence now integrated with toast provider ([34b64c2](https://github.com/3merge/q/commit/34b64c2ada3d131fc98df955ea758441511be948))
1123
+
1124
+
1125
+
1126
+
1127
+
1128
+ ## [1.19.5](https://github.com/3merge/q/compare/v1.19.4...v1.19.5) (2020-06-16)
1129
+
1130
+ **Note:** Version bump only for package gatsby-theme-q3
1131
+
1132
+
1133
+
1134
+
1135
+
1136
+ ## [1.18.14](https://github.com/3merge/q/compare/v1.18.13...v1.18.14) (2020-05-27)
1137
+
1138
+
1139
+ ### Bug Fixes
1140
+
1141
+ * localized timezone ([8e9e3f6](https://github.com/3merge/q/commit/8e9e3f6cbff86dd530cf53216461cd09fc463bfe))
1142
+
1143
+
1144
+
1145
+
1146
+
1147
+ ## [1.18.12](https://github.com/3merge/q/compare/v1.18.11...v1.18.12) (2020-05-27)
1148
+
1149
+ **Note:** Version bump only for package gatsby-theme-q3
1150
+
1151
+
1152
+
1153
+
1154
+
1155
+ ## [1.17.11](https://github.com/3merge/q/compare/v1.17.10...v1.17.11) (2020-05-20)
1156
+
1157
+
1158
+ ### Bug Fixes
1159
+
1160
+ * template layouts ([edff406](https://github.com/3merge/q/commit/edff4062250f3fa3c865d6b61f5832be6fbea83a))
1161
+
1162
+
1163
+
1164
+
1165
+
1166
+ ## [1.17.10](https://github.com/3merge/q/compare/v1.17.9...v1.17.10) (2020-05-20)
1167
+
1168
+ **Note:** Version bump only for package gatsby-theme-q3
1169
+
1170
+
1171
+
1172
+
1173
+
1174
+ ## [1.16.9](https://github.com/3merge/q/compare/v1.16.8...v1.16.9) (2020-05-12)
1175
+
1176
+ **Note:** Version bump only for package gatsby-theme-q3
1177
+
1178
+
1179
+
1180
+
1181
+
1182
+ ## [1.16.8](https://github.com/3merge/q/compare/v1.16.7...v1.16.8) (2020-05-11)
1183
+
1184
+ **Note:** Version bump only for package gatsby-theme-q3
1185
+
1186
+
1187
+
1188
+
1189
+
1190
+ ## [1.16.5](https://github.com/3merge/q/compare/v1.16.4...v1.16.5) (2020-05-04)
1191
+
1192
+ **Note:** Version bump only for package gatsby-theme-q3
1193
+
1194
+
1195
+
1196
+
1197
+
1198
+ ## [1.16.1](https://github.com/3merge/q/compare/v1.16.0...v1.16.1) (2020-05-04)
1199
+
1200
+
1201
+ ### Bug Fixes
1202
+
1203
+ * **gatsby-theme-q3:** robots.txt and 404 ([021e405](https://github.com/3merge/q/commit/021e405636a709169bbac9224cfc08874026b7a7))
1204
+
1205
+
1206
+
1207
+
1208
+
1209
+ # [1.16.0](https://github.com/3merge/q/compare/v1.15.5...v1.16.0) (2020-05-04)
1210
+
1211
+
1212
+ ### Features
1213
+
1214
+ * **q3-components:** Chart with filterable popover integration ([388f5ea](https://github.com/3merge/q/commit/388f5eaa5cd59a2db2f35cb2479bcc3b3278edff))
1215
+
1216
+
1217
+
1218
+
1219
+
1220
+ ## [1.15.5](https://github.com/3merge/q/compare/v1.15.4...v1.15.5) (2020-05-03)
1221
+
1214
1222
  **Note:** Version bump only for package gatsby-theme-q3