@progress/kendo-react-editor 7.2.4-develop.3 → 7.2.4-develop.4

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 (150) hide show
  1. package/Editor.js +8 -0
  2. package/Editor.mjs +327 -0
  3. package/config/defaultStyles.js +229 -0
  4. package/config/defaultStyles.mjs +235 -0
  5. package/config/shortcuts.js +8 -0
  6. package/config/shortcuts.mjs +34 -0
  7. package/config/toolsSettings.js +8 -0
  8. package/config/toolsSettings.mjs +549 -0
  9. package/dialogs/FindReplace.js +8 -0
  10. package/dialogs/FindReplace.mjs +214 -0
  11. package/dialogs/index.js +8 -0
  12. package/dialogs/index.mjs +30 -0
  13. package/dialogs/insertImage.js +8 -0
  14. package/dialogs/insertImage.mjs +117 -0
  15. package/dialogs/insertLink.js +8 -0
  16. package/dialogs/insertLink.mjs +96 -0
  17. package/dialogs/viewHtml.js +8 -0
  18. package/dialogs/viewHtml.mjs +70 -0
  19. package/dist/cdn/js/kendo-react-editor.js +8 -226
  20. package/index.d.mts +2943 -5
  21. package/index.d.ts +2941 -178
  22. package/index.js +8 -226
  23. package/index.mjs +165 -4118
  24. package/messages/index.js +8 -0
  25. package/messages/index.mjs +345 -0
  26. package/package-metadata.js +8 -0
  27. package/package-metadata.mjs +19 -0
  28. package/package.json +11 -11
  29. package/tools/align.js +8 -0
  30. package/tools/align.mjs +38 -0
  31. package/tools/applyColor.js +8 -0
  32. package/tools/applyColor.mjs +34 -0
  33. package/tools/cleanFormatting.js +8 -0
  34. package/tools/cleanFormatting.mjs +41 -0
  35. package/tools/findReplace.js +8 -0
  36. package/tools/findReplace.mjs +53 -0
  37. package/tools/fontStyle.js +8 -0
  38. package/tools/fontStyle.mjs +61 -0
  39. package/tools/formatBlock.js +8 -0
  40. package/tools/formatBlock.mjs +60 -0
  41. package/tools/history.js +8 -0
  42. package/tools/history.mjs +17 -0
  43. package/tools/indent.js +8 -0
  44. package/tools/indent.mjs +43 -0
  45. package/tools/index.js +8 -0
  46. package/tools/index.mjs +278 -0
  47. package/tools/inlineFormat.js +8 -0
  48. package/tools/inlineFormat.mjs +43 -0
  49. package/tools/insertImage.js +8 -0
  50. package/tools/insertImage.mjs +58 -0
  51. package/tools/insertLink.js +8 -0
  52. package/tools/insertLink.mjs +61 -0
  53. package/tools/insertTable/popup.js +8 -0
  54. package/tools/insertTable/popup.mjs +94 -0
  55. package/tools/insertTable/popupGrid.js +8 -0
  56. package/tools/insertTable/popupGrid.mjs +58 -0
  57. package/tools/insertTable/tool.js +8 -0
  58. package/tools/insertTable/tool.mjs +73 -0
  59. package/tools/lists-styled.js +8 -0
  60. package/tools/lists-styled.mjs +61 -0
  61. package/tools/lists.js +8 -0
  62. package/tools/lists.mjs +47 -0
  63. package/tools/outdent.js +8 -0
  64. package/tools/outdent.mjs +43 -0
  65. package/tools/pdf.js +8 -0
  66. package/tools/pdf.mjs +36 -0
  67. package/tools/print.js +8 -0
  68. package/tools/print.mjs +38 -0
  69. package/tools/proseMirrorTool.js +8 -0
  70. package/tools/proseMirrorTool.mjs +37 -0
  71. package/tools/selectAll.js +8 -0
  72. package/tools/selectAll.mjs +36 -0
  73. package/tools/table-wizard/cellPropsUtils.js +8 -0
  74. package/tools/table-wizard/cellPropsUtils.mjs +124 -0
  75. package/tools/table-wizard/tableCellProperties.js +8 -0
  76. package/tools/table-wizard/tableCellProperties.mjs +238 -0
  77. package/tools/table-wizard/tableProperties.js +8 -0
  78. package/tools/table-wizard/tableProperties.mjs +292 -0
  79. package/tools/table-wizard/tablePropsUtils.js +8 -0
  80. package/tools/table-wizard/tablePropsUtils.mjs +288 -0
  81. package/tools/table-wizard/utils.js +8 -0
  82. package/tools/table-wizard/utils.mjs +91 -0
  83. package/tools/tableEdit.js +8 -0
  84. package/tools/tableEdit.mjs +36 -0
  85. package/tools/unlink.js +8 -0
  86. package/tools/unlink.mjs +41 -0
  87. package/tools/utils.js +8 -0
  88. package/tools/utils.mjs +51 -0
  89. package/tools/viewHtml.js +8 -0
  90. package/tools/viewHtml.mjs +57 -0
  91. package/utils/browser-detection.js +8 -0
  92. package/utils/browser-detection.mjs +12 -0
  93. package/utils/controlled-value.js +8 -0
  94. package/utils/controlled-value.mjs +19 -0
  95. package/utils/index.js +8 -0
  96. package/utils/index.mjs +162 -0
  97. package/utils/props-key.js +8 -0
  98. package/utils/props-key.mjs +13 -0
  99. package/Editor.d.ts +0 -122
  100. package/EditorProps.d.ts +0 -200
  101. package/config/defaultStyles.d.ts +0 -16
  102. package/config/pasteSettings.d.ts +0 -10
  103. package/config/schema.d.ts +0 -5
  104. package/config/shortcuts.d.ts +0 -28
  105. package/config/toolsSettings.d.ts +0 -493
  106. package/dialogs/EditorDialogProps.d.ts +0 -30
  107. package/dialogs/FindReplace.d.ts +0 -75
  108. package/dialogs/index.d.ts +0 -53
  109. package/dialogs/insertImage.d.ts +0 -32
  110. package/dialogs/insertLink.d.ts +0 -30
  111. package/dialogs/viewHtml.d.ts +0 -29
  112. package/messages/index.d.ts +0 -338
  113. package/package-metadata.d.ts +0 -9
  114. package/tools/ToolProps.d.ts +0 -41
  115. package/tools/align.d.ts +0 -11
  116. package/tools/applyColor.d.ts +0 -16
  117. package/tools/cleanFormatting.d.ts +0 -20
  118. package/tools/findReplace.d.ts +0 -33
  119. package/tools/fontStyle.d.ts +0 -32
  120. package/tools/formatBlock.d.ts +0 -22
  121. package/tools/history.d.ts +0 -30
  122. package/tools/indent.d.ts +0 -21
  123. package/tools/index.d.ts +0 -718
  124. package/tools/inlineFormat.d.ts +0 -51
  125. package/tools/insertImage.d.ts +0 -17
  126. package/tools/insertLink.d.ts +0 -28
  127. package/tools/insertTable/index.d.ts +0 -7
  128. package/tools/insertTable/popup.d.ts +0 -97
  129. package/tools/insertTable/popupGrid.d.ts +0 -35
  130. package/tools/insertTable/tool.d.ts +0 -28
  131. package/tools/lists-styled.d.ts +0 -8
  132. package/tools/lists.d.ts +0 -31
  133. package/tools/outdent.d.ts +0 -21
  134. package/tools/pdf.d.ts +0 -29
  135. package/tools/print.d.ts +0 -20
  136. package/tools/proseMirrorTool.d.ts +0 -16
  137. package/tools/selectAll.d.ts +0 -20
  138. package/tools/table-wizard/cellPropsUtils.d.ts +0 -40
  139. package/tools/table-wizard/tableCellProperties.d.ts +0 -24
  140. package/tools/table-wizard/tableProperties.d.ts +0 -15
  141. package/tools/table-wizard/tablePropsUtils.d.ts +0 -56
  142. package/tools/table-wizard/utils.d.ts +0 -43
  143. package/tools/tableEdit.d.ts +0 -102
  144. package/tools/unlink.d.ts +0 -21
  145. package/tools/utils.d.ts +0 -54
  146. package/tools/viewHtml.d.ts +0 -28
  147. package/utils/browser-detection.d.ts +0 -8
  148. package/utils/controlled-value.d.ts +0 -9
  149. package/utils/index.d.ts +0 -367
  150. package/utils/props-key.d.ts +0 -9
