@paroicms/playground_demo1 0.64.0 → 0.65.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 +23 -0
- package/package.json +12 -12
- package/site-schema.json +11 -11
- package/theme/assets/css/index.css +1 -1
- package/theme/assets/scss/_Text.scss +1 -5
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
|
-
> @paroicms/playground_demo1@0.
|
|
2
|
+
> @paroicms/playground_demo1@0.65.0 build
|
|
3
3
|
> npm run scss
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @paroicms/playground_demo1@0.
|
|
6
|
+
> @paroicms/playground_demo1@0.65.0 scss
|
|
7
7
|
> npm run _scss -- --no-source-map --style=compressed
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
> @paroicms/playground_demo1@0.
|
|
10
|
+
> @paroicms/playground_demo1@0.65.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,28 @@
|
|
|
1
1
|
# @paroicms/playground_seoul
|
|
2
2
|
|
|
3
|
+
## 0.65.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 73d8250: Implemented Tiptap plugin.
|
|
8
|
+
|
|
9
|
+
The Quill plugin is still supported, but now the Tiptap plugin is recommended. Here is how to migrate your website from Quill to Tiptap:
|
|
10
|
+
|
|
11
|
+
1. Update your database `npx @paroicms/converter --database /path/to/main.sqlite --quill-to-tiptap --backup`
|
|
12
|
+
2. In your `site-schema.json` and `package.json`, replace `@paroicms/quill-editor-plugin` with `@paroicms/tiptap-editor-plugin`.
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [73d8250]
|
|
17
|
+
- @paroicms/tiptap-editor-plugin@1.0.0
|
|
18
|
+
- @paroicms/zoom-plugin@0.2.0
|
|
19
|
+
- @paroicms/content-loading-plugin@0.27.3
|
|
20
|
+
- @paroicms/internal-link-plugin@0.23.1
|
|
21
|
+
- @paroicms/contact-form-plugin@0.33.3
|
|
22
|
+
- @paroicms/public-menu-plugin@0.19.3
|
|
23
|
+
- @paroicms/platform-video-plugin@0.37.1
|
|
24
|
+
- @paroicms/script-lib@0.3.3
|
|
25
|
+
|
|
3
26
|
## 0.64.0
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paroicms/playground_demo1",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.65.0",
|
|
4
4
|
"description": "Boilerplate website for ParoiCMS",
|
|
5
5
|
"author": "Paroi Team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -24,20 +24,20 @@
|
|
|
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.
|
|
28
|
-
"@paroicms/content-loading-plugin": "0.27.
|
|
29
|
-
"@paroicms/internal-link-plugin": "0.23.
|
|
30
|
-
"@paroicms/public-menu-plugin": "0.19.
|
|
31
|
-
"@paroicms/
|
|
32
|
-
"@paroicms/script-lib": "0.3.
|
|
33
|
-
"@paroicms/video-plugin": "0.37.
|
|
34
|
-
"@paroicms/zoom-plugin": "0.
|
|
27
|
+
"@paroicms/contact-form-plugin": "0.33.3",
|
|
28
|
+
"@paroicms/content-loading-plugin": "0.27.3",
|
|
29
|
+
"@paroicms/internal-link-plugin": "0.23.1",
|
|
30
|
+
"@paroicms/public-menu-plugin": "0.19.3",
|
|
31
|
+
"@paroicms/tiptap-editor-plugin": "1.0.0",
|
|
32
|
+
"@paroicms/script-lib": "0.3.3",
|
|
33
|
+
"@paroicms/platform-video-plugin": "0.37.1",
|
|
34
|
+
"@paroicms/zoom-plugin": "0.2.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"concurrently": "~9.1
|
|
37
|
+
"concurrently": "~9.2.1",
|
|
38
38
|
"nodemon": "~3.1.10",
|
|
39
|
-
"pino-pretty": "~13.
|
|
39
|
+
"pino-pretty": "~13.1.2",
|
|
40
40
|
"rimraf": "~6.0.1",
|
|
41
|
-
"sass": "~1.
|
|
41
|
+
"sass": "~1.93.2"
|
|
42
42
|
}
|
|
43
43
|
}
|
package/site-schema.json
CHANGED
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
"@paroicms/content-loading-plugin",
|
|
7
7
|
"@paroicms/internal-link-plugin",
|
|
8
8
|
"@paroicms/public-menu-plugin",
|
|
9
|
-
"@paroicms/
|
|
10
|
-
"@paroicms/video-plugin",
|
|
9
|
+
"@paroicms/tiptap-editor-plugin",
|
|
10
|
+
"@paroicms/platform-video-plugin",
|
|
11
11
|
"@paroicms/zoom-plugin"
|
|
12
12
|
],
|
|
13
13
|
"nodeTypes": [
|
|
14
14
|
{
|
|
15
15
|
"kind": "site",
|
|
16
|
-
"fields": ["logo", "slogan", "phone", "footerMention[@paroicms/
|
|
16
|
+
"fields": ["logo", "slogan", "phone", "footerMention[@paroicms/tiptap-editor-plugin]"]
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
19
|
"typeName": "home",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"documentKind": "regular",
|
|
51
51
|
"route": ":relativeId-:slug",
|
|
52
52
|
"withFeaturedImage": true,
|
|
53
|
-
"fields": ["gallery", "htmlContent[@paroicms/
|
|
53
|
+
"fields": ["gallery", "htmlContent[@paroicms/tiptap-editor-plugin]"],
|
|
54
54
|
"regularChildren": ["page"],
|
|
55
55
|
"regularChildrenSorting": "title asc"
|
|
56
56
|
},
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
"taxonomy": "tags",
|
|
84
84
|
"multiple": true
|
|
85
85
|
},
|
|
86
|
-
"leadParagraph[@paroicms/
|
|
87
|
-
"htmlContent[@paroicms/
|
|
86
|
+
"leadParagraph[@paroicms/tiptap-editor-plugin]",
|
|
87
|
+
"htmlContent[@paroicms/tiptap-editor-plugin]"
|
|
88
88
|
]
|
|
89
89
|
},
|
|
90
90
|
{
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"documentKind": "regular",
|
|
109
109
|
"route": ":relativeId-:slug",
|
|
110
110
|
"withFeaturedImage": true,
|
|
111
|
-
"fields": ["htmlContent[@paroicms/
|
|
111
|
+
"fields": ["htmlContent[@paroicms/tiptap-editor-plugin]"],
|
|
112
112
|
"autoPublish": true
|
|
113
113
|
},
|
|
114
114
|
{
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
"fr": "a-propos"
|
|
121
121
|
},
|
|
122
122
|
"withFeaturedImage": true,
|
|
123
|
-
"fields": ["htmlContent[@paroicms/
|
|
123
|
+
"fields": ["htmlContent[@paroicms/tiptap-editor-plugin]"]
|
|
124
124
|
},
|
|
125
125
|
{
|
|
126
126
|
"typeName": "contactPage",
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
"fr": "contactez-nous"
|
|
132
132
|
},
|
|
133
133
|
"withFeaturedImage": false,
|
|
134
|
-
"fields": ["buttonLabel", "htmlContent[@paroicms/
|
|
134
|
+
"fields": ["buttonLabel", "htmlContent[@paroicms/tiptap-editor-plugin]"]
|
|
135
135
|
},
|
|
136
136
|
{
|
|
137
137
|
"typeName": "searchPage",
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
"fr": "recherche"
|
|
143
143
|
},
|
|
144
144
|
"withFeaturedImage": false,
|
|
145
|
-
"fields": ["htmlContent[@paroicms/
|
|
145
|
+
"fields": ["htmlContent[@paroicms/tiptap-editor-plugin]"]
|
|
146
146
|
},
|
|
147
147
|
{
|
|
148
148
|
"typeName": "sideImage",
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
"enum": ["left", "right"]
|
|
157
157
|
},
|
|
158
158
|
"image",
|
|
159
|
-
"htmlContent[@paroicms/
|
|
159
|
+
"htmlContent[@paroicms/tiptap-editor-plugin]"
|
|
160
160
|
]
|
|
161
161
|
}
|
|
162
162
|
]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root{--paInteractiveColor: #99f}.Container{margin-left:auto;margin-right:auto;max-width:1200px}.Container.text{max-width:700px}@media not all and (min-width: 640px){.Container{width:90%}}@media(min-width: 640px){.Container.pad{max-width:1240px;padding-left:20px;padding-right:20px}.Container.pad.text{max-width:740px}}@media(min-width: 640px){.Grid6,.Grid9,.Grid12{column-gap:25px;display:grid;row-gap:25px}.Grid6{grid-template-columns:repeat(6, 1fr)}.Grid9{grid-template-columns:repeat(9, 1fr)}.Grid12{grid-template-columns:repeat(12, 1fr)}.Span2{grid-column-end:span 2}.Span3{grid-column-end:span 3}.Span4{grid-column-end:span 4}.Span6{grid-column-end:span 6}.Span12{grid-column-end:span 12}.Column3{grid-column-start:3}.Column4{grid-column-start:4}.Column7{grid-column-start:7}@media not all and (min-width: 992px){.Span4Tablet{grid-column-end:span 4}}}.Text{hyphens:auto;overflow-wrap:break-word}.Text.justified
|
|
1
|
+
:root{--paInteractiveColor: #99f}.Container{margin-left:auto;margin-right:auto;max-width:1200px}.Container.text{max-width:700px}@media not all and (min-width: 640px){.Container{width:90%}}@media(min-width: 640px){.Container.pad{max-width:1240px;padding-left:20px;padding-right:20px}.Container.pad.text{max-width:740px}}@media(min-width: 640px){.Grid6,.Grid9,.Grid12{column-gap:25px;display:grid;row-gap:25px}.Grid6{grid-template-columns:repeat(6, 1fr)}.Grid9{grid-template-columns:repeat(9, 1fr)}.Grid12{grid-template-columns:repeat(12, 1fr)}.Span2{grid-column-end:span 2}.Span3{grid-column-end:span 3}.Span4{grid-column-end:span 4}.Span6{grid-column-end:span 6}.Span12{grid-column-end:span 12}.Column3{grid-column-start:3}.Column4{grid-column-start:4}.Column7{grid-column-start:7}@media not all and (min-width: 992px){.Span4Tablet{grid-column-end:span 4}}}.Text{hyphens:auto;overflow-wrap:break-word}.Text.justified{text-align:justify}.Text.selfContained::after{clear:both;content:"";display:block}.Text a{text-decoration:underline}.Text a:hover{text-decoration:none}.Text h1,.Text h2{clear:both;font-size:1.75rem;font-weight:bold;margin:2rem 0}.Text h3{font-size:1.125rem;font-weight:bold;margin:1.5rem 0}.Text h4,.Text h5{font-size:1rem;font-weight:bold}.Text blockquote,.Text h4,.Text h5,.Text ol,.Text p,.Text table,.Text ul{margin-bottom:10px}.Text blockquote{margin-left:50px;margin-right:20px}.Text ul,.Text ol{margin-left:20px}.Text li{margin-bottom:5px}.Text ul{list-style:disc}.Text ol{list-style:decimal}.Text ul ul,.Text ol ul{list-style:circle}.Text ul ol,.Text ol ol{list-style:lower-alpha}.Text img,.Text svg{height:auto;max-width:100%}*{box-sizing:border-box}body{line-height:1.5;padding:0;margin:0}@media(min-width: 640px){body{min-height:100vh;padding-bottom:50px;position:relative}.PageFooterArea{bottom:0;left:0;position:absolute;width:100%}}.PageFooterArea{height:50px}.PageHeader{padding-bottom:15px;padding-top:15px}.PageFooter{align-items:center;display:flex;height:100%;justify-content:space-between}._revertedColors{background-color:#666;color:#fff}.Mini{font-size:.6em;font-style:italic}.Annotation{color:#888;font-size:.875rem}._revertedColors .Annotation{color:#b0b0b0}.Btn,.PaButton{all:unset;background-color:#ccc;border:1px solid #aaa;box-sizing:border-box;color:#444;cursor:pointer;display:inline-block;padding:5px;text-align:center;user-select:none}.Btn:focus,.Btn:hover,.PaButton:focus,.PaButton:hover{background-color:#ddd;border-color:#bbb;outline:2px solid #f3e0bc}.Btn.active,.PaButton.active{font-weight:bold}.Btn.disabled,.PaButton.disabled{background-color:rgba(170,170,170,.4666666667);border-color:rgba(0,0,0,0);color:#ccc;outline:none;cursor:default}.Btn::before,.PaButton::before{content:" "}.Btn::after,.PaButton::after{content:" "}.Bg{background-color:#f0f0f0}.Bg2{background-color:#ccc}.Color2{color:#777}.Mt{margin-top:30px}.Mb{margin-bottom:30px}.BigMt{margin-top:60px}.BigMb{margin-bottom:60px}.Pt{padding-top:20px}.Pb{padding-bottom:20px}.Hr{color:#ccc;max-width:500px;margin-left:0}.Flex{display:flex}.Flex.column{flex-direction:column}.Flex.center{align-items:center;justify-content:center}.Flex.spaceBetween{justify-content:space-between}.Flex.gap{gap:15px}.Breadcrumb{font-size:.875rem;padding-bottom:5px;padding-top:5px}.Menu{display:flex;gap:2px;padding:0;margin:0}.Menu>li{display:flex;flex-direction:column;gap:2px}.DocHeader{display:flex;gap:15px;padding:15px 25px 25px;justify-content:space-between}.DocHeader-h1{margin-top:0}.DocHeader-right{align-self:center}.DocHeader-middle{padding-top:50px}.Tag{background-color:#666;border-radius:10px;color:#fff;font-size:.875rem;font-weight:bold;padding:3px 7px;white-space:nowrap}.Block{display:block}.InlineBlock{display:inline-block}.Bold{font-weight:bold}.Tile{background-color:#f0f0f0;display:flex;font-size:.875rem;gap:15px;height:150px;padding:15px 25px}.Tile-text{flex-basis:0;flex-grow:2}.Tile-right{align-self:center;display:flex;justify-content:right;flex-basis:0;flex-grow:1;width:30%;height:100%}.Img{display:block;height:auto;max-height:100%;max-width:100%;object-fit:contain}.TextPage{padding:40px}.ConstraintSize{max-width:100%;height:auto}.PaZoomable:hover,.PaZoomable:focus{outline:2px solid #f3e0bc}.InfiniteLoading-actionArea{grid-column:4;grid-column-end:span 6;text-align:center}.ContactForm-error{background-color:#fcc}.ContactForm-ended{background-color:#eee}.ContactForm-button{border:2px solid #bbb;padding:20px}.ContactForm-button:not(:disabled):not(.inProgress):focus,.ContactForm-button:not(:disabled):not(.inProgress):hover{background-color:blue;color:#fff}.ContactForm-button.inProgress::before{border:6px solid #88f;border-color:#88f rgba(0,0,0,0) #88f rgba(0,0,0,0)}.SideImage{display:flex;flex-direction:row;margin:0 auto;max-width:750px}.SideImage-side{background-color:#f0f0f0;padding:50px;width:50%}.SideImage-img{margin:0 auto;max-height:250px}.SideImage-text{padding:50px;width:50%}.SideImage.right{flex-direction:row-reverse}
|