@progress/kendo-vue-editor 8.0.3-develop.2 → 8.0.3-develop.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.
Files changed (53) hide show
  1. package/Editor.d.ts +587 -0
  2. package/Editor.mjs +2 -2
  3. package/EditorProps.d.ts +201 -0
  4. package/config/defaultStyles.d.ts +19 -0
  5. package/config/pasteSettings.d.ts +13 -0
  6. package/config/schema.d.ts +15 -0
  7. package/config/schema.mjs +3 -3
  8. package/config/shortcuts.d.ts +31 -0
  9. package/config/shortcuts.mjs +4 -4
  10. package/config/toolsSettings.d.ts +496 -0
  11. package/dialogs/EditorDialogProps.d.ts +30 -0
  12. package/dialogs/FindReplace.d.ts +83 -0
  13. package/dialogs/insertImage.d.ts +46 -0
  14. package/dialogs/insertLink.d.ts +42 -0
  15. package/dialogs/main.d.ts +7 -0
  16. package/dist/cdn/js/kendo-vue-editor.js +1 -1
  17. package/index.d.mts +192 -1920
  18. package/index.d.ts +192 -1920
  19. package/messages/main.d.ts +181 -0
  20. package/package-metadata.d.ts +12 -0
  21. package/package-metadata.js +1 -1
  22. package/package-metadata.mjs +2 -2
  23. package/package.json +20 -14
  24. package/tools/ToolProps.d.ts +42 -0
  25. package/tools/align.d.ts +17 -0
  26. package/tools/cleanFormatting.d.ts +25 -0
  27. package/tools/findReplace.d.ts +24 -0
  28. package/tools/fontStyle.d.ts +31 -0
  29. package/tools/formatBlock.d.ts +21 -0
  30. package/tools/history.d.ts +25 -0
  31. package/tools/indent.d.ts +20 -0
  32. package/tools/inlineFormat.d.ts +50 -0
  33. package/tools/insertImage.d.ts +23 -0
  34. package/tools/insertLink.d.ts +23 -0
  35. package/tools/insertTable/popup.d.ts +112 -0
  36. package/tools/insertTable/popupGrid.d.ts +43 -0
  37. package/tools/insertTable/tool.d.ts +26 -0
  38. package/tools/lists.d.ts +24 -0
  39. package/tools/main.d.ts +102 -0
  40. package/tools/outdent.d.ts +20 -0
  41. package/tools/pdf.d.ts +34 -0
  42. package/tools/print.d.ts +25 -0
  43. package/tools/proseMirrorTool.d.ts +23 -0
  44. package/tools/selectAll.d.ts +25 -0
  45. package/tools/tableEdit.d.ts +58 -0
  46. package/tools/unlink.d.ts +22 -0
  47. package/tools/utils.d.ts +25 -0
  48. package/tools/viewHtml.d.ts +26 -0
  49. package/utils/browser-detection.d.ts +11 -0
  50. package/utils/cleanup.d.ts +38 -0
  51. package/utils/controlled-value.d.ts +12 -0
  52. package/utils/main.d.ts +364 -0
  53. package/utils/props-key.d.ts +12 -0
