@paroicms/playground_demo2 0.77.1 → 0.78.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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @paroicms/playground_demo2@0.77.1 build
2
+ > @paroicms/playground_demo2@0.78.0 build
3
3
  > postcss theme/assets/css/index.css -o theme/assets/bundle.css
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # @paroicms/playground_seoul
2
2
 
3
+ ## 0.78.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0861c10: Added `:relativeId` and `:slug` route formats
8
+
9
+ ### Patch Changes
10
+
11
+ - @paroicms/script-lib@0.3.18
12
+ - @paroicms/contact-form-plugin@0.33.18
13
+ - @paroicms/content-loading-plugin@0.27.21
14
+ - @paroicms/internal-link-plugin@0.23.16
15
+ - @paroicms/list-field-plugin@0.28.16
16
+ - @paroicms/mcp-plugin@0.3.1
17
+ - @paroicms/platform-video-plugin@0.37.17
18
+ - @paroicms/public-menu-plugin@0.19.21
19
+ - @paroicms/quill-editor-plugin@1.47.7
20
+ - @paroicms/tiptap-editor-plugin@1.2.8
21
+ - @paroicms/zoom-plugin@0.2.16
22
+
23
+ ## 0.77.2
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies [21da3e0]
28
+ - @paroicms/mcp-plugin@0.3.0
29
+
3
30
  ## 0.77.1
4
31
 
5
32
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paroicms/playground_demo2",
3
- "version": "0.77.1",
3
+ "version": "0.78.0",
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.2.9",
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.18",
26
+ "@paroicms/content-loading-plugin": "0.27.21",
27
+ "@paroicms/internal-link-plugin": "0.23.16",
28
+ "@paroicms/list-field-plugin": "0.28.16",
29
+ "@paroicms/mcp-plugin": "0.3.1",
30
+ "@paroicms/public-menu-plugin": "0.19.21",
31
+ "@paroicms/tiptap-editor-plugin": "1.2.8",
32
+ "@paroicms/quill-editor-plugin": "1.47.7",
33
+ "@paroicms/script-lib": "0.3.18",
34
+ "@paroicms/platform-video-plugin": "0.37.17",
35
+ "@paroicms/zoom-plugin": "0.2.16"
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
  }