@progress/kendo-react-editor 5.4.0-dev.202205200719 → 5.4.0-dev.202206061009
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/cdn/js/kendo-react-editor.js +1 -1
- package/dist/es/Editor.d.ts +5 -5
- package/dist/es/Editor.js +25 -11
- package/dist/es/EditorProps.d.ts +1 -1
- package/dist/es/EditorProps.js +1 -0
- package/dist/es/config/pasteSettings.js +1 -0
- package/dist/es/config/shortcuts.d.ts +6 -6
- package/dist/es/config/shortcuts.js +1 -1
- package/dist/es/config/toolsSettings.js +23 -14
- package/dist/es/dialogs/EditorDialogProps.js +1 -0
- package/dist/es/dialogs/FindReplace.d.ts +1 -1
- package/dist/es/dialogs/FindReplace.js +6 -5
- package/dist/es/dialogs/insertImage.d.ts +1 -1
- package/dist/es/dialogs/insertImage.js +13 -2
- package/dist/es/dialogs/insertLink.d.ts +1 -1
- package/dist/es/dialogs/insertLink.js +13 -2
- package/dist/es/dialogs/main.js +3 -1
- package/dist/es/dialogs/viewHtml.d.ts +1 -1
- package/dist/es/dialogs/viewHtml.js +13 -2
- package/dist/es/main.d.ts +3 -3
- package/dist/es/main.js +116 -29
- package/dist/es/messages/index.d.ts +78 -391
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/tools/ToolProps.d.ts +4 -1
- package/dist/es/tools/ToolProps.js +1 -0
- package/dist/es/tools/align.js +7 -3
- package/dist/es/tools/cleanFormatting.js +5 -3
- package/dist/es/tools/findReplace.d.ts +1 -1
- package/dist/es/tools/findReplace.js +7 -3
- package/dist/es/tools/fontStyle.js +7 -3
- package/dist/es/tools/formatBlock.js +7 -3
- package/dist/es/tools/indent.js +7 -3
- package/dist/es/tools/inlineFormat.js +7 -3
- package/dist/es/tools/insertImage.js +7 -3
- package/dist/es/tools/insertLink.js +7 -3
- package/dist/es/tools/insertTable/popup.js +3 -1
- package/dist/es/tools/insertTable/popupGrid.js +4 -2
- package/dist/es/tools/insertTable/tool.js +7 -3
- package/dist/es/tools/lists-styled.js +13 -4
- package/dist/es/tools/lists.js +7 -3
- package/dist/es/tools/main.d.ts +113 -112
- package/dist/es/tools/main.js +3 -1
- package/dist/es/tools/outdent.js +7 -3
- package/dist/es/tools/pdf.js +6 -4
- package/dist/es/tools/print.js +5 -3
- package/dist/es/tools/proseMirrorTool.js +7 -3
- package/dist/es/tools/selectAll.js +5 -3
- package/dist/es/tools/tableEdit.d.ts +8 -8
- package/dist/es/tools/unlink.js +7 -3
- package/dist/es/tools/utils.d.ts +1 -1
- package/dist/es/tools/viewHtml.js +7 -3
- package/dist/es/utils/controlled-value.d.ts +1 -2
- package/dist/npm/Editor.d.ts +5 -5
- package/dist/npm/Editor.js +35 -20
- package/dist/npm/EditorProps.d.ts +1 -1
- package/dist/npm/config/defaultStyles.js +1 -0
- package/dist/npm/config/schema.js +3 -2
- package/dist/npm/config/shortcuts.d.ts +6 -6
- package/dist/npm/config/shortcuts.js +7 -5
- package/dist/npm/config/toolsSettings.js +24 -14
- package/dist/npm/dialogs/FindReplace.d.ts +1 -1
- package/dist/npm/dialogs/FindReplace.js +15 -13
- package/dist/npm/dialogs/insertImage.d.ts +1 -1
- package/dist/npm/dialogs/insertImage.js +17 -5
- package/dist/npm/dialogs/insertLink.d.ts +1 -1
- package/dist/npm/dialogs/insertLink.js +18 -6
- package/dist/npm/dialogs/main.js +4 -1
- package/dist/npm/dialogs/viewHtml.d.ts +1 -1
- package/dist/npm/dialogs/viewHtml.js +19 -7
- package/dist/npm/main.d.ts +3 -3
- package/dist/npm/main.js +121 -33
- package/dist/npm/messages/index.d.ts +78 -391
- package/dist/npm/messages/index.js +2 -1
- package/dist/npm/package-metadata.js +2 -1
- package/dist/npm/tools/ToolProps.d.ts +4 -1
- package/dist/npm/tools/align.js +14 -8
- package/dist/npm/tools/applyColor.js +5 -3
- package/dist/npm/tools/cleanFormatting.js +10 -6
- package/dist/npm/tools/findReplace.d.ts +1 -1
- package/dist/npm/tools/findReplace.js +10 -5
- package/dist/npm/tools/fontStyle.js +12 -7
- package/dist/npm/tools/formatBlock.js +12 -7
- package/dist/npm/tools/history.js +3 -2
- package/dist/npm/tools/indent.js +16 -11
- package/dist/npm/tools/inlineFormat.js +12 -7
- package/dist/npm/tools/insertImage.js +13 -7
- package/dist/npm/tools/insertLink.js +11 -6
- package/dist/npm/tools/insertTable/index.js +3 -2
- package/dist/npm/tools/insertTable/popup.js +4 -1
- package/dist/npm/tools/insertTable/popupGrid.js +5 -3
- package/dist/npm/tools/insertTable/tool.js +13 -8
- package/dist/npm/tools/lists-styled.js +18 -7
- package/dist/npm/tools/lists.js +12 -7
- package/dist/npm/tools/main.d.ts +113 -112
- package/dist/npm/tools/main.js +4 -1
- package/dist/npm/tools/outdent.js +14 -9
- package/dist/npm/tools/pdf.js +10 -6
- package/dist/npm/tools/print.js +9 -5
- package/dist/npm/tools/proseMirrorTool.js +12 -6
- package/dist/npm/tools/selectAll.js +10 -6
- package/dist/npm/tools/tableEdit.d.ts +8 -8
- package/dist/npm/tools/tableEdit.js +14 -13
- package/dist/npm/tools/unlink.js +12 -7
- package/dist/npm/tools/utils.d.ts +1 -1
- package/dist/npm/tools/utils.js +1 -0
- package/dist/npm/tools/viewHtml.js +10 -5
- package/dist/npm/utils/browser-detection.js +1 -0
- package/dist/npm/utils/controlled-value.d.ts +1 -2
- package/dist/npm/utils/controlled-value.js +3 -1
- package/dist/npm/utils/index.js +37 -36
- package/dist/npm/utils/props-key.js +1 -0
- package/dist/systemjs/kendo-react-editor.js +1 -1
- package/package.json +13 -13
package/dist/npm/main.js
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EditorDialogs = exports.EditorUtils = exports.EditorToolsSettings = exports.EditorTools = exports.Editor = exports.ProseMirror = void 0;
|
|
3
4
|
var Editor_1 = require("./Editor");
|
|
4
|
-
exports
|
|
5
|
+
Object.defineProperty(exports, "Editor", { enumerable: true, get: function () { return Editor_1.Editor; } });
|
|
5
6
|
var main_1 = require("./tools/main");
|
|
6
|
-
exports
|
|
7
|
+
Object.defineProperty(exports, "EditorTools", { enumerable: true, get: function () { return main_1.EditorTools; } });
|
|
7
8
|
var toolsSettings_1 = require("./config/toolsSettings");
|
|
8
|
-
exports
|
|
9
|
+
Object.defineProperty(exports, "EditorToolsSettings", { enumerable: true, get: function () { return toolsSettings_1.EditorToolsSettings; } });
|
|
9
10
|
var utils_1 = require("./utils");
|
|
10
|
-
exports
|
|
11
|
+
Object.defineProperty(exports, "EditorUtils", { enumerable: true, get: function () { return utils_1.EditorUtils; } });
|
|
11
12
|
var main_2 = require("./dialogs/main");
|
|
12
|
-
exports
|
|
13
|
+
Object.defineProperty(exports, "EditorDialogs", { enumerable: true, get: function () { return main_2.EditorDialogs; } });
|
|
13
14
|
var kendo_editor_common_1 = require("@progress/kendo-editor-common");
|
|
14
15
|
/**
|
|
15
16
|
* An object containing the content of ProseMirror packages used at the Editor component.
|
|
@@ -29,52 +30,139 @@ var kendo_editor_common_1 = require("@progress/kendo-editor-common");
|
|
|
29
30
|
*/
|
|
30
31
|
exports.ProseMirror = {
|
|
31
32
|
// prosemirror-state
|
|
32
|
-
Selection: kendo_editor_common_1.Selection,
|
|
33
|
-
|
|
33
|
+
Selection: kendo_editor_common_1.Selection,
|
|
34
|
+
SelectionRange: kendo_editor_common_1.SelectionRange,
|
|
35
|
+
TextSelection: kendo_editor_common_1.TextSelection,
|
|
36
|
+
NodeSelection: kendo_editor_common_1.NodeSelection,
|
|
37
|
+
AllSelection: kendo_editor_common_1.AllSelection,
|
|
38
|
+
EditorState: kendo_editor_common_1.EditorState,
|
|
39
|
+
Plugin: kendo_editor_common_1.Plugin,
|
|
40
|
+
PluginKey: kendo_editor_common_1.PluginKey,
|
|
41
|
+
Transaction: kendo_editor_common_1.Transaction,
|
|
34
42
|
// prosemirror-view
|
|
35
|
-
Decoration: kendo_editor_common_1.Decoration,
|
|
43
|
+
Decoration: kendo_editor_common_1.Decoration,
|
|
44
|
+
DecorationSet: kendo_editor_common_1.DecorationSet,
|
|
36
45
|
EditorView: kendo_editor_common_1.EditorView,
|
|
37
46
|
// prosemirror-model
|
|
38
|
-
Node: kendo_editor_common_1.Node,
|
|
39
|
-
|
|
47
|
+
Node: kendo_editor_common_1.Node,
|
|
48
|
+
ResolvedPos: kendo_editor_common_1.ResolvedPos,
|
|
49
|
+
NodeRange: kendo_editor_common_1.NodeRange,
|
|
50
|
+
Fragment: kendo_editor_common_1.Fragment,
|
|
51
|
+
Slice: kendo_editor_common_1.Slice,
|
|
52
|
+
ReplaceError: kendo_editor_common_1.ReplaceError,
|
|
53
|
+
Mark: kendo_editor_common_1.Mark,
|
|
54
|
+
Schema: kendo_editor_common_1.Schema,
|
|
55
|
+
NodeType: kendo_editor_common_1.NodeType,
|
|
56
|
+
MarkType: kendo_editor_common_1.MarkType,
|
|
57
|
+
ContentMatch: kendo_editor_common_1.ContentMatch,
|
|
58
|
+
DOMParser: kendo_editor_common_1.DOMParser,
|
|
59
|
+
DOMSerializer: kendo_editor_common_1.DOMSerializer,
|
|
40
60
|
// prosemirror-transform
|
|
41
|
-
Transform: kendo_editor_common_1.Transform,
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
61
|
+
Transform: kendo_editor_common_1.Transform,
|
|
62
|
+
Step: kendo_editor_common_1.Step,
|
|
63
|
+
StepResult: kendo_editor_common_1.StepResult,
|
|
64
|
+
joinPoint: kendo_editor_common_1.joinPoint,
|
|
65
|
+
canJoin: kendo_editor_common_1.canJoin,
|
|
66
|
+
canSplit: kendo_editor_common_1.canSplit,
|
|
67
|
+
insertPoint: kendo_editor_common_1.insertPoint,
|
|
68
|
+
dropPoint: kendo_editor_common_1.dropPoint,
|
|
69
|
+
liftTarget: kendo_editor_common_1.liftTarget,
|
|
70
|
+
findWrapping: kendo_editor_common_1.findWrapping,
|
|
71
|
+
StepMap: kendo_editor_common_1.StepMap,
|
|
72
|
+
MapResult: kendo_editor_common_1.MapResult,
|
|
73
|
+
Mapping: kendo_editor_common_1.Mapping,
|
|
74
|
+
AddMarkStep: kendo_editor_common_1.AddMarkStep,
|
|
75
|
+
RemoveMarkStep: kendo_editor_common_1.RemoveMarkStep,
|
|
76
|
+
ReplaceStep: kendo_editor_common_1.ReplaceStep,
|
|
77
|
+
ReplaceAroundStep: kendo_editor_common_1.ReplaceAroundStep,
|
|
78
|
+
replaceStep: kendo_editor_common_1.replaceStep,
|
|
46
79
|
// prosemirror-commands
|
|
47
|
-
deleteSelection: kendo_editor_common_1.deleteSelection,
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
80
|
+
deleteSelection: kendo_editor_common_1.deleteSelection,
|
|
81
|
+
joinBackward: kendo_editor_common_1.joinBackward,
|
|
82
|
+
selectNodeBackward: kendo_editor_common_1.selectNodeBackward,
|
|
83
|
+
joinForward: kendo_editor_common_1.joinForward,
|
|
84
|
+
selectNodeForward: kendo_editor_common_1.selectNodeForward,
|
|
85
|
+
joinUp: kendo_editor_common_1.joinUp,
|
|
86
|
+
joinDown: kendo_editor_common_1.joinDown,
|
|
87
|
+
lift: kendo_editor_common_1.lift,
|
|
88
|
+
newlineInCode: kendo_editor_common_1.newlineInCode,
|
|
89
|
+
exitCode: kendo_editor_common_1.exitCode,
|
|
90
|
+
createParagraphNear: kendo_editor_common_1.createParagraphNear,
|
|
91
|
+
liftEmptyBlock: kendo_editor_common_1.liftEmptyBlock,
|
|
92
|
+
splitBlock: kendo_editor_common_1.splitBlock,
|
|
93
|
+
splitBlockKeepMarks: kendo_editor_common_1.splitBlockKeepMarks,
|
|
94
|
+
selectParentNode: kendo_editor_common_1.selectParentNode,
|
|
95
|
+
selectAll: kendo_editor_common_1.selectAll,
|
|
96
|
+
wrapIn: kendo_editor_common_1.wrapIn,
|
|
97
|
+
setBlockType: kendo_editor_common_1.setBlockType,
|
|
98
|
+
toggleMark: kendo_editor_common_1.toggleMark,
|
|
99
|
+
autoJoin: kendo_editor_common_1.autoJoin,
|
|
100
|
+
chainCommands: kendo_editor_common_1.chainCommands,
|
|
101
|
+
pcBaseKeymap: kendo_editor_common_1.pcBaseKeymap,
|
|
102
|
+
macBaseKeymap: kendo_editor_common_1.macBaseKeymap,
|
|
103
|
+
baseKeymap: kendo_editor_common_1.baseKeymap,
|
|
51
104
|
// prosemirror-history
|
|
52
|
-
history: kendo_editor_common_1.history,
|
|
105
|
+
history: kendo_editor_common_1.history,
|
|
106
|
+
undo: kendo_editor_common_1.undo,
|
|
107
|
+
redo: kendo_editor_common_1.redo,
|
|
108
|
+
undoDepth: kendo_editor_common_1.undoDepth,
|
|
109
|
+
redoDepth: kendo_editor_common_1.redoDepth,
|
|
53
110
|
// prosemirror-inputrules
|
|
54
|
-
InputRule: kendo_editor_common_1.InputRule,
|
|
55
|
-
|
|
56
|
-
|
|
111
|
+
InputRule: kendo_editor_common_1.InputRule,
|
|
112
|
+
inputRules: kendo_editor_common_1.inputRules,
|
|
113
|
+
undoInputRule: kendo_editor_common_1.undoInputRule,
|
|
114
|
+
emDash: kendo_editor_common_1.emDash,
|
|
115
|
+
ellipsis: kendo_editor_common_1.ellipsis,
|
|
116
|
+
openDoubleQuote: kendo_editor_common_1.openDoubleQuote,
|
|
117
|
+
closeDoubleQuote: kendo_editor_common_1.closeDoubleQuote,
|
|
118
|
+
openSingleQuote: kendo_editor_common_1.openSingleQuote,
|
|
119
|
+
closeSingleQuote: kendo_editor_common_1.closeSingleQuote,
|
|
120
|
+
smartQuotes: kendo_editor_common_1.smartQuotes,
|
|
121
|
+
wrappingInputRule: kendo_editor_common_1.wrappingInputRule,
|
|
122
|
+
textblockTypeInputRule: kendo_editor_common_1.textblockTypeInputRule,
|
|
57
123
|
// prosemirror-keymap
|
|
58
|
-
keymap: kendo_editor_common_1.keymap,
|
|
124
|
+
keymap: kendo_editor_common_1.keymap,
|
|
125
|
+
keydownHandler: kendo_editor_common_1.keydownHandler,
|
|
59
126
|
// prosemirror-schema-list
|
|
60
|
-
orderedList: kendo_editor_common_1.orderedList,
|
|
61
|
-
|
|
127
|
+
orderedList: kendo_editor_common_1.orderedList,
|
|
128
|
+
bulletList: kendo_editor_common_1.bulletList,
|
|
129
|
+
listItem: kendo_editor_common_1.listItem,
|
|
130
|
+
addListNodes: kendo_editor_common_1.addListNodes,
|
|
131
|
+
wrapInList: kendo_editor_common_1.wrapInList,
|
|
132
|
+
splitListItem: kendo_editor_common_1.splitListItem,
|
|
133
|
+
liftListItem: kendo_editor_common_1.liftListItem,
|
|
134
|
+
sinkListItem: kendo_editor_common_1.sinkListItem,
|
|
62
135
|
// prosemirror-dropcursor
|
|
63
136
|
dropCursor: kendo_editor_common_1.dropCursor,
|
|
64
137
|
// prosemirror-gapcursor
|
|
65
138
|
gapCursor: kendo_editor_common_1.gapCursor,
|
|
66
139
|
// prosemirror-tables
|
|
67
|
-
tableEditing: kendo_editor_common_1.tableEditing,
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
140
|
+
tableEditing: kendo_editor_common_1.tableEditing,
|
|
141
|
+
fixTables: kendo_editor_common_1.fixTables,
|
|
142
|
+
fixTablesKey: kendo_editor_common_1.fixTablesKey,
|
|
143
|
+
cellAround: kendo_editor_common_1.cellAround,
|
|
144
|
+
isInTable: kendo_editor_common_1.isInTable,
|
|
145
|
+
selectionCell: kendo_editor_common_1.selectionCell,
|
|
146
|
+
moveCellForward: kendo_editor_common_1.moveCellForward,
|
|
147
|
+
inSameTable: kendo_editor_common_1.inSameTable,
|
|
148
|
+
findCell: kendo_editor_common_1.findCell,
|
|
149
|
+
colCount: kendo_editor_common_1.colCount,
|
|
150
|
+
nextCell: kendo_editor_common_1.nextCell,
|
|
151
|
+
removeColSpan: kendo_editor_common_1.removeColSpan,
|
|
152
|
+
addColSpan: kendo_editor_common_1.addColSpan,
|
|
153
|
+
columnIsHeader: kendo_editor_common_1.columnIsHeader,
|
|
154
|
+
tableNodes: kendo_editor_common_1.tableNodes,
|
|
155
|
+
tableNodeTypes: kendo_editor_common_1.tableNodeTypes,
|
|
71
156
|
CellSelection: kendo_editor_common_1.CellSelection,
|
|
72
157
|
TableMap: kendo_editor_common_1.TableMap,
|
|
73
158
|
tableEditingKey: kendo_editor_common_1.tableEditingKey,
|
|
74
|
-
columnResizing: kendo_editor_common_1.columnResizing,
|
|
159
|
+
columnResizing: kendo_editor_common_1.columnResizing,
|
|
160
|
+
columnResizingPluginKey: kendo_editor_common_1.columnResizingPluginKey,
|
|
75
161
|
updateColumnsOnResize: kendo_editor_common_1.updateColumnsOnResize,
|
|
76
|
-
selectedRect: kendo_editor_common_1.selectedRect,
|
|
77
|
-
|
|
162
|
+
selectedRect: kendo_editor_common_1.selectedRect,
|
|
163
|
+
addColumn: kendo_editor_common_1.addColumn,
|
|
164
|
+
addColumnBefore: kendo_editor_common_1.addColumnBefore,
|
|
165
|
+
addColumnAfter: kendo_editor_common_1.addColumnAfter,
|
|
78
166
|
deleteColumn: kendo_editor_common_1.deleteColumn,
|
|
79
167
|
rowIsHeader: kendo_editor_common_1.rowIsHeader,
|
|
80
168
|
addRow: kendo_editor_common_1.addRow,
|
|
@@ -1,397 +1,85 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @hidden
|
|
3
|
-
*/
|
|
4
|
-
declare const bold = "editor.bold";
|
|
5
|
-
/**
|
|
6
|
-
* @hidden
|
|
7
|
-
*/
|
|
8
|
-
declare const italic = "editor.italic";
|
|
9
|
-
/**
|
|
10
|
-
* @hidden
|
|
11
|
-
*/
|
|
12
|
-
declare const underline = "editor.underline";
|
|
13
|
-
/**
|
|
14
|
-
* @hidden
|
|
15
|
-
*/
|
|
16
|
-
declare const strikethrough = "editor.strikethrough";
|
|
17
|
-
/**
|
|
18
|
-
* @hidden
|
|
19
|
-
*/
|
|
20
|
-
declare const subscript = "editor.subscript";
|
|
21
|
-
/**
|
|
22
|
-
* @hidden
|
|
23
|
-
*/
|
|
24
|
-
declare const superscript = "editor.superscript";
|
|
25
|
-
/**
|
|
26
|
-
* @hidden
|
|
27
|
-
*/
|
|
28
|
-
declare const insertHyperlink = "editor.hyperlink";
|
|
29
|
-
/**
|
|
30
|
-
* @hidden
|
|
31
|
-
*/
|
|
32
|
-
declare const insertFile = "editor.insertFile";
|
|
33
|
-
/**
|
|
34
|
-
* @hidden
|
|
35
|
-
*/
|
|
36
|
-
declare const print = "editor.print";
|
|
37
|
-
/**
|
|
38
|
-
* @hidden
|
|
39
|
-
*/
|
|
40
|
-
declare const selectAll = "editor.selectAll";
|
|
41
|
-
/**
|
|
42
|
-
* @hidden
|
|
43
|
-
*/
|
|
44
|
-
declare const cleanFormatting = "editor.cleanFormatting";
|
|
45
|
-
/**
|
|
46
|
-
* @hidden
|
|
47
|
-
*/
|
|
48
|
-
declare const pdf = "editor.pdf";
|
|
49
|
-
/**
|
|
50
|
-
* @hidden
|
|
51
|
-
*/
|
|
52
|
-
declare const foregroundColor = "editor.foregroundColor";
|
|
53
|
-
/**
|
|
54
|
-
* @hidden
|
|
55
|
-
*/
|
|
56
|
-
declare const backgroundColor = "editor.backgroundColor";
|
|
57
|
-
/**
|
|
58
|
-
* @hidden
|
|
59
|
-
*/
|
|
60
|
-
declare const createTable = "editor.createTable";
|
|
61
|
-
/**
|
|
62
|
-
* @hidden
|
|
63
|
-
*/
|
|
64
|
-
declare const createTableHint = "editor.insertTableHint";
|
|
65
|
-
/**
|
|
66
|
-
* @hidden
|
|
67
|
-
*/
|
|
68
|
-
declare const addRowBefore = "editor.addRowBefore";
|
|
69
|
-
/**
|
|
70
|
-
* @hidden
|
|
71
|
-
*/
|
|
72
|
-
declare const addRowAfter = "editor.addRowAfter";
|
|
73
|
-
/**
|
|
74
|
-
* @hidden
|
|
75
|
-
*/
|
|
76
|
-
declare const addColumnBefore = "editor.addColumnBefore";
|
|
77
|
-
/**
|
|
78
|
-
* @hidden
|
|
79
|
-
*/
|
|
80
|
-
declare const addColumnAfter = "editor.addColumnAfter";
|
|
81
|
-
/**
|
|
82
|
-
* @hidden
|
|
83
|
-
*/
|
|
84
|
-
declare const deleteRow = "editor.deleteRow";
|
|
85
|
-
/**
|
|
86
|
-
* @hidden
|
|
87
|
-
*/
|
|
88
|
-
declare const deleteColumn = "editor.deleteColumn";
|
|
89
|
-
/**
|
|
90
|
-
* @hidden
|
|
91
|
-
*/
|
|
92
|
-
declare const deleteTable = "editor.deleteTable";
|
|
93
|
-
/**
|
|
94
|
-
* @hidden
|
|
95
|
-
*/
|
|
96
|
-
declare const mergeCells = "editor.mergeCells";
|
|
97
|
-
/**
|
|
98
|
-
* @hidden
|
|
99
|
-
*/
|
|
100
|
-
declare const splitCell = "editor.splitCell";
|
|
101
|
-
/**
|
|
102
|
-
* @hidden
|
|
103
|
-
*/
|
|
104
|
-
declare const insertHyperlinkDialogTitle = "editor.hyperlink-dialog-title";
|
|
105
|
-
/**
|
|
106
|
-
* @hidden
|
|
107
|
-
*/
|
|
108
|
-
declare const insertHyperlinkAddress = "editor.hyperlink-dialog-content-address";
|
|
109
|
-
/**
|
|
110
|
-
* @hidden
|
|
111
|
-
*/
|
|
112
|
-
declare const insertHyperlinkTitle = "editor.hyperlink-dialog-content-title";
|
|
113
|
-
/**
|
|
114
|
-
* @hidden
|
|
115
|
-
*/
|
|
116
|
-
declare const insertHyperlinkNewWindow = "editor.hyperlink-dialog-content-newwindow";
|
|
117
|
-
/**
|
|
118
|
-
* @hidden
|
|
119
|
-
*/
|
|
120
|
-
declare const insertHyperlinkCancel = "editor.hyperlink-dialog-cancel";
|
|
121
|
-
/**
|
|
122
|
-
* @hidden
|
|
123
|
-
*/
|
|
124
|
-
declare const insertHyperlinkInsert = "editor.hyperlink-dialog-insert";
|
|
125
|
-
/**
|
|
126
|
-
* @hidden
|
|
127
|
-
*/
|
|
128
|
-
declare const insertFileDialogTitle = "editor.insertfile-dialog-title";
|
|
129
|
-
/**
|
|
130
|
-
* @hidden
|
|
131
|
-
*/
|
|
132
|
-
declare const insertFileAddress = "editor.insertfile-dialog-content-address";
|
|
133
|
-
/**
|
|
134
|
-
* @hidden
|
|
135
|
-
*/
|
|
136
|
-
declare const insertFileTitle = "editor.insertfile-dialog-content-title";
|
|
137
|
-
/**
|
|
138
|
-
* @hidden
|
|
139
|
-
*/
|
|
140
|
-
declare const insertFileCancel = "editor.insertfile-dialog-cancel";
|
|
141
|
-
/**
|
|
142
|
-
* @hidden
|
|
143
|
-
*/
|
|
144
|
-
declare const insertFileInsert = "editor.insertfile-dialog-insert";
|
|
145
|
-
/**
|
|
146
|
-
* @hidden
|
|
147
|
-
*/
|
|
148
|
-
declare const insertImage = "editor.image";
|
|
149
|
-
/**
|
|
150
|
-
* @hidden
|
|
151
|
-
*/
|
|
152
|
-
declare const insertImageDialogTitle = "editor.image-dialog-title";
|
|
153
|
-
/**
|
|
154
|
-
* @hidden
|
|
155
|
-
*/
|
|
156
|
-
declare const insertImageAddress = "editor.image-address";
|
|
157
|
-
/**
|
|
158
|
-
* @hidden
|
|
159
|
-
*/
|
|
160
|
-
declare const insertImageTitle = "editor.image-title";
|
|
161
|
-
/**
|
|
162
|
-
* @hidden
|
|
163
|
-
*/
|
|
164
|
-
declare const insertImageAltText = "editor.image-altText";
|
|
165
|
-
/**
|
|
166
|
-
* @hidden
|
|
167
|
-
*/
|
|
168
|
-
declare const insertImageWidth = "editor.image-width";
|
|
169
|
-
/**
|
|
170
|
-
* @hidden
|
|
171
|
-
*/
|
|
172
|
-
declare const insertImageHeight = "editor.image-height";
|
|
173
|
-
/**
|
|
174
|
-
* @hidden
|
|
175
|
-
*/
|
|
176
|
-
declare const insertImageCancel = "editor.image-cancel";
|
|
177
|
-
/**
|
|
178
|
-
* @hidden
|
|
179
|
-
*/
|
|
180
|
-
declare const insertImageInsert = "editor.image-insert";
|
|
181
|
-
/**
|
|
182
|
-
* @hidden
|
|
183
|
-
*/
|
|
184
|
-
declare const viewHtml = "editor.viewHtml";
|
|
185
|
-
/**
|
|
186
|
-
* @hidden
|
|
187
|
-
*/
|
|
188
|
-
declare const viewHtmlDialogTitle = "editor.viewHtml-dialog-title";
|
|
189
|
-
/**
|
|
190
|
-
* @hidden
|
|
191
|
-
*/
|
|
192
|
-
declare const viewHtmlCancel = "editor.viewHtml-cancel";
|
|
193
|
-
/**
|
|
194
|
-
* @hidden
|
|
195
|
-
*/
|
|
196
|
-
declare const viewHtmlUpdate = "editor.viewHtml-update";
|
|
197
|
-
/**
|
|
198
|
-
* @hidden
|
|
199
|
-
*/
|
|
200
|
-
declare const unlink = "editor.unlink";
|
|
201
|
-
/**
|
|
202
|
-
* @hidden
|
|
203
|
-
*/
|
|
204
|
-
declare const undo = "editor.undo";
|
|
205
|
-
/**
|
|
206
|
-
* @hidden
|
|
207
|
-
*/
|
|
208
|
-
declare const redo = "editor.redo";
|
|
209
|
-
/**
|
|
210
|
-
* @hidden
|
|
211
|
-
*/
|
|
212
|
-
declare const fontSize = "editor.fontSize";
|
|
213
|
-
/**
|
|
214
|
-
* @hidden
|
|
215
|
-
*/
|
|
216
|
-
declare const fontName = "editor.fontName";
|
|
217
|
-
/**
|
|
218
|
-
* @hidden
|
|
219
|
-
*/
|
|
220
|
-
declare const format = "editor.format";
|
|
221
|
-
/**
|
|
222
|
-
* @hidden
|
|
223
|
-
*/
|
|
224
|
-
declare const alignLeft = "editor.alignLeft";
|
|
225
|
-
/**
|
|
226
|
-
* @hidden
|
|
227
|
-
*/
|
|
228
|
-
declare const alignRight = "editor.alignRight";
|
|
229
|
-
/**
|
|
230
|
-
* @hidden
|
|
231
|
-
*/
|
|
232
|
-
declare const alignCenter = "editor.alignCenter";
|
|
233
|
-
/**
|
|
234
|
-
* @hidden
|
|
235
|
-
*/
|
|
236
|
-
declare const alignJustify = "editor.alignJustify";
|
|
237
|
-
/**
|
|
238
|
-
* @hidden
|
|
239
|
-
*/
|
|
240
|
-
declare const indent = "editor.indent";
|
|
241
|
-
/**
|
|
242
|
-
* @hidden
|
|
243
|
-
*/
|
|
244
|
-
declare const outdent = "editor.outdent";
|
|
245
|
-
/**
|
|
246
|
-
* @hidden
|
|
247
|
-
*/
|
|
248
|
-
declare const orderedList = "editor.orderedList";
|
|
249
|
-
/**
|
|
250
|
-
* @hidden
|
|
251
|
-
*/
|
|
252
|
-
declare const bulletList = "editor.bulletList";
|
|
253
|
-
/**
|
|
254
|
-
* @hidden
|
|
255
|
-
*/
|
|
256
|
-
declare const findReplaceToolTitle = "editor.findReplace-tool-title";
|
|
257
|
-
/**
|
|
258
|
-
* @hidden
|
|
259
|
-
*/
|
|
260
|
-
declare const findReplaceDialogTitle = "editor.findReplace-dialog-title";
|
|
261
|
-
/**
|
|
262
|
-
* @hidden
|
|
263
|
-
*/
|
|
264
|
-
declare const findReplaceTabFind = "editor.findReplace-tab-find";
|
|
265
|
-
/**
|
|
266
|
-
* @hidden
|
|
267
|
-
*/
|
|
268
|
-
declare const findReplaceTabReplace = "editor.findReplace-tab-replace";
|
|
269
|
-
/**
|
|
270
|
-
* @hidden
|
|
271
|
-
*/
|
|
272
|
-
declare const findReplaceFindWhat = "editor.findReplace-findWhat";
|
|
273
|
-
/**
|
|
274
|
-
* @hidden
|
|
275
|
-
*/
|
|
276
|
-
declare const findReplaceReplaceWith = "editor.findReplace-replaceWith";
|
|
277
|
-
/**
|
|
278
|
-
* @hidden
|
|
279
|
-
*/
|
|
280
|
-
declare const findReplaceReplace = "editor.findReplace-replace";
|
|
281
|
-
/**
|
|
282
|
-
* @hidden
|
|
283
|
-
*/
|
|
284
|
-
declare const findReplaceReplaceAll = "editor.findReplace-replaceAll";
|
|
285
|
-
/**
|
|
286
|
-
* @hidden
|
|
287
|
-
*/
|
|
288
|
-
declare const findReplaceMatchCase = "editor.findReplace-matchCase";
|
|
289
|
-
/**
|
|
290
|
-
* @hidden
|
|
291
|
-
*/
|
|
292
|
-
declare const findReplaceMatchWord = "editor.findReplace-matchWord";
|
|
293
|
-
/**
|
|
294
|
-
* @hidden
|
|
295
|
-
*/
|
|
296
|
-
declare const findReplaceMatchCyclic = "editor.findReplace-matchCyclic";
|
|
297
|
-
/**
|
|
298
|
-
* @hidden
|
|
299
|
-
*/
|
|
300
|
-
declare const findReplaceUseRegExp = "editor.findReplace-useRegExp";
|
|
301
|
-
/**
|
|
302
|
-
* @hidden
|
|
303
|
-
*/
|
|
304
|
-
declare const findReplacePrevMatch = "editor.findReplace-prevMatch";
|
|
305
|
-
/**
|
|
306
|
-
* @hidden
|
|
307
|
-
*/
|
|
308
|
-
declare const findReplaceNextMatch = "editor.findReplace-nextMatch";
|
|
309
|
-
/**
|
|
310
|
-
* @hidden
|
|
311
|
-
*/
|
|
312
|
-
declare const findReplaceMatches = "editor.findReplace-matches";
|
|
313
1
|
/**
|
|
314
2
|
* @hidden
|
|
315
3
|
*/
|
|
316
4
|
export declare const messages: {
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
5
|
+
"editor.bold": string;
|
|
6
|
+
"editor.italic": string;
|
|
7
|
+
"editor.underline": string;
|
|
8
|
+
"editor.strikethrough": string;
|
|
9
|
+
"editor.subscript": string;
|
|
10
|
+
"editor.superscript": string;
|
|
11
|
+
"editor.unlink": string;
|
|
12
|
+
"editor.undo": string;
|
|
13
|
+
"editor.redo": string;
|
|
14
|
+
"editor.fontSize": string;
|
|
15
|
+
"editor.fontName": string;
|
|
16
|
+
"editor.format": string;
|
|
17
|
+
"editor.alignLeft": string;
|
|
18
|
+
"editor.alignRight": string;
|
|
19
|
+
"editor.alignCenter": string;
|
|
20
|
+
"editor.alignJustify": string;
|
|
21
|
+
"editor.indent": string;
|
|
22
|
+
"editor.outdent": string;
|
|
23
|
+
"editor.orderedList": string;
|
|
24
|
+
"editor.bulletList": string;
|
|
25
|
+
"editor.print": string;
|
|
26
|
+
"editor.selectAll": string;
|
|
27
|
+
"editor.cleanFormatting": string;
|
|
28
|
+
"editor.pdf": string;
|
|
29
|
+
"editor.foregroundColor": string;
|
|
30
|
+
"editor.backgroundColor": string;
|
|
31
|
+
"editor.createTable": string;
|
|
32
|
+
"editor.insertTableHint": string;
|
|
33
|
+
"editor.addRowBefore": string;
|
|
34
|
+
"editor.addRowAfter": string;
|
|
35
|
+
"editor.addColumnBefore": string;
|
|
36
|
+
"editor.addColumnAfter": string;
|
|
37
|
+
"editor.deleteRow": string;
|
|
38
|
+
"editor.deleteColumn": string;
|
|
39
|
+
"editor.deleteTable": string;
|
|
40
|
+
"editor.mergeCells": string;
|
|
41
|
+
"editor.splitCell": string;
|
|
42
|
+
"editor.hyperlink": string;
|
|
43
|
+
"editor.hyperlink-dialog-title": string;
|
|
44
|
+
"editor.hyperlink-dialog-content-address": string;
|
|
45
|
+
"editor.hyperlink-dialog-content-title": string;
|
|
46
|
+
"editor.hyperlink-dialog-content-newwindow": string;
|
|
47
|
+
"editor.hyperlink-dialog-cancel": string;
|
|
48
|
+
"editor.hyperlink-dialog-insert": string;
|
|
49
|
+
"editor.insertFile": string;
|
|
50
|
+
"editor.insertfile-dialog-title": string;
|
|
51
|
+
"editor.insertfile-dialog-content-address": string;
|
|
52
|
+
"editor.insertfile-dialog-content-title": string;
|
|
53
|
+
"editor.insertfile-dialog-cancel": string;
|
|
54
|
+
"editor.insertfile-dialog-insert": string;
|
|
55
|
+
"editor.image": string;
|
|
56
|
+
"editor.image-dialog-title": string;
|
|
57
|
+
"editor.image-address": string;
|
|
58
|
+
"editor.image-title": string;
|
|
59
|
+
"editor.image-altText": string;
|
|
60
|
+
"editor.image-width": string;
|
|
61
|
+
"editor.image-height": string;
|
|
62
|
+
"editor.image-cancel": string;
|
|
63
|
+
"editor.image-insert": string;
|
|
64
|
+
"editor.viewHtml": string;
|
|
65
|
+
"editor.viewHtml-dialog-title": string;
|
|
66
|
+
"editor.viewHtml-cancel": string;
|
|
67
|
+
"editor.viewHtml-update": string;
|
|
68
|
+
"editor.findReplace-tool-title": string;
|
|
69
|
+
"editor.findReplace-dialog-title": string;
|
|
70
|
+
"editor.findReplace-tab-find": string;
|
|
71
|
+
"editor.findReplace-tab-replace": string;
|
|
72
|
+
"editor.findReplace-findWhat": string;
|
|
73
|
+
"editor.findReplace-replaceWith": string;
|
|
74
|
+
"editor.findReplace-replace": string;
|
|
75
|
+
"editor.findReplace-replaceAll": string;
|
|
76
|
+
"editor.findReplace-matchCase": string;
|
|
77
|
+
"editor.findReplace-matchWord": string;
|
|
78
|
+
"editor.findReplace-matchCyclic": string;
|
|
79
|
+
"editor.findReplace-useRegExp": string;
|
|
80
|
+
"editor.findReplace-prevMatch": string;
|
|
81
|
+
"editor.findReplace-nextMatch": string;
|
|
82
|
+
"editor.findReplace-matches": string;
|
|
395
83
|
};
|
|
396
84
|
/**
|
|
397
85
|
* @hidden
|
|
@@ -476,4 +164,3 @@ export declare const keys: {
|
|
|
476
164
|
findReplaceNextMatch: string;
|
|
477
165
|
findReplaceMatches: string;
|
|
478
166
|
};
|
|
479
|
-
export {};
|