@@ -0,0 +1,181 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * @hidden
10
+ */
11
+ export declare const messages: {
12
+ "editor.bold": string;
13
+ "editor.italic": string;
14
+ "editor.underline": string;
15
+ "editor.strikethrough": string;
16
+ "editor.subscript": string;
17
+ "editor.superscript": string;
18
+ "editor.unlink": string;
19
+ "editor.undo": string;
20
+ "editor.redo": string;
21
+ "editor.fontSize": string;
22
+ "editor.fontName": string;
23
+ "editor.format": string;
24
+ "editor.alignLeft": string;
25
+ "editor.alignRight": string;
26
+ "editor.alignCenter": string;
27
+ "editor.alignJustify": string;
28
+ "editor.indent": string;
29
+ "editor.outdent": string;
30
+ "editor.orderedList": string;
31
+ "editor.bulletList": string;
32
+ "editor.print": string;
33
+ "editor.selectAll": string;
34
+ "editor.cleanFormatting": string;
35
+ "editor.pdf": string;
36
+ "editor.foregroundColor": string;
37
+ "editor.backgroundColor": string;
38
+ "editor.foregroundColorAriaLabel": string;
39
+ "editor.backgroundColorAriaLabel": string;
40
+ "editor.createTable": string;
41
+ "editor.insertTableHint": string;
42
+ "editor.addRowBefore": string;
43
+ "editor.addRowAfter": string;
44
+ "editor.addColumnBefore": string;
45
+ "editor.addColumnAfter": string;
46
+ "editor.deleteRow": string;
47
+ "editor.deleteColumn": string;
48
+ "editor.deleteTable": string;
49
+ "editor.mergeCells": string;
50
+ "editor.splitCell": string;
51
+ "editor.hyperlink": string;
52
+ "editor.hyperlink-dialog-title": string;
53
+ "editor.hyperlink-dialog-content-address": string;
54
+ "editor.hyperlink-dialog-content-title": string;
55
+ "editor.hyperlink-dialog-content-newwindow": string;
56
+ "editor.hyperlink-dialog-cancel": string;
57
+ "editor.hyperlink-dialog-insert": string;
58
+ "editor.insertFile": string;
59
+ "editor.insertfile-dialog-title": string;
60
+ "editor.insertfile-dialog-content-address": string;
61
+ "editor.insertfile-dialog-content-title": string;
62
+ "editor.insertfile-dialog-cancel": string;
63
+ "editor.insertfile-dialog-insert": string;
64
+ "editor.image": string;
65
+ "editor.image-dialog-title": string;
66
+ "editor.image-address": string;
67
+ "editor.image-title": string;
68
+ "editor.image-altText": string;
69
+ "editor.image-width": string;
70
+ "editor.image-height": string;
71
+ "editor.image-cancel": string;
72
+ "editor.image-insert": string;
73
+ "editor.viewHtml": string;
74
+ "editor.viewHtml-dialog-title": string;
75
+ "editor.viewHtml-cancel": string;
76
+ "editor.viewHtml-update": string;
77
+ "editor.findReplace-tool-title": string;
78
+ "editor.findReplace-dialog-title": string;
79
+ "editor.findReplace-tab-find": string;
80
+ "editor.findReplace-tab-replace": string;
81
+ "editor.findReplace-findWhat": string;
82
+ "editor.findReplace-replaceWith": string;
83
+ "editor.findReplace-replace": string;
84
+ "editor.findReplace-replaceAll": string;
85
+ "editor.findReplace-matchCase": string;
86
+ "editor.findReplace-matchWord": string;
87
+ "editor.findReplace-matchCyclic": string;
88
+ "editor.findReplace-useRegExp": string;
89
+ "editor.findReplace-prevMatch": string;
90
+ "editor.findReplace-nextMatch": string;
91
+ "editor.findReplace-matches": string;
92
+ "editor.findReplace-invalidRegExp": string;
93
+ "editor.iframeTitle": string;
94
+ };
95
+ /**
96
+ * @hidden
97
+ */
98
+ export declare const keys: {
99
+ bold: string;
100
+ italic: string;
101
+ underline: string;
102
+ strikethrough: string;
103
+ subscript: string;
104
+ superscript: string;
105
+ unlink: string;
106
+ undo: string;
107
+ redo: string;
108
+ fontSize: string;
109
+ fontName: string;
110
+ format: string;
111
+ alignLeft: string;
112
+ alignRight: string;
113
+ alignCenter: string;
114
+ alignJustify: string;
115
+ indent: string;
116
+ outdent: string;
117
+ orderedList: string;
118
+ bulletList: string;
119
+ print: string;
120
+ selectAll: string;
121
+ cleanFormatting: string;
122
+ pdf: string;
123
+ foregroundColor: string;
124
+ backgroundColor: string;
125
+ foregroundColorAriaLabel: string;
126
+ backgroundColorAriaLabel: string;
127
+ createTable: string;
128
+ createTableHint: string;
129
+ addRowBefore: string;
130
+ addRowAfter: string;
131
+ addColumnBefore: string;
132
+ addColumnAfter: string;
133
+ deleteRow: string;
134
+ deleteColumn: string;
135
+ deleteTable: string;
136
+ mergeCells: string;
137
+ splitCell: string;
138
+ insertHyperlink: string;
139
+ insertHyperlinkDialogTitle: string;
140
+ insertHyperlinkAddress: string;
141
+ insertHyperlinkTitle: string;
142
+ insertHyperlinkNewWindow: string;
143
+ insertHyperlinkCancel: string;
144
+ insertHyperlinkInsert: string;
145
+ insertFile: string;
146
+ insertFileDialogTitle: string;
147
+ insertFileAddress: string;
148
+ insertFileTitle: string;
149
+ insertFileCancel: string;
150
+ insertFileInsert: string;
151
+ insertImage: string;
152
+ insertImageDialogTitle: string;
153
+ insertImageAddress: string;
154
+ insertImageTitle: string;
155
+ insertImageAltText: string;
156
+ insertImageWidth: string;
157
+ insertImageHeight: string;
158
+ insertImageCancel: string;
159
+ insertImageInsert: string;
160
+ viewHtml: string;
161
+ viewHtmlDialogTitle: string;
162
+ viewHtmlCancel: string;
163
+ viewHtmlUpdate: string;
164
+ findReplaceToolTitle: string;
165
+ findReplaceDialogTitle: string;
166
+ findReplaceTabFind: string;
167
+ findReplaceTabReplace: string;
168
+ findReplaceFindWhat: string;
169
+ findReplaceReplaceWith: string;
170
+ findReplaceReplace: string;
171
+ findReplaceReplaceAll: string;
172
+ findReplaceMatchCase: string;
173
+ findReplaceMatchWord: string;
174
+ findReplaceMatchCyclic: string;
175
+ findReplaceUseRegExp: string;
176
+ findReplacePrevMatch: string;
177
+ findReplaceNextMatch: string;
178
+ findReplaceMatches: string;
179
+ findReplaceInvalidRegExp: string;
180
+ iframeTitle: string;
181
+ };
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { PackageMetadata } from '@progress/kendo-licensing';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export declare const packageMetadata: PackageMetadata;
@@ -5,4 +5,4 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-editor",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1773130417,version:"8.0.3-develop.2",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"};exports.packageMetadata=e;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-editor",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1773401775,version:"8.0.3-develop.3",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"};exports.packageMetadata=e;
@@ -10,8 +10,8 @@ const e = {
10
10
  productName: "Kendo UI for Vue",
11
11
  productCode: "KENDOUIVUE",
12
12
  productCodes: ["KENDOUIVUE"],
13
- publishDate: 1773130417,
14
- version: "8.0.3-develop.2",
13
+ publishDate: 1773401775,
14
+ version: "8.0.3-develop.3",
15
15
  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"
16
16
  };
