@windoc/react 0.1.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/dist/index.d.mts +393 -0
- package/dist/index.d.ts +393 -0
- package/dist/index.js +1661 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +1582 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +39 -0
- package/src/styles/editor.css +1786 -0
- package/src/styles/images/alignment.svg +1 -0
- package/src/styles/images/arrow-left.svg +1 -0
- package/src/styles/images/arrow-right.svg +1 -0
- package/src/styles/images/block.svg +1 -0
- package/src/styles/images/bold.svg +1 -0
- package/src/styles/images/catalog.svg +1 -0
- package/src/styles/images/center.svg +1 -0
- package/src/styles/images/checkbox.svg +1 -0
- package/src/styles/images/close.svg +1 -0
- package/src/styles/images/codeblock.svg +1 -0
- package/src/styles/images/color.svg +1 -0
- package/src/styles/images/column.svg +4 -0
- package/src/styles/images/control.svg +1 -0
- package/src/styles/images/date.svg +1 -0
- package/src/styles/images/exit-fullscreen.svg +1 -0
- package/src/styles/images/format.svg +1 -0
- package/src/styles/images/highlight.svg +1 -0
- package/src/styles/images/hyperlink.svg +1 -0
- package/src/styles/images/image.svg +1 -0
- package/src/styles/images/insert-element.svg +5 -0
- package/src/styles/images/italic.svg +1 -0
- package/src/styles/images/justify.svg +7 -0
- package/src/styles/images/latex.svg +1 -0
- package/src/styles/images/left.svg +1 -0
- package/src/styles/images/line-dash-dot-dot.svg +1 -0
- package/src/styles/images/line-dash-dot.svg +1 -0
- package/src/styles/images/line-dash-large-gap.svg +1 -0
- package/src/styles/images/line-dash-small-gap.svg +1 -0
- package/src/styles/images/line-dot.svg +1 -0
- package/src/styles/images/line-double.svg +1 -0
- package/src/styles/images/line-height.svg +8 -0
- package/src/styles/images/line-single.svg +1 -0
- package/src/styles/images/line-wavy.svg +1 -0
- package/src/styles/images/list.svg +1 -0
- package/src/styles/images/option.svg +1 -0
- package/src/styles/images/page-break.svg +1 -0
- package/src/styles/images/page-mode.svg +1 -0
- package/src/styles/images/page-scale-add.svg +1 -0
- package/src/styles/images/page-scale-minus.svg +1 -0
- package/src/styles/images/painter.svg +1 -0
- package/src/styles/images/paper-direction.svg +1 -0
- package/src/styles/images/paper-margin.svg +1 -0
- package/src/styles/images/paper-size.svg +1 -0
- package/src/styles/images/print.svg +1 -0
- package/src/styles/images/radio.svg +4 -0
- package/src/styles/images/redo.svg +1 -0
- package/src/styles/images/request-fullscreen.svg +1 -0
- package/src/styles/images/right.svg +1 -0
- package/src/styles/images/row-margin.svg +1 -0
- package/src/styles/images/search.svg +1 -0
- package/src/styles/images/separator.svg +1 -0
- package/src/styles/images/signature-undo.svg +1 -0
- package/src/styles/images/signature.svg +1 -0
- package/src/styles/images/size-add.svg +1 -0
- package/src/styles/images/size-minus.svg +1 -0
- package/src/styles/images/strikeout.svg +1 -0
- package/src/styles/images/subscript.svg +1 -0
- package/src/styles/images/superscript.svg +1 -0
- package/src/styles/images/table.svg +1 -0
- package/src/styles/images/title.svg +1 -0
- package/src/styles/images/trash.svg +1 -0
- package/src/styles/images/underline.svg +1 -0
- package/src/styles/images/undo.svg +1 -0
- package/src/styles/images/watermark.svg +1 -0
- package/src/styles/images/word-tool.svg +1 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,393 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import React$1, { MutableRefObject } from 'react';
|
|
3
|
+
|
|
4
|
+
type EditorInstance = {
|
|
5
|
+
command: {
|
|
6
|
+
executeUndo: () => void;
|
|
7
|
+
executeRedo: () => void;
|
|
8
|
+
executePainter: (options: {
|
|
9
|
+
isDblclick: boolean;
|
|
10
|
+
}) => void;
|
|
11
|
+
executeFormat: () => void;
|
|
12
|
+
executeFont: (family: string) => void;
|
|
13
|
+
executeSize: (size: number) => void;
|
|
14
|
+
executeSizeAdd: () => void;
|
|
15
|
+
executeSizeMinus: () => void;
|
|
16
|
+
executeBold: () => void;
|
|
17
|
+
executeItalic: () => void;
|
|
18
|
+
executeUnderline: (options?: {
|
|
19
|
+
style?: string;
|
|
20
|
+
}) => void;
|
|
21
|
+
executeStrikeout: () => void;
|
|
22
|
+
executeSuperscript: () => void;
|
|
23
|
+
executeSubscript: () => void;
|
|
24
|
+
executeColor: (color: string | null) => void;
|
|
25
|
+
executeHighlight: (color: string | null) => void;
|
|
26
|
+
executeTitle: (level: string | null) => void;
|
|
27
|
+
executeRowFlex: (flex: string) => void;
|
|
28
|
+
executeRowMargin: (margin: number) => void;
|
|
29
|
+
executeList: (type: string | null, style?: string) => void;
|
|
30
|
+
executeListWithPreset: (type: string, style: string, preset: string) => void;
|
|
31
|
+
executeListIndent: () => void;
|
|
32
|
+
executeListOutdent: () => void;
|
|
33
|
+
executeInsertTable: (rows: number, cols: number) => void;
|
|
34
|
+
executeImage: (options: {
|
|
35
|
+
value: string;
|
|
36
|
+
width: number;
|
|
37
|
+
height: number;
|
|
38
|
+
}) => void;
|
|
39
|
+
executeHyperlink: (options: {
|
|
40
|
+
url: string;
|
|
41
|
+
valueList: {
|
|
42
|
+
value: string;
|
|
43
|
+
size: number;
|
|
44
|
+
}[];
|
|
45
|
+
}) => void;
|
|
46
|
+
executeSeparator: (payload: number[], option?: {
|
|
47
|
+
lineWidth?: number;
|
|
48
|
+
color?: string;
|
|
49
|
+
}) => void;
|
|
50
|
+
executePageBreak: () => void;
|
|
51
|
+
executeAddWatermark: (options: {
|
|
52
|
+
data: string;
|
|
53
|
+
type?: string;
|
|
54
|
+
color?: string;
|
|
55
|
+
opacity?: number;
|
|
56
|
+
size?: number;
|
|
57
|
+
font?: string;
|
|
58
|
+
rotation?: number;
|
|
59
|
+
inFront?: boolean;
|
|
60
|
+
width?: number;
|
|
61
|
+
height?: number;
|
|
62
|
+
repeat?: boolean;
|
|
63
|
+
}) => void;
|
|
64
|
+
executeDeleteWatermark: () => void;
|
|
65
|
+
executeSetZone: (zone: string) => void;
|
|
66
|
+
executeSearch: (text: string | null, options?: object) => void;
|
|
67
|
+
executeReplace: (text: string) => void;
|
|
68
|
+
executeSearchNavigatePre: () => void;
|
|
69
|
+
executeSearchNavigateNext: () => void;
|
|
70
|
+
executePrint: () => void;
|
|
71
|
+
executePageMode: (mode: string) => void;
|
|
72
|
+
executeColumnCount: (count: number) => void;
|
|
73
|
+
executeColumnBreak: () => void;
|
|
74
|
+
executeColumnGap: (gap: number) => void;
|
|
75
|
+
executePageScaleRecovery: () => void;
|
|
76
|
+
executePageScaleMinus: () => void;
|
|
77
|
+
executePageScaleAdd: () => void;
|
|
78
|
+
executePaperSize: (width: number, height: number) => void;
|
|
79
|
+
executePaperDirection: (direction: string) => void;
|
|
80
|
+
executeSetPaperMargin: (margins: number[]) => void;
|
|
81
|
+
executeMode: (mode: string) => void;
|
|
82
|
+
executeLocationCatalog: (id: string) => void;
|
|
83
|
+
executeLocationGroup: (id: string) => void;
|
|
84
|
+
executeDeleteGroup: (id: string) => void;
|
|
85
|
+
executeSetGroup: () => string | null;
|
|
86
|
+
executeInsertControl: (element: object) => void;
|
|
87
|
+
executeInsertElementList: (elements: object[]) => void;
|
|
88
|
+
executeDeleteElementById: (options: {
|
|
89
|
+
id?: string;
|
|
90
|
+
conceptId?: string;
|
|
91
|
+
}) => void;
|
|
92
|
+
getOptions: () => {
|
|
93
|
+
header: {
|
|
94
|
+
disabled: boolean;
|
|
95
|
+
};
|
|
96
|
+
footer: {
|
|
97
|
+
disabled: boolean;
|
|
98
|
+
};
|
|
99
|
+
[key: string]: unknown;
|
|
100
|
+
};
|
|
101
|
+
executeUpdateOptions: (options: object) => void;
|
|
102
|
+
executeForceUpdate: () => void;
|
|
103
|
+
getCatalog: () => Promise<ICatalogItem[] | null>;
|
|
104
|
+
getWordCount: () => Promise<number>;
|
|
105
|
+
getGroupIds: () => Promise<string[]>;
|
|
106
|
+
getValue: () => {
|
|
107
|
+
version: string;
|
|
108
|
+
data: {
|
|
109
|
+
header?: object[];
|
|
110
|
+
main: object[];
|
|
111
|
+
footer?: object[];
|
|
112
|
+
};
|
|
113
|
+
options: object;
|
|
114
|
+
};
|
|
115
|
+
executeSetValue: (payload: {
|
|
116
|
+
header?: object[];
|
|
117
|
+
main?: object[];
|
|
118
|
+
footer?: object[];
|
|
119
|
+
}) => void;
|
|
120
|
+
getHTML: () => {
|
|
121
|
+
header: string;
|
|
122
|
+
main: string;
|
|
123
|
+
footer: string;
|
|
124
|
+
};
|
|
125
|
+
executeSetHTML: (payload: {
|
|
126
|
+
header?: string;
|
|
127
|
+
main?: string;
|
|
128
|
+
footer?: string;
|
|
129
|
+
}) => void;
|
|
130
|
+
getImage: (payload?: {
|
|
131
|
+
pixelRatio?: number;
|
|
132
|
+
mode?: string;
|
|
133
|
+
}) => Promise<string[]>;
|
|
134
|
+
getControlValue: (options?: object) => Array<{
|
|
135
|
+
conceptId?: string;
|
|
136
|
+
value: string | null;
|
|
137
|
+
extension?: unknown;
|
|
138
|
+
}>;
|
|
139
|
+
setControlValue: (options: object) => void;
|
|
140
|
+
getRangeText: () => string;
|
|
141
|
+
getRangeContext: () => {
|
|
142
|
+
startRowNo: number;
|
|
143
|
+
startColNo: number;
|
|
144
|
+
} | null;
|
|
145
|
+
getPaperMargin: () => number[];
|
|
146
|
+
getSearchNavigateInfo: () => {
|
|
147
|
+
index: number;
|
|
148
|
+
count: number;
|
|
149
|
+
} | null;
|
|
150
|
+
};
|
|
151
|
+
listener: {
|
|
152
|
+
rangeStyleChange: ((payload: RangeStylePayload) => void) | null;
|
|
153
|
+
visiblePageNoListChange: ((payload: number[]) => void) | null;
|
|
154
|
+
pageSizeChange: ((payload: number) => void) | null;
|
|
155
|
+
intersectionPageNoChange: ((payload: number) => void) | null;
|
|
156
|
+
pageScaleChange: ((payload: number) => void) | null;
|
|
157
|
+
controlChange: ((payload: {
|
|
158
|
+
state: string;
|
|
159
|
+
}) => void) | null;
|
|
160
|
+
pageModeChange: ((payload: string) => void) | null;
|
|
161
|
+
contentChange: (() => void) | null;
|
|
162
|
+
saved: ((payload: object) => void) | null;
|
|
163
|
+
};
|
|
164
|
+
register: {
|
|
165
|
+
contextMenuList: (items: object[]) => void;
|
|
166
|
+
shortcutList: (items: object[]) => void;
|
|
167
|
+
};
|
|
168
|
+
eventBus: {
|
|
169
|
+
on: (event: string, callback: (...args: unknown[]) => void) => void;
|
|
170
|
+
[key: string]: unknown;
|
|
171
|
+
};
|
|
172
|
+
override: object;
|
|
173
|
+
version: string;
|
|
174
|
+
destroy: () => void;
|
|
175
|
+
use: (plugin: object) => void;
|
|
176
|
+
};
|
|
177
|
+
type ICatalogItem = {
|
|
178
|
+
id: string;
|
|
179
|
+
name: string;
|
|
180
|
+
level: string;
|
|
181
|
+
pageNo: number;
|
|
182
|
+
subCatalog: ICatalogItem[];
|
|
183
|
+
};
|
|
184
|
+
type RangeStylePayload = {
|
|
185
|
+
type?: string;
|
|
186
|
+
font: string;
|
|
187
|
+
size: number;
|
|
188
|
+
bold: boolean;
|
|
189
|
+
italic: boolean;
|
|
190
|
+
underline: boolean;
|
|
191
|
+
strikeout: boolean;
|
|
192
|
+
color?: string;
|
|
193
|
+
highlight?: string;
|
|
194
|
+
rowFlex?: string;
|
|
195
|
+
rowMargin: number;
|
|
196
|
+
undo: boolean;
|
|
197
|
+
redo: boolean;
|
|
198
|
+
painter: boolean;
|
|
199
|
+
level?: string;
|
|
200
|
+
listType?: string;
|
|
201
|
+
dashArray: number[];
|
|
202
|
+
groupIds?: string[];
|
|
203
|
+
};
|
|
204
|
+
interface IComment {
|
|
205
|
+
id: string;
|
|
206
|
+
content: string;
|
|
207
|
+
userName: string;
|
|
208
|
+
rangeText: string;
|
|
209
|
+
createdDate: string;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
interface EditorOptions {
|
|
213
|
+
margins?: number[];
|
|
214
|
+
defaultBasicRowMarginHeight?: number;
|
|
215
|
+
watermark?: {
|
|
216
|
+
data: string;
|
|
217
|
+
size?: number;
|
|
218
|
+
color?: string;
|
|
219
|
+
opacity?: number;
|
|
220
|
+
};
|
|
221
|
+
header?: {
|
|
222
|
+
top?: number;
|
|
223
|
+
disabled?: boolean;
|
|
224
|
+
};
|
|
225
|
+
footer?: {
|
|
226
|
+
bottom?: number;
|
|
227
|
+
disabled?: boolean;
|
|
228
|
+
backgroundColor?: string;
|
|
229
|
+
};
|
|
230
|
+
pageNumber?: {
|
|
231
|
+
disabled?: boolean;
|
|
232
|
+
format?: string;
|
|
233
|
+
color?: string;
|
|
234
|
+
font?: string;
|
|
235
|
+
size?: number;
|
|
236
|
+
rowFlex?: string;
|
|
237
|
+
bottom?: number;
|
|
238
|
+
};
|
|
239
|
+
placeholder?: {
|
|
240
|
+
data: string;
|
|
241
|
+
};
|
|
242
|
+
zone?: {
|
|
243
|
+
tipDisabled?: boolean;
|
|
244
|
+
};
|
|
245
|
+
maskMargin?: number[];
|
|
246
|
+
scrollContainerSelector?: string;
|
|
247
|
+
[key: string]: unknown;
|
|
248
|
+
}
|
|
249
|
+
interface EditorData {
|
|
250
|
+
header?: object[];
|
|
251
|
+
main: object[];
|
|
252
|
+
footer?: object[];
|
|
253
|
+
}
|
|
254
|
+
interface EditorProps {
|
|
255
|
+
/** Initial document data */
|
|
256
|
+
defaultValue?: EditorData;
|
|
257
|
+
/** Editor configuration options */
|
|
258
|
+
options?: EditorOptions;
|
|
259
|
+
/** Called when editor content changes */
|
|
260
|
+
onChange?: (data: object) => void;
|
|
261
|
+
/** Called when editor instance is ready */
|
|
262
|
+
onReady?: (editor: EditorInstance) => void;
|
|
263
|
+
/** Show built-in toolbar (default: true) */
|
|
264
|
+
toolbar?: boolean;
|
|
265
|
+
/** Show built-in footer/statusbar (default: true) */
|
|
266
|
+
footer?: boolean;
|
|
267
|
+
/** Custom toolbar component to replace built-in one */
|
|
268
|
+
renderToolbar?: React$1.ReactNode;
|
|
269
|
+
/** Custom footer component to replace built-in one */
|
|
270
|
+
renderFooter?: React$1.ReactNode;
|
|
271
|
+
/** Additional content rendered inside EditorProvider (e.g. sidebars) */
|
|
272
|
+
children?: React$1.ReactNode;
|
|
273
|
+
/** CSS class for the editor container */
|
|
274
|
+
className?: string;
|
|
275
|
+
/** Inline style for the editor container */
|
|
276
|
+
style?: React$1.CSSProperties;
|
|
277
|
+
/** Enable drag-and-drop badge insertion */
|
|
278
|
+
onDrop?: (e: React$1.DragEvent, editor: EditorInstance) => void;
|
|
279
|
+
}
|
|
280
|
+
declare function Editor({ defaultValue, options: userOptions, onChange, onReady, toolbar, footer, renderToolbar, renderFooter, children, className, style, onDrop: userOnDrop, }: EditorProps): react_jsx_runtime.JSX.Element;
|
|
281
|
+
|
|
282
|
+
interface EditorContextValue {
|
|
283
|
+
editorRef: MutableRefObject<EditorInstance | null>;
|
|
284
|
+
isApple: boolean;
|
|
285
|
+
rangeStyle: RangeStylePayload | null;
|
|
286
|
+
}
|
|
287
|
+
declare function EditorProvider({ editorRef, rangeStyle, children }: {
|
|
288
|
+
editorRef: MutableRefObject<EditorInstance | null>;
|
|
289
|
+
rangeStyle: RangeStylePayload | null;
|
|
290
|
+
children: React.ReactNode;
|
|
291
|
+
}): react_jsx_runtime.JSX.Element;
|
|
292
|
+
declare function useEditor(): EditorContextValue;
|
|
293
|
+
|
|
294
|
+
interface FooterContextValue {
|
|
295
|
+
pageNoList: string;
|
|
296
|
+
pageNo: number;
|
|
297
|
+
pageSize: number;
|
|
298
|
+
wordCount: number;
|
|
299
|
+
rowNo: number;
|
|
300
|
+
colNo: number;
|
|
301
|
+
pageScale: number;
|
|
302
|
+
setPageNoList: (v: string) => void;
|
|
303
|
+
setPageNo: (v: number) => void;
|
|
304
|
+
setPageSize: (v: number) => void;
|
|
305
|
+
setWordCount: (v: number) => void;
|
|
306
|
+
setRowNo: (v: number) => void;
|
|
307
|
+
setColNo: (v: number) => void;
|
|
308
|
+
setPageScale: (v: number) => void;
|
|
309
|
+
handleToggleCatalogAction?: () => void;
|
|
310
|
+
}
|
|
311
|
+
declare function FooterProvider({ handleToggleCatalogAction, children }: {
|
|
312
|
+
handleToggleCatalogAction?: () => void;
|
|
313
|
+
children: React.ReactNode;
|
|
314
|
+
}): react_jsx_runtime.JSX.Element;
|
|
315
|
+
declare function useFooter(): FooterContextValue;
|
|
316
|
+
|
|
317
|
+
declare function EditorToolbar(): react_jsx_runtime.JSX.Element;
|
|
318
|
+
|
|
319
|
+
declare function EditorFooter(): react_jsx_runtime.JSX.Element;
|
|
320
|
+
|
|
321
|
+
declare function UndoTool(): react_jsx_runtime.JSX.Element;
|
|
322
|
+
|
|
323
|
+
declare function RedoTool(): react_jsx_runtime.JSX.Element;
|
|
324
|
+
|
|
325
|
+
declare function BoldTool(): react_jsx_runtime.JSX.Element;
|
|
326
|
+
|
|
327
|
+
declare function ItalicTool(): react_jsx_runtime.JSX.Element;
|
|
328
|
+
|
|
329
|
+
declare function UnderlineTool(): react_jsx_runtime.JSX.Element;
|
|
330
|
+
|
|
331
|
+
declare function StrikeoutTool(): react_jsx_runtime.JSX.Element;
|
|
332
|
+
|
|
333
|
+
declare function ColorTool(): react_jsx_runtime.JSX.Element;
|
|
334
|
+
|
|
335
|
+
declare function HighlightTool(): react_jsx_runtime.JSX.Element;
|
|
336
|
+
|
|
337
|
+
declare function FontTool(): react_jsx_runtime.JSX.Element;
|
|
338
|
+
|
|
339
|
+
declare function FontSizeTool(): react_jsx_runtime.JSX.Element;
|
|
340
|
+
|
|
341
|
+
declare function TitleTool(): react_jsx_runtime.JSX.Element;
|
|
342
|
+
|
|
343
|
+
declare function LineHeightTool(): react_jsx_runtime.JSX.Element;
|
|
344
|
+
|
|
345
|
+
declare function LeftAlignTool(): react_jsx_runtime.JSX.Element;
|
|
346
|
+
|
|
347
|
+
declare function CenterAlignTool(): react_jsx_runtime.JSX.Element;
|
|
348
|
+
|
|
349
|
+
declare function RightAlignTool(): react_jsx_runtime.JSX.Element;
|
|
350
|
+
|
|
351
|
+
declare function JustifyTool(): react_jsx_runtime.JSX.Element;
|
|
352
|
+
|
|
353
|
+
declare function ListTool(): react_jsx_runtime.JSX.Element;
|
|
354
|
+
|
|
355
|
+
declare function TableTool(): react_jsx_runtime.JSX.Element;
|
|
356
|
+
|
|
357
|
+
declare function ImageTool(): react_jsx_runtime.JSX.Element;
|
|
358
|
+
|
|
359
|
+
declare function ColumnTool(): react_jsx_runtime.JSX.Element;
|
|
360
|
+
|
|
361
|
+
declare function SeparatorTool(): react_jsx_runtime.JSX.Element;
|
|
362
|
+
|
|
363
|
+
declare function PageBreakTool(): react_jsx_runtime.JSX.Element;
|
|
364
|
+
|
|
365
|
+
declare function InsertElementTool(): react_jsx_runtime.JSX.Element;
|
|
366
|
+
|
|
367
|
+
declare function CatalogToggleTool(): react_jsx_runtime.JSX.Element;
|
|
368
|
+
|
|
369
|
+
declare function PageModeTool(): react_jsx_runtime.JSX.Element;
|
|
370
|
+
|
|
371
|
+
declare function FooterStatus(): react_jsx_runtime.JSX.Element;
|
|
372
|
+
|
|
373
|
+
declare function EditorModeTool(): react_jsx_runtime.JSX.Element;
|
|
374
|
+
|
|
375
|
+
declare function PageScaleMinusTool(): react_jsx_runtime.JSX.Element;
|
|
376
|
+
|
|
377
|
+
declare function PageScalePercentageTool(): react_jsx_runtime.JSX.Element;
|
|
378
|
+
|
|
379
|
+
declare function PageScaleAddTool(): react_jsx_runtime.JSX.Element;
|
|
380
|
+
|
|
381
|
+
declare function PaperSizeTool(): react_jsx_runtime.JSX.Element;
|
|
382
|
+
|
|
383
|
+
declare function PaperDirectionTool(): react_jsx_runtime.JSX.Element;
|
|
384
|
+
|
|
385
|
+
declare function PaperMarginTool(): react_jsx_runtime.JSX.Element;
|
|
386
|
+
|
|
387
|
+
declare function FullscreenTool(): react_jsx_runtime.JSX.Element;
|
|
388
|
+
|
|
389
|
+
declare function EditorOptionTool(): react_jsx_runtime.JSX.Element;
|
|
390
|
+
|
|
391
|
+
declare function WatermarkFooterTool(): react_jsx_runtime.JSX.Element;
|
|
392
|
+
|
|
393
|
+
export { BoldTool, CatalogToggleTool, CenterAlignTool, ColorTool, ColumnTool, Editor, EditorFooter, type EditorInstance, EditorModeTool, EditorOptionTool, EditorProvider, EditorToolbar, FontSizeTool, FontTool, FooterProvider, FooterStatus, FullscreenTool, HighlightTool, type ICatalogItem, type IComment, ImageTool, ItalicTool, JustifyTool, LeftAlignTool, LineHeightTool, ListTool, PageBreakTool, PageModeTool, PageScaleAddTool, PageScaleMinusTool, PageScalePercentageTool, PaperDirectionTool, PaperMarginTool, PaperSizeTool, type RangeStylePayload, RedoTool, RightAlignTool, SeparatorTool, StrikeoutTool, TableTool, TitleTool, UnderlineTool, UndoTool, WatermarkFooterTool, InsertElementTool as WatermarkTool, useEditor, useFooter };
|