@paroicms/playground_demo2 0.56.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/.turbo/turbo-build.log +12 -0
  2. package/CHANGELOG.md +1098 -0
  3. package/README.md +9 -0
  4. package/package.json +41 -0
  5. package/paroicms-site.js +9 -0
  6. package/site-schema.json +288 -0
  7. package/site-schema.l10n.en.json +94 -0
  8. package/site-schema.l10n.fr.json +94 -0
  9. package/theme/assets/css/index.css +1 -0
  10. package/theme/assets/icons/arrow-grey.svg +1 -0
  11. package/theme/assets/js/main.js +3 -0
  12. package/theme/assets/scss/_Breadcrumb.scss +22 -0
  13. package/theme/assets/scss/_ContactForm.scss +34 -0
  14. package/theme/assets/scss/_Gallery.scss +11 -0
  15. package/theme/assets/scss/_HeaderBar.scss +64 -0
  16. package/theme/assets/scss/_HeroBanner.scss +21 -0
  17. package/theme/assets/scss/_Paginate.scss +9 -0
  18. package/theme/assets/scss/_Part.scss +32 -0
  19. package/theme/assets/scss/_ResultItem.scss +3 -0
  20. package/theme/assets/scss/_SiteFooter.scss +11 -0
  21. package/theme/assets/scss/_Text.scss +157 -0
  22. package/theme/assets/scss/_Tile.scss +51 -0
  23. package/theme/assets/scss/_constants.scss +83 -0
  24. package/theme/assets/scss/_global.scss +7 -0
  25. package/theme/assets/scss/_layout.scss +85 -0
  26. package/theme/assets/scss/_reset.scss +136 -0
  27. package/theme/assets/scss/index.scss +14 -0
  28. package/theme/locales/fr.json +10 -0
  29. package/theme/templates/404.liquid +11 -0
  30. package/theme/templates/about-page.liquid +64 -0
  31. package/theme/templates/contact-page.liquid +15 -0
  32. package/theme/templates/exhibition.liquid +33 -0
  33. package/theme/templates/home.liquid +218 -0
  34. package/theme/templates/index.liquid +8 -0
  35. package/theme/templates/layouts/main-layout.liquid +26 -0
  36. package/theme/templates/page.liquid +109 -0
  37. package/theme/templates/pages.liquid +34 -0
  38. package/theme/templates/partials/breadcrumb.liquid +13 -0
  39. package/theme/templates/partials/footer.liquid +6 -0
  40. package/theme/templates/partials/header.liquid +59 -0
  41. package/theme/templates/partials/post.public.liquid +32 -0
  42. package/theme/templates/partials/result-item.public.liquid +31 -0
  43. package/theme/templates/post.liquid +65 -0
  44. package/theme/templates/posts.liquid +34 -0
  45. package/theme/templates/search-page.liquid +49 -0
  46. package/theme/templates/shelf.liquid +33 -0
  47. package/theme/templates/tag.liquid +7 -0
  48. package/theme/templates/video-page.liquid +69 -0
  49. package/theme/theme.json +4 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1098 @@