17
17
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-editor",
3
- "version": "8.0.3-develop.2",
3
+ "version": "8.0.3-develop.3",
4
4
  "description": "TODO",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -9,8 +9,14 @@
9
9
  "types": "./index.d.ts",
10
10
  "exports": {
11
11
  ".": {
12
- "import": "./index.mjs",
13
- "require": "./index.js"
12
+ "import": {
13
+ "types": "./index.d.mts",
14
+ "default": "./index.mjs"
15
+ },
16
+ "require": {
17
+ "types": "./index.d.ts",
18
+ "default": "./index.js"
19
+ }
14
20
  },
15
21
  "./package.json": {
16
22
  "default": "./package.json"
@@ -19,16 +25,16 @@
19
25
  "sideEffects": false,
20
26
  "peerDependencies": {
21
27
  "@progress/kendo-licensing": "^1.7.2",
22
- "@progress/kendo-vue-buttons": "8.0.3-develop.2",
23
- "@progress/kendo-vue-common": "8.0.3-develop.2",
24
- "@progress/kendo-vue-dialogs": "8.0.3-develop.2",
25
- "@progress/kendo-vue-dropdowns": "8.0.3-develop.2",
26
- "@progress/kendo-vue-form": "8.0.3-develop.2",
27
- "@progress/kendo-vue-inputs": "8.0.3-develop.2",
28
- "@progress/kendo-vue-intl": "8.0.3-develop.2",
29
- "@progress/kendo-vue-layout": "8.0.3-develop.2",
30
- "@progress/kendo-vue-pdf": "8.0.3-develop.2",
31
- "@progress/kendo-vue-popup": "8.0.3-develop.2",
28
+ "@progress/kendo-vue-buttons": "8.0.3-develop.3",
29
+ "@progress/kendo-vue-common": "8.0.3-develop.3",
30
+ "@progress/kendo-vue-dialogs": "8.0.3-develop.3",
31
+ "@progress/kendo-vue-dropdowns": "8.0.3-develop.3",
32
+ "@progress/kendo-vue-form": "8.0.3-develop.3",
33
+ "@progress/kendo-vue-inputs": "8.0.3-develop.3",
34
+ "@progress/kendo-vue-intl": "8.0.3-develop.3",
35
+ "@progress/kendo-vue-layout": "8.0.3-develop.3",
36
+ "@progress/kendo-vue-pdf": "8.0.3-develop.3",
37
+ "@progress/kendo-vue-popup": "8.0.3-develop.3",
32
38
  "@progress/kendo-svg-icons": "^4.4.0",
33
39
  "vue": "^3.0.2"
34
40
  },
@@ -51,7 +57,7 @@
51
57
  "package": {
52
58
  "productName": "Kendo UI for Vue",
53
59
  "productCode": "KENDOUIVUE",
54
- "publishDate": 1773130417,
60
+ "publishDate": 1773401775,
55
61
  "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"
56
62
  }
57
63
  },
@@ -0,0 +1,42 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { EditorView } from '@progress/kendo-editor-common';
9
+ import { ButtonProps } from '@progress/kendo-vue-buttons';
10
+ /**
11
+ * @hidden
12
+ */
13
+ export interface BasicToolProps {
14
+ /**
15
+ * The `EditorView` object of the Editor component.
16
+ */
17
+ view?: EditorView;
18
+ }
19
+ /**
20
+ * @hidden
21
+ */
22
+ export interface ToolProps extends BasicToolProps, ToolRenderProp, ButtonProps {
23
+ }
24
+ /**
25
+ * @hidden
26
+ */
27
+ export interface ToolRenderProp {
28
+ /**
29
+ * Fires when a tool is about to be rendered. Used to override the default appearance of the tool.
30
+ */
31
+ settings?: any;
32
+ }
33
+ /**
34
+ * @hidden
35
+ */
36
+ export interface ToolWithDialogRenderProp {
37
+ /**
38
+ * Fires when a tool is about to be rendered. Used to override the default appearance of the tool.
39
+ */
40
+ render?: (tool: [
41
+ ], args?: any) => any;
42
+ }
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * @hidden
10
+ */
11
+ declare const Align: import('vue').DefineComponent<{}, {}, {}, {}, {
12
+ handleClick(): boolean | void;
13
+ preventDefault(e: any): void;
14
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {} | {
15
+ [x: string]: any;
16
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
17
+ export { Align };
@@ -0,0 +1,25 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { ToolProps } from './ToolProps';
9
+ import { EditorToolsSettings } from './../config/toolsSettings';
10
+ export interface CleanFormattingProps extends ToolProps {
11
+ /**
12
+ * The settings of the tool. Use it to modify the tool appearance.
13
+ */
14
+ settings?: EditorToolsSettings.CleanFormattingSettings;
15
+ }
16
+ /**
17
+ * @hidden
18
+ */
19
+ declare const CleanFormatting: import('vue').DefineComponent<{}, {}, {}, {}, {
20
+ handleClick(): void;
21
+ preventDefault(e: any): void;
22
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {} | {
23
+ [x: string]: any;
24
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
25
+ export { CleanFormatting };
@@ -0,0 +1,24 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { ButtonProps } from '@progress/kendo-vue-buttons';
9
+ import { BasicToolProps, ToolRenderProp } from './ToolProps';
10
+ export interface FindAndReplaceProps extends BasicToolProps, ToolRenderProp, ButtonProps {
11
+ }
12
+ /**
13
+ * @hidden
14
+ */
15
+ declare const FindAndReplace: import('vue').DefineComponent<{}, {}, {
16
+ showDialog: boolean;
17
+ }, {}, {
18
+ onClose(): void;
19
+ onOpen(): void;
20
+ preventDefault(e: any): void;
21
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {} | {
22
+ [x: string]: any;
23
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
24
+ export { FindAndReplace };
@@ -0,0 +1,31 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { DropDownListProps, DropDownListChangeEvent } from '@progress/kendo-vue-dropdowns';
9
+ import { BasicToolProps, ToolRenderProp } from './ToolProps';
10
+ export interface DropDownListToolProps extends BasicToolProps, ToolRenderProp, DropDownListProps {
11
+ }
12
+ /**
13
+ * @hidden
14
+ */
15
+ export interface FontSizeProps extends DropDownListToolProps {
16
+ }
17
+ /**
18
+ * @hidden
19
+ */
20
+ export interface FontNameProps extends DropDownListToolProps {
21
+ }
22
+ /**
23
+ * @hidden
24
+ */
25
+ declare const FontName: import('vue').DefineComponent<{}, {}, {}, {}, {
26
+ customItemRender(h: any, li: any, itemProps: any): any;
27
+ onFontNameChange(e: DropDownListChangeEvent): void;
28
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {} | {
29
+ [x: string]: any;
30
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
31
+ export { FontName };
@@ -0,0 +1,21 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { DropDownListChangeEvent, DropDownListProps } from '@progress/kendo-vue-dropdowns';
9
+ import { BasicToolProps, ToolRenderProp } from './ToolProps';
10
+ export interface FormatBlockProps extends BasicToolProps, ToolRenderProp, DropDownListProps {
11
+ }
12
+ /**
13
+ * @hidden
14
+ */
15
+ declare const FormatBlock: import('vue').DefineComponent<{}, {}, {}, {}, {
16
+ customItemRender(hRender: any, li: any, itemProps: any): any;
17
+ onFormatBlockChange(e: DropDownListChangeEvent): void;
18
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {} | {
19
+ [x: string]: any;
20
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
21
+ export { FormatBlock };
@@ -0,0 +1,25 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { ToolProps } from './ToolProps';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export declare namespace HistoryToolNS {
13
+ /**
14
+ * @hidden
15
+ */
16
+ interface UndoProps extends ToolProps {
17
+ command?: any;
18
+ }
19
+ /**
20
+ * @hidden
21
+ */
22
+ interface RedoProps extends ToolProps {
23
+ command?: any;
24
+ }
25
+ }
@@ -0,0 +1,20 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { ToolProps } from './ToolProps';
9
+ export interface IndentProps extends ToolProps {
10
+ }
11
+ /**
12
+ * @hidden
13
+ */
14
+ declare const Indent: import('vue').DefineComponent<{}, {}, {}, {}, {
15
+ handleClick(): void;
16
+ preventDefault(e: any): void;
17
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {} | {
18
+ [x: string]: any;
19
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
20
+ export { Indent };
@@ -0,0 +1,50 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { ToolProps } from './ToolProps';
9
+ export interface InlineFormatToolProps extends ToolProps {
10
+ }
11
+ /**
12
+ * @hidden
13
+ */
14
+ export interface BoldProps extends InlineFormatToolProps {
15
+ }
16
+ /**
17
+ * @hidden
18
+ */
19
+ export interface ItalicProps extends InlineFormatToolProps {
20
+ }
21
+ /**
22
+ * @hidden
23
+ */
24
+ export interface UnderlineProps extends InlineFormatToolProps {
25
+ }
26
+ /**
27
+ * @hidden
28
+ */
29
+ export interface StrikethroughProps extends InlineFormatToolProps {
30
+ }
31
+ /**
32
+ * @hidden
33
+ */
34
+ export interface SubscriptProps extends InlineFormatToolProps {
35
+ }
36
+ /**
37
+ * @hidden
38
+ */
39
+ export interface SuperscriptProps extends InlineFormatToolProps {
40
+ }
41
+ /**
42
+ * @hidden
43
+ */
44
+ declare const InlineFormat: import('vue').DefineComponent<{}, {}, {}, {}, {
45
+ handleClick(): boolean;
46
+ preventDefault(e: any): void;
47
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {} | {
48
+ [x: string]: any;
49
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
50
+ export { InlineFormat };
@@ -0,0 +1,23 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { BasicToolProps, ToolRenderProp } from './ToolProps';
9
+ export interface InsertImageProps extends BasicToolProps, ToolRenderProp {
10
+ dir?: string;
11
+ }
12
+ /**
13
+ * @hidden
14
+ */
15
+ declare const InsertImage: import('vue').DefineComponent<{}, {}, {
16
+ openedDialog: boolean;
17
+ }, {}, {
18
+ toggleDialog(): void;
19
+ preventDefault(e: any): void;
20
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {} | {
21
+ [x: string]: any;
22
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
23
+ export { InsertImage };
@@ -0,0 +1,23 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { ButtonProps } from '@progress/kendo-vue-buttons';
9
+ import { BasicToolProps, ToolRenderProp } from './ToolProps';
10
+ export interface LinkProps extends BasicToolProps, ToolRenderProp, ButtonProps {
11
+ }
12
+ /**
13
+ * @hidden
14
+ */
15
+ declare const LinkTool: import('vue').DefineComponent<{}, {}, {
16
+ openedDialog: boolean;
17
+ }, {}, {
18
+ toggleDialog(): void;
19
+ preventDefault(e: any): void;
20
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {} | {
21
+ [x: string]: any;
22
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
23
+ export { LinkTool };