@windoc/react 0.3.15 → 0.3.16
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/dist/index.js +68 -40
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +47 -19
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/styles/editor.css +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@windoc/react",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.16",
|
|
4
4
|
"description": "React bindings for windoc editor",
|
|
5
5
|
"homepage": "https://aliansyahfirdaus.github.io/windoc/",
|
|
6
6
|
"repository": {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"react-dom": ">=18"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@windoc/core": "^0.3.
|
|
53
|
+
"@windoc/core": "^0.3.16"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/react": "^19",
|
package/src/styles/editor.css
CHANGED
|
@@ -39,6 +39,10 @@
|
|
|
39
39
|
padding: 0;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
+
.editor .ce-zone-tip {
|
|
43
|
+
padding: 6px 14px;
|
|
44
|
+
}
|
|
45
|
+
|
|
42
46
|
body {
|
|
43
47
|
background-color: #f2f4f7;
|
|
44
48
|
}
|
|
@@ -1055,7 +1059,7 @@ ul {
|
|
|
1055
1059
|
|
|
1056
1060
|
.ce-page-container canvas {
|
|
1057
1061
|
box-shadow: none;
|
|
1058
|
-
|
|
1062
|
+
outline: 1px solid #c4c7c5;
|
|
1059
1063
|
}
|
|
1060
1064
|
|
|
1061
1065
|
.comment {
|