@progress/kendo-vue-editor 3.7.4-dev.202301120847 → 3.7.4-dev.202301151601

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.
@@ -23,6 +23,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
23
23
  exports.EditorToolsSettings = void 0;
24
24
  var main_1 = require("../messages/main");
25
25
  var kendo_editor_common_1 = require("@progress/kendo-editor-common");
26
+ var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
26
27
  var listsTypes = __assign({}, kendo_editor_common_1.indentRules.listsTypes);
27
28
  /**
28
29
  * Represents a wrapping namespace for the tool settings of the Editor.
@@ -38,43 +39,43 @@ var EditorToolsSettings;
38
39
  /**
39
40
  * The object of the Bold tool settings.
40
41
  */
41
- EditorToolsSettings.bold = __assign(__assign({}, kendo_editor_common_1.bold), { props: __assign({ icon: 'bold' }, buttonCommonProps), messages: {
42
+ EditorToolsSettings.bold = __assign(__assign({}, kendo_editor_common_1.bold), { props: __assign({ icon: 'bold', svgIcon: kendo_svg_icons_1.boldIcon }, buttonCommonProps), messages: {
42
43
  title: main_1.keys.bold
43
44
  }, commandName: 'Bold' });
44
45
  /**
45
46
  * The object of the Italic tool settings.
46
47
  */
47
- EditorToolsSettings.italic = __assign(__assign({}, kendo_editor_common_1.italic), { props: __assign({ icon: 'italic' }, buttonCommonProps), messages: {
48
+ EditorToolsSettings.italic = __assign(__assign({}, kendo_editor_common_1.italic), { props: __assign({ icon: 'italic', svgIcon: kendo_svg_icons_1.italicIcon }, buttonCommonProps), messages: {
48
49
  title: main_1.keys.italic
49
50
  }, commandName: 'Italic' });
50
51
  /**
51
52
  * The object of the Underline tool settings.
52
53
  */
53
- EditorToolsSettings.underline = __assign(__assign({}, kendo_editor_common_1.underline), { props: __assign({ icon: 'underline' }, buttonCommonProps), messages: {
54
+ EditorToolsSettings.underline = __assign(__assign({}, kendo_editor_common_1.underline), { props: __assign({ icon: 'underline', svgIcon: kendo_svg_icons_1.underlineIcon }, buttonCommonProps), messages: {
54
55
  title: main_1.keys.underline
55
56
  }, commandName: 'Underline' });
56
57
  /**
57
58
  * The object of the Strikethrough tool settings.
58
59
  */
59
- EditorToolsSettings.strikethrough = __assign(__assign({}, kendo_editor_common_1.strikethrough), { props: __assign({ icon: 'strikethrough' }, buttonCommonProps), messages: {
60
+ EditorToolsSettings.strikethrough = __assign(__assign({}, kendo_editor_common_1.strikethrough), { props: __assign({ icon: 'strikethrough', svgIcon: kendo_svg_icons_1.strikethroughIcon }, buttonCommonProps), messages: {
60
61
  title: main_1.keys.strikethrough
61
62
  }, commandName: 'Strikethrough' });
62
63
  /**
63
64
  * The object of the Subscript tool settings.
64
65
  */
65
- EditorToolsSettings.subscript = __assign(__assign({}, kendo_editor_common_1.subscript), { props: __assign({ icon: 'subscript' }, buttonCommonProps), messages: {
66
+ EditorToolsSettings.subscript = __assign(__assign({}, kendo_editor_common_1.subscript), { props: __assign({ icon: 'subscript', svgIcon: kendo_svg_icons_1.subscriptIcon }, buttonCommonProps), messages: {
66
67
  title: main_1.keys.subscript
67
68
  }, commandName: 'Subscript' });
68
69
  /**
69
70
  * The object of the Superscript tool settings.
70
71
  */
71
- EditorToolsSettings.superscript = __assign(__assign({}, kendo_editor_common_1.superscript), { props: __assign({ icon: 'superscript' }, buttonCommonProps), messages: {
72
+ EditorToolsSettings.superscript = __assign(__assign({}, kendo_editor_common_1.superscript), { props: __assign({ icon: 'supscript', svgIcon: kendo_svg_icons_1.supscriptIcon }, buttonCommonProps), messages: {
72
73
  title: main_1.keys.superscript
73
74
  }, commandName: 'Superscript' });
74
75
  /**
75
76
  * The object of the Link tool settings.
76
77
  */
77
- EditorToolsSettings.link = __assign(__assign({}, kendo_editor_common_1.link), { props: __assign({ icon: 'link-horizontal' }, buttonCommonProps), messages: {
78
+ EditorToolsSettings.link = __assign(__assign({}, kendo_editor_common_1.link), { props: __assign({ icon: 'link', svgIcon: kendo_svg_icons_1.linkIcon }, buttonCommonProps), messages: {
78
79
  insertHyperlink: main_1.keys.insertHyperlink,
79
80
  insertHyperlinkDialogTitle: main_1.keys.insertHyperlinkDialogTitle,
80
81
  insertHyperlinkAddress: main_1.keys.insertHyperlinkAddress,
@@ -86,7 +87,7 @@ var EditorToolsSettings;
86
87
  /**
87
88
  * The object of the Link tool settings.
88
89
  */
89
- EditorToolsSettings.insertFile = __assign(__assign({}, kendo_editor_common_1.link), { props: __assign({ icon: 'file-add' }, buttonCommonProps), messages: {
90
+ EditorToolsSettings.insertFile = __assign(__assign({}, kendo_editor_common_1.link), { props: __assign({ icon: 'file-add', svgIcon: kendo_svg_icons_1.fileAddIcon }, buttonCommonProps), messages: {
90
91
  insertHyperlink: main_1.keys.insertFile,
91
92
  insertHyperlinkDialogTitle: main_1.keys.insertFileDialogTitle,
92
93
  insertHyperlinkAddress: main_1.keys.insertFileAddress,
@@ -99,7 +100,7 @@ var EditorToolsSettings;
99
100
  * The object of the InsertTable tool settings.
100
101
  */
101
102
  EditorToolsSettings.insertTable = {
102
- props: __assign({ icon: 'table-insert' }, buttonCommonProps),
103
+ props: __assign({ icon: 'table-add', svgIcon: kendo_svg_icons_1.tableAddIcon }, buttonCommonProps),
103
104
  messages: {
104
105
  createTable: main_1.keys.createTable,
105
106
  createTableHint: main_1.keys.createTableHint
@@ -111,7 +112,7 @@ var EditorToolsSettings;
111
112
  */
112
113
  EditorToolsSettings.addRowBefore = {
113
114
  command: kendo_editor_common_1.addRowBefore,
114
- props: __assign({ icon: 'table-row-insert-above' }, buttonCommonProps),
115
+ props: __assign({ icon: 'table-row-insert-above', svgIcon: kendo_svg_icons_1.tableRowInsertAboveIcon }, buttonCommonProps),
115
116
  messages: {
116
117
  title: main_1.keys.addRowBefore
117
118
  },
@@ -122,7 +123,7 @@ var EditorToolsSettings;
122
123
  */
123
124
  EditorToolsSettings.addRowAfter = {
124
125
  command: kendo_editor_common_1.addRowAfter,
125
- props: __assign({ icon: 'table-row-insert-below' }, buttonCommonProps),
126
+ props: __assign({ icon: 'table-row-insert-below', svgIcon: kendo_svg_icons_1.tableRowInsertBelowIcon }, buttonCommonProps),
126
127
  messages: {
127
128
  title: main_1.keys.addRowAfter
128
129
  },
@@ -133,7 +134,7 @@ var EditorToolsSettings;
133
134
  */
134
135
  EditorToolsSettings.addColumnBefore = {
135
136
  command: kendo_editor_common_1.addColumnBefore,
136
- props: __assign({ icon: 'table-column-insert-left' }, buttonCommonProps),
137
+ props: __assign({ icon: 'table-column-insert-left', svgIcon: kendo_svg_icons_1.tableColumnInsertLeftIcon }, buttonCommonProps),
137
138
  messages: {
138
139
  title: main_1.keys.addColumnBefore
139
140
  },
@@ -144,7 +145,7 @@ var EditorToolsSettings;
144
145
  */
145
146
  EditorToolsSettings.addColumnAfter = {
146
147
  command: kendo_editor_common_1.addColumnAfter,
147
- props: __assign({ icon: 'table-column-insert-right' }, buttonCommonProps),
148
+ props: __assign({ icon: 'table-column-insert-right', svgIcon: kendo_svg_icons_1.tableColumnInsertRightIcon }, buttonCommonProps),
148
149
  messages: {
149
150
  title: main_1.keys.addColumnAfter
150
151
  },
@@ -155,7 +156,7 @@ var EditorToolsSettings;
155
156
  */
156
157
  EditorToolsSettings.deleteRow = {
157
158
  command: kendo_editor_common_1.deleteRow,
158
- props: __assign({ icon: 'table-row-delete' }, buttonCommonProps),
159
+ props: __assign({ icon: 'table-row-delete', svgIcon: kendo_svg_icons_1.tableRowDeleteIcon }, buttonCommonProps),
159
160
  messages: {
160
161
  title: main_1.keys.deleteRow
161
162
  },
@@ -166,7 +167,7 @@ var EditorToolsSettings;
166
167
  */
167
168
  EditorToolsSettings.deleteColumn = {
168
169
  command: kendo_editor_common_1.deleteColumn,
169
- props: __assign({ icon: 'table-column-delete' }, buttonCommonProps),
170
+ props: __assign({ icon: 'table-column-delete', svgIcon: kendo_svg_icons_1.tableColumnDeleteIcon }, buttonCommonProps),
170
171
  messages: {
171
172
  title: main_1.keys.deleteColumn
172
173
  },
@@ -177,7 +178,7 @@ var EditorToolsSettings;
177
178
  */
178
179
  EditorToolsSettings.deleteTable = {
179
180
  command: kendo_editor_common_1.deleteTable,
180
- props: __assign({ icon: 'table-delete' }, buttonCommonProps),
181
+ props: __assign({ icon: 'table-delete', svgIcon: kendo_svg_icons_1.tableDeleteIcon }, buttonCommonProps),
181
182
  messages: {
182
183
  title: main_1.keys.deleteTable
183
184
  },
@@ -188,7 +189,7 @@ var EditorToolsSettings;
188
189
  */
189
190
  EditorToolsSettings.mergeCells = {
190
191
  command: kendo_editor_common_1.mergeCells,
191
- props: __assign({ icon: 'cells-merge' }, buttonCommonProps),
192
+ props: __assign({ icon: 'cells-merge', svgIcon: kendo_svg_icons_1.cellsMergeIcon }, buttonCommonProps),
192
193
  messages: {
193
194
  title: main_1.keys.mergeCells
194
195
  },
@@ -199,7 +200,7 @@ var EditorToolsSettings;
199
200
  */
200
201
  EditorToolsSettings.splitCell = {
201
202
  command: kendo_editor_common_1.splitCell,
202
- props: __assign({ icon: 'cell-split-horizontally' }, buttonCommonProps),
203
+ props: __assign({ icon: 'cell-split-horizontally', svgIcon: kendo_svg_icons_1.cellSplitHorizontallyIcon }, buttonCommonProps),
203
204
  messages: {
204
205
  title: main_1.keys.splitCell
205
206
  },
@@ -209,7 +210,7 @@ var EditorToolsSettings;
209
210
  * The object of the Print tool settings.
210
211
  */
211
212
  EditorToolsSettings.print = {
212
- props: __assign({ icon: 'print' }, buttonCommonProps),
213
+ props: __assign({ icon: 'print', svgIcon: kendo_svg_icons_1.printIcon }, buttonCommonProps),
213
214
  messages: {
214
215
  title: main_1.keys.print
215
216
  }
@@ -218,7 +219,7 @@ var EditorToolsSettings;
218
219
  * The object of the Print tool settings.
219
220
  */
220
221
  EditorToolsSettings.selectAll = {
221
- props: __assign({ icon: 'select-all' }, buttonCommonProps),
222
+ props: __assign({ icon: 'select-all', svgIcon: kendo_svg_icons_1.selectAllIcon }, buttonCommonProps),
222
223
  messages: {
223
224
  title: main_1.keys.selectAll
224
225
  }
@@ -227,7 +228,7 @@ var EditorToolsSettings;
227
228
  * The object of the Print tool settings.
228
229
  */
229
230
  EditorToolsSettings.pdf = {
230
- props: __assign({ icon: 'pdf' }, buttonCommonProps),
231
+ props: __assign({ icon: 'file-pdf', svgIcon: kendo_svg_icons_1.filePdfIcon }, buttonCommonProps),
231
232
  messages: {
232
233
  title: main_1.keys.pdf
233
234
  }
@@ -250,7 +251,7 @@ var EditorToolsSettings;
250
251
  * The object of the CleanFormatting tool settings.
251
252
  */
252
253
  EditorToolsSettings.cleanFormatting = {
253
- props: __assign({ icon: 'clear-css' }, buttonCommonProps),
254
+ props: __assign({ icon: 'clear-css', svgIcon: kendo_svg_icons_1.clearCssIcon }, buttonCommonProps),
254
255
  messages: {
255
256
  title: main_1.keys.cleanFormatting
256
257
  },
@@ -261,7 +262,7 @@ var EditorToolsSettings;
261
262
  */
262
263
  EditorToolsSettings.image = {
263
264
  node: 'image',
264
- props: __assign({ icon: 'image' }, buttonCommonProps),
265
+ props: __assign({ icon: 'image', svgIcon: kendo_svg_icons_1.imageIcon }, buttonCommonProps),
265
266
  messages: {
266
267
  insertImage: main_1.keys.insertImage,
267
268
  insertImageDialogTitle: main_1.keys.insertImageDialogTitle,
@@ -279,7 +280,7 @@ var EditorToolsSettings;
279
280
  * The object of the ViewHtml tool settings.
280
281
  */
281
282
  EditorToolsSettings.viewHtml = {
282
- props: __assign({ icon: 'html' }, buttonCommonProps),
283
+ props: __assign({ icon: 'code', svgIcon: kendo_svg_icons_1.codeIcon }, buttonCommonProps),
283
284
  messages: {
284
285
  viewHtml: main_1.keys.viewHtml,
285
286
  viewHtmlDialogTitle: main_1.keys.viewHtmlDialogTitle,
@@ -292,7 +293,7 @@ var EditorToolsSettings;
292
293
  * The object of the Find and Replace tool settings.
293
294
  */
294
295
  EditorToolsSettings.findAndReplace = {
295
- props: __assign({ icon: 'find' }, buttonCommonProps),
296
+ props: __assign({ icon: 'search', svgIcon: kendo_svg_icons_1.searchIcon }, buttonCommonProps),
296
297
  messages: {
297
298
  findReplaceToolTitle: main_1.keys.findReplaceToolTitle,
298
299
  findReplaceDialogTitle: main_1.keys.findReplaceDialogTitle,
@@ -314,7 +315,7 @@ var EditorToolsSettings;
314
315
  /**
315
316
  * The object of the Unlink tool settings.
316
317
  */
317
- EditorToolsSettings.unlink = __assign(__assign({}, kendo_editor_common_1.link), { props: __assign({ icon: 'unlink-horizontal' }, buttonCommonProps), messages: {
318
+ EditorToolsSettings.unlink = __assign(__assign({}, kendo_editor_common_1.link), { props: __assign({ icon: 'unlink', svgIcon: kendo_svg_icons_1.unlinkIcon }, buttonCommonProps), messages: {
318
319
  title: main_1.keys.unlink
319
320
  }, commandName: 'Unlink' });
320
321
  /**
@@ -322,7 +323,7 @@ var EditorToolsSettings;
322
323
  */
323
324
  EditorToolsSettings.undo = {
324
325
  command: kendo_editor_common_1.undo,
325
- props: __assign({ icon: 'undo' }, buttonCommonProps),
326
+ props: __assign({ icon: 'undo', svgIcon: kendo_svg_icons_1.undoIcon }, buttonCommonProps),
326
327
  messages: {
327
328
  title: main_1.keys.undo
328
329
  },
@@ -333,7 +334,7 @@ var EditorToolsSettings;
333
334
  */
334
335
  EditorToolsSettings.redo = {
335
336
  command: kendo_editor_common_1.redo,
336
- props: __assign({ icon: 'redo' }, buttonCommonProps),
337
+ props: __assign({ icon: 'redo', svgIcon: kendo_svg_icons_1.redoIcon }, buttonCommonProps),
337
338
  messages: {
338
339
  title: main_1.keys.redo
339
340
  },
@@ -407,6 +408,7 @@ var EditorToolsSettings;
407
408
  color: 'color',
408
409
  colorPickerProps: {
409
410
  icon: 'foreground-color',
411
+ svgIcon: kendo_svg_icons_1.foregroundColorIcon,
410
412
  view: 'palette',
411
413
  title: main_1.keys.foregroundColor
412
414
  },
@@ -418,7 +420,8 @@ var EditorToolsSettings;
418
420
  EditorToolsSettings.backColor = {
419
421
  color: 'background-color',
420
422
  colorPickerProps: {
421
- icon: 'background',
423
+ icon: 'droplet',
424
+ svgIcon: kendo_svg_icons_1.dropletIcon,
422
425
  view: 'palette',
423
426
  title: main_1.keys.backgroundColor
424
427
  },
@@ -429,7 +432,7 @@ var EditorToolsSettings;
429
432
  */
430
433
  EditorToolsSettings.alignLeft = {
431
434
  actions: __spreadArray([], kendo_editor_common_1.alignLeftRules, true),
432
- props: __assign({ icon: 'align-left' }, buttonCommonProps),
435
+ props: __assign({ icon: 'align-left', svgIcon: kendo_svg_icons_1.alignLeftIcon }, buttonCommonProps),
433
436
  messages: {
434
437
  title: main_1.keys.alignLeft
435
438
  },
@@ -440,7 +443,7 @@ var EditorToolsSettings;
440
443
  */
441
444
  EditorToolsSettings.alignRight = {
442
445
  actions: __spreadArray([], kendo_editor_common_1.alignRightRules, true),
443
- props: __assign({ icon: 'align-right' }, buttonCommonProps),
446
+ props: __assign({ icon: 'align-right', svgIcon: kendo_svg_icons_1.alignRightIcon }, buttonCommonProps),
444
447
  messages: {
445
448
  title: main_1.keys.alignRight
446
449
  },
@@ -451,7 +454,7 @@ var EditorToolsSettings;
451
454
  */
452
455
  EditorToolsSettings.alignCenter = {
453
456
  actions: __spreadArray([], kendo_editor_common_1.alignCenterRules, true),
454
- props: __assign({ icon: 'align-center' }, buttonCommonProps),
457
+ props: __assign({ icon: 'align-center', svgIcon: kendo_svg_icons_1.alignCenterIcon }, buttonCommonProps),
455
458
  messages: {
456
459
  title: main_1.keys.alignCenter
457
460
  },
@@ -462,7 +465,7 @@ var EditorToolsSettings;
462
465
  */
463
466
  EditorToolsSettings.alignJustify = {
464
467
  actions: __spreadArray([], kendo_editor_common_1.alignJustifyRules, true),
465
- props: __assign({ icon: 'align-justify' }, buttonCommonProps),
468
+ props: __assign({ icon: 'align-justify', svgIcon: kendo_svg_icons_1.alignJustifyIcon }, buttonCommonProps),
466
469
  messages: {
467
470
  title: main_1.keys.alignJustify
468
471
  },
@@ -473,7 +476,7 @@ var EditorToolsSettings;
473
476
  */
474
477
  EditorToolsSettings.alignRemove = {
475
478
  actions: __spreadArray([], kendo_editor_common_1.alignRemoveRules, true),
476
- props: __assign({ icon: 'align-remove' }, buttonCommonProps),
479
+ props: __assign({ icon: 'align-remove', svgIcon: kendo_svg_icons_1.alignRemoveIcon }, buttonCommonProps),
477
480
  messages: {},
478
481
  commandName: 'AlignRemove'
479
482
  };
@@ -483,7 +486,7 @@ var EditorToolsSettings;
483
486
  EditorToolsSettings.indent = {
484
487
  actions: kendo_editor_common_1.indentRules.nodes,
485
488
  listsTypes: listsTypes,
486
- props: __assign({ icon: 'indent-increase' }, buttonCommonProps),
489
+ props: __assign({ icon: 'indent', svgIcon: kendo_svg_icons_1.indentIcon }, buttonCommonProps),
487
490
  messages: {
488
491
  title: main_1.keys.indent
489
492
  },
@@ -495,7 +498,7 @@ var EditorToolsSettings;
495
498
  EditorToolsSettings.outdent = {
496
499
  actions: kendo_editor_common_1.outdentRules.nodes,
497
500
  listsTypes: listsTypes,
498
- props: __assign({ icon: 'indent-decrease' }, buttonCommonProps),
501
+ props: __assign({ icon: 'outdent', svgIcon: kendo_svg_icons_1.outdentIcon }, buttonCommonProps),
499
502
  messages: {
500
503
  title: main_1.keys.outdent
501
504
  },
@@ -506,7 +509,7 @@ var EditorToolsSettings;
506
509
  */
507
510
  EditorToolsSettings.orderedList = {
508
511
  listType: listsTypes.orderedList,
509
- props: __assign({ icon: 'list-ordered' }, buttonCommonProps),
512
+ props: __assign({ icon: 'list-ordered', svgIcon: kendo_svg_icons_1.listOrderedIcon }, buttonCommonProps),
510
513
  messages: {
511
514
  title: main_1.keys.orderedList
512
515
  },
@@ -518,7 +521,7 @@ var EditorToolsSettings;
518
521
  */
519
522
  EditorToolsSettings.bulletList = {
520
523
  listType: listsTypes.bulletList,
521
- props: __assign({ icon: 'list-unordered' }, buttonCommonProps),
524
+ props: __assign({ icon: 'list-unordered', svgIcon: kendo_svg_icons_1.listUnorderedIcon }, buttonCommonProps),
522
525
  messages: {
523
526
  title: main_1.keys.bulletList
524
527
  },
@@ -441,10 +441,14 @@ var FindAndReplaceDialogVue2 = {
441
441
  }, _this2.v3 ? function () {
442
442
  return [h("div", {
443
443
  "class": "k-edit-form-container"
444
- }, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), checkboxes, navigation.call(_this2, 'findWhatFind')];
444
+ }, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), h("div", {
445
+ "class": "k-actions k-hstack k-justify-content-end"
446
+ }), checkboxes, navigation.call(_this2, 'findWhatFind')];
445
447
  } : [h("div", {
446
448
  "class": "k-edit-form-container"
447
- }, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), checkboxes, navigation.call(_this2, 'findWhatFind')]),
449
+ }, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), h("div", {
450
+ "class": "k-actions k-hstack k-justify-content-end"
451
+ }), checkboxes, navigation.call(_this2, 'findWhatFind')]),
448
452
  // @ts-ignore function children
449
453
  h(kendo_vue_layout_1.TabStripTab, {
450
454
  title: localization.toLanguageString(findReplaceTabReplace, main_1.messages[findReplaceTabReplace]),
@@ -518,10 +522,14 @@ var FindAndReplaceDialogVue2 = {
518
522
  }, _this2.v3 ? function () {
519
523
  return [h("div", {
520
524
  "class": "k-edit-form-container"
521
- }, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), checkboxes, navigation.call(_this2, 'findWhatFind')];
525
+ }, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), h("div", {
526
+ "class": "k-actions k-hstack k-justify-content-end"
527
+ }), checkboxes, navigation.call(_this2, 'findWhatFind')];
522
528
  } : [h("div", {
523
529
  "class": "k-edit-form-container"
524
- }, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), checkboxes, navigation.call(_this2, 'findWhatFind')]), h(kendo_vue_layout_1.TabStripTab, {
530
+ }, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), h("div", {
531
+ "class": "k-actions k-hstack k-justify-content-end"
532
+ }), checkboxes, navigation.call(_this2, 'findWhatFind')]), h(kendo_vue_layout_1.TabStripTab, {
525
533
  title: localization.toLanguageString(findReplaceTabReplace, main_1.messages[findReplaceTabReplace]),
526
534
  attrs: _this2.v3 ? undefined : {
527
535
  title: localization.toLanguageString(findReplaceTabReplace, main_1.messages[findReplaceTabReplace])
@@ -604,10 +612,14 @@ var FindAndReplaceDialogVue2 = {
604
612
  }, _this2.v3 ? function () {
605
613
  return [h("div", {
606
614
  "class": "k-edit-form-container"
607
- }, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), checkboxes, navigation.call(_this2, 'findWhatFind')];
615
+ }, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), h("div", {
616
+ "class": "k-actions k-hstack k-justify-content-end"
617
+ }), checkboxes, navigation.call(_this2, 'findWhatFind')];
608
618
  } : [h("div", {
609
619
  "class": "k-edit-form-container"
610
- }, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), checkboxes, navigation.call(_this2, 'findWhatFind')]), h(kendo_vue_layout_1.TabStripTab, {
620
+ }, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), h("div", {
621
+ "class": "k-actions k-hstack k-justify-content-end"
622
+ }), checkboxes, navigation.call(_this2, 'findWhatFind')]), h(kendo_vue_layout_1.TabStripTab, {
611
623
  title: localization.toLanguageString(findReplaceTabReplace, main_1.messages[findReplaceTabReplace]),
612
624
  attrs: _this2.v3 ? undefined : {
613
625
  title: localization.toLanguageString(findReplaceTabReplace, main_1.messages[findReplaceTabReplace])
@@ -675,10 +687,14 @@ var FindAndReplaceDialogVue2 = {
675
687
  }, _this2.v3 ? function () {
676
688
  return [h("div", {
677
689
  "class": "k-edit-form-container"
678
- }, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), checkboxes, navigation.call(_this2, 'findWhatFind')];
690
+ }, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), h("div", {
691
+ "class": "k-actions k-hstack k-justify-content-end"
692
+ }), checkboxes, navigation.call(_this2, 'findWhatFind')];
679
693
  } : [h("div", {
680
694
  "class": "k-edit-form-container"
681
- }, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), checkboxes, navigation.call(_this2, 'findWhatFind')]), h(kendo_vue_layout_1.TabStripTab, {
695
+ }, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), h("div", {
696
+ "class": "k-actions k-hstack k-justify-content-end"
697
+ }), checkboxes, navigation.call(_this2, 'findWhatFind')]), h(kendo_vue_layout_1.TabStripTab, {
682
698
  title: localization.toLanguageString(findReplaceTabReplace, main_1.messages[findReplaceTabReplace]),
683
699
  attrs: _this2.v3 ? undefined : {
684
700
  title: localization.toLanguageString(findReplaceTabReplace, main_1.messages[findReplaceTabReplace])
@@ -245,23 +245,43 @@ var InsertImageDialogVue2 = {
245
245
  } : [localization.toLanguageString(insertImageInsert, main_1.messages[insertImageInsert])])];
246
246
  var dialog =
247
247
  // @ts-ignore function children
248
- h(kendo_vue_dialogs_1.Dialog, {
249
- title: localization.toLanguageString(insertImageDialogTitle, main_1.messages[insertImageDialogTitle]),
248
+ h(kendo_vue_dialogs_1.Window, {
249
+ initialWidth: 500,
250
250
  attrs: this.v3 ? undefined : {
251
+ initialWidth: 500,
252
+ initialHeight: 360,
253
+ windowClass: 'k-editor-window',
251
254
  title: localization.toLanguageString(insertImageDialogTitle, main_1.messages[insertImageDialogTitle]),
252
- closeIcon: true,
253
- dir: dir
255
+ dir: dir,
256
+ modal: true,
257
+ minimizeButton: function minimizeButton() {
258
+ return null;
259
+ },
260
+ maximizeButton: function maximizeButton() {
261
+ return null;
262
+ },
263
+ resizable: false
254
264
  },
265
+ initialHeight: 360,
266
+ windowClass: 'k-editor-window',
267
+ title: localization.toLanguageString(insertImageDialogTitle, main_1.messages[insertImageDialogTitle]),
255
268
  onClose: this.onClose,
256
269
  on: this.v3 ? undefined : {
257
270
  "close": this.onClose
258
271
  },
259
272
  key: "dialog",
260
- closeIcon: true,
261
273
  dir: dir,
262
274
  style: dir === 'rtl' ? {
263
275
  textAlign: 'right'
264
- } : undefined
276
+ } : undefined,
277
+ modal: true,
278
+ minimizeButton: function minimizeButton() {
279
+ return null;
280
+ },
281
+ maximizeButton: function maximizeButton() {
282
+ return null;
283
+ },
284
+ resizable: false
265
285
  }, this.v3 ? function () {
266
286
  return [content,
267
287
  // @ts-ignore function children
@@ -140,22 +140,39 @@ var InsertLinkDialogVue2 = {
140
140
  }, [localization.toLanguageString(insertHyperlinkNewWindow, main_1.messages[insertHyperlinkNewWindow])])])]);
141
141
  var dialog =
142
142
  // @ts-ignore function children
143
- h(kendo_vue_dialogs_1.Dialog, {
144
- title: localization.toLanguageString(insertHyperlinkDialogTitle, main_1.messages[insertHyperlinkDialogTitle]),
143
+ h(kendo_vue_dialogs_1.Window, {
144
+ initialWidth: 450,
145
145
  attrs: this.v3 ? undefined : {
146
+ initialWidth: 450,
147
+ initialHeight: 250,
148
+ windowClass: 'k-editor-window',
146
149
  title: localization.toLanguageString(insertHyperlinkDialogTitle, main_1.messages[insertHyperlinkDialogTitle]),
147
- closeIcon: true,
148
- dir: dir
150
+ dir: dir,
151
+ modal: true,
152
+ minimizeButton: function minimizeButton() {
153
+ return null;
154
+ },
155
+ maximizeButton: function maximizeButton() {
156
+ return null;
157
+ },
158
+ resizable: false
149
159
  },
160
+ initialHeight: 250,
161
+ windowClass: 'k-editor-window',
162
+ title: localization.toLanguageString(insertHyperlinkDialogTitle, main_1.messages[insertHyperlinkDialogTitle]),
150
163
  onClose: this.onClose,
151
164
  on: this.v3 ? undefined : {
152
165
  "close": this.onClose
153
166
  },
154
- closeIcon: true,
155
167
  dir: dir,
156
- style: dir === 'rtl' ? {
157
- textAlign: 'right'
158
- } : undefined
168
+ modal: true,
169
+ minimizeButton: function minimizeButton() {
170
+ return null;
171
+ },
172
+ maximizeButton: function maximizeButton() {
173
+ return null;
174
+ },
175
+ resizable: false
159
176
  }, this.v3 ? function () {
160
177
  return [content,
161
178
  // @ts-ignore function children
@@ -11,6 +11,7 @@ var gh = allVue.h;
11
11
  var isV3 = allVue.version && allVue.version[0] === '3';
12
12
  var kendo_vue_dialogs_1 = require("@progress/kendo-vue-dialogs");
13
13
  var kendo_vue_buttons_1 = require("@progress/kendo-vue-buttons");
14
+ var kendo_vue_inputs_1 = require("@progress/kendo-vue-inputs");
14
15
  var kendo_editor_common_1 = require("@progress/kendo-editor-common");
15
16
  var kendo_vue_intl_1 = require("@progress/kendo-vue-intl");
16
17
  var main_1 = require("../messages/main");
@@ -58,17 +59,22 @@ var ViewHtmlDialogVue2 = {
58
59
  viewHtmlDialogTitle = _b.viewHtmlDialogTitle,
59
60
  viewHtmlCancel = _b.viewHtmlCancel,
60
61
  viewHtmlUpdate = _b.viewHtmlUpdate;
61
- var content = h("textarea", {
62
- "class": "k-textarea k-editor-textarea",
62
+ var content = h(kendo_vue_inputs_1.TextArea, {
63
+ "class": "k-editor-textarea",
64
+ defaultValue: (0, kendo_editor_common_1.indentHtml)((0, kendo_editor_common_1.getHtml)(view.state)),
65
+ attrs: this.v3 ? undefined : {
66
+ defaultValue: (0, kendo_editor_common_1.indentHtml)((0, kendo_editor_common_1.getHtml)(view.state)),
67
+ autoFocus: true,
68
+ autoSize: false,
69
+ value: (0, kendo_editor_common_1.indentHtml)((0, kendo_editor_common_1.getHtml)(view.state))
70
+ },
63
71
  style: {
64
- height: '280px',
65
- width: '490px'
72
+ height: '275px'
66
73
  },
74
+ autoFocus: true,
75
+ autoSize: false,
67
76
  ref: (0, kendo_vue_common_1.setRef)(this, 'htmlArea'),
68
- value: this.v3 ? (0, kendo_editor_common_1.indentHtml)((0, kendo_editor_common_1.getHtml)(view.state)) : null,
69
- domProps: this.v3 ? undefined : {
70
- "value": (0, kendo_editor_common_1.indentHtml)((0, kendo_editor_common_1.getHtml)(view.state))
71
- }
77
+ value: (0, kendo_editor_common_1.indentHtml)((0, kendo_editor_common_1.getHtml)(view.state))
72
78
  });
73
79
  var actionButtons = [
74
80
  // @ts-ignore function children
@@ -107,23 +113,43 @@ var ViewHtmlDialogVue2 = {
107
113
  } : [localization.toLanguageString(viewHtmlUpdate, main_1.messages[viewHtmlUpdate])])];
108
114
  var dialog =
109
115
  // @ts-ignore function children
110
- h(kendo_vue_dialogs_1.Dialog, {
111
- title: localization.toLanguageString(viewHtmlDialogTitle, main_1.messages[viewHtmlDialogTitle]),
116
+ h(kendo_vue_dialogs_1.Window, {
117
+ initialHeight: 400,
112
118
  attrs: this.v3 ? undefined : {
119
+ initialHeight: 400,
120
+ initialWidth: 500,
121
+ windowClass: 'k-editor-window',
113
122
  title: localization.toLanguageString(viewHtmlDialogTitle, main_1.messages[viewHtmlDialogTitle]),
114
- closeIcon: true,
115
- dir: dir
123
+ dir: dir,
124
+ modal: true,
125
+ minimizeButton: function minimizeButton() {
126
+ return null;
127
+ },
128
+ maximizeButton: function maximizeButton() {
129
+ return null;
130
+ },
131
+ resizable: false
116
132
  },
133
+ initialWidth: 500,
134
+ windowClass: 'k-editor-window',
135
+ title: localization.toLanguageString(viewHtmlDialogTitle, main_1.messages[viewHtmlDialogTitle]),
117
136
  onClose: this.onClose,
118
137
  on: this.v3 ? undefined : {
119
138
  "close": this.onClose
120
139
  },
121
140
  key: "dialog",
122
- closeIcon: true,
123
141
  dir: dir,
124
142
  style: dir === 'rtl' ? {
125
143
  textAlign: 'right'
126
- } : undefined
144
+ } : undefined,
145
+ modal: true,
146
+ minimizeButton: function minimizeButton() {
147
+ return null;
148
+ },
149
+ maximizeButton: function maximizeButton() {
150
+ return null;
151
+ },
152
+ resizable: false
127
153
  }, this.v3 ? function () {
128
154
  return [content,
129
155
  // @ts-ignore function children
@@ -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: 1673512324,
11
+ publishDate: 1673797735,
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.7.4-dev.202301120847",
4
+ "version": "3.7.4-dev.202301151601",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -50,22 +50,22 @@
50
50
  },
51
51
  "dependencies": {
52
52
  "@progress/kendo-editor-common": "1.9.3",
53
- "@progress/kendo-vue-common": "3.7.4-dev.202301120847"
53
+ "@progress/kendo-vue-common": "3.7.4-dev.202301151601"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@progress/kendo-drawing": "^1.8.0",
57
57
  "@progress/kendo-licensing": "^1.3.0",
58
58
  "@progress/kendo-svg-icons": "^1.0.0",
59
- "@progress/kendo-vue-buttons": "3.7.4-dev.202301120847",
60
- "@progress/kendo-vue-dialogs": "3.7.4-dev.202301120847",
61
- "@progress/kendo-vue-dropdowns": "3.7.4-dev.202301120847",
62
- "@progress/kendo-vue-form": "3.7.4-dev.202301120847",
63
- "@progress/kendo-vue-inputs": "3.7.4-dev.202301120847",
64
- "@progress/kendo-vue-intl": "3.7.4-dev.202301120847",
65
- "@progress/kendo-vue-layout": "3.7.4-dev.202301120847",
66
- "@progress/kendo-vue-pdf": "3.7.4-dev.202301120847",
67
- "@progress/kendo-vue-popup": "3.7.4-dev.202301120847",
68
- "@progress/kendo-vue-upload": "3.7.4-dev.202301120847",
59
+ "@progress/kendo-vue-buttons": "3.7.4-dev.202301151601",
60
+ "@progress/kendo-vue-dialogs": "3.7.4-dev.202301151601",
61
+ "@progress/kendo-vue-dropdowns": "3.7.4-dev.202301151601",
62
+ "@progress/kendo-vue-form": "3.7.4-dev.202301151601",
63
+ "@progress/kendo-vue-inputs": "3.7.4-dev.202301151601",
64
+ "@progress/kendo-vue-intl": "3.7.4-dev.202301151601",
65
+ "@progress/kendo-vue-layout": "3.7.4-dev.202301151601",
66
+ "@progress/kendo-vue-pdf": "3.7.4-dev.202301151601",
67
+ "@progress/kendo-vue-popup": "3.7.4-dev.202301151601",
68
+ "@progress/kendo-vue-upload": "3.7.4-dev.202301151601",
69
69
  "prosemirror-markdown": "1.10.1",
70
70
  "prosemirror-tables": "^1.2.5"
71
71
  },