@progress/kendo-vue-editor 3.8.3-dev.202301301503 → 3.8.3
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-vue-editor.js +1 -1
- package/dist/es/main.d.ts +9 -7
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/main.d.ts +9 -7
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/main.d.ts +9 -7
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +13 -13
package/dist/es/main.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { EditorProps, EditorMountEvent, EditorPasteEvent, EditorChangeEvent, Edi
|
|
|
3
3
|
import { EditorTools } from './tools/main';
|
|
4
4
|
import { EditorToolsSettings } from './config/toolsSettings';
|
|
5
5
|
import { EditorUtils } from './utils/main';
|
|
6
|
-
import { Selection, SelectionRange, TextSelection, NodeSelection, AllSelection, EditorState, Plugin, PluginKey, Transaction, Decoration, DecorationSet, EditorView, Node, ResolvedPos, NodeRange, Fragment, Slice, ReplaceError, Mark, Schema, NodeType, 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,
|
|
6
|
+
import { Selection, SelectionRange, TextSelection, NodeSelection, AllSelection, EditorState, Plugin, PluginKey, Transaction, Decoration, DecorationSet, EditorView, Node, ResolvedPos, NodeRange, Fragment, Slice, ReplaceError, Mark, Schema, NodeType, 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
7
|
export { Shortcuts } from './config/shortcuts';
|
|
8
8
|
export { PasteCleanupSettings } from './config/pasteSettings';
|
|
9
9
|
/**
|
|
@@ -127,7 +127,9 @@ export declare const ProseMirror: {
|
|
|
127
127
|
gapCursor: typeof gapCursor;
|
|
128
128
|
tableEditing: typeof tableEditing;
|
|
129
129
|
fixTables: typeof fixTables;
|
|
130
|
-
fixTablesKey: PluginKey<
|
|
130
|
+
fixTablesKey: PluginKey<{
|
|
131
|
+
fixTables: boolean;
|
|
132
|
+
}>;
|
|
131
133
|
cellAround: typeof cellAround;
|
|
132
134
|
isInTable: typeof isInTable;
|
|
133
135
|
selectionCell: typeof selectionCell;
|
|
@@ -143,9 +145,9 @@ export declare const ProseMirror: {
|
|
|
143
145
|
tableNodeTypes: typeof tableNodeTypes;
|
|
144
146
|
CellSelection: typeof CellSelection;
|
|
145
147
|
TableMap: typeof TableMap;
|
|
146
|
-
tableEditingKey: PluginKey<
|
|
148
|
+
tableEditingKey: PluginKey<number>;
|
|
147
149
|
columnResizing: typeof columnResizing;
|
|
148
|
-
columnResizingPluginKey: PluginKey<
|
|
150
|
+
columnResizingPluginKey: PluginKey<import("prosemirror-tables").ResizeState>;
|
|
149
151
|
updateColumnsOnResize: typeof updateColumnsOnResize;
|
|
150
152
|
selectedRect: typeof selectedRect;
|
|
151
153
|
addColumn: typeof addColumn;
|
|
@@ -162,9 +164,9 @@ export declare const ProseMirror: {
|
|
|
162
164
|
splitCellWithType: typeof splitCellWithType;
|
|
163
165
|
setCellAttr: typeof setCellAttr;
|
|
164
166
|
toggleHeader: typeof toggleHeader;
|
|
165
|
-
toggleHeaderRow:
|
|
166
|
-
toggleHeaderColumn:
|
|
167
|
-
toggleHeaderCell:
|
|
167
|
+
toggleHeaderRow: import("prosemirror-state").Command;
|
|
168
|
+
toggleHeaderColumn: import("prosemirror-state").Command;
|
|
169
|
+
toggleHeaderCell: import("prosemirror-state").Command;
|
|
168
170
|
goToNextCell: typeof goToNextCell;
|
|
169
171
|
deleteTable: typeof deleteTable;
|
|
170
172
|
};
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-editor',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1675168527,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
package/dist/esm/main.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { EditorProps, EditorMountEvent, EditorPasteEvent, EditorChangeEvent, Edi
|
|
|
3
3
|
import { EditorTools } from './tools/main';
|
|
4
4
|
import { EditorToolsSettings } from './config/toolsSettings';
|
|
5
5
|
import { EditorUtils } from './utils/main';
|
|
6
|
-
import { Selection, SelectionRange, TextSelection, NodeSelection, AllSelection, EditorState, Plugin, PluginKey, Transaction, Decoration, DecorationSet, EditorView, Node, ResolvedPos, NodeRange, Fragment, Slice, ReplaceError, Mark, Schema, NodeType, 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,
|
|
6
|
+
import { Selection, SelectionRange, TextSelection, NodeSelection, AllSelection, EditorState, Plugin, PluginKey, Transaction, Decoration, DecorationSet, EditorView, Node, ResolvedPos, NodeRange, Fragment, Slice, ReplaceError, Mark, Schema, NodeType, 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
7
|
export { Shortcuts } from './config/shortcuts';
|
|
8
8
|
export { PasteCleanupSettings } from './config/pasteSettings';
|
|
9
9
|
/**
|
|
@@ -127,7 +127,9 @@ export declare const ProseMirror: {
|
|
|
127
127
|
gapCursor: typeof gapCursor;
|
|
128
128
|
tableEditing: typeof tableEditing;
|
|
129
129
|
fixTables: typeof fixTables;
|
|
130
|
-
fixTablesKey: PluginKey<
|
|
130
|
+
fixTablesKey: PluginKey<{
|
|
131
|
+
fixTables: boolean;
|
|
132
|
+
}>;
|
|
131
133
|
cellAround: typeof cellAround;
|
|
132
134
|
isInTable: typeof isInTable;
|
|
133
135
|
selectionCell: typeof selectionCell;
|
|
@@ -143,9 +145,9 @@ export declare const ProseMirror: {
|
|
|
143
145
|
tableNodeTypes: typeof tableNodeTypes;
|
|
144
146
|
CellSelection: typeof CellSelection;
|
|
145
147
|
TableMap: typeof TableMap;
|
|
146
|
-
tableEditingKey: PluginKey<
|
|
148
|
+
tableEditingKey: PluginKey<number>;
|
|
147
149
|
columnResizing: typeof columnResizing;
|
|
148
|
-
columnResizingPluginKey: PluginKey<
|
|
150
|
+
columnResizingPluginKey: PluginKey<import("prosemirror-tables").ResizeState>;
|
|
149
151
|
updateColumnsOnResize: typeof updateColumnsOnResize;
|
|
150
152
|
selectedRect: typeof selectedRect;
|
|
151
153
|
addColumn: typeof addColumn;
|
|
@@ -162,9 +164,9 @@ export declare const ProseMirror: {
|
|
|
162
164
|
splitCellWithType: typeof splitCellWithType;
|
|
163
165
|
setCellAttr: typeof setCellAttr;
|
|
164
166
|
toggleHeader: typeof toggleHeader;
|
|
165
|
-
toggleHeaderRow:
|
|
166
|
-
toggleHeaderColumn:
|
|
167
|
-
toggleHeaderCell:
|
|
167
|
+
toggleHeaderRow: import("prosemirror-state").Command;
|
|
168
|
+
toggleHeaderColumn: import("prosemirror-state").Command;
|
|
169
|
+
toggleHeaderCell: import("prosemirror-state").Command;
|
|
168
170
|
goToNextCell: typeof goToNextCell;
|
|
169
171
|
deleteTable: typeof deleteTable;
|
|
170
172
|
};
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-editor',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1675168527,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
package/dist/npm/main.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { EditorProps, EditorMountEvent, EditorPasteEvent, EditorChangeEvent, Edi
|
|
|
3
3
|
import { EditorTools } from './tools/main';
|
|
4
4
|
import { EditorToolsSettings } from './config/toolsSettings';
|
|
5
5
|
import { EditorUtils } from './utils/main';
|
|
6
|
-
import { Selection, SelectionRange, TextSelection, NodeSelection, AllSelection, EditorState, Plugin, PluginKey, Transaction, Decoration, DecorationSet, EditorView, Node, ResolvedPos, NodeRange, Fragment, Slice, ReplaceError, Mark, Schema, NodeType, 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,
|
|
6
|
+
import { Selection, SelectionRange, TextSelection, NodeSelection, AllSelection, EditorState, Plugin, PluginKey, Transaction, Decoration, DecorationSet, EditorView, Node, ResolvedPos, NodeRange, Fragment, Slice, ReplaceError, Mark, Schema, NodeType, 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
7
|
export { Shortcuts } from './config/shortcuts';
|
|
8
8
|
export { PasteCleanupSettings } from './config/pasteSettings';
|
|
9
9
|
/**
|
|
@@ -127,7 +127,9 @@ export declare const ProseMirror: {
|
|
|
127
127
|
gapCursor: typeof gapCursor;
|
|
128
128
|
tableEditing: typeof tableEditing;
|
|
129
129
|
fixTables: typeof fixTables;
|
|
130
|
-
fixTablesKey: PluginKey<
|
|
130
|
+
fixTablesKey: PluginKey<{
|
|
131
|
+
fixTables: boolean;
|
|
132
|
+
}>;
|
|
131
133
|
cellAround: typeof cellAround;
|
|
132
134
|
isInTable: typeof isInTable;
|
|
133
135
|
selectionCell: typeof selectionCell;
|
|
@@ -143,9 +145,9 @@ export declare const ProseMirror: {
|
|
|
143
145
|
tableNodeTypes: typeof tableNodeTypes;
|
|
144
146
|
CellSelection: typeof CellSelection;
|
|
145
147
|
TableMap: typeof TableMap;
|
|
146
|
-
tableEditingKey: PluginKey<
|
|
148
|
+
tableEditingKey: PluginKey<number>;
|
|
147
149
|
columnResizing: typeof columnResizing;
|
|
148
|
-
columnResizingPluginKey: PluginKey<
|
|
150
|
+
columnResizingPluginKey: PluginKey<import("prosemirror-tables").ResizeState>;
|
|
149
151
|
updateColumnsOnResize: typeof updateColumnsOnResize;
|
|
150
152
|
selectedRect: typeof selectedRect;
|
|
151
153
|
addColumn: typeof addColumn;
|
|
@@ -162,9 +164,9 @@ export declare const ProseMirror: {
|
|
|
162
164
|
splitCellWithType: typeof splitCellWithType;
|
|
163
165
|
setCellAttr: typeof setCellAttr;
|
|
164
166
|
toggleHeader: typeof toggleHeader;
|
|
165
|
-
toggleHeaderRow:
|
|
166
|
-
toggleHeaderColumn:
|
|
167
|
-
toggleHeaderCell:
|
|
167
|
+
toggleHeaderRow: import("prosemirror-state").Command;
|
|
168
|
+
toggleHeaderColumn: import("prosemirror-state").Command;
|
|
169
|
+
toggleHeaderCell: import("prosemirror-state").Command;
|
|
168
170
|
goToNextCell: typeof goToNextCell;
|
|
169
171
|
deleteTable: typeof deleteTable;
|
|
170
172
|
};
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-editor',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1675168527,
|
|
12
12
|
version: '',
|
|
13
13
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
14
14
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-editor",
|
|
3
3
|
"description": "Kendo UI for Vue Editor package",
|
|
4
|
-
"version": "3.8.3
|
|
4
|
+
"version": "3.8.3",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -50,23 +50,23 @@
|
|
|
50
50
|
"vue": "^2.6.12 || ^3.0.2"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@progress/kendo-editor-common": "1.9.
|
|
54
|
-
"@progress/kendo-vue-common": "3.8.3
|
|
53
|
+
"@progress/kendo-editor-common": "1.9.4",
|
|
54
|
+
"@progress/kendo-vue-common": "3.8.3"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@progress/kendo-drawing": "^1.8.0",
|
|
58
58
|
"@progress/kendo-licensing": "^1.3.0",
|
|
59
59
|
"@progress/kendo-svg-icons": "^1.0.0",
|
|
60
|
-
"@progress/kendo-vue-buttons": "3.8.3
|
|
61
|
-
"@progress/kendo-vue-dialogs": "3.8.3
|
|
62
|
-
"@progress/kendo-vue-dropdowns": "3.8.3
|
|
63
|
-
"@progress/kendo-vue-form": "3.8.3
|
|
64
|
-
"@progress/kendo-vue-inputs": "3.8.3
|
|
65
|
-
"@progress/kendo-vue-intl": "3.8.3
|
|
66
|
-
"@progress/kendo-vue-layout": "3.8.3
|
|
67
|
-
"@progress/kendo-vue-pdf": "3.8.3
|
|
68
|
-
"@progress/kendo-vue-popup": "3.8.3
|
|
69
|
-
"@progress/kendo-vue-upload": "3.8.3
|
|
60
|
+
"@progress/kendo-vue-buttons": "3.8.3",
|
|
61
|
+
"@progress/kendo-vue-dialogs": "3.8.3",
|
|
62
|
+
"@progress/kendo-vue-dropdowns": "3.8.3",
|
|
63
|
+
"@progress/kendo-vue-form": "3.8.3",
|
|
64
|
+
"@progress/kendo-vue-inputs": "3.8.3",
|
|
65
|
+
"@progress/kendo-vue-intl": "3.8.3",
|
|
66
|
+
"@progress/kendo-vue-layout": "3.8.3",
|
|
67
|
+
"@progress/kendo-vue-pdf": "3.8.3",
|
|
68
|
+
"@progress/kendo-vue-popup": "3.8.3",
|
|
69
|
+
"@progress/kendo-vue-upload": "3.8.3",
|
|
70
70
|
"prosemirror-markdown": "1.10.1",
|
|
71
71
|
"prosemirror-tables": "^1.2.5"
|
|
72
72
|
},
|