@progress/kendo-react-editor 5.4.0-dev.202205180853 → 5.4.0-dev.202205271059
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 +16 -9
- 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.js +1 -1
- package/dist/es/config/toolsSettings.js +19 -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 +3 -1
- package/dist/es/dialogs/insertLink.d.ts +1 -1
- package/dist/es/dialogs/insertLink.js +3 -1
- package/dist/es/dialogs/main.js +3 -1
- package/dist/es/dialogs/viewHtml.d.ts +1 -1
- package/dist/es/dialogs/viewHtml.js +3 -1
- package/dist/es/main.d.ts +1 -1
- 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 +4 -2
- 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 +3 -1
- package/dist/es/tools/insertTable/tool.js +7 -3
- package/dist/es/tools/lists-styled.js +9 -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 +5 -3
- package/dist/es/tools/print.js +4 -2
- package/dist/es/tools/proseMirrorTool.js +7 -3
- package/dist/es/tools/selectAll.js +4 -2
- 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 +17 -9
- 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.js +4 -2
- package/dist/npm/config/toolsSettings.js +20 -14
- package/dist/npm/dialogs/FindReplace.d.ts +1 -1
- package/dist/npm/dialogs/FindReplace.js +7 -5
- package/dist/npm/dialogs/insertImage.d.ts +1 -1
- package/dist/npm/dialogs/insertImage.js +4 -1
- package/dist/npm/dialogs/insertLink.d.ts +1 -1
- package/dist/npm/dialogs/insertLink.js +4 -1
- package/dist/npm/dialogs/main.js +4 -1
- package/dist/npm/dialogs/viewHtml.d.ts +1 -1
- package/dist/npm/dialogs/viewHtml.js +4 -1
- package/dist/npm/main.d.ts +1 -1
- 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 +10 -4
- package/dist/npm/tools/applyColor.js +3 -1
- package/dist/npm/tools/cleanFormatting.js +7 -3
- package/dist/npm/tools/findReplace.js +8 -3
- package/dist/npm/tools/fontStyle.js +8 -3
- package/dist/npm/tools/formatBlock.js +8 -3
- package/dist/npm/tools/history.js +1 -0
- package/dist/npm/tools/indent.js +8 -3
- package/dist/npm/tools/inlineFormat.js +8 -3
- package/dist/npm/tools/insertImage.js +10 -4
- package/dist/npm/tools/insertLink.js +8 -3
- 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 +3 -1
- package/dist/npm/tools/insertTable/tool.js +8 -3
- package/dist/npm/tools/lists-styled.js +12 -5
- package/dist/npm/tools/lists.js +8 -3
- package/dist/npm/tools/main.d.ts +113 -112
- package/dist/npm/tools/main.js +4 -1
- package/dist/npm/tools/outdent.js +8 -3
- package/dist/npm/tools/pdf.js +8 -4
- package/dist/npm/tools/print.js +7 -3
- package/dist/npm/tools/proseMirrorTool.js +10 -4
- package/dist/npm/tools/selectAll.js +7 -3
- package/dist/npm/tools/tableEdit.d.ts +8 -8
- package/dist/npm/tools/tableEdit.js +1 -0
- package/dist/npm/tools/unlink.js +8 -3
- package/dist/npm/tools/utils.d.ts +1 -1
- package/dist/npm/tools/utils.js +1 -0
- package/dist/npm/tools/viewHtml.js +8 -3
- 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 +1 -0
- package/dist/npm/utils/props-key.js +1 -0
- package/dist/systemjs/kendo-react-editor.js +1 -1
- package/package.json +12 -12
|
@@ -3,16 +3,19 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
3
3
|
var extendStatics = function (d, b) {
|
|
4
4
|
extendStatics = Object.setPrototypeOf ||
|
|
5
5
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
-
function (d, b) { for (var p in b) if (
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
7
|
return extendStatics(d, b);
|
|
8
8
|
};
|
|
9
9
|
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
10
12
|
extendStatics(d, b);
|
|
11
13
|
function __() { this.constructor = d; }
|
|
12
14
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
13
15
|
};
|
|
14
16
|
})();
|
|
15
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.InsertLinkDialog = void 0;
|
|
16
19
|
var React = require("react");
|
|
17
20
|
var kendo_react_dialogs_1 = require("@progress/kendo-react-dialogs");
|
|
18
21
|
var kendo_react_buttons_1 = require("@progress/kendo-react-buttons");
|
package/dist/npm/dialogs/main.js
CHANGED
|
@@ -3,16 +3,19 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
3
3
|
var extendStatics = function (d, b) {
|
|
4
4
|
extendStatics = Object.setPrototypeOf ||
|
|
5
5
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
-
function (d, b) { for (var p in b) if (
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
7
|
return extendStatics(d, b);
|
|
8
8
|
};
|
|
9
9
|
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
10
12
|
extendStatics(d, b);
|
|
11
13
|
function __() { this.constructor = d; }
|
|
12
14
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
13
15
|
};
|
|
14
16
|
})();
|
|
15
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.EditorDialogs = void 0;
|
|
16
19
|
var insertLink_1 = require("./insertLink");
|
|
17
20
|
var insertImage_1 = require("./insertImage");
|
|
18
21
|
var viewHtml_1 = require("./viewHtml");
|
|
@@ -3,16 +3,19 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
3
3
|
var extendStatics = function (d, b) {
|
|
4
4
|
extendStatics = Object.setPrototypeOf ||
|
|
5
5
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
-
function (d, b) { for (var p in b) if (
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
7
|
return extendStatics(d, b);
|
|
8
8
|
};
|
|
9
9
|
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
10
12
|
extendStatics(d, b);
|
|
11
13
|
function __() { this.constructor = d; }
|
|
12
14
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
13
15
|
};
|
|
14
16
|
})();
|
|
15
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.ViewHtmlDialog = void 0;
|
|
16
19
|
var React = require("react");
|
|
17
20
|
var kendo_react_dialogs_1 = require("@progress/kendo-react-dialogs");
|
|
18
21
|
var kendo_react_buttons_1 = require("@progress/kendo-react-buttons");
|
package/dist/npm/main.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="prosemirror-model" />
|
|
2
|
-
import Editor from './Editor';
|
|
2
|
+
import { Editor } from './Editor';
|
|
3
3
|
import { EditorProps, EditorMountEvent, EditorPasteEvent, EditorChangeEvent, EditorExecuteEvent, EditorFocusEvent, EditorBlurEvent } from './EditorProps';
|
|
4
4
|
import { EditorTools } from './tools/main';
|
|
5
5
|
import { EditorToolsSettings } from './config/toolsSettings';
|
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,
|