@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.
Files changed (109) hide show
  1. package/dist/cdn/js/kendo-react-editor.js +1 -1
  2. package/dist/es/Editor.d.ts +5 -5
  3. package/dist/es/Editor.js +16 -9
  4. package/dist/es/EditorProps.d.ts +1 -1
  5. package/dist/es/EditorProps.js +1 -0
  6. package/dist/es/config/pasteSettings.js +1 -0
  7. package/dist/es/config/shortcuts.js +1 -1
  8. package/dist/es/config/toolsSettings.js +19 -14
  9. package/dist/es/dialogs/EditorDialogProps.js +1 -0
  10. package/dist/es/dialogs/FindReplace.d.ts +1 -1
  11. package/dist/es/dialogs/FindReplace.js +6 -5
  12. package/dist/es/dialogs/insertImage.d.ts +1 -1
  13. package/dist/es/dialogs/insertImage.js +3 -1
  14. package/dist/es/dialogs/insertLink.d.ts +1 -1
  15. package/dist/es/dialogs/insertLink.js +3 -1
  16. package/dist/es/dialogs/main.js +3 -1
  17. package/dist/es/dialogs/viewHtml.d.ts +1 -1
  18. package/dist/es/dialogs/viewHtml.js +3 -1
  19. package/dist/es/main.d.ts +1 -1
  20. package/dist/es/main.js +116 -29
  21. package/dist/es/messages/index.d.ts +78 -391
  22. package/dist/es/package-metadata.js +1 -1
  23. package/dist/es/tools/ToolProps.d.ts +4 -1
  24. package/dist/es/tools/ToolProps.js +1 -0
  25. package/dist/es/tools/align.js +7 -3
  26. package/dist/es/tools/cleanFormatting.js +4 -2
  27. package/dist/es/tools/findReplace.js +7 -3
  28. package/dist/es/tools/fontStyle.js +7 -3
  29. package/dist/es/tools/formatBlock.js +7 -3
  30. package/dist/es/tools/indent.js +7 -3
  31. package/dist/es/tools/inlineFormat.js +7 -3
  32. package/dist/es/tools/insertImage.js +7 -3
  33. package/dist/es/tools/insertLink.js +7 -3
  34. package/dist/es/tools/insertTable/popup.js +3 -1
  35. package/dist/es/tools/insertTable/popupGrid.js +3 -1
  36. package/dist/es/tools/insertTable/tool.js +7 -3
  37. package/dist/es/tools/lists-styled.js +9 -4
  38. package/dist/es/tools/lists.js +7 -3
  39. package/dist/es/tools/main.d.ts +113 -112
  40. package/dist/es/tools/main.js +3 -1
  41. package/dist/es/tools/outdent.js +7 -3
  42. package/dist/es/tools/pdf.js +5 -3
  43. package/dist/es/tools/print.js +4 -2
  44. package/dist/es/tools/proseMirrorTool.js +7 -3
  45. package/dist/es/tools/selectAll.js +4 -2
  46. package/dist/es/tools/tableEdit.d.ts +8 -8
  47. package/dist/es/tools/unlink.js +7 -3
  48. package/dist/es/tools/utils.d.ts +1 -1
  49. package/dist/es/tools/viewHtml.js +7 -3
  50. package/dist/es/utils/controlled-value.d.ts +1 -2
  51. package/dist/npm/Editor.d.ts +5 -5
  52. package/dist/npm/Editor.js +17 -9
  53. package/dist/npm/EditorProps.d.ts +1 -1
  54. package/dist/npm/config/defaultStyles.js +1 -0
  55. package/dist/npm/config/schema.js +3 -2
  56. package/dist/npm/config/shortcuts.js +4 -2
  57. package/dist/npm/config/toolsSettings.js +20 -14
  58. package/dist/npm/dialogs/FindReplace.d.ts +1 -1
  59. package/dist/npm/dialogs/FindReplace.js +7 -5
  60. package/dist/npm/dialogs/insertImage.d.ts +1 -1
  61. package/dist/npm/dialogs/insertImage.js +4 -1
  62. package/dist/npm/dialogs/insertLink.d.ts +1 -1
  63. package/dist/npm/dialogs/insertLink.js +4 -1
  64. package/dist/npm/dialogs/main.js +4 -1
  65. package/dist/npm/dialogs/viewHtml.d.ts +1 -1
  66. package/dist/npm/dialogs/viewHtml.js +4 -1
  67. package/dist/npm/main.d.ts +1 -1
  68. package/dist/npm/main.js +121 -33
  69. package/dist/npm/messages/index.d.ts +78 -391
  70. package/dist/npm/messages/index.js +2 -1
  71. package/dist/npm/package-metadata.js +2 -1
  72. package/dist/npm/tools/ToolProps.d.ts +4 -1
  73. package/dist/npm/tools/align.js +10 -4
  74. package/dist/npm/tools/applyColor.js +3 -1
  75. package/dist/npm/tools/cleanFormatting.js +7 -3
  76. package/dist/npm/tools/findReplace.js +8 -3
  77. package/dist/npm/tools/fontStyle.js +8 -3
  78. package/dist/npm/tools/formatBlock.js +8 -3
  79. package/dist/npm/tools/history.js +1 -0
  80. package/dist/npm/tools/indent.js +8 -3
  81. package/dist/npm/tools/inlineFormat.js +8 -3
  82. package/dist/npm/tools/insertImage.js +10 -4
  83. package/dist/npm/tools/insertLink.js +8 -3
  84. package/dist/npm/tools/insertTable/index.js +3 -2
  85. package/dist/npm/tools/insertTable/popup.js +4 -1
  86. package/dist/npm/tools/insertTable/popupGrid.js +3 -1
  87. package/dist/npm/tools/insertTable/tool.js +8 -3
  88. package/dist/npm/tools/lists-styled.js +12 -5
  89. package/dist/npm/tools/lists.js +8 -3
  90. package/dist/npm/tools/main.d.ts +113 -112
  91. package/dist/npm/tools/main.js +4 -1
  92. package/dist/npm/tools/outdent.js +8 -3
  93. package/dist/npm/tools/pdf.js +8 -4
  94. package/dist/npm/tools/print.js +7 -3
  95. package/dist/npm/tools/proseMirrorTool.js +10 -4
  96. package/dist/npm/tools/selectAll.js +7 -3
  97. package/dist/npm/tools/tableEdit.d.ts +8 -8
  98. package/dist/npm/tools/tableEdit.js +1 -0
  99. package/dist/npm/tools/unlink.js +8 -3
  100. package/dist/npm/tools/utils.d.ts +1 -1
  101. package/dist/npm/tools/utils.js +1 -0
  102. package/dist/npm/tools/viewHtml.js +8 -3
  103. package/dist/npm/utils/browser-detection.js +1 -0
  104. package/dist/npm/utils/controlled-value.d.ts +1 -2
  105. package/dist/npm/utils/controlled-value.js +3 -1
  106. package/dist/npm/utils/index.js +1 -0
  107. package/dist/npm/utils/props-key.js +1 -0
  108. package/dist/systemjs/kendo-react-editor.js +1 -1
  109. package/package.json +12 -12
