@progress/kendo-vue-editor 3.7.4-dev.202211301436 → 3.7.4-dev.202212300853
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/README.md +1 -1
- package/dist/cdn/js/kendo-vue-editor.js +1 -1
- package/dist/es/Editor.js +5 -2
- package/dist/es/dialogs/FindReplace.js +161 -147
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/Editor.js +5 -2
- package/dist/esm/dialogs/FindReplace.js +161 -147
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/Editor.js +5 -2
- package/dist/npm/dialogs/FindReplace.js +161 -147
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +13 -13
|
@@ -17,6 +17,7 @@ var main_1 = require("../messages/main");
|
|
|
17
17
|
var toolsSettings_1 = require("./../config/toolsSettings");
|
|
18
18
|
var utils_1 = require("./../tools/utils");
|
|
19
19
|
var kendo_editor_common_1 = require("@progress/kendo-editor-common");
|
|
20
|
+
var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
20
21
|
var enter = 13,
|
|
21
22
|
esc = 27;
|
|
22
23
|
var settings = toolsSettings_1.EditorToolsSettings.findAndReplace;
|
|
@@ -120,7 +121,7 @@ var FindAndReplaceDialogVue2 = {
|
|
|
120
121
|
},
|
|
121
122
|
// @ts-ignore
|
|
122
123
|
render: function render(createElement) {
|
|
123
|
-
var
|
|
124
|
+
var _this2 = this;
|
|
124
125
|
var h = gh || createElement;
|
|
125
126
|
var localization = (0, kendo_vue_intl_1.provideLocalizationService)(this);
|
|
126
127
|
var _a = this.settings.messages,
|
|
@@ -238,6 +239,7 @@ var FindAndReplaceDialogVue2 = {
|
|
|
238
239
|
"class": "k-checkbox-label"
|
|
239
240
|
}, [localization.toLanguageString(findReplaceUseRegExp, main_1.messages[findReplaceUseRegExp])])])]);
|
|
240
241
|
var navigation = function navigation(findWhatRef) {
|
|
242
|
+
var _this = this;
|
|
241
243
|
var isRtl = this.$props.dir === 'rtl';
|
|
242
244
|
var prevButton =
|
|
243
245
|
// @ts-ignore function children
|
|
@@ -253,11 +255,17 @@ var FindAndReplaceDialogVue2 = {
|
|
|
253
255
|
"click": this.onFindPrev
|
|
254
256
|
}
|
|
255
257
|
}, this.v3 ? function () {
|
|
256
|
-
return [h(
|
|
257
|
-
|
|
258
|
+
return [h(kendo_vue_common_1.Icon, {
|
|
259
|
+
name: "chevron-".concat(isRtl ? 'right' : 'left'),
|
|
260
|
+
attrs: _this.v3 ? undefined : {
|
|
261
|
+
name: "chevron-".concat(isRtl ? 'right' : 'left')
|
|
262
|
+
}
|
|
258
263
|
}), localization.toLanguageString(findReplacePrevMatch, main_1.messages[findReplacePrevMatch])];
|
|
259
|
-
} : [h(
|
|
260
|
-
|
|
264
|
+
} : [h(kendo_vue_common_1.Icon, {
|
|
265
|
+
name: "chevron-".concat(isRtl ? 'right' : 'left'),
|
|
266
|
+
attrs: _this.v3 ? undefined : {
|
|
267
|
+
name: "chevron-".concat(isRtl ? 'right' : 'left')
|
|
268
|
+
}
|
|
261
269
|
}), localization.toLanguageString(findReplacePrevMatch, main_1.messages[findReplacePrevMatch])]);
|
|
262
270
|
var nextButton =
|
|
263
271
|
// @ts-ignore function children
|
|
@@ -273,11 +281,17 @@ var FindAndReplaceDialogVue2 = {
|
|
|
273
281
|
"click": this.onFindNext
|
|
274
282
|
}
|
|
275
283
|
}, this.v3 ? function () {
|
|
276
|
-
return [localization.toLanguageString(findReplaceNextMatch, main_1.messages[findReplaceNextMatch]), h(
|
|
277
|
-
|
|
284
|
+
return [localization.toLanguageString(findReplaceNextMatch, main_1.messages[findReplaceNextMatch]), h(kendo_vue_common_1.Icon, {
|
|
285
|
+
name: "chevron-".concat(isRtl ? 'left' : 'right'),
|
|
286
|
+
attrs: _this.v3 ? undefined : {
|
|
287
|
+
name: "chevron-".concat(isRtl ? 'left' : 'right')
|
|
288
|
+
}
|
|
278
289
|
})];
|
|
279
|
-
} : [localization.toLanguageString(findReplaceNextMatch, main_1.messages[findReplaceNextMatch]), h(
|
|
280
|
-
|
|
290
|
+
} : [localization.toLanguageString(findReplaceNextMatch, main_1.messages[findReplaceNextMatch]), h(kendo_vue_common_1.Icon, {
|
|
291
|
+
name: "chevron-".concat(isRtl ? 'left' : 'right'),
|
|
292
|
+
attrs: _this.v3 ? undefined : {
|
|
293
|
+
name: "chevron-".concat(isRtl ? 'left' : 'right')
|
|
294
|
+
}
|
|
281
295
|
})]);
|
|
282
296
|
return h("div", {
|
|
283
297
|
"class": "k-matches-container"
|
|
@@ -394,327 +408,327 @@ var FindAndReplaceDialogVue2 = {
|
|
|
394
408
|
return [
|
|
395
409
|
// @ts-ignore function children
|
|
396
410
|
h(kendo_vue_layout_1.TabStrip, {
|
|
397
|
-
dir:
|
|
398
|
-
attrs:
|
|
399
|
-
dir:
|
|
400
|
-
selected:
|
|
411
|
+
dir: _this2.$props.dir,
|
|
412
|
+
attrs: _this2.v3 ? undefined : {
|
|
413
|
+
dir: _this2.$props.dir,
|
|
414
|
+
selected: _this2.selectedTab,
|
|
401
415
|
animation: false
|
|
402
416
|
},
|
|
403
|
-
selected:
|
|
417
|
+
selected: _this2.selectedTab,
|
|
404
418
|
"class": "k-editor-find-replace",
|
|
405
|
-
onSelect:
|
|
406
|
-
on:
|
|
407
|
-
"select":
|
|
419
|
+
onSelect: _this2.onTabSelect,
|
|
420
|
+
on: _this2.v3 ? undefined : {
|
|
421
|
+
"select": _this2.onTabSelect
|
|
408
422
|
},
|
|
409
423
|
animation: false
|
|
410
|
-
},
|
|
424
|
+
}, _this2.v3 ? function () {
|
|
411
425
|
return [
|
|
412
426
|
// @ts-ignore function children
|
|
413
427
|
h(kendo_vue_layout_1.TabStripTab, {
|
|
414
428
|
title: localization.toLanguageString(findReplaceTabFind, main_1.messages[findReplaceTabFind]),
|
|
415
|
-
attrs:
|
|
429
|
+
attrs: _this2.v3 ? undefined : {
|
|
416
430
|
title: localization.toLanguageString(findReplaceTabFind, main_1.messages[findReplaceTabFind])
|
|
417
431
|
}
|
|
418
|
-
},
|
|
432
|
+
}, _this2.v3 ? function () {
|
|
419
433
|
return [h("div", {
|
|
420
434
|
"class": "k-edit-form-container"
|
|
421
|
-
}, [findWhatLabel.call(
|
|
435
|
+
}, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), checkboxes, navigation.call(_this2, 'findWhatFind')];
|
|
422
436
|
} : [h("div", {
|
|
423
437
|
"class": "k-edit-form-container"
|
|
424
|
-
}, [findWhatLabel.call(
|
|
438
|
+
}, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), checkboxes, navigation.call(_this2, 'findWhatFind')]),
|
|
425
439
|
// @ts-ignore function children
|
|
426
440
|
h(kendo_vue_layout_1.TabStripTab, {
|
|
427
441
|
title: localization.toLanguageString(findReplaceTabReplace, main_1.messages[findReplaceTabReplace]),
|
|
428
|
-
attrs:
|
|
442
|
+
attrs: _this2.v3 ? undefined : {
|
|
429
443
|
title: localization.toLanguageString(findReplaceTabReplace, main_1.messages[findReplaceTabReplace])
|
|
430
444
|
}
|
|
431
|
-
},
|
|
445
|
+
}, _this2.v3 ? function () {
|
|
432
446
|
return [h("div", {
|
|
433
447
|
"class": "k-edit-form-container"
|
|
434
|
-
}, [findWhatLabel.call(
|
|
448
|
+
}, [findWhatLabel.call(_this2, 'findWhatReplace'), findWhat.call(_this2, 'findWhatReplace'), replaceWithLabel, replaceWith]), h("div", {
|
|
435
449
|
"class": "k-actions k-hstack k-justify-content-end"
|
|
436
450
|
}, [
|
|
437
451
|
// @ts-ignore function children
|
|
438
452
|
h(kendo_vue_buttons_1.Button, {
|
|
439
453
|
disabled: !Boolean(nextMatch),
|
|
440
|
-
attrs:
|
|
454
|
+
attrs: _this2.v3 ? undefined : {
|
|
441
455
|
disabled: !Boolean(nextMatch)
|
|
442
456
|
},
|
|
443
|
-
onClick:
|
|
444
|
-
on:
|
|
445
|
-
"click":
|
|
457
|
+
onClick: _this2.onReplace,
|
|
458
|
+
on: _this2.v3 ? undefined : {
|
|
459
|
+
"click": _this2.onReplace
|
|
446
460
|
}
|
|
447
|
-
},
|
|
461
|
+
}, _this2.v3 ? function () {
|
|
448
462
|
return [localization.toLanguageString(findReplaceReplace, main_1.messages[findReplaceReplace])];
|
|
449
463
|
} : [localization.toLanguageString(findReplaceReplace, main_1.messages[findReplaceReplace])]),
|
|
450
464
|
// @ts-ignore function children
|
|
451
465
|
h(kendo_vue_buttons_1.Button, {
|
|
452
466
|
disabled: !Boolean(nextMatch),
|
|
453
|
-
attrs:
|
|
467
|
+
attrs: _this2.v3 ? undefined : {
|
|
454
468
|
disabled: !Boolean(nextMatch)
|
|
455
469
|
},
|
|
456
|
-
onClick:
|
|
457
|
-
on:
|
|
458
|
-
"click":
|
|
470
|
+
onClick: _this2.onReplaceAll,
|
|
471
|
+
on: _this2.v3 ? undefined : {
|
|
472
|
+
"click": _this2.onReplaceAll
|
|
459
473
|
}
|
|
460
|
-
},
|
|
474
|
+
}, _this2.v3 ? function () {
|
|
461
475
|
return [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])];
|
|
462
|
-
} : [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])])]), checkboxes, navigation.call(
|
|
476
|
+
} : [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])])]), checkboxes, navigation.call(_this2, 'findWhatReplace')];
|
|
463
477
|
} : [h("div", {
|
|
464
478
|
"class": "k-edit-form-container"
|
|
465
|
-
}, [findWhatLabel.call(
|
|
479
|
+
}, [findWhatLabel.call(_this2, 'findWhatReplace'), findWhat.call(_this2, 'findWhatReplace'), replaceWithLabel, replaceWith]), h("div", {
|
|
466
480
|
"class": "k-actions k-hstack k-justify-content-end"
|
|
467
481
|
}, [h(kendo_vue_buttons_1.Button, {
|
|
468
482
|
disabled: !Boolean(nextMatch),
|
|
469
|
-
attrs:
|
|
483
|
+
attrs: _this2.v3 ? undefined : {
|
|
470
484
|
disabled: !Boolean(nextMatch)
|
|
471
485
|
},
|
|
472
|
-
onClick:
|
|
473
|
-
on:
|
|
474
|
-
"click":
|
|
486
|
+
onClick: _this2.onReplace,
|
|
487
|
+
on: _this2.v3 ? undefined : {
|
|
488
|
+
"click": _this2.onReplace
|
|
475
489
|
}
|
|
476
|
-
},
|
|
490
|
+
}, _this2.v3 ? function () {
|
|
477
491
|
return [localization.toLanguageString(findReplaceReplace, main_1.messages[findReplaceReplace])];
|
|
478
492
|
} : [localization.toLanguageString(findReplaceReplace, main_1.messages[findReplaceReplace])]), h(kendo_vue_buttons_1.Button, {
|
|
479
493
|
disabled: !Boolean(nextMatch),
|
|
480
|
-
attrs:
|
|
494
|
+
attrs: _this2.v3 ? undefined : {
|
|
481
495
|
disabled: !Boolean(nextMatch)
|
|
482
496
|
},
|
|
483
|
-
onClick:
|
|
484
|
-
on:
|
|
485
|
-
"click":
|
|
497
|
+
onClick: _this2.onReplaceAll,
|
|
498
|
+
on: _this2.v3 ? undefined : {
|
|
499
|
+
"click": _this2.onReplaceAll
|
|
486
500
|
}
|
|
487
|
-
},
|
|
501
|
+
}, _this2.v3 ? function () {
|
|
488
502
|
return [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])];
|
|
489
|
-
} : [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])])]), checkboxes, navigation.call(
|
|
503
|
+
} : [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])])]), checkboxes, navigation.call(_this2, 'findWhatReplace')])];
|
|
490
504
|
} : [h(kendo_vue_layout_1.TabStripTab, {
|
|
491
505
|
title: localization.toLanguageString(findReplaceTabFind, main_1.messages[findReplaceTabFind]),
|
|
492
|
-
attrs:
|
|
506
|
+
attrs: _this2.v3 ? undefined : {
|
|
493
507
|
title: localization.toLanguageString(findReplaceTabFind, main_1.messages[findReplaceTabFind])
|
|
494
508
|
}
|
|
495
|
-
},
|
|
509
|
+
}, _this2.v3 ? function () {
|
|
496
510
|
return [h("div", {
|
|
497
511
|
"class": "k-edit-form-container"
|
|
498
|
-
}, [findWhatLabel.call(
|
|
512
|
+
}, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), checkboxes, navigation.call(_this2, 'findWhatFind')];
|
|
499
513
|
} : [h("div", {
|
|
500
514
|
"class": "k-edit-form-container"
|
|
501
|
-
}, [findWhatLabel.call(
|
|
515
|
+
}, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), checkboxes, navigation.call(_this2, 'findWhatFind')]), h(kendo_vue_layout_1.TabStripTab, {
|
|
502
516
|
title: localization.toLanguageString(findReplaceTabReplace, main_1.messages[findReplaceTabReplace]),
|
|
503
|
-
attrs:
|
|
517
|
+
attrs: _this2.v3 ? undefined : {
|
|
504
518
|
title: localization.toLanguageString(findReplaceTabReplace, main_1.messages[findReplaceTabReplace])
|
|
505
519
|
}
|
|
506
|
-
},
|
|
520
|
+
}, _this2.v3 ? function () {
|
|
507
521
|
return [h("div", {
|
|
508
522
|
"class": "k-edit-form-container"
|
|
509
|
-
}, [findWhatLabel.call(
|
|
523
|
+
}, [findWhatLabel.call(_this2, 'findWhatReplace'), findWhat.call(_this2, 'findWhatReplace'), replaceWithLabel, replaceWith]), h("div", {
|
|
510
524
|
"class": "k-actions k-hstack k-justify-content-end"
|
|
511
525
|
}, [h(kendo_vue_buttons_1.Button, {
|
|
512
526
|
disabled: !Boolean(nextMatch),
|
|
513
|
-
attrs:
|
|
527
|
+
attrs: _this2.v3 ? undefined : {
|
|
514
528
|
disabled: !Boolean(nextMatch)
|
|
515
529
|
},
|
|
516
|
-
onClick:
|
|
517
|
-
on:
|
|
518
|
-
"click":
|
|
530
|
+
onClick: _this2.onReplace,
|
|
531
|
+
on: _this2.v3 ? undefined : {
|
|
532
|
+
"click": _this2.onReplace
|
|
519
533
|
}
|
|
520
|
-
},
|
|
534
|
+
}, _this2.v3 ? function () {
|
|
521
535
|
return [localization.toLanguageString(findReplaceReplace, main_1.messages[findReplaceReplace])];
|
|
522
536
|
} : [localization.toLanguageString(findReplaceReplace, main_1.messages[findReplaceReplace])]), h(kendo_vue_buttons_1.Button, {
|
|
523
537
|
disabled: !Boolean(nextMatch),
|
|
524
|
-
attrs:
|
|
538
|
+
attrs: _this2.v3 ? undefined : {
|
|
525
539
|
disabled: !Boolean(nextMatch)
|
|
526
540
|
},
|
|
527
|
-
onClick:
|
|
528
|
-
on:
|
|
529
|
-
"click":
|
|
541
|
+
onClick: _this2.onReplaceAll,
|
|
542
|
+
on: _this2.v3 ? undefined : {
|
|
543
|
+
"click": _this2.onReplaceAll
|
|
530
544
|
}
|
|
531
|
-
},
|
|
545
|
+
}, _this2.v3 ? function () {
|
|
532
546
|
return [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])];
|
|
533
|
-
} : [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])])]), checkboxes, navigation.call(
|
|
547
|
+
} : [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])])]), checkboxes, navigation.call(_this2, 'findWhatReplace')];
|
|
534
548
|
} : [h("div", {
|
|
535
549
|
"class": "k-edit-form-container"
|
|
536
|
-
}, [findWhatLabel.call(
|
|
550
|
+
}, [findWhatLabel.call(_this2, 'findWhatReplace'), findWhat.call(_this2, 'findWhatReplace'), replaceWithLabel, replaceWith]), h("div", {
|
|
537
551
|
"class": "k-actions k-hstack k-justify-content-end"
|
|
538
552
|
}, [h(kendo_vue_buttons_1.Button, {
|
|
539
553
|
disabled: !Boolean(nextMatch),
|
|
540
|
-
attrs:
|
|
554
|
+
attrs: _this2.v3 ? undefined : {
|
|
541
555
|
disabled: !Boolean(nextMatch)
|
|
542
556
|
},
|
|
543
|
-
onClick:
|
|
544
|
-
on:
|
|
545
|
-
"click":
|
|
557
|
+
onClick: _this2.onReplace,
|
|
558
|
+
on: _this2.v3 ? undefined : {
|
|
559
|
+
"click": _this2.onReplace
|
|
546
560
|
}
|
|
547
|
-
},
|
|
561
|
+
}, _this2.v3 ? function () {
|
|
548
562
|
return [localization.toLanguageString(findReplaceReplace, main_1.messages[findReplaceReplace])];
|
|
549
563
|
} : [localization.toLanguageString(findReplaceReplace, main_1.messages[findReplaceReplace])]), h(kendo_vue_buttons_1.Button, {
|
|
550
564
|
disabled: !Boolean(nextMatch),
|
|
551
|
-
attrs:
|
|
565
|
+
attrs: _this2.v3 ? undefined : {
|
|
552
566
|
disabled: !Boolean(nextMatch)
|
|
553
567
|
},
|
|
554
|
-
onClick:
|
|
555
|
-
on:
|
|
556
|
-
"click":
|
|
568
|
+
onClick: _this2.onReplaceAll,
|
|
569
|
+
on: _this2.v3 ? undefined : {
|
|
570
|
+
"click": _this2.onReplaceAll
|
|
557
571
|
}
|
|
558
|
-
},
|
|
572
|
+
}, _this2.v3 ? function () {
|
|
559
573
|
return [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])];
|
|
560
|
-
} : [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])])]), checkboxes, navigation.call(
|
|
574
|
+
} : [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])])]), checkboxes, navigation.call(_this2, 'findWhatReplace')])])];
|
|
561
575
|
} : [h(kendo_vue_layout_1.TabStrip, {
|
|
562
|
-
dir:
|
|
563
|
-
attrs:
|
|
564
|
-
dir:
|
|
565
|
-
selected:
|
|
576
|
+
dir: _this2.$props.dir,
|
|
577
|
+
attrs: _this2.v3 ? undefined : {
|
|
578
|
+
dir: _this2.$props.dir,
|
|
579
|
+
selected: _this2.selectedTab,
|
|
566
580
|
animation: false
|
|
567
581
|
},
|
|
568
|
-
selected:
|
|
582
|
+
selected: _this2.selectedTab,
|
|
569
583
|
"class": "k-editor-find-replace",
|
|
570
|
-
onSelect:
|
|
571
|
-
on:
|
|
572
|
-
"select":
|
|
584
|
+
onSelect: _this2.onTabSelect,
|
|
585
|
+
on: _this2.v3 ? undefined : {
|
|
586
|
+
"select": _this2.onTabSelect
|
|
573
587
|
},
|
|
574
588
|
animation: false
|
|
575
|
-
},
|
|
589
|
+
}, _this2.v3 ? function () {
|
|
576
590
|
return [h(kendo_vue_layout_1.TabStripTab, {
|
|
577
591
|
title: localization.toLanguageString(findReplaceTabFind, main_1.messages[findReplaceTabFind]),
|
|
578
|
-
attrs:
|
|
592
|
+
attrs: _this2.v3 ? undefined : {
|
|
579
593
|
title: localization.toLanguageString(findReplaceTabFind, main_1.messages[findReplaceTabFind])
|
|
580
594
|
}
|
|
581
|
-
},
|
|
595
|
+
}, _this2.v3 ? function () {
|
|
582
596
|
return [h("div", {
|
|
583
597
|
"class": "k-edit-form-container"
|
|
584
|
-
}, [findWhatLabel.call(
|
|
598
|
+
}, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), checkboxes, navigation.call(_this2, 'findWhatFind')];
|
|
585
599
|
} : [h("div", {
|
|
586
600
|
"class": "k-edit-form-container"
|
|
587
|
-
}, [findWhatLabel.call(
|
|
601
|
+
}, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), checkboxes, navigation.call(_this2, 'findWhatFind')]), h(kendo_vue_layout_1.TabStripTab, {
|
|
588
602
|
title: localization.toLanguageString(findReplaceTabReplace, main_1.messages[findReplaceTabReplace]),
|
|
589
|
-
attrs:
|
|
603
|
+
attrs: _this2.v3 ? undefined : {
|
|
590
604
|
title: localization.toLanguageString(findReplaceTabReplace, main_1.messages[findReplaceTabReplace])
|
|
591
605
|
}
|
|
592
|
-
},
|
|
606
|
+
}, _this2.v3 ? function () {
|
|
593
607
|
return [h("div", {
|
|
594
608
|
"class": "k-edit-form-container"
|
|
595
|
-
}, [findWhatLabel.call(
|
|
609
|
+
}, [findWhatLabel.call(_this2, 'findWhatReplace'), findWhat.call(_this2, 'findWhatReplace'), replaceWithLabel, replaceWith]), h("div", {
|
|
596
610
|
"class": "k-actions k-hstack k-justify-content-end"
|
|
597
611
|
}, [h(kendo_vue_buttons_1.Button, {
|
|
598
612
|
disabled: !Boolean(nextMatch),
|
|
599
|
-
attrs:
|
|
613
|
+
attrs: _this2.v3 ? undefined : {
|
|
600
614
|
disabled: !Boolean(nextMatch)
|
|
601
615
|
},
|
|
602
|
-
onClick:
|
|
603
|
-
on:
|
|
604
|
-
"click":
|
|
616
|
+
onClick: _this2.onReplace,
|
|
617
|
+
on: _this2.v3 ? undefined : {
|
|
618
|
+
"click": _this2.onReplace
|
|
605
619
|
}
|
|
606
|
-
},
|
|
620
|
+
}, _this2.v3 ? function () {
|
|
607
621
|
return [localization.toLanguageString(findReplaceReplace, main_1.messages[findReplaceReplace])];
|
|
608
622
|
} : [localization.toLanguageString(findReplaceReplace, main_1.messages[findReplaceReplace])]), h(kendo_vue_buttons_1.Button, {
|
|
609
623
|
disabled: !Boolean(nextMatch),
|
|
610
|
-
attrs:
|
|
624
|
+
attrs: _this2.v3 ? undefined : {
|
|
611
625
|
disabled: !Boolean(nextMatch)
|
|
612
626
|
},
|
|
613
|
-
onClick:
|
|
614
|
-
on:
|
|
615
|
-
"click":
|
|
627
|
+
onClick: _this2.onReplaceAll,
|
|
628
|
+
on: _this2.v3 ? undefined : {
|
|
629
|
+
"click": _this2.onReplaceAll
|
|
616
630
|
}
|
|
617
|
-
},
|
|
631
|
+
}, _this2.v3 ? function () {
|
|
618
632
|
return [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])];
|
|
619
|
-
} : [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])])]), checkboxes, navigation.call(
|
|
633
|
+
} : [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])])]), checkboxes, navigation.call(_this2, 'findWhatReplace')];
|
|
620
634
|
} : [h("div", {
|
|
621
635
|
"class": "k-edit-form-container"
|
|
622
|
-
}, [findWhatLabel.call(
|
|
636
|
+
}, [findWhatLabel.call(_this2, 'findWhatReplace'), findWhat.call(_this2, 'findWhatReplace'), replaceWithLabel, replaceWith]), h("div", {
|
|
623
637
|
"class": "k-actions k-hstack k-justify-content-end"
|
|
624
638
|
}, [h(kendo_vue_buttons_1.Button, {
|
|
625
639
|
disabled: !Boolean(nextMatch),
|
|
626
|
-
attrs:
|
|
640
|
+
attrs: _this2.v3 ? undefined : {
|
|
627
641
|
disabled: !Boolean(nextMatch)
|
|
628
642
|
},
|
|
629
|
-
onClick:
|
|
630
|
-
on:
|
|
631
|
-
"click":
|
|
643
|
+
onClick: _this2.onReplace,
|
|
644
|
+
on: _this2.v3 ? undefined : {
|
|
645
|
+
"click": _this2.onReplace
|
|
632
646
|
}
|
|
633
|
-
},
|
|
647
|
+
}, _this2.v3 ? function () {
|
|
634
648
|
return [localization.toLanguageString(findReplaceReplace, main_1.messages[findReplaceReplace])];
|
|
635
649
|
} : [localization.toLanguageString(findReplaceReplace, main_1.messages[findReplaceReplace])]), h(kendo_vue_buttons_1.Button, {
|
|
636
650
|
disabled: !Boolean(nextMatch),
|
|
637
|
-
attrs:
|
|
651
|
+
attrs: _this2.v3 ? undefined : {
|
|
638
652
|
disabled: !Boolean(nextMatch)
|
|
639
653
|
},
|
|
640
|
-
onClick:
|
|
641
|
-
on:
|
|
642
|
-
"click":
|
|
654
|
+
onClick: _this2.onReplaceAll,
|
|
655
|
+
on: _this2.v3 ? undefined : {
|
|
656
|
+
"click": _this2.onReplaceAll
|
|
643
657
|
}
|
|
644
|
-
},
|
|
658
|
+
}, _this2.v3 ? function () {
|
|
645
659
|
return [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])];
|
|
646
|
-
} : [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])])]), checkboxes, navigation.call(
|
|
660
|
+
} : [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])])]), checkboxes, navigation.call(_this2, 'findWhatReplace')])];
|
|
647
661
|
} : [h(kendo_vue_layout_1.TabStripTab, {
|
|
648
662
|
title: localization.toLanguageString(findReplaceTabFind, main_1.messages[findReplaceTabFind]),
|
|
649
|
-
attrs:
|
|
663
|
+
attrs: _this2.v3 ? undefined : {
|
|
650
664
|
title: localization.toLanguageString(findReplaceTabFind, main_1.messages[findReplaceTabFind])
|
|
651
665
|
}
|
|
652
|
-
},
|
|
666
|
+
}, _this2.v3 ? function () {
|
|
653
667
|
return [h("div", {
|
|
654
668
|
"class": "k-edit-form-container"
|
|
655
|
-
}, [findWhatLabel.call(
|
|
669
|
+
}, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), checkboxes, navigation.call(_this2, 'findWhatFind')];
|
|
656
670
|
} : [h("div", {
|
|
657
671
|
"class": "k-edit-form-container"
|
|
658
|
-
}, [findWhatLabel.call(
|
|
672
|
+
}, [findWhatLabel.call(_this2, 'findWhatFind'), findWhat.call(_this2, 'findWhatFind')]), checkboxes, navigation.call(_this2, 'findWhatFind')]), h(kendo_vue_layout_1.TabStripTab, {
|
|
659
673
|
title: localization.toLanguageString(findReplaceTabReplace, main_1.messages[findReplaceTabReplace]),
|
|
660
|
-
attrs:
|
|
674
|
+
attrs: _this2.v3 ? undefined : {
|
|
661
675
|
title: localization.toLanguageString(findReplaceTabReplace, main_1.messages[findReplaceTabReplace])
|
|
662
676
|
}
|
|
663
|
-
},
|
|
677
|
+
}, _this2.v3 ? function () {
|
|
664
678
|
return [h("div", {
|
|
665
679
|
"class": "k-edit-form-container"
|
|
666
|
-
}, [findWhatLabel.call(
|
|
680
|
+
}, [findWhatLabel.call(_this2, 'findWhatReplace'), findWhat.call(_this2, 'findWhatReplace'), replaceWithLabel, replaceWith]), h("div", {
|
|
667
681
|
"class": "k-actions k-hstack k-justify-content-end"
|
|
668
682
|
}, [h(kendo_vue_buttons_1.Button, {
|
|
669
683
|
disabled: !Boolean(nextMatch),
|
|
670
|
-
attrs:
|
|
684
|
+
attrs: _this2.v3 ? undefined : {
|
|
671
685
|
disabled: !Boolean(nextMatch)
|
|
672
686
|
},
|
|
673
|
-
onClick:
|
|
674
|
-
on:
|
|
675
|
-
"click":
|
|
687
|
+
onClick: _this2.onReplace,
|
|
688
|
+
on: _this2.v3 ? undefined : {
|
|
689
|
+
"click": _this2.onReplace
|
|
676
690
|
}
|
|
677
|
-
},
|
|
691
|
+
}, _this2.v3 ? function () {
|
|
678
692
|
return [localization.toLanguageString(findReplaceReplace, main_1.messages[findReplaceReplace])];
|
|
679
693
|
} : [localization.toLanguageString(findReplaceReplace, main_1.messages[findReplaceReplace])]), h(kendo_vue_buttons_1.Button, {
|
|
680
694
|
disabled: !Boolean(nextMatch),
|
|
681
|
-
attrs:
|
|
695
|
+
attrs: _this2.v3 ? undefined : {
|
|
682
696
|
disabled: !Boolean(nextMatch)
|
|
683
697
|
},
|
|
684
|
-
onClick:
|
|
685
|
-
on:
|
|
686
|
-
"click":
|
|
698
|
+
onClick: _this2.onReplaceAll,
|
|
699
|
+
on: _this2.v3 ? undefined : {
|
|
700
|
+
"click": _this2.onReplaceAll
|
|
687
701
|
}
|
|
688
|
-
},
|
|
702
|
+
}, _this2.v3 ? function () {
|
|
689
703
|
return [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])];
|
|
690
|
-
} : [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])])]), checkboxes, navigation.call(
|
|
704
|
+
} : [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])])]), checkboxes, navigation.call(_this2, 'findWhatReplace')];
|
|
691
705
|
} : [h("div", {
|
|
692
706
|
"class": "k-edit-form-container"
|
|
693
|
-
}, [findWhatLabel.call(
|
|
707
|
+
}, [findWhatLabel.call(_this2, 'findWhatReplace'), findWhat.call(_this2, 'findWhatReplace'), replaceWithLabel, replaceWith]), h("div", {
|
|
694
708
|
"class": "k-actions k-hstack k-justify-content-end"
|
|
695
709
|
}, [h(kendo_vue_buttons_1.Button, {
|
|
696
710
|
disabled: !Boolean(nextMatch),
|
|
697
|
-
attrs:
|
|
711
|
+
attrs: _this2.v3 ? undefined : {
|
|
698
712
|
disabled: !Boolean(nextMatch)
|
|
699
713
|
},
|
|
700
|
-
onClick:
|
|
701
|
-
on:
|
|
702
|
-
"click":
|
|
714
|
+
onClick: _this2.onReplace,
|
|
715
|
+
on: _this2.v3 ? undefined : {
|
|
716
|
+
"click": _this2.onReplace
|
|
703
717
|
}
|
|
704
|
-
},
|
|
718
|
+
}, _this2.v3 ? function () {
|
|
705
719
|
return [localization.toLanguageString(findReplaceReplace, main_1.messages[findReplaceReplace])];
|
|
706
720
|
} : [localization.toLanguageString(findReplaceReplace, main_1.messages[findReplaceReplace])]), h(kendo_vue_buttons_1.Button, {
|
|
707
721
|
disabled: !Boolean(nextMatch),
|
|
708
|
-
attrs:
|
|
722
|
+
attrs: _this2.v3 ? undefined : {
|
|
709
723
|
disabled: !Boolean(nextMatch)
|
|
710
724
|
},
|
|
711
|
-
onClick:
|
|
712
|
-
on:
|
|
713
|
-
"click":
|
|
725
|
+
onClick: _this2.onReplaceAll,
|
|
726
|
+
on: _this2.v3 ? undefined : {
|
|
727
|
+
"click": _this2.onReplaceAll
|
|
714
728
|
}
|
|
715
|
-
},
|
|
729
|
+
}, _this2.v3 ? function () {
|
|
716
730
|
return [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])];
|
|
717
|
-
} : [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])])]), checkboxes, navigation.call(
|
|
731
|
+
} : [localization.toLanguageString(findReplaceReplaceAll, main_1.messages[findReplaceReplaceAll])])]), checkboxes, navigation.call(_this2, 'findWhatReplace')])])])
|
|
718
732
|
);
|
|
719
733
|
// document.body);
|
|
720
734
|
},
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-editor',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1672389771,
|
|
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.
|
|
4
|
+
"version": "3.7.4-dev.202212300853",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
20
|
"test": "cd ../../ && npm run test -- --testPathPattern=/packages/editor/.*",
|
|
21
|
-
"start": "gulp start",
|
|
21
|
+
"start": "gulp start --notsc",
|
|
22
22
|
"build-package": "gulp build-package"
|
|
23
23
|
},
|
|
24
24
|
"homepage": "https://www.telerik.com/kendo-vue-ui/",
|
|
@@ -49,21 +49,21 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@progress/kendo-editor-common": "1.9.3",
|
|
52
|
-
"@progress/kendo-vue-common": "3.7.4-dev.
|
|
52
|
+
"@progress/kendo-vue-common": "3.7.4-dev.202212300853"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@progress/kendo-drawing": "^1.8.0",
|
|
56
56
|
"@progress/kendo-licensing": "^1.0.1",
|
|
57
|
-
"@progress/kendo-vue-buttons": "3.7.4-dev.
|
|
58
|
-
"@progress/kendo-vue-dialogs": "3.7.4-dev.
|
|
59
|
-
"@progress/kendo-vue-dropdowns": "3.7.4-dev.
|
|
60
|
-
"@progress/kendo-vue-form": "3.7.4-dev.
|
|
61
|
-
"@progress/kendo-vue-inputs": "3.7.4-dev.
|
|
62
|
-
"@progress/kendo-vue-intl": "3.7.4-dev.
|
|
63
|
-
"@progress/kendo-vue-layout": "3.7.4-dev.
|
|
64
|
-
"@progress/kendo-vue-pdf": "3.7.4-dev.
|
|
65
|
-
"@progress/kendo-vue-popup": "3.7.4-dev.
|
|
66
|
-
"@progress/kendo-vue-upload": "3.7.4-dev.
|
|
57
|
+
"@progress/kendo-vue-buttons": "3.7.4-dev.202212300853",
|
|
58
|
+
"@progress/kendo-vue-dialogs": "3.7.4-dev.202212300853",
|
|
59
|
+
"@progress/kendo-vue-dropdowns": "3.7.4-dev.202212300853",
|
|
60
|
+
"@progress/kendo-vue-form": "3.7.4-dev.202212300853",
|
|
61
|
+
"@progress/kendo-vue-inputs": "3.7.4-dev.202212300853",
|
|
62
|
+
"@progress/kendo-vue-intl": "3.7.4-dev.202212300853",
|
|
63
|
+
"@progress/kendo-vue-layout": "3.7.4-dev.202212300853",
|
|
64
|
+
"@progress/kendo-vue-pdf": "3.7.4-dev.202212300853",
|
|
65
|
+
"@progress/kendo-vue-popup": "3.7.4-dev.202212300853",
|
|
66
|
+
"@progress/kendo-vue-upload": "3.7.4-dev.202212300853",
|
|
67
67
|
"prosemirror-markdown": "1.10.1",
|
|
68
68
|
"prosemirror-tables": "^1.2.5"
|
|
69
69
|
},
|