@paroicms/playground_demo2 0.68.1 → 0.69.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,12 +1,12 @@
1
1
 
2
- > @paroicms/playground_demo2@0.68.1 build
2
+ > @paroicms/playground_demo2@0.69.0 build
3
3
  > npm run scss
4
4
 
5
5
 
6
- > @paroicms/playground_demo2@0.68.1 scss
6
+ > @paroicms/playground_demo2@0.69.0 scss
7
7
  > npm run _scss -- --no-source-map --style=compressed
8
8
 
9
9
 
10
- > @paroicms/playground_demo2@0.68.1 _scss
10
+ > @paroicms/playground_demo2@0.69.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,22 @@
1
1
  # @paroicms/playground_seoul
2
2
 
3
+ ## 0.69.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 784db24: Added routing clusters feature
8
+
9
+ ### Patch Changes
10
+
11
+ - @paroicms/script-lib@0.2.1
12
+ - @paroicms/contact-form-plugin@0.32.1
13
+ - @paroicms/content-loading-plugin@0.26.1
14
+ - @paroicms/internal-link-plugin@0.21.1
15
+ - @paroicms/list-field-plugin@0.25.1
16
+ - @paroicms/public-menu-plugin@0.18.1
17
+ - @paroicms/quill-editor-plugin@1.41.1
18
+ - @paroicms/video-plugin@0.35.1
19
+
3
20
  ## 0.68.1
4
21
 
5
22
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paroicms/playground_demo2",
3
- "version": "0.68.1",
3
+ "version": "0.69.0",
4
4
  "description": "Demonstration website for ParoiCMS",
5
5
  "author": "Paroi Team",
6
6
  "license": "MIT",
@@ -24,14 +24,14 @@
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.32.0",
28
- "@paroicms/content-loading-plugin": "0.26.0",
29
- "@paroicms/internal-link-plugin": "0.21.0",
30
- "@paroicms/list-field-plugin": "0.25.0",
31
- "@paroicms/public-menu-plugin": "0.18.0",
32
- "@paroicms/quill-editor-plugin": "1.41.0",
33
- "@paroicms/script-lib": "0.2.0",
34
- "@paroicms/video-plugin": "0.35.0"
27
+ "@paroicms/contact-form-plugin": "0.32.1",
28
+ "@paroicms/content-loading-plugin": "0.26.1",
29
+ "@paroicms/internal-link-plugin": "0.21.1",
30
+ "@paroicms/list-field-plugin": "0.25.1",
31
+ "@paroicms/public-menu-plugin": "0.18.1",
32
+ "@paroicms/quill-editor-plugin": "1.41.1",
33
+ "@paroicms/script-lib": "0.2.1",
34
+ "@paroicms/video-plugin": "0.35.1"
35
35
  },
36
36
  "devDependencies": {
37
37
  "concurrently": "~9.1.2",
package/site-schema.json CHANGED
@@ -56,6 +56,9 @@
56
56
  "sorting": "manual"
57
57
  }
58
58
  ],
59
+ "cluster": {
60
+ "autoCreate": true
61
+ },
59
62
  "routingChildren": ["pages", "posts", "aboutPage", "contactPage", "searchPage", "exhibition"],
60
63
  "adminUi": {
61
64
  "defaultTab": "edit"
@@ -176,7 +179,11 @@
176
179
  "storedAs": "varchar",
177
180
  "dataType": "date"
178
181
  }
179
- ]
182
+ ],
183
+ "cluster": {
184
+ "autoCreate": true
185
+ },
186
+ "routingChildren": ["exhibition", "pages"]
180
187
  },
181
188
  {
182
189
  "typeName": "posts",
@@ -1,13 +1,19 @@
1
1
  <div class="Breadcrumb">
2
- {% for item in doc.breadcrumb %}
3
- <a class="Breadcrumb-a HFont" href="{{ item.url }}">{{ item.title }}</a>
4
- <img
5
- class="Breadcrumb-imgIcon"
6
- src="{{ site.assetsUrl }}/icons/arrow-grey.svg"
7
- width="32"
8
- height="32"
9
- loading="lazy"
10
- alt="/">
2
+ {% for crumb in doc.breadcrumb %}
3
+ {% if crumb.url %}
4
+ <a class="Breadcrumb-a HFont" href="{{ crumb.url }}">{{ crumb.title }}</a>
5
+ {% else %}
6
+ <span>{{ crumb.title }}</span>
7
+ {% endif %}
8
+ {% unless forloop.last %}
9
+ <img
10
+ class="Breadcrumb-imgIcon"
11
+ src="{{ site.assetsUrl }}/icons/arrow-grey.svg"
12
+ width="32"
13
+ height="32"
14
+ loading="lazy"
15
+ alt="/"
16
+ >
17
+ {% endunless %}
11
18
  {% endfor %}
12
- <span class="Breadcrumb-span HFont">{{ doc.title }}</span>
13
- </div>
19
+ </div>