@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/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, toggleHeaderRow, toggleHeaderColumn, toggleHeaderCell, goToNextCell, deleteTable } from '@progress/kendo-editor-common';
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<any>;
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<any>;
148
+ tableEditingKey: PluginKey<number>;
147
149
  columnResizing: typeof columnResizing;
148
- columnResizingPluginKey: PluginKey<any>;
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: typeof toggleHeaderRow;
166
- toggleHeaderColumn: typeof toggleHeaderColumn;
167
- toggleHeaderCell: typeof 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: 1675090238,
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
  };
@@ -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, toggleHeaderRow, toggleHeaderColumn, toggleHeaderCell, goToNextCell, deleteTable } from '@progress/kendo-editor-common';
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<any>;
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<any>;
148
+ tableEditingKey: PluginKey<number>;
147
149
  columnResizing: typeof columnResizing;
148
- columnResizingPluginKey: PluginKey<any>;
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: typeof toggleHeaderRow;
166
- toggleHeaderColumn: typeof toggleHeaderColumn;
167
- toggleHeaderCell: typeof 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: 1675090238,
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
  };
@@ -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, toggleHeaderRow, toggleHeaderColumn, toggleHeaderCell, goToNextCell, deleteTable } from '@progress/kendo-editor-common';
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<any>;
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<any>;
148
+ tableEditingKey: PluginKey<number>;
147
149
  columnResizing: typeof columnResizing;
148
- columnResizingPluginKey: PluginKey<any>;
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: typeof toggleHeaderRow;
166
- toggleHeaderColumn: typeof toggleHeaderColumn;
167
- toggleHeaderCell: typeof 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: 1675090238,
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-dev.202301301503",
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.3",
54
- "@progress/kendo-vue-common": "3.8.3-dev.202301301503"
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-dev.202301301503",
61
- "@progress/kendo-vue-dialogs": "3.8.3-dev.202301301503",
62
- "@progress/kendo-vue-dropdowns": "3.8.3-dev.202301301503",
63
- "@progress/kendo-vue-form": "3.8.3-dev.202301301503",
64
- "@progress/kendo-vue-inputs": "3.8.3-dev.202301301503",
65
- "@progress/kendo-vue-intl": "3.8.3-dev.202301301503",
66
- "@progress/kendo-vue-layout": "3.8.3-dev.202301301503",
67
- "@progress/kendo-vue-pdf": "3.8.3-dev.202301301503",
68
- "@progress/kendo-vue-popup": "3.8.3-dev.202301301503",
69
- "@progress/kendo-vue-upload": "3.8.3-dev.202301301503",
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
  },