@@ -20,7 +20,7 @@ export declare class InsertLinkDialog extends React.Component<InsertLinkDialogPr
20
20
  /**
21
21
  * @hidden
22
22
  */
23
- render(): {};
23
+ render(): React.ReactNode;
24
24
  private onClose;
25
25
  private onInsert;
26
26
  }
@@ -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 (b.hasOwnProperty(p)) d[p] = b[p]; };
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");
@@ -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 (b.hasOwnProperty(p)) d[p] = b[p]; };
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");
@@ -18,7 +18,7 @@ export declare class ViewHtmlDialog extends React.Component<ViewHtmlDialogProps>
18
18
  /**
19
19
  * @hidden
20
20
  */
21
- render(): {};
21
+ render(): React.ReactNode;
22
22
  private onUpdate;
23
23
  private onClose;
24
24
  }
@@ -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 (b.hasOwnProperty(p)) d[p] = b[p]; };
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");
@@ -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.Editor = Editor_1.default;
5
+ Object.defineProperty(exports, "Editor", { enumerable: true, get: function () { return Editor_1.Editor; } });
5
6
  var main_1 = require("./tools/main");
6
- exports.EditorTools = main_1.EditorTools;
7
+ Object.defineProperty(exports, "EditorTools", { enumerable: true, get: function () { return main_1.EditorTools; } });
7
8
  var toolsSettings_1 = require("./config/toolsSettings");
