@paroicms/playground_demo2 0.77.2 → 0.78.1

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @paroicms/playground_demo2@0.77.2 build
2
+ > @paroicms/playground_demo2@0.78.1 build
3
3
  > postcss theme/assets/css/index.css -o theme/assets/bundle.css
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # @paroicms/playground_seoul
2
2
 
3
+ ## 0.78.1
4
+
5
+ ### Patch Changes
6
+
7
+ - @paroicms/script-lib@0.3.19
8
+ - @paroicms/contact-form-plugin@0.33.19
9
+ - @paroicms/content-loading-plugin@0.27.22
10
+ - @paroicms/internal-link-plugin@0.23.17
11
+ - @paroicms/list-field-plugin@0.28.17
12
+ - @paroicms/mcp-plugin@0.3.2
13
+ - @paroicms/platform-video-plugin@0.37.18
14
+ - @paroicms/public-menu-plugin@0.19.22
15
+ - @paroicms/quill-editor-plugin@1.47.8
16
+ - @paroicms/tiptap-editor-plugin@1.2.9
17
+ - @paroicms/zoom-plugin@0.2.17
18
+
19
+ ## 0.78.0
20
+
21
+ ### Minor Changes
22
+
23
+ - 0861c10: Added `:relativeId` and `:slug` route formats
24
+
25
+ ### Patch Changes
26
+
27
+ - @paroicms/script-lib@0.3.18
28
+ - @paroicms/contact-form-plugin@0.33.18
29
+ - @paroicms/content-loading-plugin@0.27.21
30
+ - @paroicms/internal-link-plugin@0.23.16
31
+ - @paroicms/list-field-plugin@0.28.16
32
+ - @paroicms/mcp-plugin@0.3.1
33
+ - @paroicms/platform-video-plugin@0.37.17
34
+ - @paroicms/public-menu-plugin@0.19.21
35
+ - @paroicms/quill-editor-plugin@1.47.7
36
+ - @paroicms/tiptap-editor-plugin@1.2.8
37
+ - @paroicms/zoom-plugin@0.2.16
38
+
3
39
  ## 0.77.2
4
40
 
5
41
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paroicms/playground_demo2",
3
- "version": "0.77.2",
3
+ "version": "0.78.1",
4
4
  "description": "Demonstration website for ParoiCMS",
5
5
  "author": "Paroi Team",
6
6
  "license": "MIT",
@@ -22,17 +22,17 @@
22
22
  "_pino-pretty": "pino-pretty -U false -x 'stats:25' -X 'stats:grey' -t 'yyyy-mm-dd HH:MM:ss.l' -i 'hostname,pid,fqdn'"
23
23
  },
24
24
  "dependencies": {
25
- "@paroicms/contact-form-plugin": "0.33.17",
26
- "@paroicms/content-loading-plugin": "0.27.20",
27
- "@paroicms/internal-link-plugin": "0.23.15",
28
- "@paroicms/list-field-plugin": "0.28.15",
29
- "@paroicms/mcp-plugin": "0.3.0",
30
- "@paroicms/public-menu-plugin": "0.19.20",
31
- "@paroicms/tiptap-editor-plugin": "1.2.7",
32
- "@paroicms/quill-editor-plugin": "1.47.6",
33
- "@paroicms/script-lib": "0.3.17",
34
- "@paroicms/platform-video-plugin": "0.37.16",
35
- "@paroicms/zoom-plugin": "0.2.15"
25
+ "@paroicms/contact-form-plugin": "0.33.19",
26
+ "@paroicms/content-loading-plugin": "0.27.22",
27
+ "@paroicms/internal-link-plugin": "0.23.17",
28
+ "@paroicms/list-field-plugin": "0.28.17",
29
+ "@paroicms/mcp-plugin": "0.3.2",
30
+ "@paroicms/public-menu-plugin": "0.19.22",
31
+ "@paroicms/tiptap-editor-plugin": "1.2.9",
32
+ "@paroicms/quill-editor-plugin": "1.47.8",
33
+ "@paroicms/script-lib": "0.3.19",
34
+ "@paroicms/platform-video-plugin": "0.37.18",
35
+ "@paroicms/zoom-plugin": "0.2.17"
36
36
  },
37
37
  "devDependencies": {
38
38
  "concurrently": "~9.2.1",
package/site-schema.json CHANGED
@@ -77,7 +77,8 @@
77
77
  "searchPage",
78
78
  "exhibition",
79
79
  "tiptapPage",
80
- "quillPage"
80
+ "quillPage",
81
+ "testColors"
81
82
  ],
82
83
  "adminUi": {
83
84
  "defaultTab": "edit"
@@ -348,6 +349,28 @@
348
349
  "route": "quill-page",
349
350
  "withFeaturedImage": false,
350
351
  "fields": ["htmlContent[@paroicms/quill-editor-plugin]"]
352
+ },
353
+ {
354
+ "typeName": "testColors",
355
+ "kind": "document",
356
+ "documentKind": "routing",
357
+ "route": "test-colors",
358
+ "withFeaturedImage": false,
359
+ "regularChildren": ["testColor"],
360
+ "regularChildrenSorting": "title asc"
361
+ },
362
+ {
363
+ "typeName": "testColor",
364
+ "kind": "document",
365
+ "documentKind": "regular",
366
+ "route": ":relativeId",
367
+ "withFeaturedImage": true,
368
+ "fields": ["gallery", "htmlContent[@paroicms/tiptap-editor-plugin]"],
369
+ "cluster": {
370
+ "autoCreate": true
371
+ },
372
+ "regularChildren": ["page"],
373
+ "regularChildrenSorting": "title asc"
351
374
  }
352
375
  ]
353
376
  }