@seafile/sdoc-editor 0.1.43 → 0.1.44
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/assets/css/simple-editor.css +4 -0
- package/dist/basic-sdk/assets/css/outline.css +1 -0
- package/dist/basic-sdk/assets/css/sdoc-editor-plugins.css +1 -1
- package/dist/basic-sdk/assets/css/textlink-hovermenu.css +2 -2
- package/dist/basic-sdk/editor.js +13 -15
- package/dist/basic-sdk/extension/constants/index.js +13 -13
- package/dist/basic-sdk/extension/menu/menu.css +2 -2
- package/dist/basic-sdk/extension/plugins/header/menu/index.js +1 -1
- package/dist/basic-sdk/extension/plugins/header/menu/style.css +2 -2
- package/dist/basic-sdk/extension/plugins/header/render-elem.js +1 -1
- package/dist/basic-sdk/extension/plugins/image/render-elem.js +2 -2
- package/dist/basic-sdk/extension/plugins/link/menu/hover-link-dialog.js +2 -2
- package/dist/basic-sdk/extension/plugins/table/constants/index.js +2 -0
- package/dist/basic-sdk/extension/plugins/table/dialog/custom-table-size-dialog/index.js +3 -2
- package/dist/basic-sdk/extension/plugins/table/menu/active-table-menu/common-menu.js +1 -1
- package/dist/basic-sdk/extension/plugins/table/menu/active-table-menu/index.css +1 -1
- package/dist/basic-sdk/extension/plugins/table/menu/active-table-menu/index.js +6 -6
- package/dist/basic-sdk/extension/plugins/table/plugin.js +81 -15
- package/dist/basic-sdk/extension/plugins/table/render/render-table/index.css +2 -2
- package/dist/basic-sdk/extension/plugins/table/render/render-table/index.js +1 -1
- package/dist/basic-sdk/extension/render/render-element.js +1 -1
- package/dist/basic-sdk/outline.js +2 -2
- package/dist/basic-sdk/socket/with-socket-io.js +12 -2
- package/dist/basic-sdk/viewer.js +7 -13
- package/dist/components/doc-info/index.js +1 -1
- package/dist/components/doc-operations/collaborators-operation/index.js +1 -1
- package/dist/components/doc-operations/index.js +3 -3
- package/dist/components/doc-operations/style.css +3 -2
- package/dist/components/toast/alert.js +4 -4
- package/package.json +1 -1
- package/public/locales/en/sdoc-editor.json +2 -2
- package/public/locales/zh-CN/sdoc-editor.json +2 -2
- package/public/media/sdoc-editor-font/iconfont.eot +0 -0
- package/public/media/sdoc-editor-font/iconfont.svg +37 -87
- package/public/media/sdoc-editor-font/iconfont.ttf +0 -0
- package/public/media/sdoc-editor-font/iconfont.woff +0 -0
- package/public/media/sdoc-editor-font/iconfont.woff2 +0 -0
- package/public/media/sdoc-editor-font.css +58 -158
|
@@ -1,258 +1,158 @@
|
|
|
1
1
|
@font-face {
|
|
2
|
-
font-family: "
|
|
3
|
-
src: url('sdoc-editor-font/iconfont.eot?t=
|
|
4
|
-
src: url('sdoc-editor-font/iconfont.eot?t=
|
|
5
|
-
url('sdoc-editor-font/iconfont.woff2?t=
|
|
6
|
-
url('sdoc-editor-font/iconfont.woff?t=
|
|
7
|
-
url('sdoc-editor-font/iconfont.ttf?t=
|
|
8
|
-
url('sdoc-editor-font/iconfont.svg?t=
|
|
2
|
+
font-family: "sdocfont"; /* Project id 4097705 */
|
|
3
|
+
src: url('./sdoc-editor-font/iconfont.eot?t=1685591242626'); /* IE9 */
|
|
4
|
+
src: url('./sdoc-editor-font/iconfont.eot?t=1685591242626#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
|
5
|
+
url('./sdoc-editor-font/iconfont.woff2?t=1685591242626') format('woff2'),
|
|
6
|
+
url('./sdoc-editor-font/iconfont.woff?t=1685591242626') format('woff'),
|
|
7
|
+
url('./sdoc-editor-font/iconfont.ttf?t=1685591242626') format('truetype'),
|
|
8
|
+
url('./sdoc-editor-font/iconfont.svg?t=1685591242626#sdocfont') format('svg');
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
.
|
|
12
|
-
font-family: "
|
|
11
|
+
.sdocfont {
|
|
12
|
+
font-family: "sdocfont" !important;
|
|
13
13
|
font-size: 16px;
|
|
14
14
|
font-style: normal;
|
|
15
15
|
-webkit-font-smoothing: antialiased;
|
|
16
16
|
-moz-osx-font-smoothing: grayscale;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
.
|
|
20
|
-
content: "\
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.icon-revoke:before {
|
|
24
|
-
content: "\e643";
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.icon-redo:before {
|
|
28
|
-
content: "\e644";
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.icon-cancel:before {
|
|
32
|
-
content: "\e641";
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.icon-table-of-content:before {
|
|
36
|
-
content: "\e642";
|
|
19
|
+
.sdoc-delete-table:before {
|
|
20
|
+
content: "\e637";
|
|
37
21
|
}
|
|
38
22
|
|
|
39
|
-
.
|
|
40
|
-
content: "\
|
|
23
|
+
.sdoc-caret-up:before {
|
|
24
|
+
content: "\e636";
|
|
41
25
|
}
|
|
42
26
|
|
|
43
|
-
.
|
|
44
|
-
content: "\
|
|
27
|
+
.sdoc-left-alignment:before {
|
|
28
|
+
content: "\e62e";
|
|
45
29
|
}
|
|
46
30
|
|
|
47
|
-
.
|
|
48
|
-
content: "\
|
|
31
|
+
.sdoc-center-horizontally:before {
|
|
32
|
+
content: "\e62f";
|
|
49
33
|
}
|
|
50
34
|
|
|
51
|
-
.
|
|
52
|
-
content: "\
|
|
35
|
+
.sdoc-align-right:before {
|
|
36
|
+
content: "\e630";
|
|
53
37
|
}
|
|
54
38
|
|
|
55
|
-
.
|
|
56
|
-
content: "\
|
|
39
|
+
.sdoc-cancel:before {
|
|
40
|
+
content: "\e631";
|
|
57
41
|
}
|
|
58
42
|
|
|
59
|
-
.
|
|
60
|
-
content: "\
|
|
43
|
+
.sdoc-drop-down:before {
|
|
44
|
+
content: "\e632";
|
|
61
45
|
}
|
|
62
46
|
|
|
63
|
-
.
|
|
64
|
-
content: "\
|
|
47
|
+
.sdoc-row:before {
|
|
48
|
+
content: "\e633";
|
|
65
49
|
}
|
|
66
50
|
|
|
67
|
-
.
|
|
68
|
-
content: "\
|
|
51
|
+
.sdoc-column:before {
|
|
52
|
+
content: "\e634";
|
|
69
53
|
}
|
|
70
54
|
|
|
71
|
-
.
|
|
72
|
-
content: "\
|
|
55
|
+
.sdoc-fullscreen:before {
|
|
56
|
+
content: "\e635";
|
|
73
57
|
}
|
|
74
58
|
|
|
75
|
-
.
|
|
76
|
-
content: "\
|
|
59
|
+
.sdoc-check-circle:before {
|
|
60
|
+
content: "\e62a";
|
|
77
61
|
}
|
|
78
62
|
|
|
79
|
-
.
|
|
80
|
-
content: "\
|
|
63
|
+
.sdoc-description:before {
|
|
64
|
+
content: "\e62b";
|
|
81
65
|
}
|
|
82
66
|
|
|
83
|
-
.
|
|
84
|
-
content: "\
|
|
67
|
+
.sdoc-exclamation-triangle:before {
|
|
68
|
+
content: "\e62c";
|
|
85
69
|
}
|
|
86
70
|
|
|
87
|
-
.
|
|
88
|
-
content: "\
|
|
71
|
+
.sdoc-exclamation-circle:before {
|
|
72
|
+
content: "\e62d";
|
|
89
73
|
}
|
|
90
74
|
|
|
91
|
-
.
|
|
75
|
+
.sdoc-check-square:before {
|
|
92
76
|
content: "\e615";
|
|
93
77
|
}
|
|
94
78
|
|
|
95
|
-
.
|
|
79
|
+
.sdoc-image:before {
|
|
96
80
|
content: "\e616";
|
|
97
81
|
}
|
|
98
82
|
|
|
99
|
-
.
|
|
83
|
+
.sdoc-italic:before {
|
|
100
84
|
content: "\e617";
|
|
101
85
|
}
|
|
102
86
|
|
|
103
|
-
.
|
|
87
|
+
.sdoc-history:before {
|
|
104
88
|
content: "\e618";
|
|
105
89
|
}
|
|
106
90
|
|
|
107
|
-
.
|
|
91
|
+
.sdoc-quote-left:before {
|
|
108
92
|
content: "\e619";
|
|
109
93
|
}
|
|
110
94
|
|
|
111
|
-
.
|
|
95
|
+
.sdoc-list-ol:before {
|
|
112
96
|
content: "\e61a";
|
|
113
97
|
}
|
|
114
98
|
|
|
115
|
-
.
|
|
99
|
+
.sdoc-delete:before {
|
|
116
100
|
content: "\e61b";
|
|
117
101
|
}
|
|
118
102
|
|
|
119
|
-
.
|
|
103
|
+
.sdoc-menu:before {
|
|
120
104
|
content: "\e61c";
|
|
121
105
|
}
|
|
122
106
|
|
|
123
|
-
.
|
|
107
|
+
.sdoc-code-block:before {
|
|
124
108
|
content: "\e61d";
|
|
125
109
|
}
|
|
126
110
|
|
|
127
|
-
.
|
|
111
|
+
.sdoc-redo:before {
|
|
128
112
|
content: "\e61e";
|
|
129
113
|
}
|
|
130
114
|
|
|
131
|
-
.
|
|
115
|
+
.sdoc-bold:before {
|
|
132
116
|
content: "\e61f";
|
|
133
117
|
}
|
|
134
118
|
|
|
135
|
-
.
|
|
119
|
+
.sdoc-rename:before {
|
|
136
120
|
content: "\e620";
|
|
137
121
|
}
|
|
138
122
|
|
|
139
|
-
.
|
|
123
|
+
.sdoc-list-ul:before {
|
|
140
124
|
content: "\e621";
|
|
141
125
|
}
|
|
142
126
|
|
|
143
|
-
.
|
|
127
|
+
.sdoc-share:before {
|
|
144
128
|
content: "\e622";
|
|
145
129
|
}
|
|
146
130
|
|
|
147
|
-
.
|
|
131
|
+
.sdoc-strikethrough:before {
|
|
148
132
|
content: "\e623";
|
|
149
133
|
}
|
|
150
134
|
|
|
151
|
-
.
|
|
135
|
+
.sdoc-link:before {
|
|
152
136
|
content: "\e624";
|
|
153
137
|
}
|
|
154
138
|
|
|
155
|
-
.
|
|
139
|
+
.sdoc-underline:before {
|
|
156
140
|
content: "\e625";
|
|
157
141
|
}
|
|
158
142
|
|
|
159
|
-
.
|
|
143
|
+
.sdoc-revoke:before {
|
|
160
144
|
content: "\e626";
|
|
161
145
|
}
|
|
162
146
|
|
|
163
|
-
.
|
|
147
|
+
.sdoc-table:before {
|
|
164
148
|
content: "\e627";
|
|
165
149
|
}
|
|
166
150
|
|
|
167
|
-
.
|
|
151
|
+
.sdoc-table-of-content:before {
|
|
168
152
|
content: "\e628";
|
|
169
153
|
}
|
|
170
154
|
|
|
171
|
-
.
|
|
155
|
+
.sdoc-user:before {
|
|
172
156
|
content: "\e629";
|
|
173
157
|
}
|
|
174
158
|
|
|
175
|
-
.icon-quote-left:before {
|
|
176
|
-
content: "\e62a";
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
.icon-left:before {
|
|
180
|
-
content: "\e62b";
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
.icon-pencil:before {
|
|
184
|
-
content: "\e62c";
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.icon-exclamation-triangle:before {
|
|
188
|
-
content: "\e62d";
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
.icon-plus-square:before {
|
|
192
|
-
content: "\e62e";
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
.icon-users:before {
|
|
196
|
-
content: "\e62f";
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
.icon-star1:before {
|
|
200
|
-
content: "\e630";
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
.icon-ellipsis-v:before {
|
|
204
|
-
content: "\e631";
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
.icon-magic:before {
|
|
208
|
-
content: "\e632";
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
.icon-list-ol:before {
|
|
212
|
-
content: "\e633";
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
.icon-star2:before {
|
|
216
|
-
content: "\e634";
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
.icon-eye-slash:before {
|
|
220
|
-
content: "\e635";
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.icon-use-help:before {
|
|
224
|
-
content: "\e636";
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
.icon-column:before {
|
|
228
|
-
content: "\e637";
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.icon-formula:before {
|
|
232
|
-
content: "\e638";
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
.icon-user:before {
|
|
236
|
-
content: "\e639";
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
.icon-table:before {
|
|
240
|
-
content: "\e63a";
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.icon-image:before {
|
|
244
|
-
content: "\e63b";
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.icon-left-alignment:before {
|
|
248
|
-
content: "\e63c";
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
.icon-shrink:before {
|
|
252
|
-
content: "\e63d";
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
.icon-check-circle:before {
|
|
256
|
-
content: "\e63e";
|
|
257
|
-
}
|
|
258
|
-
|