@@ -1,30 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as React from 'react';
6
- import { EditorToolsSettings } from '../config/toolsSettings';
7
- import { EditorDialogProps } from './EditorDialogProps';
8
- /**
9
- * @hidden
10
- */
11
- export interface InsertLinkDialogProps extends EditorDialogProps {
12
- /**
13
- * The `LinkSettings` object.
14
- */
15
- settings: EditorToolsSettings.LinkSettings;
16
- }
17
- /**
18
- * @hidden
19
- */
20
- export declare class InsertLinkDialog extends React.Component<InsertLinkDialogProps> {
21
- private href;
22
- private title;
23
- private target;
24
- /**
25
- * @hidden
26
- */
27
- render(): string | number | boolean | Iterable<React.ReactNode> | import("react/jsx-runtime").JSX.Element | null | undefined;
28
- private onClose;
29
- private onInsert;
30
- }
@@ -1,29 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as React from 'react';
6
- import { EditorToolsSettings } from '../config/toolsSettings';
7
- import { EditorDialogProps } from './EditorDialogProps';
8
- /**
9
- * @hidden
10
- */
11
- export interface ViewHtmlDialogProps extends EditorDialogProps {
12
- /**
13
- * The `ViewHtmlSettings` object.
14
- */
15
- settings: EditorToolsSettings.ViewHtmlSettings;
16
- }
17
- /**
18
- * @hidden
19
- */
20
- export declare class ViewHtmlDialog extends React.Component<ViewHtmlDialogProps> {
21
- private htmlArea;
22
- /**
23
- * @hidden
24
- */
25
- render(): string | number | boolean | Iterable<React.ReactNode> | import("react/jsx-runtime").JSX.Element | null | undefined;
26
- private textAreaRef;
27
- private onUpdate;
28
- private onClose;
29
- }
@@ -1,338 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * @hidden
7
- */
8
- export declare const messages: {
9
- "editor.bold": string;
10
- "editor.italic": string;
11
- "editor.underline": string;
12
- "editor.strikethrough": string;
13
- "editor.subscript": string;
14
- "editor.superscript": string;
15
- "editor.unlink": string;
16
- "editor.undo": string;
17
- "editor.redo": string;
18
- "editor.fontSize": string;
19
- "editor.fontName": string;
20
- "editor.format": string;
21
- "editor.alignLeft": string;
22
- "editor.alignRight": string;
23
- "editor.alignCenter": string;
24
- "editor.alignJustify": string;
25
- "editor.indent": string;
26
- "editor.outdent": string;
27
- "editor.orderedList": string;
28
- "editor.bulletList": string;
29
- "editor.print": string;
30
- "editor.selectAll": string;
31
- "editor.cleanFormatting": string;
32
- "editor.pdf": string;
33
- "editor.foregroundColor": string;
34
- "editor.backgroundColor": string;
35
- "editor.createTable": string;
36
- "editor.insertTableHint": string;
37
- "editor.addRowBefore": string;
38
- "editor.addRowAfter": string;
39
- "editor.addColumnBefore": string;
40
- "editor.addColumnAfter": string;
41
- "editor.deleteRow": string;
42
- "editor.deleteColumn": string;
43
- "editor.deleteTable": string;
44
- "editor.mergeCells": string;
45
- "editor.splitCell": string;
46
- "editor.hyperlink": string;
47
- "editor.hyperlink-dialog-title": string;
48
- "editor.hyperlink-dialog-content-address": string;
49
- "editor.hyperlink-dialog-content-title": string;
50
- "editor.hyperlink-dialog-content-newwindow": string;
51
- "editor.hyperlink-dialog-cancel": string;
52
- "editor.hyperlink-dialog-insert": string;
53
- "editor.insertFile": string;
54
- "editor.insertfile-dialog-title": string;
55
- "editor.insertfile-dialog-content-address": string;
56
- "editor.insertfile-dialog-content-title": string;
57
- "editor.insertfile-dialog-cancel": string;
58
- "editor.insertfile-dialog-insert": string;
59
- "editor.image": string;
60
- "editor.image-dialog-title": string;
61
- "editor.image-address": string;
62
- "editor.image-title": string;
63
- "editor.image-altText": string;
64
- "editor.image-width": string;
65
- "editor.image-height": string;
66
- "editor.image-cancel": string;
67
- "editor.image-insert": string;
68
- "editor.viewHtml": string;
69
- "editor.viewHtml-dialog-title": string;
70
- "editor.viewHtml-cancel": string;
71
- "editor.viewHtml-update": string;
72
- "editor.findReplace-tool-title": string;
73
- "editor.findReplace-dialog-title": string;
74
- "editor.findReplace-tab-find": string;
75
- "editor.findReplace-tab-replace": string;
76
- "editor.findReplace-findWhat": string;
77
- "editor.findReplace-replaceWith": string;
78
- "editor.findReplace-replace": string;
79
- "editor.findReplace-replaceAll": string;
80
- "editor.findReplace-matchCase": string;
81
- "editor.findReplace-matchWord": string;
82
- "editor.findReplace-matchCyclic": string;
83
- "editor.findReplace-useRegExp": string;
84
- "editor.findReplace-prevMatch": string;
85
- "editor.findReplace-nextMatch": string;
86
- "editor.findReplace-matches": string;
87
- "editor.iframeTitle": string;
88
- "editorTools.foreColorLabel": string;
89
- "editorTools.backColorLabel": string;
90
- "editor.cellProperties": string;
91
- "editor.cellPropertiesLeftTop": string;
92
- "editor.cellPropertiesCenterTop": string;
93
- "editor.cellPropertiesRightTop": string;
94
- "editor.cellPropertiesLeftMiddle": string;
95
- "editor.cellPropertiesCenterMiddle": string;
96
- "editor.cellPropertiesRightMiddle": string;
97
- "editor.cellPropertiesLeftBottom": string;
98
- "editor.cellPropertiesCenterBottom": string;
99
- "editor.cellPropertiesRightBottom": string;
100
- "editor.cellPropertiesNoAlignment": string;
101
- "editor.cellPropertiesWrap": string;
102
- "editor.cellPropertiesFitToCell": string;
103
- "editor.cellPropertiesApplyToAllCells": string;
104
- "editor.cellPropertiesWidth": string;
105
- "editor.cellPropertiesApplyToColumn": string;
106
- "editor.cellPropertiesHeight": string;
107
- "editor.cellPropertiesApplyToRow": string;
108
- "editor.cellPropertiesAlignment": string;
109
- "editor.cellPropertiesTextControl": string;
110
- "editor.cellPropertiesCellPadding": string;
111
- "editor.cellPropertiesBackground": string;
112
- "editor.cellPropertiesBorderWidth": string;
113
- "editor.cellPropertiesBorderColor": string;
114
- "editor.cellPropertiesBorderStyle": string;
115
- "editor.cellPropertiesId": string;
116
- "editor.cellPropertiesCssClass": string;
117
- "editor.cellPropertiesSave": string;
118
- "editor.cellPropertiesCancel": string;
119
- "editor.tableProperties": string;
120
- "editor.tablePropertiesAlignLeft": string;
121
- "editor.tablePropertiesAlignCenter": string;
122
- "editor.tablePropertiesAlignRight": string;
123
- "editor.tablePropertiesNoAlignment": string;
124
- "editor.tablePropertiesLeft": string;
125
- "editor.tablePropertiesCenter": string;
126
- "editor.tablePropertiesRight": string;
127
- "editor.tablePropertiesTop": string;
128
- "editor.tablePropertiesBottom": string;
129
- "editor.tablePropertiesNone": string;
130
- "editor.tablePropertiesUsingScopeAttribute": string;
131
- "editor.tablePropertiesUsingIdAttributes": string;
132
- "editor.tablePropertiesRows": string;
133
- "editor.tablePropertiesColumns": string;
134
- "editor.tablePropertiesWidth": string;
135
- "editor.tablePropertiesHeight": string;
136
- "editor.tablePropertiesPosition": string;
137
- "editor.tablePropertiesAlignment": string;
138
- "editor.tablePropertiesCellSpacing": string;
139
- "editor.tablePropertiesCellPadding": string;
140
- "editor.tablePropertiesTableBackground": string;
141
- "editor.tablePropertiesBorderWidth": string;
142
- "editor.tablePropertiesBorderColor": string;
143
- "editor.tablePropertiesBorderStyle": string;
144
- "editor.tablePropertiesCollapseBorders": string;
145
- "editor.tablePropertiesID": string;
146
- "editor.tablePropertiesCssClass": string;
147
- "editor.tablePropertiesAccessibility": string;
148
- "editor.tablePropertiesCaption": string;
149
- "editor.tablePropertiesCaptionPosition": string;
150
- "editor.tablePropertiesCaptionAlignment": string;
151
- "editor.tablePropertiesHeaderRows": string;
152
- "editor.tablePropertiesHeaderCols": string;
153
- "editor.tablePropertiesAssociateHeaders": string;
154
- "editor.tablePropertiesGeneral": string;
155
- "editor.tablePropertiesAdvanced": string;
156
- "editor.tablePropertiesSave": string;
157
- "editor.tablePropertiesCancel": string;
158
- "editor.borderStyleNone": string;
159
- "editor.borderStyleSolid": string;
160
- "editor.borderStyleDotted": string;
161
- "editor.borderStyleDashed": string;
162
- "editor.borderStyleDouble": string;
163
- "editor.borderStyleGroove": string;
164
- "editor.borderStyleRidge": string;
165
- "editor.borderStyleInset": string;
166
- "editor.borderStyleOutset": string;
167
- "editor.borderStyleInitial": string;
168
- "editor.borderStyleInherit": string;
169
- "editor.borderStyleHidden": string;
170
- "editor.sizeAuto": string;
171
- };
172
- /**
173
- * @hidden
174
- */
175
- export declare const keys: {
176
- bold: string;
177
- italic: string;
178
- underline: string;
179
- strikethrough: string;
180
- subscript: string;
181
- superscript: string;
182
- unlink: string;
183
- undo: string;
184
- redo: string;
185
- fontSize: string;
186
- fontName: string;
187
- format: string;
188
- alignLeft: string;
189
- alignRight: string;
190
- alignCenter: string;
191
- alignJustify: string;
192
- indent: string;
193
- outdent: string;
194
- orderedList: string;
195
- bulletList: string;
196
- print: string;
197
- selectAll: string;
198
- cleanFormatting: string;
199
- pdf: string;
200
- foregroundColor: string;
201
- backgroundColor: string;
202
- createTable: string;
203
- createTableHint: string;
204
- addRowBefore: string;
205
- addRowAfter: string;
206
- addColumnBefore: string;
207
- addColumnAfter: string;
208
- deleteRow: string;
209
- deleteColumn: string;
210
- deleteTable: string;
211
- mergeCells: string;
212
- splitCell: string;
213
- insertHyperlink: string;
214
- insertHyperlinkDialogTitle: string;
215
- insertHyperlinkAddress: string;
216
- insertHyperlinkTitle: string;
217
- insertHyperlinkNewWindow: string;
218
- insertHyperlinkCancel: string;
219
- insertHyperlinkInsert: string;
220
- insertFile: string;
221
- insertFileDialogTitle: string;
222
- insertFileAddress: string;
223
- insertFileTitle: string;
224
- insertFileCancel: string;
225
- insertFileInsert: string;
226
- insertImage: string;
227
- insertImageDialogTitle: string;
228
- insertImageAddress: string;
229
- insertImageTitle: string;
230
- insertImageAltText: string;
231
- insertImageWidth: string;
232
- insertImageHeight: string;
233
- insertImageCancel: string;
234
- insertImageInsert: string;
235
- viewHtml: string;
236
- viewHtmlDialogTitle: string;
237
- viewHtmlCancel: string;
238
- viewHtmlUpdate: string;
239
- findReplaceToolTitle: string;
240
- findReplaceDialogTitle: string;
241
- findReplaceTabFind: string;
242
- findReplaceTabReplace: string;
243
- findReplaceFindWhat: string;
244
- findReplaceReplaceWith: string;
245
- findReplaceReplace: string;
246
- findReplaceReplaceAll: string;
247
- findReplaceMatchCase: string;
248
- findReplaceMatchWord: string;
249
- findReplaceMatchCyclic: string;
250
- findReplaceUseRegExp: string;
251
- findReplacePrevMatch: string;
252
- findReplaceNextMatch: string;
253
- findReplaceMatches: string;
254
- iframeTitle: string;
255
- foreColorLabel: string;
256
- backColorLabel: string;
257
- cellProperties: string;
258
- cellPropertiesLeftTop: string;
259
- cellPropertiesCenterTop: string;
260
- cellPropertiesRightTop: string;
261
- cellPropertiesLeftMiddle: string;
262
- cellPropertiesCenterMiddle: string;
263
- cellPropertiesRightMiddle: string;
264
- cellPropertiesLeftBottom: string;
265
- cellPropertiesCenterBottom: string;
266
- cellPropertiesRightBottom: string;
267
- cellPropertiesNoAlignment: string;
268
- cellPropertiesWrap: string;
269
- cellPropertiesFitToCell: string;
270
- cellPropertiesApplyToAllCells: string;
271
- cellPropertiesWidth: string;
272
- cellPropertiesApplyToColumn: string;
273
- cellPropertiesHeight: string;
274
- cellPropertiesApplyToRow: string;
275
- cellPropertiesAlignment: string;
276
- cellPropertiesTextControl: string;
277
- cellPropertiesCellPadding: string;
278
- cellPropertiesBackground: string;
279
- cellPropertiesBorderWidth: string;
280
- cellPropertiesBorderColor: string;
281
- cellPropertiesBorderStyle: string;
282
- cellPropertiesId: string;
283
- cellPropertiesCssClass: string;
284
- cellPropertiesSave: string;
285
- cellPropertiesCancel: string;
286
- tableProperties: string;
287
- tablePropertiesAlignLeft: string;
288
- tablePropertiesAlignCenter: string;
289
- tablePropertiesAlignRight: string;
290
- tablePropertiesNoAlignment: string;
291
- tablePropertiesLeft: string;
292
- tablePropertiesCenter: string;
293
- tablePropertiesRight: string;
294
- tablePropertiesTop: string;
295
- tablePropertiesBottom: string;
296
- tablePropertiesNone: string;
297
- tablePropertiesUsingScopeAttribute: string;
298
- tablePropertiesUsingIdAttributes: string;
299
- tablePropertiesRows: string;
300
- tablePropertiesColumns: string;
301
- tablePropertiesWidth: string;
302
- tablePropertiesHeight: string;
303
- tablePropertiesPosition: string;
304
- tablePropertiesAlignment: string;
305
- tablePropertiesCellSpacing: string;
306
- tablePropertiesCellPadding: string;
307
- tablePropertiesTableBackground: string;
308
- tablePropertiesBorderWidth: string;
309
- tablePropertiesBorderColor: string;
310
- tablePropertiesBorderStyle: string;
311
- tablePropertiesCollapseBorders: string;
312
- tablePropertiesId: string;
313
- tablePropertiesCssClass: string;
314
- tablePropertiesAccessibility: string;
315
- tablePropertiesCaption: string;
316
- tablePropertiesCaptionPosition: string;
317
- tablePropertiesCaptionAlignment: string;
318
- tablePropertiesHeaderRows: string;
319
- tablePropertiesHeaderCols: string;
320
- tablePropertiesAssociateHeaders: string;
321
- tablePropertiesGeneral: string;
322
- tablePropertiesAdvanced: string;
323
- tablePropertiesSave: string;
324
- tablePropertiesCancel: string;
325
- borderStyleNone: string;
326
- borderStyleSolid: string;
327
- borderStyleDotted: string;
328
- borderStyleDashed: string;
329
- borderStyleDouble: string;
330
- borderStyleGroove: string;
331
- borderStyleRidge: string;
332
- borderStyleInset: string;
333
- borderStyleOutset: string;
334
- borderStyleInitial: string;
335
- borderStyleInherit: string;
336
- borderStyleHidden: string;
337
- sizeAuto: string;
338
- };
@@ -1,9 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { PackageMetadata } from '@progress/kendo-licensing';
6
- /**
7
- * @hidden
8
- */
9
- export declare const packageMetadata: PackageMetadata;
@@ -1,41 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { EditorView } from '@progress/kendo-editor-common';
6
- import { ButtonProps } from '@progress/kendo-react-buttons';
7
- /**
8
- * @hidden
9
- */
10
- export interface BasicToolProps {
11
- /**
12
- * The `EditorView` object of the Editor component.
13
- */
14
- view?: EditorView;
15
- }
16
- /**
17
- * @hidden
18
- */
19
- export interface ToolProps extends BasicToolProps, ToolRenderProp, ButtonProps {
20
- }
21
- /**
22
- * @hidden
23
- */
24
- export interface ToolRenderProp {
25
- /**
26
- * Fires when a tool is about to be rendered. Used to override the default appearance of the tool.
27
- */
28
- render?: (tool: React.ReactElement<any>, args?: any) => React.ReactNode;
29
- }
30
- /**
31
- * @hidden
32
- */
33
- export interface ToolWithDialogRenderProp {
34
- /**
35
- * Fires when a tool is about to be rendered. Used to override the default appearance of the tool.
36
- */
37
- render?: (tool: [
38
- React.ReactElement<any>,
39
- React.ReactElement<any> | null
40
- ], args?: any) => React.ReactNode;
41
- }
package/tools/align.d.ts DELETED
@@ -1,11 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as React from 'react';
6
- import { EditorToolsSettings } from '../config/toolsSettings';
7
- import { EditorTools } from '..';
8
- /**
9
- * @hidden
10
- */
11
- export declare const createAlignTool: (settings: EditorToolsSettings.AlignSettings) => React.ComponentClass<EditorTools.AlignToolProps, any>;
@@ -1,16 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as React from 'react';
6
- import { EditorToolsSettings } from '../config/toolsSettings';
7
- import { BasicToolProps } from './ToolProps';
8
- /**
9
- * @hidden
10
- */
11
- export interface ApplyColorToolProps extends BasicToolProps, EditorToolsSettings.ApplyColorSettings {
12
- }
13
- /**
14
- * @hidden
15
- */
16
- export declare const ApplyColorTool: React.FunctionComponent<ApplyColorToolProps>;
@@ -1,20 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as React from 'react';
6
- import { ToolProps } from './ToolProps';
7
- import { EditorToolsSettings } from './../config/toolsSettings';
8
- /**
9
- * @hidden
10
- */
11
- export interface CleanFormattingProps extends ToolProps {
12
- /**
13
- * The settings of the tool. Use it to modify the tool appearance.
14
- */
15
- settings?: EditorToolsSettings.CleanFormattingSettings;
16
- }
17
- /**
18
- * @hidden
19
- */
20
- export declare const CleanFormatting: React.FunctionComponent<CleanFormattingProps>;
@@ -1,33 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as React from 'react';
6
- import { ButtonProps } from '@progress/kendo-react-buttons';
7
- import { BasicToolProps } from './ToolProps';
8
- /**
9
- * @hidden
10
- */
11
- export interface FindAndReplaceProps extends BasicToolProps, ButtonProps {
12
- }
13
- interface FindAndReplaceState {
14
- showDialog: boolean;
15
- }
16
- /**
17
- * @hidden
18
- */
19
- export declare class FindAndReplace extends React.Component<FindAndReplaceProps, FindAndReplaceState> {
20
- /**
21
- * @hidden
22
- */
23
- state: {
24
- showDialog: boolean;
25
- };
26
- /**
27
- * @hidden
28
- */
29
- render(): (false | import("react/jsx-runtime").JSX.Element | undefined)[];
30
- private onClose;
31
- private onOpen;
32
- }
33
- export {};
@@ -1,32 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as React from 'react';
6
- import { DropDownListProps } from '@progress/kendo-react-dropdowns';
7
- import { EditorToolsSettings } from '../config/toolsSettings';
8
- import { BasicToolProps, ToolRenderProp } from './ToolProps';
9
- /**
10
- * @hidden
11
- */
12
- export declare namespace FontStyleToolNS {
13
- /**
14
- * @hidden
15
- */
16
- interface DropDownListToolProps extends BasicToolProps, ToolRenderProp, DropDownListProps {
17
- }
18
- /**
19
- * @hidden
20
- */
21
- interface FontSizeProps extends DropDownListToolProps {
22
- }
23
- /**
24
- * @hidden
25
- */
26
- interface FontNameProps extends DropDownListToolProps {
27
- }
28
- /**
29
- * @hidden
30
- */
31
- const createStyleDropDownList: (settings: EditorToolsSettings.StyleDropDownListSettings) => React.ComponentClass<DropDownListToolProps, any>;
32
- }
@@ -1,22 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as React from 'react';
6
- import { DropDownListProps } from '@progress/kendo-react-dropdowns';
7
- import { EditorToolsSettings } from '../config/toolsSettings';
8
- import { BasicToolProps, ToolRenderProp } from './ToolProps';
9
- /**
10
- * @hidden
11
- */
12
- export declare namespace FormatBlockToolNS {
13
- /**
14
- * @hidden
15
- */
16
- interface FormatBlockProps extends BasicToolProps, ToolRenderProp, DropDownListProps {
17
- }
18
- /**
19
- * @hidden
20
- */
21
- const createFormatBlockDropDownList: (settings: EditorToolsSettings.FormatBlockDropDownListSettings) => React.ComponentClass<FormatBlockProps, any>;
22
- }
@@ -1,30 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as React from 'react';
6
- import { EditorToolsSettings } from '../config/toolsSettings';
7
- import { ToolProps } from './ToolProps';
8
- /**
9
- * @hidden
10
- */
11
- export declare namespace HistoryToolNS {
12
- /**
13
- * @hidden
14
- */
15
- interface UndoProps extends ToolProps {
16
- }
17
- /**
18
- * @hidden
19
- */
20
- interface RedoProps extends ToolProps {
21
- }
22
- /**
23
- * @hidden
24
- */
25
- const createUndoTool: (settings: EditorToolsSettings.ToolSettings) => React.ComponentClass<ToolProps, React.ComponentState>;
26
- /**
27
- * @hidden
28
- */
29
- const createRedoTool: (settings: EditorToolsSettings.ToolSettings) => React.ComponentClass<ToolProps, any>;
30
- }
package/tools/indent.d.ts DELETED
@@ -1,21 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the package root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as React from 'react';
6
- import { EditorToolsSettings } from '../config/toolsSettings';
7
- import { ToolProps } from './ToolProps';
8
- /**
9
- * @hidden
10
- */
11
- export declare namespace IndentToolNS {
12
- /**
13
- * @hidden
14
- */
15
- interface IndentProps extends ToolProps {
16
- }
17
- /**
18
- * @hidden
19
- */
20
- const createIndentTool: (settings: EditorToolsSettings.IndentationSettings) => React.ComponentClass<IndentProps, any>;
21
- }