1
+ # @paroicms/playground_seoul
2
+
3
+ ## 0.56.0
4
+
5
+ ### Minor Changes
6
+
7
+ - fde268b: Site generator; site-schema v7
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [fde268b]
12
+ - @paroicms/content-loading-plugin@0.12.0
13
+ - @paroicms/internal-link-plugin@0.10.0
14
+ - @paroicms/contact-form-plugin@0.19.0
15
+ - @paroicms/quill-editor-plugin@1.28.0
16
+ - @paroicms/public-menu-plugin@0.9.0
17
+ - @paroicms/list-field-plugin@0.15.0
18
+ - @paroicms/video-plugin@0.26.0
19
+
20
+ ## 0.55.0
21
+
22
+ ### Minor Changes
23
+
24
+ - 76364a7: Add "doc.childRoutingIds"; Rename to "routing document"
25
+
26
+ ### Patch Changes
27
+
28
+ - Updated dependencies [76364a7]
29
+ - @paroicms/internal-link-plugin@0.9.0
30
+ - @paroicms/quill-editor-plugin@1.27.0
31
+ - @paroicms/list-field-plugin@0.14.0
32
+ - @paroicms/video-plugin@0.25.0
33
+
34
+ ## 0.54.1
35
+
36
+ ### Patch Changes
37
+
38
+ - e3baf86: Better site schema and migration (fix)
39
+
40
+ ## 0.54.0
41
+
42
+ ### Minor Changes
43
+
44
+ - c7137a5: Site-schema v5
45
+
46
+ ### Patch Changes
47
+
48
+ - Updated dependencies [c7137a5]
49
+ - @paroicms/internal-link-plugin@0.8.0
50
+ - @paroicms/quill-editor-plugin@1.26.0
51
+ - @paroicms/list-field-plugin@0.13.0
52
+ - @paroicms/video-plugin@0.24.0
53
+
54
+ ## 0.53.0
55
+
56
+ ### Minor Changes
57
+
58
+ - b5551db: Mobile layout for BO
59
+
60
+ ## 0.52.1
61
+
62
+ ### Patch Changes
63
+
64
+ - 2d86c22: EcmaScript modules (fix)
65
+
66
+ ## 0.52.0
67
+
68
+ ### Minor Changes
69
+
70
+ - d4b9148: Use only EcmaScript modules
71
+
72
+ ### Patch Changes
73
+
74
+ - Updated dependencies [d4b9148]
75
+ - @paroicms/content-loading-plugin@0.11.0
76
+ - @paroicms/internal-link-plugin@0.7.0
77
+ - @paroicms/contact-form-plugin@0.18.0
78
+ - @paroicms/quill-editor-plugin@1.25.0
79
+ - @paroicms/public-menu-plugin@0.8.0
80
+ - @paroicms/list-field-plugin@0.12.0
81
+ - @paroicms/video-plugin@0.23.0
82
+
83
+ ## 0.51.4
84
+
85
+ ### Patch Changes
86
+
87
+ - Updated dependencies [ef1d091]
88
+ - @paroicms/quill-editor-plugin@1.24.0
89
+
90
+ ## 0.51.3
91
+
92
+ ### Patch Changes
93
+
94
+ - Updated dependencies [33ff76c]
95
+ - @paroicms/content-loading-plugin@0.10.0
96
+ - @paroicms/public-menu-plugin@0.7.0
97
+
98
+ ## 0.51.2
99
+
100
+ ### Patch Changes
101
+
102
+ - 10bb741: Set CSS bundle names
103
+ - Updated dependencies [10bb741]
104
+ - @paroicms/content-loading-plugin@0.9.2
105
+ - @paroicms/internal-link-plugin@0.6.2
106
+ - @paroicms/contact-form-plugin@0.17.2
107
+ - @paroicms/quill-editor-plugin@1.23.2
108
+ - @paroicms/public-menu-plugin@0.6.2
109
+ - @paroicms/list-field-plugin@0.11.2
110
+ - @paroicms/video-plugin@0.22.2
111
+
112
+ ## 0.51.1
113
+
114
+ ### Patch Changes
115
+
116
+ - Updated dependencies [85f6552]
117
+ - @paroicms/content-loading-plugin@0.9.1
118
+ - @paroicms/internal-link-plugin@0.6.1
119
+ - @paroicms/contact-form-plugin@0.17.1
120
+ - @paroicms/quill-editor-plugin@1.23.1
121
+ - @paroicms/public-menu-plugin@0.6.1
122
+ - @paroicms/list-field-plugin@0.11.1
123
+ - @paroicms/video-plugin@0.22.1
124
+
125
+ ## 0.51.0
126
+
127
+ ### Minor Changes
128
+
129
+ - f577ac1: Rename 'appLog' to 'logger'; Upgrade dependencies.
130
+
131
+ ### Patch Changes
132
+
133
+ - Updated dependencies [f577ac1]
134
+ - @paroicms/content-loading-plugin@0.9.0
135
+ - @paroicms/internal-link-plugin@0.6.0
136
+ - @paroicms/contact-form-plugin@0.17.0
137
+ - @paroicms/quill-editor-plugin@1.23.0
138
+ - @paroicms/public-menu-plugin@0.6.0
139
+ - @paroicms/list-field-plugin@0.11.0
140
+ - @paroicms/video-plugin@0.22.0
141
+
142
+ ## 0.50.0
143
+
144
+ ### Minor Changes
145
+
146
+ - d5f5142: Improve main sidebar in back-office
147
+
148
+ ### Patch Changes
149
+
150
+ - Updated dependencies [d5f5142]
151
+ - @paroicms/quill-editor-plugin@1.22.0
152
+
153
+ ## 0.49.3
154
+
155
+ ### Patch Changes
156
+
157
+ - Updated dependencies [1993b0a]
158
+ - @paroicms/content-loading-plugin@0.8.1
159
+
160
+ ## 0.49.2
161
+
162
+ ### Patch Changes
163
+
164
+ - Updated dependencies [b795dd9]
165
+ - @paroicms/quill-editor-plugin@1.21.1
166
+
167
+ ## 0.49.1
168
+
169
+ ### Patch Changes
170
+
171
+ - 916e015: Improve calendar fields
172
+
173
+ ## 0.49.0
174
+
175
+ ### Minor Changes
176
+
177
+ - ab2ef94: Rename "leaf" to "node", and "section" to "nodel"
178
+
179
+ ### Patch Changes
180
+
181
+ - Updated dependencies [ab2ef94]
182
+ - @paroicms/content-loading-plugin@0.8.0
183
+ - @paroicms/internal-link-plugin@0.5.0
184
+ - @paroicms/contact-form-plugin@0.16.0
185
+ - @paroicms/quill-editor-plugin@1.21.0
186
+ - @paroicms/list-field-plugin@0.10.0
187
+ - @paroicms/video-plugin@0.21.0
188
+
189
+ ## 0.48.0
190
+
191
+ ### Minor Changes
192
+
193
+ - 869bfdd: Improve part edition
194
+
195
+ ### Patch Changes
196
+
197
+ - Updated dependencies [869bfdd]
198
+ - @paroicms/content-loading-plugin@0.7.0
199
+ - @paroicms/internal-link-plugin@0.4.0
200
+ - @paroicms/contact-form-plugin@0.15.0
201
+ - @paroicms/quill-editor-plugin@1.20.0
202
+ - @paroicms/public-menu-plugin@0.5.0
203
+ - @paroicms/list-field-plugin@0.9.0
204
+ - @paroicms/video-plugin@0.20.0
205
+
206
+ ## 0.47.3
207
+
208
+ ### Patch Changes
209
+
210
+ - Updated dependencies [576fcd4]
211
+ - @paroicms/quill-editor-plugin@1.19.0
212
+
213
+ ## 0.47.2
214
+
215
+ ### Patch Changes
216
+
217
+ - Updated dependencies [3d3ba53]
218
+ - @paroicms/contact-form-plugin@0.14.0
219
+
220
+ ## 0.47.1
221
+
222
+ ### Patch Changes
223
+
224
+ - d417662: Improve calandar component on date time field
225
+
226
+ ## 0.47.0
227
+
228
+ ### Minor Changes
229
+
230
+ - 5a081ab: Date fields
231
+
232
+ ## 0.46.1
233
+
234
+ ### Patch Changes
235
+
236
+ - Updated dependencies [7c8704a]
237
+ - @paroicms/quill-editor-plugin@1.18.1
238
+
239
+ ## 0.46.0
240
+
241
+ ### Minor Changes
242
+
243
+ - 7a30fbb: Upgrade SASS & Resolve vitejs warning
244
+
245
+ ### Patch Changes
246
+
247
+ - Updated dependencies [7a30fbb]
248
+ - @paroicms/content-loading-plugin@0.6.0
249
+ - @paroicms/internal-link-plugin@0.3.0
250
+ - @paroicms/contact-form-plugin@0.13.0
251
+ - @paroicms/quill-editor-plugin@1.18.0
252
+ - @paroicms/public-menu-plugin@0.4.0
253
+ - @paroicms/list-field-plugin@0.8.0
254
+ - @paroicms/video-plugin@0.19.0
255
+
256
+ ## 0.45.0
257
+
258
+ ### Minor Changes
259
+
260
+ - 2033cd9: Redesign form data using scopes in the BO
261
+
262
+ ### Patch Changes
263
+
264
+ - Updated dependencies [2033cd9]
265
+ - @paroicms/internal-link-plugin@0.2.0
266
+ - @paroicms/quill-editor-plugin@1.17.0
267
+ - @paroicms/list-field-plugin@0.7.0
268
+ - @paroicms/video-plugin@0.18.0
269
+
270
+ ## 0.44.1
271
+
272
+ ### Patch Changes
273
+
274
+ - bcac871: Upgrade typescript
275
+ - Updated dependencies [bcac871]
276
+ - @paroicms/content-loading-plugin@0.5.2
277
+ - @paroicms/internal-link-plugin@0.1.3
278
+ - @paroicms/contact-form-plugin@0.12.2
279
+ - @paroicms/quill-editor-plugin@1.16.2
280
+ - @paroicms/public-menu-plugin@0.3.1
281
+ - @paroicms/list-field-plugin@0.6.2
282
+ - @paroicms/video-plugin@0.17.3
283
+
284
+ ## 0.44.0
285
+
286
+ ### Minor Changes
287
+
288
+ - 19fb455: Liquid: default template; more permissive tags; improve part payload
289
+
290
+ ## 0.43.2
291
+
292
+ ### Patch Changes
293
+
294
+ - cb6e34a: Minor CSS improvements
295
+ - Updated dependencies [cb6e34a]
296
+ - @paroicms/contact-form-plugin@0.12.1
297
+
298
+ ## 0.43.1
299
+
300
+ ### Patch Changes
301
+
302
+ - 365f5e4: Liquid 'headTags' filter should work with detached payloads (fix)
303
+
304
+ ## 0.43.0
305
+
306
+ ### Minor Changes
307
+
308
+ - b1f95d2: Minor improvements
309
+
310
+ ### Patch Changes
311
+
312
+ - Updated dependencies [b1f95d2]
313
+ - @paroicms/contact-form-plugin@0.12.0
314
+ - @paroicms/public-menu-plugin@0.3.0
315
+
316
+ ## 0.42.3
317
+
318
+ ### Patch Changes
319
+
320
+ - 0fcb2e5: Improve performance and upgrade dependencies
321
+ - Updated dependencies [0fcb2e5]
322
+ - @paroicms/content-loading-plugin@0.5.1
323
+ - @paroicms/internal-link-plugin@0.1.2
324
+ - @paroicms/contact-form-plugin@0.11.1
325
+ - @paroicms/quill-editor-plugin@1.16.1
326
+ - @paroicms/public-menu-plugin@0.2.1
327
+ - @paroicms/list-field-plugin@0.6.1
328
+ - @paroicms/video-plugin@0.17.2
329
+
330
+ ## 0.42.2
331
+
332
+ ### Patch Changes
333
+
334
+ - 7a937e6: Add JSON support for varchar field type
335
+
336
+ ## 0.42.1
337
+
338
+ ### Patch Changes
339
+
340
+ - Updated dependencies [d629dfb]
341
+ - @paroicms/internal-link-plugin@0.1.1
342
+
343
+ ## 0.42.0
344
+
345
+ ### Minor Changes
346
+
347
+ - 6a72e05: Internal Link Package
348
+
349
+ ### Patch Changes
350
+
351
+ - Updated dependencies [6a72e05]
352
+ - @paroicms/internal-link-plugin@0.1.0
353
+ - @paroicms/quill-editor-plugin@1.16.0
354
+
355
+ ## 0.41.7
356
+
357
+ ### Patch Changes
358
+
359
+ - 0a52157: Test video plugin on singapour homepage
360
+ - Updated dependencies [0a52157]
361
+ - @paroicms/video-plugin@0.17.1
362
+
363
+ ## 0.41.6
364
+
365
+ ### Patch Changes
366
+
367
+ - Updated dependencies [ac640da]
368
+ - @paroicms/video-plugin@0.17.0
369
+
370
+ ## 0.41.5
371
+
372
+ ### Patch Changes
373
+
374
+ - Updated dependencies [5cc177a]
375
+ - @paroicms/quill-editor-plugin@1.15.0
376
+ - @paroicms/video-plugin@0.16.0
377
+
378
+ ## 0.41.4
379
+
380
+ ### Patch Changes
381
+
382
+ - Updated dependencies [3a0156a]
383
+ - @paroicms/content-loading-plugin@0.5.0
384
+ - @paroicms/contact-form-plugin@0.11.0
385
+ - @paroicms/quill-editor-plugin@1.14.0
386
+ - @paroicms/public-menu-plugin@0.2.0
387
+ - @paroicms/list-field-plugin@0.6.0
388
+ - @paroicms/video-plugin@0.15.0
389
+
390
+ ## 0.41.3
391
+
392
+ ### Patch Changes
393
+
394
+ - Updated dependencies [f4eceab]
395
+ - @paroicms/quill-editor-plugin@1.13.2
396
+ - @paroicms/video-plugin@0.14.1
397
+
398
+ ## 0.41.2
399
+
400
+ ### Patch Changes
401
+
402
+ - Updated dependencies [d68498f]
403
+ - @paroicms/quill-editor-plugin@1.13.1
404
+
405
+ ## 0.41.1
406
+
407
+ ### Patch Changes
408
+
409
+ - Updated dependencies [fa5c5c8]
410
+ - @paroicms/quill-editor-plugin@1.13.0
411
+
412
+ ## 0.41.0
413
+
414
+ ### Minor Changes
415
+
416
+ - 8f65799: Implement the hook system
417
+
418
+ ### Patch Changes
419
+
420
+ - Updated dependencies [8f65799]
421
+ - Updated dependencies [8f65799]
422
+ - @paroicms/quill-editor-plugin@1.12.0
423
+ - @paroicms/content-loading-plugin@0.4.0
424
+ - @paroicms/contact-form-plugin@0.10.0
425
+ - @paroicms/list-field-plugin@0.5.0
426
+ - @paroicms/video-plugin@0.14.0
427
+
428
+ ## 0.40.1
429
+
430
+ ### Patch Changes
431
+
432
+ - Updated dependencies [dcaafb5]
433
+ - @paroicms/list-field-plugin@0.4.2
434
+
435
+ ## 0.40.0
436
+
437
+ ### Minor Changes
438
+
439
+ - 7a741d4: Public menu plugin
440
+
441
+ ### Patch Changes
442
+
443
+ - Updated dependencies [7a741d4]
444
+ - @paroicms/public-menu-plugin@0.1.0
445
+
446
+ ## 0.39.1
447
+
448
+ ### Patch Changes
449
+
450
+ - Updated dependencies [a786ce5]
451
+ - @paroicms/list-field-plugin@0.4.1
452
+
453
+ ## 0.39.0
454
+
455
+ ### Minor Changes
456
+
457
+ - 698390f: Rename 'front' to 'bo' in package names
458
+
459
+ ### Patch Changes
460
+
461
+ - Updated dependencies [698390f]
462
+ - @paroicms/quill-editor-plugin@1.11.0
463
+ - @paroicms/list-field-plugin@0.4.0
464
+ - @paroicms/video-plugin@0.13.0
465
+
466
+ ## 0.38.0
467
+
468
+ ### Minor Changes
469
+
470
+ - c49a636: Replace "obfuscateAsLink" filter by "{{ something | obfuscate: "asLink" }}"
471
+ - c49a636: Improve plugin interfaces (refactoring). Add the liquid filter "pluginAssetUrl".
472
+
473
+ ### Patch Changes
474
+
475
+ - Updated dependencies [c49a636]
476
+ - @paroicms/content-loading-plugin@0.3.0
477
+ - @paroicms/contact-form-plugin@0.9.0
478
+ - @paroicms/quill-editor-plugin@1.10.0
479
+ - @paroicms/list-field-plugin@0.3.0
480
+ - @paroicms/video-plugin@0.12.0
481
+
482
+ ## 0.37.0
483
+
484
+ ### Minor Changes
485
+
486
+ - c788493: Refactoring: export default un plugin main modules
487
+
488
+ ### Patch Changes
489
+
490
+ - Updated dependencies [c788493]
491
+ - @paroicms/content-loading-plugin@0.2.0
492
+ - @paroicms/contact-form-plugin@0.8.0
493
+ - @paroicms/quill-editor-plugin@1.9.0
494
+ - @paroicms/list-field-plugin@0.2.0
495
+ - @paroicms/video-plugin@0.11.0
496
+
497
+ ## 0.36.0
498
+
499
+ ### Minor Changes
500
+
501
+ - 0b10b3b: Create the 'list-field-plugin'; improve BO plugin interface
502
+
503
+ ### Patch Changes
504
+
505
+ - Updated dependencies [0b10b3b]
506
+ - @paroicms/quill-editor-plugin@1.8.0
507
+ - @paroicms/list-field-plugin@0.1.0
508
+ - @paroicms/video-plugin@0.10.0
509
+
510
+ ## 0.35.4
511
+
512
+ ### Patch Changes
513
+
514
+ - 589b3cb: Info filter (fix)
515
+
516
+ ## 0.35.3
517
+
518
+ ### Patch Changes
519
+
520
+ - 3993759: Upgrade dependencies and remove eslint
521
+ - Updated dependencies [3993759]
522
+ - @paroicms/content-loading-plugin@0.1.2
523
+ - @paroicms/contact-form-plugin@0.7.1
524
+ - @paroicms/quill-editor-plugin@1.7.2
525
+ - @paroicms/video-plugin@0.9.1
526
+
527
+ ## 0.35.2
528
+
529
+ ### Patch Changes
530
+
531
+ - e264ef0: Better plugin configuration system
532
+ - e264ef0: Fix dependencies
533
+ - Updated dependencies [e264ef0]
534
+ - Updated dependencies [e264ef0]
535
+ - @paroicms/quill-editor-plugin@1.7.1
536
+
537
+ ## 0.35.1
538
+
539
+ ### Patch Changes
540
+
541
+ - Updated dependencies [a250c1d]
542
+ - @paroicms/quill-editor-plugin@1.7.0
543
+
544
+ ## 0.35.0
545
+
546
+ ### Minor Changes
547
+
548
+ - 1974017: Public content loading plugin
549
+
550
+ ### Patch Changes
551
+
552
+ - Updated dependencies [1974017]
553
+ - @paroicms/contact-form-plugin@0.7.0
554
+
555
+ ## 0.34.3
556
+
557
+ ### Patch Changes
558
+
559
+ - Updated dependencies [720d322]
560
+ - Updated dependencies [720d322]
561
+ - @paroicms/quill-editor-plugin@1.6.0
562
+ - @paroicms/video-plugin@0.9.0
563
+
564
+ ## 0.34.2
565
+
566
+ ### Patch Changes
567
+
568
+ - b6f3044: Use '.type' in liquid templates (fix)
569
+
570
+ ## 0.34.1
571
+
572
+ ### Patch Changes
573
+
574
+ - Updated dependencies [56d56c9]
575
+ - @paroicms/video-plugin@0.8.1
576
+
577
+ ## 0.34.0
578
+
579
+ ### Minor Changes
580
+
581
+ - ff9e4fe: Add site-schema in plugins
582
+
583
+ ### Patch Changes
584
+
585
+ - Updated dependencies [ff9e4fe]
586
+ - @paroicms/contact-form-plugin@0.6.0
587
+ - @paroicms/quill-editor-plugin@1.5.0
588
+ - @paroicms/video-plugin@0.8.0
589
+
590
+ ## 0.33.0
591
+
592
+ ### Minor Changes
593
+
594
+ - 62f283a: Site schema v3
595
+
596
+ ### Patch Changes
597
+
598
+ - Updated dependencies [62f283a]
599
+ - @paroicms/contact-form-plugin@0.5.0
600
+ - @paroicms/quill-editor-plugin@1.4.0
601
+ - @paroicms/video-plugin@0.7.0
602
+
603
+ ## 0.32.0
604
+
605
+ ### Minor Changes
606
+
607
+ - c2d90cc: Improve plugin interfaces (refactoring)
608
+
609
+ ### Patch Changes
610
+
611
+ - c2d90cc: Rename plugin directories (refactoring)
612
+ - Updated dependencies [c2d90cc]
613
+ - Updated dependencies [c2d90cc]
614
+ - @paroicms/contact-form-plugin@0.4.0
615
+ - @paroicms/quill-editor-plugin@1.3.0
616
+ - @paroicms/video-plugin@0.6.0
617
+
618
+ ## 0.31.1
619
+
620
+ ### Patch Changes
621
+
622
+ - 0ff09d4: CLI: generate the medias database too (fix)
623
+ - Updated dependencies [0ff09d4]
624
+ - @paroicms/contact-form-plugin@0.3.1
625
+ - @paroicms/quill-editor-plugin@1.2.1
626
+ - @paroicms/video-plugin@0.5.1
627
+
628
+ ## 0.31.0
629
+
630
+ ### Minor Changes
631
+
632
+ - 6277858: Reorganize paroicms packages (refactoring)
633
+
634
+ ### Patch Changes
635
+
636
+ - Updated dependencies [6277858]
637
+ - @paroicms/contact-form-plugin@0.3.0
638
+ - @paroicms/quill-editor-plugin@1.2.0
639
+ - @paroicms/video-plugin@0.5.0
640
+
641
+ ## 0.30.1
642
+
643
+ ### Patch Changes
644
+
645
+ - 5323323: Scheduled parts & Ordering untranslated part
646
+
647
+ ## 0.30.0
648
+
649
+ ### Minor Changes
650
+
651
+ - 5cf0b20: Part publish date
652
+
653
+ ## 0.29.3
654
+
655
+ ### Patch Changes
656
+
657
+ - Updated dependencies [82996d3]
658
+ - @paroicms/plugin-contact-form@0.2.3
659
+
660
+ ## 0.29.2
661
+
662
+ ### Patch Changes
663
+
664
+ - Updated dependencies [02578b7]
665
+ - @paroicms/plugin-contact-form@0.2.2
666
+
667
+ ## 0.29.1
668
+
669
+ ### Patch Changes
670
+
671
+ - Updated dependencies [5ec5f31]
672
+ - @paroicms/plugin-contact-form@0.2.1
673
+
674
+ ## 0.29.0
675
+
676
+ ### Minor Changes
677
+
678
+ - 0a45eb9: Contact-form plugin
679
+
680
+ ### Patch Changes
681
+
682
+ - Updated dependencies [0a45eb9]
683
+ - @paroicms/plugin-contact-form@0.2.0
684
+ - @paroicms/plugin-quill-editor@1.1.1
685
+
686
+ ## 0.28.3
687
+
688
+ ### Patch Changes
689
+
690
+ - Updated dependencies [28b813f]
691
+ - @paroicms/plugin-quill-editor@1.1.0
692
+
693
+ ## 0.28.2
694
+
695
+ ### Patch Changes
696
+
697
+ - Updated dependencies [22b0c2b]
698
+ - @paroicms/plugin-quill-editor@1.0.2
699
+
700
+ ## 0.28.1
701
+
702
+ ### Patch Changes
703
+
704
+ - f8a36d5: build: changeset config for peer dependencies
705
+ - f8a36d5: Right translations labels
706
+ - Updated dependencies [f8a36d5]
707
+ - @paroicms/plugin-quill-editor@1.0.1
708
+
709
+ ## 0.28.0
710
+
711
+ ### Minor Changes
712
+
713
+ - df2131c: Recursive part in bo
714
+
715
+ ### Patch Changes
716
+
717
+ - @paroicms/plugin-quill-editor@1.0.0
718
+
719
+ ## 0.27.3
720
+
721
+ ### Patch Changes
722
+
723
+ - Updated dependencies [9ce0196]
724
+ - @paroicms/plugin-quill-editor@0.7.2
725
+
726
+ ## 0.27.2
727
+
728
+ ### Patch Changes
729
+
730
+ - Updated dependencies [615fe69]
731
+ - @paroicms/plugin-quill-editor@0.7.1
732
+
733
+ ## 0.27.1
734
+
735
+ ### Patch Changes
736
+
737
+ - Updated dependencies [4d97bc9]
738
+ - @paroicms/plugin-quill-editor@0.7.0
739
+
740
+ ## 0.27.0
741
+
742
+ ### Minor Changes
743
+
744
+ - 80f104b: replace featured image in parts by simple field
745
+
746
+ ## 0.26.3
747
+
748
+ ### Patch Changes
749
+
750
+ - Updated dependencies [ede8d84]
751
+ - @paroicms/plugin-quill-editor@0.6.1
752
+
753
+ ## 0.26.2
754
+
755
+ ### Patch Changes
756
+
757
+ - Updated dependencies [062e144]
758
+ - @paroicms/plugin-quill-editor@0.6.0
759
+
760
+ ## 0.26.1
761
+
762
+ ### Patch Changes
763
+
764
+ - 6d60e1f: Load parts recursively in payloads for liquid templates (fix)
765
+ - Updated dependencies [6d60e1f]
766
+ - @paroicms/plugin-quill-editor@0.5.2
767
+
768
+ ## 0.26.0
769
+
770
+ ### Minor Changes
771
+
772
+ - d2f4f27: Expose parts recursively for liquid templates
773
+
774
+ ## 0.25.0
775
+
776
+ ### Minor Changes
777
+
778
+ - 7b9470e: Replace featured and default image uid by 'featuredImage' and 'defaultImage'
779
+
780
+ ## 0.24.1
781
+
782
+ ### Patch Changes
783
+
784
+ - 1b017a8: New theme for Seoul
785
+
786
+ ## 0.24.0
787
+
788
+ ### Minor Changes
789
+
790
+ - ae9a4a8: Fields with visibility
791
+
792
+ ## 0.23.4
793
+
794
+ ### Patch Changes
795
+
796
+ - d57f342: Improve demo websites
797
+
798
+ ## 0.23.3
799
+
800
+ ### Patch Changes
801
+
802
+ - 57cf134: Redesign parts (fix)
803
+
804
+ ## 0.23.2
805
+
806
+ ### Patch Changes
807
+
808
+ - 5188061: Renaming in liquid template
809
+
810
+ ## 0.23.1
811
+
812
+ ### Patch Changes
813
+
814
+ - ed6d059: Renaming in liquid templates and CLI (fix)
815
+
816
+ ## 0.23.0
817
+
818
+ ### Minor Changes
819
+
820
+ - 1a2648c: Redesign parts in db, simplify site schemas (refactoring)
821
+
822
+ ## 0.22.1
823
+
824
+ ### Patch Changes
825
+
826
+ - 86bcc6d: Bump version (fix)
827
+ - Updated dependencies [86bcc6d]
828
+ - @paroicms/plugin-quill-editor@0.5.1
829
+ - @paroicms/plugin-video@0.4.1
830
+
831
+ ## 0.22.0
832
+
833
+ ### Minor Changes
834
+
835
+ - 2e75952: Liquid filter "headTags"
836
+
837
+ ## 0.21.0
838
+
839
+ ### Minor Changes
840
+
841
+ - 2ea9245: images with viewer/zoom in quill & liquid filter
842
+
843
+ ### Patch Changes
844
+
845
+ - Updated dependencies [2ea9245]
846
+ - @paroicms/plugin-quill-editor@0.5.0
847
+
848
+ ## 0.20.0
849
+
850
+ ### Minor Changes
851
+
852
+ - d0cee8b: Several part types in a part-list
853
+
854
+ ## 0.19.1
855
+
856
+ ### Patch Changes
857
+
858
+ - 407dc04: Improve CSS feed (fix)
859
+
860
+ ## 0.19.0
861
+
862
+ ### Minor Changes
863
+
864
+ - 63a21aa: Language parameter in cli
865
+
866
+ ## 0.18.1
867
+
868
+ ### Patch Changes
869
+
870
+ - Updated dependencies [4199d27]
871
+ - @paroicms/plugin-quill-editor@0.4.0
872
+
873
+ ## 0.18.0
874
+
875
+ ### Minor Changes
876
+
877
+ - c5e85df: replace bo-quill-with-gallery by quill plugin
878
+
879
+ ## 0.17.1
880
+
881
+ ### Patch Changes
882
+
883
+ - 2c39354: Allow several document types with the same parent in public url (fix)
884
+ - 2c39354: Use localized labels (fix)
885
+
886
+ ## 0.17.0
887
+
888
+ ### Minor Changes
889
+
890
+ - 271672c: classic document types with same parent
891
+
892
+ ## 0.16.1
893
+
894
+ ### Patch Changes
895
+
896
+ - c895a92: Resolve minor fix
897
+ - Updated dependencies [c895a92]
898
+ - @paroicms/plugin-quill-editor@0.3.1
899
+
900
+ ## 0.16.0
901
+
902
+ ### Minor Changes
903
+
904
+ - a4c3481: Renaming (refactoring)
905
+
906
+ ### Patch Changes
907
+
908
+ - Updated dependencies [a4c3481]
909
+ - @paroicms/plugin-quill-editor@0.3.0
910
+ - @paroicms/plugin-video@0.4.0
911
+
912
+ ## 0.15.0
913
+
914
+ ### Minor Changes
915
+
916
+ - ee9e32a: Use the right pixel ratio for images in quill
917
+
918
+ ## 0.14.1
919
+
920
+ ### Patch Changes
921
+
922
+ - 9f14435: Import Quill plugin (fix)
923
+
924
+ ## 0.14.0
925
+
926
+ ### Minor Changes
927
+
928
+ - 9608c24: Rename real in noPixelRatio and fix favicon size
929
+
930
+ ## 0.13.0
931
+
932
+ ### Minor Changes
933
+
934
+ - 1f2f39f: plugin and gallery integration, Quill
935
+
936
+ ## 0.12.4
937
+
938
+ ### Patch Changes
939
+
940
+ - 9d2e288: Invalidate cache for scheduled documents
941
+
942
+ ## 0.12.3
943
+
944
+ ### Patch Changes
945
+
946
+ - Updated dependencies [2ed31b7]
947
+ - @paroicms/plugin-video@0.3.1
948
+
949
+ ## 0.12.2
950
+
951
+ ### Patch Changes
952
+
953
+ - e667364: Move the playground websites in the source code (refactoring)
954
+
955
+ ## 0.12.1
956
+
957
+ ### Patch Changes
958
+
959
+ - 6e468e1: Improve CSS
960
+
961
+ ## 0.12.0
962
+
963
+ ### Minor Changes
964
+
965
+ - bb8327f: Pagespeed insights defer & Offscreen images
966
+
967
+ ## 0.11.0
968
+
969
+ ### Minor Changes
970
+
971
+ - f40ed10: Better use of the navigator's cache for medias; Improve the documentation on configuration.
972
+
973
+ ### Patch Changes
974
+
975
+ - Updated dependencies [f40ed10]
976
+ - @paroicms/plugin-video@0.3.0
977
+
978
+ ## 0.10.1
979
+
980
+ ### Patch Changes
981
+
982
+ - 858ffc9: upgrade dependencies
983
+ - Updated dependencies [858ffc9]
984
+ - @paroicms/plugin-video@0.2.1
985
+
986
+ ## 0.10.0
987
+
988
+ ### Minor Changes
989
+
990
+ - 105bc84: add a breadcrumb in the Singapore's theme
991
+
992
+ ## 0.9.0
993
+
994
+ ### Minor Changes
995
+
996
+ - f9d01d1: classic documents that are children of a classic document
997
+
998
+ ## 0.8.0
999
+
1000
+ ### Minor Changes
1001
+
1002
+ - 1fc73b1: move test-dialog
1003
+
1004
+ ## 0.7.0
1005
+
1006
+ ### Minor Changes
1007
+
1008
+ - 8fd549b: bo plugin, api for dialogs
1009
+
1010
+ ## 0.6.1
1011
+
1012
+ ### Patch Changes
1013
+
1014
+ - cb45b44: Improve themes for singapore and seoul
1015
+
1016
+ ## 0.6.0
1017
+
1018
+ ### Minor Changes
1019
+
1020
+ - d396591: Improve playground sites themes: Singapour, Seoul
1021
+
1022
+ ## 0.5.1
1023
+
1024
+ ### Patch Changes
1025
+
1026
+ - 0048ae0: load css file using js
1027
+
1028
+ ## 0.5.0
1029
+
1030
+ ### Minor Changes
1031
+
1032
+ - 7d9dfe6: Plugin as a package
1033
+
1034
+ ### Patch Changes
1035
+
1036
+ - Updated dependencies [7d9dfe6]
1037
+ - @paroicms/plugin-video@0.2.0
1038
+
1039
+ ## 0.4.0
1040
+
1041
+ ### Minor Changes
1042
+
1043
+ - c602877: plugins
1044
+
1045
+ ## 0.3.1
1046
+
1047
+ ### Patch Changes
1048
+
1049
+ - 45ec28e: Release version 1.0.0
1050
+
1051
+ ## 0.3.0
1052
+
1053
+ ### Minor Changes
1054
+
1055
+ - ef69d96: Improve boilerplate for new websites
1056
+
1057
+ ## 0.2.0
1058
+
1059
+ ### Minor Changes
1060
+
1061
+ - 8e2a853: Simpler configuration file
1062
+ Set schemaEngineVersion to 1.0.0
1063
+
1064
+ ## 0.1.2
1065
+
1066
+ ### Patch Changes
1067
+
1068
+ - eb55b10: Improve the documentation
1069
+
1070
+ ## 0.1.1
1071
+
1072
+ ### Patch Changes
1073
+
1074
+ - Fix nestjs imports that have been broken by the linter
1075
+
1076
+ ## 0.14.1
1077
+
1078
+ ### Patch Changes
1079
+
1080
+ - Fix the BO and improve build commands
1081
+
1082
+ ## 0.14.0
1083
+
1084
+ ### Minor Changes
1085
+
1086
+ - Opensource metadata
1087
+
1088
+ ## 0.13.0
1089
+
1090
+ ### Minor Changes
1091
+
1092
+ - Close idling site-contexts
1093
+
1094
+ ## 0.12.0
1095
+
1096
+ ### Minor Changes
1097
+
1098
+ - First open-source version