@progress/kendo-react-editor 5.12.1 → 5.13.0-dev.202303301815

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/es/main.d.ts CHANGED
@@ -4,7 +4,9 @@ import { EditorTools } from './tools/main';
4
4
  import { EditorToolsSettings } from './config/toolsSettings';
5
5
  import { EditorUtils } from './utils';
6
6
  import { EditorDialogs } from './dialogs/main';
7
- import { Selection, SelectionRange, TextSelection, NodeSelection, AllSelection, EditorState, Plugin, PluginKey, Transaction, Decoration, DecorationSet, EditorView, Node, ResolvedPos, NodeRange, Fragment, Slice, ReplaceError, Mark, MarkSpec, Schema, NodeType, NodeSpec, MarkType, ContentMatch, DOMParser, DOMSerializer, Transform, Step, StepResult, joinPoint, canJoin, canSplit, insertPoint, dropPoint, liftTarget, findWrapping, StepMap, MapResult, Mapping, AddMarkStep, RemoveMarkStep, ReplaceStep, ReplaceAroundStep, replaceStep, wrapIn, setBlockType, toggleMark, autoJoin, chainCommands, history, undoDepth, redoDepth, InputRule, inputRules, wrappingInputRule, textblockTypeInputRule, keymap, keydownHandler, addListNodes, wrapInList, splitListItem, liftListItem, sinkListItem, dropCursor, gapCursor, tableEditing, fixTables, cellAround, isInTable, selectionCell, moveCellForward, inSameTable, findCell, colCount, nextCell, removeColSpan, addColSpan, columnIsHeader, tableNodes, tableNodeTypes, CellSelection, TableMap, columnResizing, updateColumnsOnResize, selectedRect, addColumn, rowIsHeader, addRow, deleteRow, mergeCells, splitCell, splitCellWithType, setCellAttr, toggleHeader, goToNextCell, deleteTable } from '@progress/kendo-editor-common';
7
+ import { editorPropsKey } from './utils/props-key';
8
+ import { nodes, marks } from './config/schema';
9
+ import { Selection, SelectionRange, TextSelection, NodeSelection, AllSelection, EditorState, Plugin, PluginKey, Transaction, Decoration, DecorationSet, EditorView, Node, ResolvedPos, NodeRange, Fragment, Slice, ReplaceError, Mark, MarkSpec, Schema, NodeType, NodeSpec, MarkType, ContentMatch, DOMParser, DOMSerializer, Transform, Step, StepResult, joinPoint, canJoin, canSplit, insertPoint, dropPoint, liftTarget, findWrapping, StepMap, MapResult, Mapping, AddMarkStep, RemoveMarkStep, ReplaceStep, ReplaceAroundStep, replaceStep, wrapIn, setBlockType, toggleMark, autoJoin, chainCommands, history, undoDepth, redoDepth, InputRule, inputRules, wrappingInputRule, textblockTypeInputRule, keymap, keydownHandler, addListNodes, wrapInList, splitListItem, liftListItem, sinkListItem, dropCursor, gapCursor, tableEditing, fixTables, cellAround, isInTable, selectionCell, moveCellForward, inSameTable, findCell, colCount, nextCell, removeColSpan, addColSpan, columnIsHeader, tableNodes, tableNodeTypes, CellSelection, TableMap, columnResizing, updateColumnsOnResize, selectedRect, addColumn, rowIsHeader, addRow, deleteRow, mergeCells, splitCell, splitCellWithType, setCellAttr, toggleHeader, goToNextCell, deleteTable, getHtml, parseContent } from '@progress/kendo-editor-common';
8
10
  export { Shortcuts } from './config/shortcuts';
9
11
  export { PasteCleanupSettings } from './config/pasteSettings';