8
- exports.EditorToolsSettings = toolsSettings_1.EditorToolsSettings;
9
+ Object.defineProperty(exports, "EditorToolsSettings", { enumerable: true, get: function () { return toolsSettings_1.EditorToolsSettings; } });
9
10
  var utils_1 = require("./utils");
10
- exports.EditorUtils = utils_1.EditorUtils;
11
+ Object.defineProperty(exports, "EditorUtils", { enumerable: true, get: function () { return utils_1.EditorUtils; } });
11
12
  var main_2 = require("./dialogs/main");
12
- exports.EditorDialogs = main_2.EditorDialogs;
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, SelectionRange: kendo_editor_common_1.SelectionRange, TextSelection: kendo_editor_common_1.TextSelection, NodeSelection: kendo_editor_common_1.NodeSelection, AllSelection: kendo_editor_common_1.AllSelection,
33
- EditorState: kendo_editor_common_1.EditorState, Plugin: kendo_editor_common_1.Plugin, PluginKey: kendo_editor_common_1.PluginKey, Transaction: kendo_editor_common_1.Transaction,
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, DecorationSet: kendo_editor_common_1.DecorationSet,
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, ResolvedPos: kendo_editor_common_1.ResolvedPos, NodeRange: kendo_editor_common_1.NodeRange, Fragment: kendo_editor_common_1.Fragment, Slice: kendo_editor_common_1.Slice, ReplaceError: kendo_editor_common_1.ReplaceError, Mark: kendo_editor_common_1.Mark,
39
- Schema: kendo_editor_common_1.Schema, NodeType: kendo_editor_common_1.NodeType, MarkType: kendo_editor_common_1.MarkType, ContentMatch: kendo_editor_common_1.ContentMatch, DOMParser: kendo_editor_common_1.DOMParser, DOMSerializer: kendo_editor_common_1.DOMSerializer,
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, Step: kendo_editor_common_1.Step, StepResult: kendo_editor_common_1.StepResult,
42
- joinPoint: kendo_editor_common_1.joinPoint, canJoin: kendo_editor_common_1.canJoin, canSplit: kendo_editor_common_1.canSplit, insertPoint: kendo_editor_common_1.insertPoint, dropPoint: kendo_editor_common_1.dropPoint, liftTarget: kendo_editor_common_1.liftTarget, findWrapping: kendo_editor_common_1.findWrapping,
43
- StepMap: kendo_editor_common_1.StepMap, MapResult: kendo_editor_common_1.MapResult, Mapping: kendo_editor_common_1.Mapping,
44
- AddMarkStep: kendo_editor_common_1.AddMarkStep, RemoveMarkStep: kendo_editor_common_1.RemoveMarkStep,
45
- ReplaceStep: kendo_editor_common_1.ReplaceStep, ReplaceAroundStep: kendo_editor_common_1.ReplaceAroundStep, replaceStep: kendo_editor_common_1.replaceStep,
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, joinBackward: kendo_editor_common_1.joinBackward, selectNodeBackward: kendo_editor_common_1.selectNodeBackward, joinForward: kendo_editor_common_1.joinForward, selectNodeForward: kendo_editor_common_1.selectNodeForward,
48
- joinUp: kendo_editor_common_1.joinUp, joinDown: kendo_editor_common_1.joinDown, lift: kendo_editor_common_1.lift, newlineInCode: kendo_editor_common_1.newlineInCode, exitCode: kendo_editor_common_1.exitCode, createParagraphNear: kendo_editor_common_1.createParagraphNear, liftEmptyBlock: kendo_editor_common_1.liftEmptyBlock,
49
- splitBlock: kendo_editor_common_1.splitBlock, splitBlockKeepMarks: kendo_editor_common_1.splitBlockKeepMarks, selectParentNode: kendo_editor_common_1.selectParentNode, selectAll: kendo_editor_common_1.selectAll, wrapIn: kendo_editor_common_1.wrapIn, setBlockType: kendo_editor_common_1.setBlockType,
50
- toggleMark: kendo_editor_common_1.toggleMark, autoJoin: kendo_editor_common_1.autoJoin, chainCommands: kendo_editor_common_1.chainCommands, pcBaseKeymap: kendo_editor_common_1.pcBaseKeymap, macBaseKeymap: kendo_editor_common_1.macBaseKeymap, baseKeymap: kendo_editor_common_1.baseKeymap,
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, undo: kendo_editor_common_1.undo, redo: kendo_editor_common_1.redo, undoDepth: kendo_editor_common_1.undoDepth, redoDepth: kendo_editor_common_1.redoDepth,
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, inputRules: kendo_editor_common_1.inputRules, undoInputRule: kendo_editor_common_1.undoInputRule,
55
- emDash: kendo_editor_common_1.emDash, ellipsis: kendo_editor_common_1.ellipsis, openDoubleQuote: kendo_editor_common_1.openDoubleQuote, closeDoubleQuote: kendo_editor_common_1.closeDoubleQuote, openSingleQuote: kendo_editor_common_1.openSingleQuote, closeSingleQuote: kendo_editor_common_1.closeSingleQuote, smartQuotes: kendo_editor_common_1.smartQuotes,
56
- wrappingInputRule: kendo_editor_common_1.wrappingInputRule, textblockTypeInputRule: kendo_editor_common_1.textblockTypeInputRule,
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, keydownHandler: kendo_editor_common_1.keydownHandler,
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, bulletList: kendo_editor_common_1.bulletList, listItem: kendo_editor_common_1.listItem, addListNodes: kendo_editor_common_1.addListNodes,
61
- wrapInList: kendo_editor_common_1.wrapInList, splitListItem: kendo_editor_common_1.splitListItem, liftListItem: kendo_editor_common_1.liftListItem, sinkListItem: kendo_editor_common_1.sinkListItem,
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, fixTables: kendo_editor_common_1.fixTables, fixTablesKey: kendo_editor_common_1.fixTablesKey,
68
- cellAround: kendo_editor_common_1.cellAround, isInTable: kendo_editor_common_1.isInTable, selectionCell: kendo_editor_common_1.selectionCell, moveCellForward: kendo_editor_common_1.moveCellForward, inSameTable: kendo_editor_common_1.inSameTable,
69
- findCell: kendo_editor_common_1.findCell, colCount: kendo_editor_common_1.colCount, nextCell: kendo_editor_common_1.nextCell, removeColSpan: kendo_editor_common_1.removeColSpan, addColSpan: kendo_editor_common_1.addColSpan, columnIsHeader: kendo_editor_common_1.columnIsHeader,
70
- tableNodes: kendo_editor_common_1.tableNodes, tableNodeTypes: kendo_editor_common_1.tableNodeTypes,
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, columnResizingPluginKey: kendo_editor_common_1.columnResizingPluginKey,
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, addColumn: kendo_editor_common_1.addColumn,
77
- addColumnBefore: kendo_editor_common_1.addColumnBefore, addColumnAfter: kendo_editor_common_1.addColumnAfter,
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,