@paroicms/quill-editor-plugin 1.46.2 → 1.47.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paroicms/quill-editor-plugin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.47.0",
|
|
4
4
|
"description": "Quill Editor plugin for ParoiCMS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"paroicms",
|
|
@@ -20,16 +20,14 @@
|
|
|
20
20
|
"build": "npm run build:backend && npm run build:admin-ui && npm run build:public-assets",
|
|
21
21
|
"build:backend": "(cd backend && tsc)",
|
|
22
22
|
"build:admin-ui": "(cd admin-ui-plugin && npm run build)",
|
|
23
|
-
"build:public-assets": "
|
|
23
|
+
"build:public-assets": "mkdir -p public-assets/dist && cp public-assets/src/text.css public-assets/dist/text.css",
|
|
24
24
|
"build:backend:watch": "(cd backend && tsc --watch --preserveWatchOutput)",
|
|
25
25
|
"build:admin-ui:watch": "(cd admin-ui-plugin && npm run build:watch)",
|
|
26
|
-
"build:public-assets:watch": "npm run _scss && npm run _scss -- --watch",
|
|
27
|
-
"_scss": "sass public-assets/src/text.scss public-assets/dist/text.css",
|
|
28
26
|
"clear": "rimraf backend/dist/* admin-ui-plugin/dist/* public-assets/dist/*"
|
|
29
27
|
},
|
|
30
28
|
"dependencies": {
|
|
31
29
|
"@paroi/quill-delta-to-html": "~0.12.3",
|
|
32
|
-
"@paroicms/script-lib": "0.3.
|
|
30
|
+
"@paroicms/script-lib": "0.3.12",
|
|
33
31
|
"arktype": "~2.1.27",
|
|
34
32
|
"markdown-to-quill-delta": "~1.0.1"
|
|
35
33
|
},
|
|
@@ -39,10 +37,9 @@
|
|
|
39
37
|
},
|
|
40
38
|
"devDependencies": {
|
|
41
39
|
"@paroicms/public-anywhere-lib": "0.41.0",
|
|
42
|
-
"@paroicms/public-server-lib": "0.
|
|
40
|
+
"@paroicms/public-server-lib": "0.50.0",
|
|
43
41
|
"@types/node": "~24.10.1",
|
|
44
42
|
"rimraf": "~6.1.2",
|
|
45
|
-
"sass": "~1.94.2",
|
|
46
43
|
"typescript": "~5.9.3"
|
|
47
44
|
},
|
|
48
45
|
"type": "module",
|
|
@@ -1 +1,54 @@
|
|
|
1
|
-
.Text .Fig
|
|
1
|
+
.Text .Fig {
|
|
2
|
+
display: table;
|
|
3
|
+
margin: 0;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.Text .Fig.left {
|
|
7
|
+
float: left;
|
|
8
|
+
margin: 5px 20px 10px 0;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.Text .Fig.right {
|
|
12
|
+
float: right;
|
|
13
|
+
margin: 5px 0 10px 20px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.Text .Fig.center {
|
|
17
|
+
clear: both;
|
|
18
|
+
margin: 20px auto;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.Text .Fig-media {
|
|
22
|
+
display: block;
|
|
23
|
+
max-width: 100%;
|
|
24
|
+
height: auto;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.Text .Fig-caption {
|
|
28
|
+
display: table-caption;
|
|
29
|
+
margin-top: 8px;
|
|
30
|
+
font-size: 0.875em;
|
|
31
|
+
text-align: center;
|
|
32
|
+
caption-side: bottom;
|
|
33
|
+
opacity: 0.6;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.Text .ql-align-center {
|
|
37
|
+
text-align: center;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.Text .ql-align-right {
|
|
41
|
+
text-align: right;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.Text .ql-size-small {
|
|
45
|
+
font-size: 0.5625em; /* 9/16 */
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.Text .ql-size-large {
|
|
49
|
+
font-size: 2em;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.Text .ql-size-huge {
|
|
53
|
+
font-size: 4em;
|
|
54
|
+
}
|