@paroicms/playground_demo1 0.62.1 → 0.63.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,12 +1,12 @@
1
1
 
2
- > @paroicms/playground_demo1@0.62.1 build
2
+ > @paroicms/playground_demo1@0.63.1 build
3
3
  > npm run scss
4
4
 
5
5
 
6
- > @paroicms/playground_demo1@0.62.1 scss
6
+ > @paroicms/playground_demo1@0.63.1 scss
7
7
  > npm run _scss -- --no-source-map --style=compressed
8
8
 
9
9
 
10
- > @paroicms/playground_demo1@0.62.1 _scss
10
+ > @paroicms/playground_demo1@0.63.1 _scss
11
11
  > sass theme/assets/scss/index.scss theme/assets/css/index.css --no-source-map --style=compressed
12
12
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @paroicms/playground_seoul
2
2
 
3
+ ## 0.63.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [dd18bf6]
8
+ - @paroicms/quill-editor-plugin@1.44.0
9
+
10
+ ## 0.63.0
11
+
12
+ ### Minor Changes
13
+
14
+ - 55cdb85: Implemented qualified field names (`htmlContent[@paroicms/quill-editor-plugin]` etc.)
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [55cdb85]
19
+ - @paroicms/internal-link-plugin@0.23.0
20
+ - @paroicms/quill-editor-plugin@1.43.0
21
+ - @paroicms/video-plugin@0.37.0
22
+ - @paroicms/contact-form-plugin@0.33.2
23
+ - @paroicms/content-loading-plugin@0.27.2
24
+ - @paroicms/public-menu-plugin@0.19.2
25
+ - @paroicms/script-lib@0.3.2
26
+
3
27
  ## 0.62.1
4
28
 
5
29
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paroicms/playground_demo1",
3
- "version": "0.62.1",
3
+ "version": "0.63.1",
4
4
  "description": "Boilerplate website for ParoiCMS",
5
5
  "author": "Paroi Team",
6
6
  "license": "MIT",
@@ -24,13 +24,13 @@
24
24
  "_pino-pretty": "pino-pretty -U false -x 'stats:25' -X 'stats:grey' -t 'yyyy-mm-dd HH:MM:ss.l' -i 'hostname,pid,fqdn'"
25
25
  },
26
26
  "dependencies": {
27
- "@paroicms/contact-form-plugin": "0.33.1",
28
- "@paroicms/content-loading-plugin": "0.27.1",
29
- "@paroicms/internal-link-plugin": "0.22.1",
30
- "@paroicms/public-menu-plugin": "0.19.1",
31
- "@paroicms/quill-editor-plugin": "1.42.1",
32
- "@paroicms/script-lib": "0.3.1",
33
- "@paroicms/video-plugin": "0.36.1"
27
+ "@paroicms/contact-form-plugin": "0.33.2",
28
+ "@paroicms/content-loading-plugin": "0.27.2",
29
+ "@paroicms/internal-link-plugin": "0.23.0",
30
+ "@paroicms/public-menu-plugin": "0.19.2",
31
+ "@paroicms/quill-editor-plugin": "1.44.0",
32
+ "@paroicms/script-lib": "0.3.2",
33
+ "@paroicms/video-plugin": "0.37.0"
34
34
  },
35
35
  "devDependencies": {
36
36
  "concurrently": "~9.1.2",
package/site-schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "ParoiCMSSiteSchemaFormatVersion": "9",
2
+ "ParoiCMSSiteSchemaFormatVersion": "10",
3
3
  "languages": ["en"],
4
4
  "plugins": [
5
5
  "@paroicms/contact-form-plugin",
@@ -12,7 +12,7 @@
12
12
  "nodeTypes": [
13
13
  {
14
14
  "kind": "site",
15
- "fields": ["logo", "slogan", "phone", "footerMention"]
15
+ "fields": ["logo", "slogan", "phone", "footerMention[@paroicms/quill-editor-plugin]"]
16
16
  },
17
17
  {
18
18
  "typeName": "home",
@@ -49,7 +49,7 @@
49
49
  "documentKind": "regular",
50
50
  "route": ":relativeId-:slug",
51
51
  "withFeaturedImage": true,
52
- "fields": ["gallery", "htmlContent"],
52
+ "fields": ["gallery", "htmlContent[@paroicms/quill-editor-plugin]"],
53
53
  "regularChildren": ["page"],
54
54
  "regularChildrenSorting": "title asc"
55
55
  },
@@ -82,8 +82,8 @@
82
82
  "taxonomy": "tags",
83
83
  "multiple": true
84
84
  },
85
- "leadParagraph",
86
- "htmlContent"
85
+ "leadParagraph[@paroicms/quill-editor-plugin]",
86
+ "htmlContent[@paroicms/quill-editor-plugin]"
87
87
  ]
88
88
  },
89
89
  {
@@ -107,7 +107,7 @@
107
107
  "documentKind": "regular",
108
108
  "route": ":relativeId-:slug",
109
109
  "withFeaturedImage": true,
110
- "fields": ["htmlContent"],
110
+ "fields": ["htmlContent[@paroicms/quill-editor-plugin]"],
111
111
  "autoPublish": true
112
112
  },
113
113
  {
@@ -119,7 +119,7 @@
119
119
  "fr": "a-propos"
120
120
  },
121
121
  "withFeaturedImage": true,
122
- "fields": ["htmlContent"]
122
+ "fields": ["htmlContent[@paroicms/quill-editor-plugin]"]
123
123
  },
124
124
  {
125
125
  "typeName": "contactPage",
@@ -130,7 +130,7 @@
130
130
  "fr": "contactez-nous"
131
131
  },
132
132
  "withFeaturedImage": false,
133
- "fields": ["buttonLabel", "htmlContent"]
133
+ "fields": ["buttonLabel", "htmlContent[@paroicms/quill-editor-plugin]"]
134
134
  },
135
135
  {
136
136
  "typeName": "searchPage",
@@ -141,7 +141,7 @@
141
141
  "fr": "recherche"
142
142
  },
143
143
  "withFeaturedImage": false,
144
- "fields": ["htmlContent"]
144
+ "fields": ["htmlContent[@paroicms/quill-editor-plugin]"]
145
145
  },
146
146
  {
147
147
  "typeName": "sideImage",
@@ -155,7 +155,7 @@
155
155
  "enum": ["left", "right"]
156
156
  },
157
157
  "image",
158
- "htmlContent"
158
+ "htmlContent[@paroicms/quill-editor-plugin]"
159
159
  ]
160
160
  }
161
161
  ]