10
12
  /**
@@ -171,4 +173,4 @@ export declare const ProseMirror: {
171
173
  goToNextCell: typeof goToNextCell;
172
174
  deleteTable: typeof deleteTable;
173
175
  };
174
- export { Editor, EditorProps, EditorMountEvent, EditorPasteEvent, EditorChangeEvent, EditorExecuteEvent, EditorFocusEvent, EditorBlurEvent, EditorTools, EditorToolsSettings, EditorUtils, EditorDialogs, NodeSpec, MarkSpec };
176
+ export { Editor, EditorProps, EditorMountEvent, EditorPasteEvent, EditorChangeEvent, EditorExecuteEvent, EditorFocusEvent, EditorBlurEvent, EditorTools, EditorToolsSettings, EditorUtils, EditorDialogs, NodeSpec, MarkSpec, nodes, marks, getHtml, parseContent, editorPropsKey };
package/dist/es/main.js CHANGED
@@ -3,6 +3,8 @@ import { EditorTools } from './tools/main';
3
3
  import { EditorToolsSettings } from './config/toolsSettings';
4
4
  import { EditorUtils } from './utils';
5
5
  import { EditorDialogs } from './dialogs/main';
6
+ import { editorPropsKey } from './utils/props-key';
7
+ import { nodes, marks } from './config/schema';
6
8
  import {
7
9
  // prosemirror-state
8
10
  Selection, SelectionRange, TextSelection, NodeSelection, AllSelection, EditorState, Plugin, PluginKey, Transaction,
@@ -27,7 +29,7 @@ dropCursor,
27
29
  // prosemirror-gapcursor
28
30
  gapCursor,
29
31
  // prosemirror-tables
30
- tableEditing, fixTables, fixTablesKey, cellAround, isInTable, selectionCell, moveCellForward, inSameTable, findCell, colCount, nextCell, removeColSpan, addColSpan, columnIsHeader, tableNodes, tableNodeTypes, CellSelection, TableMap, tableEditingKey, columnResizing, columnResizingPluginKey, updateColumnsOnResize, selectedRect, addColumn, addColumnBefore, addColumnAfter, deleteColumn, rowIsHeader, addRow, addRowBefore, addRowAfter, deleteRow, mergeCells, splitCell, splitCellWithType, setCellAttr, toggleHeader, toggleHeaderRow, toggleHeaderColumn, toggleHeaderCell, goToNextCell, deleteTable } from '@progress/kendo-editor-common';
32
+ tableEditing, fixTables, fixTablesKey, cellAround, isInTable, selectionCell, moveCellForward, inSameTable, findCell, colCount, nextCell, removeColSpan, addColSpan, columnIsHeader, tableNodes, tableNodeTypes, CellSelection, TableMap, tableEditingKey, columnResizing, columnResizingPluginKey, updateColumnsOnResize, selectedRect, addColumn, addColumnBefore, addColumnAfter, deleteColumn, rowIsHeader, addRow, addRowBefore, addRowAfter, deleteRow, mergeCells, splitCell, splitCellWithType, setCellAttr, toggleHeader, toggleHeaderRow, toggleHeaderColumn, toggleHeaderCell, goToNextCell, deleteTable, getHtml, parseContent } from '@progress/kendo-editor-common';
31
33
  /**
32
34
  * An object containing the content of ProseMirror packages used at the Editor component.
33
35
  *
@@ -196,4 +198,4 @@ export var ProseMirror = {
196
198
  goToNextCell: goToNextCell,
197
199
  deleteTable: deleteTable
198
200
  };
199
- export { Editor, EditorTools, EditorToolsSettings, EditorUtils, EditorDialogs };
201
+ export { Editor, EditorTools, EditorToolsSettings, EditorUtils, EditorDialogs, nodes, marks, getHtml, parseContent, editorPropsKey };
@@ -5,7 +5,7 @@ export var packageMetadata = {
5
5
  name: '@progress/kendo-react-editor',
6
6
  productName: 'KendoReact',
7
7
  productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
8
- publishDate: 1680172154,
8
+ publishDate: 1680198835,
9
9
  version: '',
10
10
  licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning'
11
11
  };
@@ -4,7 +4,9 @@ import { EditorTools } from './tools/main';
4
4
  import { EditorToolsSettings } from './config/toolsSettings';
5
5
  import { EditorUtils } from './utils';
6
6
  import { EditorDialogs } from './dialogs/main';
7
- import { Selection, SelectionRange, TextSelection, NodeSelection, AllSelection, EditorState, Plugin, PluginKey, Transaction, Decoration, DecorationSet, EditorView, Node, ResolvedPos, NodeRange, Fragment, Slice, ReplaceError, Mark, MarkSpec, Schema, NodeType, NodeSpec, MarkType, ContentMatch, DOMParser, DOMSerializer, Transform, Step, StepResult, joinPoint, canJoin, canSplit, insertPoint, dropPoint, liftTarget, findWrapping, StepMap, MapResult, Mapping, AddMarkStep, RemoveMarkStep, ReplaceStep, ReplaceAroundStep, replaceStep, wrapIn, setBlockType, toggleMark, autoJoin, chainCommands, history, undoDepth, redoDepth, InputRule, inputRules, wrappingInputRule, textblockTypeInputRule, keymap, keydownHandler, addListNodes, wrapInList, splitListItem, liftListItem, sinkListItem, dropCursor, gapCursor, tableEditing, fixTables, cellAround, isInTable, selectionCell, moveCellForward, inSameTable, findCell, colCount, nextCell, removeColSpan, addColSpan, columnIsHeader, tableNodes, tableNodeTypes, CellSelection, TableMap, columnResizing, updateColumnsOnResize, selectedRect, addColumn, rowIsHeader, addRow, deleteRow, mergeCells, splitCell, splitCellWithType, setCellAttr, toggleHeader, goToNextCell, deleteTable } from '@progress/kendo-editor-common';
7
+ import { editorPropsKey } from './utils/props-key';
8
+ import { nodes, marks } from './config/schema';
9
+ import { Selection, SelectionRange, TextSelection, NodeSelection, AllSelection, EditorState, Plugin, PluginKey, Transaction, Decoration, DecorationSet, EditorView, Node, ResolvedPos, NodeRange, Fragment, Slice, ReplaceError, Mark, MarkSpec, Schema, NodeType, NodeSpec, MarkType, ContentMatch, DOMParser, DOMSerializer, Transform, Step, StepResult, joinPoint, canJoin, canSplit, insertPoint, dropPoint, liftTarget, findWrapping, StepMap, MapResult, Mapping, AddMarkStep, RemoveMarkStep, ReplaceStep, ReplaceAroundStep, replaceStep, wrapIn, setBlockType, toggleMark, autoJoin, chainCommands, history, undoDepth, redoDepth, InputRule, inputRules, wrappingInputRule, textblockTypeInputRule, keymap, keydownHandler, addListNodes, wrapInList, splitListItem, liftListItem, sinkListItem, dropCursor, gapCursor, tableEditing, fixTables, cellAround, isInTable, selectionCell, moveCellForward, inSameTable, findCell, colCount, nextCell, removeColSpan, addColSpan, columnIsHeader, tableNodes, tableNodeTypes, CellSelection, TableMap, columnResizing, updateColumnsOnResize, selectedRect, addColumn, rowIsHeader, addRow, deleteRow, mergeCells, splitCell, splitCellWithType, setCellAttr, toggleHeader, goToNextCell, deleteTable, getHtml, parseContent } from '@progress/kendo-editor-common';
8
10
  export { Shortcuts } from './config/shortcuts';
9
11
  export { PasteCleanupSettings } from './config/pasteSettings';
10
12
  /**
@@ -171,4 +173,4 @@ export declare const ProseMirror: {
171
173
  goToNextCell: typeof goToNextCell;
172
174
  deleteTable: typeof deleteTable;
173
175
  };
174
- export { Editor, EditorProps, EditorMountEvent, EditorPasteEvent, EditorChangeEvent, EditorExecuteEvent, EditorFocusEvent, EditorBlurEvent, EditorTools, EditorToolsSettings, EditorUtils, EditorDialogs, NodeSpec, MarkSpec };
176
+ export { Editor, EditorProps, EditorMountEvent, EditorPasteEvent, EditorChangeEvent, EditorExecuteEvent, EditorFocusEvent, EditorBlurEvent, EditorTools, EditorToolsSettings, EditorUtils, EditorDialogs, NodeSpec, MarkSpec, nodes, marks, getHtml, parseContent, editorPropsKey };
package/dist/npm/main.js CHANGED
@@ -1,6 +1,6 @@
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
+ exports.editorPropsKey = exports.parseContent = exports.getHtml = exports.marks = exports.nodes = exports.EditorDialogs = exports.EditorUtils = exports.EditorToolsSettings = exports.EditorTools = exports.Editor = exports.ProseMirror = void 0;
4
4
  var Editor_1 = require("./Editor");
5
5
  Object.defineProperty(exports, "Editor", { enumerable: true, get: function () { return Editor_1.Editor; } });
6
6
  var main_1 = require("./tools/main");
@@ -11,7 +11,14 @@ var utils_1 = require("./utils");
11
11
  Object.defineProperty(exports, "EditorUtils", { enumerable: true, get: function () { return utils_1.EditorUtils; } });
12
12
  var main_2 = require("./dialogs/main");
13
13
  Object.defineProperty(exports, "EditorDialogs", { enumerable: true, get: function () { return main_2.EditorDialogs; } });
14
+ var props_key_1 = require("./utils/props-key");
15
+ Object.defineProperty(exports, "editorPropsKey", { enumerable: true, get: function () { return props_key_1.editorPropsKey; } });
16
+ var schema_1 = require("./config/schema");
17
+ Object.defineProperty(exports, "nodes", { enumerable: true, get: function () { return schema_1.nodes; } });
18
+ Object.defineProperty(exports, "marks", { enumerable: true, get: function () { return schema_1.marks; } });
14
19
  var kendo_editor_common_1 = require("@progress/kendo-editor-common");
20
+ Object.defineProperty(exports, "getHtml", { enumerable: true, get: function () { return kendo_editor_common_1.getHtml; } });
21
+ Object.defineProperty(exports, "parseContent", { enumerable: true, get: function () { return kendo_editor_common_1.parseContent; } });
15
22
  /**
16
23
  * An object containing the content of ProseMirror packages used at the Editor component.
17
24
  *
@@ -8,7 +8,7 @@ exports.packageMetadata = {
8
8
  name: '@progress/kendo-react-editor',
9
9
  productName: 'KendoReact',
10
10
  productCodes: ['KENDOUIREACT', 'KENDOUICOMPLETE'],
11
- publishDate: 1680172154,
11
+ publishDate: 1680198835,
12
12
  version: '',
13
13
  licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=product&utm_source=kendoreact&utm_campaign=kendo-ui-react-purchase-license-keys-warning'
14
14
  };