@paroicms/playground_demo2 0.63.0 → 0.64.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.
- package/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +19 -0
- package/package.json +4 -4
- package/site-schema.json +11 -6
- package/site-schema.l10n.es.json +99 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
|
-
> @paroicms/playground_demo2@0.
|
|
2
|
+
> @paroicms/playground_demo2@0.64.0 build
|
|
3
3
|
> npm run scss
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @paroicms/playground_demo2@0.
|
|
6
|
+
> @paroicms/playground_demo2@0.64.0 scss
|
|
7
7
|
> npm run _scss -- --no-source-map --style=compressed
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
> @paroicms/playground_demo2@0.
|
|
10
|
+
> @paroicms/playground_demo2@0.64.0 _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,24 @@
|
|
|
1
1
|
# @paroicms/playground_seoul
|
|
2
2
|
|
|
3
|
+
## 0.64.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ae7ef6b: Allow websites in non-core languages
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [ae7ef6b]
|
|
12
|
+
- @paroicms/contact-form-plugin@0.28.0
|
|
13
|
+
- @paroicms/list-field-plugin@0.21.0
|
|
14
|
+
|
|
15
|
+
## 0.63.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [d7fc937]
|
|
20
|
+
- @paroicms/quill-editor-plugin@1.36.2
|
|
21
|
+
|
|
3
22
|
## 0.63.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paroicms/playground_demo2",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.64.0",
|
|
4
4
|
"description": "Demonstration website for ParoiCMS",
|
|
5
5
|
"author": "Paroi Team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"_pino-pretty": "pino-pretty -U false -x 'stats:25' -X 'stats:grey' -t 'yyyy-mm-dd HH:MM:ss.l' -i 'hostname,pid,fqdn'"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@paroicms/contact-form-plugin": "0.
|
|
26
|
+
"@paroicms/contact-form-plugin": "0.28.0",
|
|
27
27
|
"@paroicms/content-loading-plugin": "0.21.1",
|
|
28
28
|
"@paroicms/internal-link-plugin": "0.16.1",
|
|
29
|
-
"@paroicms/list-field-plugin": "0.
|
|
29
|
+
"@paroicms/list-field-plugin": "0.21.0",
|
|
30
30
|
"@paroicms/public-menu-plugin": "0.15.1",
|
|
31
|
-
"@paroicms/quill-editor-plugin": "1.36.
|
|
31
|
+
"@paroicms/quill-editor-plugin": "1.36.2",
|
|
32
32
|
"@paroicms/video-plugin": "0.31.1"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
package/site-schema.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ParoiCMSSiteSchemaFormatVersion": "9",
|
|
3
|
-
"languages": ["
|
|
3
|
+
"languages": ["es", "fr"],
|
|
4
4
|
"plugins": [
|
|
5
5
|
{
|
|
6
6
|
"name": "@paroicms/quill-editor-plugin",
|
|
@@ -184,7 +184,8 @@
|
|
|
184
184
|
"documentKind": "routing",
|
|
185
185
|
"route": {
|
|
186
186
|
"en": "posts",
|
|
187
|
-
"fr": "articles"
|
|
187
|
+
"fr": "articles",
|
|
188
|
+
"es": "artículos"
|
|
188
189
|
},
|
|
189
190
|
"withFeaturedImage": true,
|
|
190
191
|
"routingChildren": ["tags"],
|
|
@@ -217,7 +218,8 @@
|
|
|
217
218
|
"documentKind": "routing",
|
|
218
219
|
"route": {
|
|
219
220
|
"en": "tag",
|
|
220
|
-
"fr": "tag"
|
|
221
|
+
"fr": "tag",
|
|
222
|
+
"es": "etiqueta"
|
|
221
223
|
},
|
|
222
224
|
"redirectTo": "parent",
|
|
223
225
|
"withFeaturedImage": true,
|
|
@@ -242,7 +244,8 @@
|
|
|
242
244
|
"documentKind": "routing",
|
|
243
245
|
"route": {
|
|
244
246
|
"en": "about-us",
|
|
245
|
-
"fr": "a-propos"
|
|
247
|
+
"fr": "a-propos",
|
|
248
|
+
"es": "sobre-nosotros"
|
|
246
249
|
},
|
|
247
250
|
"withFeaturedImage": true,
|
|
248
251
|
"fields": [
|
|
@@ -268,7 +271,8 @@
|
|
|
268
271
|
"documentKind": "routing",
|
|
269
272
|
"route": {
|
|
270
273
|
"en": "contact-us",
|
|
271
|
-
"fr": "contactez-nous"
|
|
274
|
+
"fr": "contactez-nous",
|
|
275
|
+
"es": "contáctenos"
|
|
272
276
|
},
|
|
273
277
|
"withFeaturedImage": false,
|
|
274
278
|
"fields": ["shortTitle", "htmlContent"]
|
|
@@ -279,7 +283,8 @@
|
|
|
279
283
|
"documentKind": "routing",
|
|
280
284
|
"route": {
|
|
281
285
|
"en": "search",
|
|
282
|
-
"fr": "recherche"
|
|
286
|
+
"fr": "recherche",
|
|
287
|
+
"es": "buscar"
|
|
283
288
|
},
|
|
284
289
|
"withFeaturedImage": false,
|
|
285
290
|
"fields": ["htmlContent"]
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
{
|
|
2
|
+
"nodeTypes": {
|
|
3
|
+
"home": {
|
|
4
|
+
"label": "Página de inicio",
|
|
5
|
+
"lists": {
|
|
6
|
+
"partners": {
|
|
7
|
+
"label": "Socios",
|
|
8
|
+
"addPart": "Agregar un socio",
|
|
9
|
+
"reorderParts": "Reordenar los socios"
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"partner": {
|
|
14
|
+
"label": "Socio",
|
|
15
|
+
"fields": {
|
|
16
|
+
"url": {
|
|
17
|
+
"label": "URL"
|
|
18
|
+
},
|
|
19
|
+
"color": {
|
|
20
|
+
"label": "Color"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"list": {
|
|
24
|
+
"addPart": "Agregar una imagen lateral"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"sideImage": {
|
|
28
|
+
"label": "Imagen lateral"
|
|
29
|
+
},
|
|
30
|
+
"exhibition": {
|
|
31
|
+
"label": "Exposición",
|
|
32
|
+
"addChild": "Agregar un estante"
|
|
33
|
+
},
|
|
34
|
+
"shelf": {
|
|
35
|
+
"label": "Estante",
|
|
36
|
+
"addChild": "Agregar un artículo",
|
|
37
|
+
"fields": {
|
|
38
|
+
"color": {
|
|
39
|
+
"label": "Color"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"videoPage": {
|
|
44
|
+
"label": "Página de video"
|
|
45
|
+
},
|
|
46
|
+
"pages": {
|
|
47
|
+
"label": "Páginas",
|
|
48
|
+
"addChild": "Agregar una página"
|
|
49
|
+
},
|
|
50
|
+
"page": {
|
|
51
|
+
"label": "Página",
|
|
52
|
+
"fields": {
|
|
53
|
+
"testTime": {
|
|
54
|
+
"label": "Hora de actualización (Prueba)"
|
|
55
|
+
},
|
|
56
|
+
"testDate": {
|
|
57
|
+
"label": "Fecha de actualización (Prueba)"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"posts": {
|
|
62
|
+
"label": "Artículos",
|
|
63
|
+
"addChild": "Agregar un artículo"
|
|
64
|
+
},
|
|
65
|
+
"post": {
|
|
66
|
+
"label": "Artículo",
|
|
67
|
+
"fields": {
|
|
68
|
+
"tags": {
|
|
69
|
+
"label": "Etiquetas"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"tags": {
|
|
74
|
+
"label": "Etiquetas",
|
|
75
|
+
"addChild": "Agregar una etiqueta"
|
|
76
|
+
},
|
|
77
|
+
"tag": {
|
|
78
|
+
"label": "Etiqueta de artículo"
|
|
79
|
+
},
|
|
80
|
+
"aboutPage": {
|
|
81
|
+
"label": "Página acerca de",
|
|
82
|
+
"fields": {
|
|
83
|
+
"testTime": {
|
|
84
|
+
"label": "Hora de actualización (Prueba)",
|
|
85
|
+
"validateBtn": "Validar"
|
|
86
|
+
},
|
|
87
|
+
"testDate": {
|
|
88
|
+
"label": "Fecha de actualización (Prueba)"
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"contactPage": {
|
|
93
|
+
"label": "Página de contacto"
|
|
94
|
+
},
|
|
95
|
+
"searchPage": {
|
|
96
|
+
"label": "Página de búsqueda"
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|