@mdaemon/html-editor 1.0.7 → 1.0.8
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 +19 -2
- package/dist/index.d.ts +44 -0
- package/dist/index.js +557 -44
- package/dist/index.mjs +557 -44
- package/dist/styles.css +170 -0
- package/package.json +12 -3
- package/dist/index.js.map +0 -1
- package/dist/index.mjs.map +0 -1
package/dist/index.mjs
CHANGED
|
@@ -42462,6 +42462,284 @@ class SearchReplace {
|
|
|
42462
42462
|
}
|
|
42463
42463
|
}
|
|
42464
42464
|
}
|
|
42465
|
+
class SourceEditor {
|
|
42466
|
+
options;
|
|
42467
|
+
overlay = null;
|
|
42468
|
+
dialog = null;
|
|
42469
|
+
textarea = null;
|
|
42470
|
+
constructor(options) {
|
|
42471
|
+
this.options = options;
|
|
42472
|
+
}
|
|
42473
|
+
get tiptap() {
|
|
42474
|
+
return this.options.editor.getTipTap();
|
|
42475
|
+
}
|
|
42476
|
+
open() {
|
|
42477
|
+
if (this.overlay) {
|
|
42478
|
+
if (this.textarea) {
|
|
42479
|
+
this.textarea.value = this.tiptap?.getHTML() ?? "";
|
|
42480
|
+
}
|
|
42481
|
+
this.overlay.style.display = "flex";
|
|
42482
|
+
this.textarea?.focus();
|
|
42483
|
+
return;
|
|
42484
|
+
}
|
|
42485
|
+
this.createDialog();
|
|
42486
|
+
}
|
|
42487
|
+
close() {
|
|
42488
|
+
if (this.overlay) {
|
|
42489
|
+
this.overlay.style.display = "none";
|
|
42490
|
+
}
|
|
42491
|
+
}
|
|
42492
|
+
save() {
|
|
42493
|
+
if (this.textarea) {
|
|
42494
|
+
this.tiptap?.commands.setContent(this.textarea.value);
|
|
42495
|
+
}
|
|
42496
|
+
this.close();
|
|
42497
|
+
}
|
|
42498
|
+
createDialog() {
|
|
42499
|
+
const trans = this.options.trans;
|
|
42500
|
+
const skin = this.options.editor.getConfig().skin ?? "oxide";
|
|
42501
|
+
this.overlay = document.createElement("div");
|
|
42502
|
+
this.overlay.className = "md-dialog-overlay";
|
|
42503
|
+
this.overlay.addEventListener("click", (e) => {
|
|
42504
|
+
if (e.target === this.overlay) {
|
|
42505
|
+
this.close();
|
|
42506
|
+
}
|
|
42507
|
+
});
|
|
42508
|
+
const themeWrapper = document.createElement("div");
|
|
42509
|
+
themeWrapper.className = `md-editor-${skin}`;
|
|
42510
|
+
themeWrapper.style.display = "contents";
|
|
42511
|
+
this.dialog = document.createElement("div");
|
|
42512
|
+
this.dialog.className = "md-dialog md-source-editor-dialog";
|
|
42513
|
+
const header = document.createElement("div");
|
|
42514
|
+
header.className = "md-dialog-header";
|
|
42515
|
+
header.innerHTML = `
|
|
42516
|
+
<h3>${trans("Source code")}</h3>
|
|
42517
|
+
<button type="button" class="md-dialog-close">×</button>
|
|
42518
|
+
`;
|
|
42519
|
+
header.querySelector(".md-dialog-close")?.addEventListener("click", () => this.close());
|
|
42520
|
+
const body = document.createElement("div");
|
|
42521
|
+
body.className = "md-dialog-body";
|
|
42522
|
+
this.textarea = document.createElement("textarea");
|
|
42523
|
+
this.textarea.className = "md-source-editor-textarea";
|
|
42524
|
+
this.textarea.value = this.tiptap?.getHTML() ?? "";
|
|
42525
|
+
this.textarea.spellcheck = false;
|
|
42526
|
+
this.textarea.addEventListener("keydown", (e) => {
|
|
42527
|
+
if (e.key === "Tab") {
|
|
42528
|
+
e.preventDefault();
|
|
42529
|
+
const start = this.textarea.selectionStart;
|
|
42530
|
+
const end = this.textarea.selectionEnd;
|
|
42531
|
+
this.textarea.value = this.textarea.value.substring(0, start) + " " + this.textarea.value.substring(end);
|
|
42532
|
+
this.textarea.selectionStart = this.textarea.selectionEnd = start + 2;
|
|
42533
|
+
}
|
|
42534
|
+
});
|
|
42535
|
+
body.appendChild(this.textarea);
|
|
42536
|
+
const footer = document.createElement("div");
|
|
42537
|
+
footer.className = "md-source-editor-footer";
|
|
42538
|
+
footer.innerHTML = `
|
|
42539
|
+
<button type="button" class="md-btn md-source-editor-cancel">${trans("Cancel")}</button>
|
|
42540
|
+
<button type="button" class="md-btn md-btn-primary md-source-editor-save">${trans("Save")}</button>
|
|
42541
|
+
`;
|
|
42542
|
+
footer.querySelector(".md-source-editor-cancel")?.addEventListener("click", () => this.close());
|
|
42543
|
+
footer.querySelector(".md-source-editor-save")?.addEventListener("click", () => this.save());
|
|
42544
|
+
body.appendChild(footer);
|
|
42545
|
+
this.dialog.appendChild(header);
|
|
42546
|
+
this.dialog.appendChild(body);
|
|
42547
|
+
themeWrapper.appendChild(this.dialog);
|
|
42548
|
+
this.overlay.appendChild(themeWrapper);
|
|
42549
|
+
this.overlay.addEventListener("keydown", (e) => {
|
|
42550
|
+
if (e.key === "Escape") {
|
|
42551
|
+
this.close();
|
|
42552
|
+
}
|
|
42553
|
+
});
|
|
42554
|
+
document.body.appendChild(this.overlay);
|
|
42555
|
+
this.textarea.focus();
|
|
42556
|
+
}
|
|
42557
|
+
destroy() {
|
|
42558
|
+
if (this.overlay) {
|
|
42559
|
+
this.overlay.remove();
|
|
42560
|
+
this.overlay = null;
|
|
42561
|
+
this.dialog = null;
|
|
42562
|
+
this.textarea = null;
|
|
42563
|
+
}
|
|
42564
|
+
}
|
|
42565
|
+
}
|
|
42566
|
+
class LinkEditor {
|
|
42567
|
+
options;
|
|
42568
|
+
overlay = null;
|
|
42569
|
+
dialog = null;
|
|
42570
|
+
urlInput = null;
|
|
42571
|
+
textInput = null;
|
|
42572
|
+
titleInput = null;
|
|
42573
|
+
targetSelect = null;
|
|
42574
|
+
constructor(options) {
|
|
42575
|
+
this.options = options;
|
|
42576
|
+
}
|
|
42577
|
+
get tiptap() {
|
|
42578
|
+
return this.options.editor.getTipTap();
|
|
42579
|
+
}
|
|
42580
|
+
open() {
|
|
42581
|
+
if (!this.overlay) {
|
|
42582
|
+
this.createDialog();
|
|
42583
|
+
}
|
|
42584
|
+
this.populateFromSelection();
|
|
42585
|
+
this.overlay.style.display = "flex";
|
|
42586
|
+
this.urlInput?.focus();
|
|
42587
|
+
}
|
|
42588
|
+
close() {
|
|
42589
|
+
if (this.overlay) {
|
|
42590
|
+
this.overlay.style.display = "none";
|
|
42591
|
+
}
|
|
42592
|
+
}
|
|
42593
|
+
populateFromSelection() {
|
|
42594
|
+
const tiptap = this.tiptap;
|
|
42595
|
+
if (!tiptap) return;
|
|
42596
|
+
const attrs = tiptap.getAttributes("link");
|
|
42597
|
+
const { from: from2, to } = tiptap.state.selection;
|
|
42598
|
+
const selectedText = tiptap.state.doc.textBetween(from2, to, "");
|
|
42599
|
+
if (this.urlInput) this.urlInput.value = attrs.href ?? "";
|
|
42600
|
+
if (this.textInput) this.textInput.value = selectedText;
|
|
42601
|
+
if (this.titleInput) this.titleInput.value = attrs.title ?? "";
|
|
42602
|
+
if (this.targetSelect) this.targetSelect.value = attrs.target ?? "";
|
|
42603
|
+
}
|
|
42604
|
+
save() {
|
|
42605
|
+
const tiptap = this.tiptap;
|
|
42606
|
+
if (!tiptap) return;
|
|
42607
|
+
const url = this.urlInput?.value.trim() ?? "";
|
|
42608
|
+
const text = this.textInput?.value ?? "";
|
|
42609
|
+
const title = this.titleInput?.value.trim() ?? "";
|
|
42610
|
+
const target = this.targetSelect?.value ?? "";
|
|
42611
|
+
if (!url) {
|
|
42612
|
+
tiptap.chain().focus().unsetLink().run();
|
|
42613
|
+
this.close();
|
|
42614
|
+
return;
|
|
42615
|
+
}
|
|
42616
|
+
const linkAttrs = { href: url };
|
|
42617
|
+
if (target) {
|
|
42618
|
+
linkAttrs.target = target;
|
|
42619
|
+
} else {
|
|
42620
|
+
linkAttrs.target = null;
|
|
42621
|
+
}
|
|
42622
|
+
if (title) {
|
|
42623
|
+
linkAttrs.title = title;
|
|
42624
|
+
} else {
|
|
42625
|
+
linkAttrs.title = null;
|
|
42626
|
+
}
|
|
42627
|
+
const { from: from2, to } = tiptap.state.selection;
|
|
42628
|
+
const currentText = tiptap.state.doc.textBetween(from2, to, "");
|
|
42629
|
+
if (text && text !== currentText) {
|
|
42630
|
+
tiptap.chain().focus().deleteSelection().insertContent({
|
|
42631
|
+
type: "text",
|
|
42632
|
+
text,
|
|
42633
|
+
marks: [{ type: "link", attrs: linkAttrs }]
|
|
42634
|
+
}).run();
|
|
42635
|
+
} else if (from2 === to && text) {
|
|
42636
|
+
tiptap.chain().focus().insertContent({
|
|
42637
|
+
type: "text",
|
|
42638
|
+
text,
|
|
42639
|
+
marks: [{ type: "link", attrs: linkAttrs }]
|
|
42640
|
+
}).run();
|
|
42641
|
+
} else if (from2 === to && !text) {
|
|
42642
|
+
tiptap.chain().focus().insertContent({
|
|
42643
|
+
type: "text",
|
|
42644
|
+
text: url,
|
|
42645
|
+
marks: [{ type: "link", attrs: linkAttrs }]
|
|
42646
|
+
}).run();
|
|
42647
|
+
} else {
|
|
42648
|
+
tiptap.chain().focus().setLink(linkAttrs).run();
|
|
42649
|
+
}
|
|
42650
|
+
this.close();
|
|
42651
|
+
}
|
|
42652
|
+
createDialog() {
|
|
42653
|
+
const trans = this.options.trans;
|
|
42654
|
+
const skin = this.options.editor.getConfig().skin ?? "oxide";
|
|
42655
|
+
this.overlay = document.createElement("div");
|
|
42656
|
+
this.overlay.className = "md-dialog-overlay";
|
|
42657
|
+
this.overlay.addEventListener("click", (e) => {
|
|
42658
|
+
if (e.target === this.overlay) {
|
|
42659
|
+
this.close();
|
|
42660
|
+
}
|
|
42661
|
+
});
|
|
42662
|
+
const themeWrapper = document.createElement("div");
|
|
42663
|
+
themeWrapper.className = `md-editor-${skin}`;
|
|
42664
|
+
themeWrapper.style.display = "contents";
|
|
42665
|
+
this.dialog = document.createElement("div");
|
|
42666
|
+
this.dialog.className = "md-dialog md-link-editor-dialog";
|
|
42667
|
+
const header = document.createElement("div");
|
|
42668
|
+
header.className = "md-dialog-header";
|
|
42669
|
+
header.innerHTML = `
|
|
42670
|
+
<h3>${trans("Insert/Edit Link")}</h3>
|
|
42671
|
+
<button type="button" class="md-dialog-close">×</button>
|
|
42672
|
+
`;
|
|
42673
|
+
header.querySelector(".md-dialog-close")?.addEventListener("click", () => this.close());
|
|
42674
|
+
const body = document.createElement("div");
|
|
42675
|
+
body.className = "md-dialog-body";
|
|
42676
|
+
const urlRow = document.createElement("div");
|
|
42677
|
+
urlRow.className = "md-link-editor-row";
|
|
42678
|
+
urlRow.innerHTML = `<label>${trans("URL")}</label>`;
|
|
42679
|
+
this.urlInput = document.createElement("input");
|
|
42680
|
+
this.urlInput.type = "text";
|
|
42681
|
+
this.urlInput.className = "md-link-editor-input";
|
|
42682
|
+
urlRow.appendChild(this.urlInput);
|
|
42683
|
+
const textRow = document.createElement("div");
|
|
42684
|
+
textRow.className = "md-link-editor-row";
|
|
42685
|
+
textRow.innerHTML = `<label>${trans("Text to display")}</label>`;
|
|
42686
|
+
this.textInput = document.createElement("input");
|
|
42687
|
+
this.textInput.type = "text";
|
|
42688
|
+
this.textInput.className = "md-link-editor-input";
|
|
42689
|
+
textRow.appendChild(this.textInput);
|
|
42690
|
+
const titleRow = document.createElement("div");
|
|
42691
|
+
titleRow.className = "md-link-editor-row";
|
|
42692
|
+
titleRow.innerHTML = `<label>${trans("Title")}</label>`;
|
|
42693
|
+
this.titleInput = document.createElement("input");
|
|
42694
|
+
this.titleInput.type = "text";
|
|
42695
|
+
this.titleInput.className = "md-link-editor-input";
|
|
42696
|
+
titleRow.appendChild(this.titleInput);
|
|
42697
|
+
const targetRow = document.createElement("div");
|
|
42698
|
+
targetRow.className = "md-link-editor-row";
|
|
42699
|
+
targetRow.innerHTML = `<label>${trans("Open link in...")}</label>`;
|
|
42700
|
+
this.targetSelect = document.createElement("select");
|
|
42701
|
+
this.targetSelect.className = "md-link-editor-select";
|
|
42702
|
+
this.targetSelect.innerHTML = `
|
|
42703
|
+
<option value="">${trans("Current window")}</option>
|
|
42704
|
+
<option value="_blank">${trans("New window")}</option>
|
|
42705
|
+
`;
|
|
42706
|
+
targetRow.appendChild(this.targetSelect);
|
|
42707
|
+
body.appendChild(urlRow);
|
|
42708
|
+
body.appendChild(textRow);
|
|
42709
|
+
body.appendChild(titleRow);
|
|
42710
|
+
body.appendChild(targetRow);
|
|
42711
|
+
const footer = document.createElement("div");
|
|
42712
|
+
footer.className = "md-link-editor-footer";
|
|
42713
|
+
footer.innerHTML = `
|
|
42714
|
+
<button type="button" class="md-btn md-link-editor-cancel">${trans("Cancel")}</button>
|
|
42715
|
+
<button type="button" class="md-btn md-btn-primary md-link-editor-save">${trans("Save")}</button>
|
|
42716
|
+
`;
|
|
42717
|
+
footer.querySelector(".md-link-editor-cancel")?.addEventListener("click", () => this.close());
|
|
42718
|
+
footer.querySelector(".md-link-editor-save")?.addEventListener("click", () => this.save());
|
|
42719
|
+
body.appendChild(footer);
|
|
42720
|
+
this.dialog.appendChild(header);
|
|
42721
|
+
this.dialog.appendChild(body);
|
|
42722
|
+
themeWrapper.appendChild(this.dialog);
|
|
42723
|
+
this.overlay.appendChild(themeWrapper);
|
|
42724
|
+
this.overlay.addEventListener("keydown", (e) => {
|
|
42725
|
+
if (e.key === "Escape") {
|
|
42726
|
+
this.close();
|
|
42727
|
+
}
|
|
42728
|
+
});
|
|
42729
|
+
document.body.appendChild(this.overlay);
|
|
42730
|
+
}
|
|
42731
|
+
destroy() {
|
|
42732
|
+
if (this.overlay) {
|
|
42733
|
+
this.overlay.remove();
|
|
42734
|
+
this.overlay = null;
|
|
42735
|
+
this.dialog = null;
|
|
42736
|
+
this.urlInput = null;
|
|
42737
|
+
this.textInput = null;
|
|
42738
|
+
this.titleInput = null;
|
|
42739
|
+
this.targetSelect = null;
|
|
42740
|
+
}
|
|
42741
|
+
}
|
|
42742
|
+
}
|
|
42465
42743
|
const DEFAULT_COLORS = [
|
|
42466
42744
|
{ value: "#000000", label: "Black" },
|
|
42467
42745
|
{ value: "#434343", label: "Dark Gray 4" },
|
|
@@ -42512,6 +42790,8 @@ class Toolbar {
|
|
|
42512
42790
|
emojiPicker = null;
|
|
42513
42791
|
imageUpload = null;
|
|
42514
42792
|
searchReplace = null;
|
|
42793
|
+
sourceEditor = null;
|
|
42794
|
+
linkEditor = null;
|
|
42515
42795
|
updateInterval = null;
|
|
42516
42796
|
boundClickHandler = null;
|
|
42517
42797
|
boundKeydownHandler = null;
|
|
@@ -43115,14 +43395,13 @@ class Toolbar {
|
|
|
43115
43395
|
this.imageUpload.open();
|
|
43116
43396
|
}
|
|
43117
43397
|
openLinkDialog() {
|
|
43118
|
-
|
|
43119
|
-
|
|
43120
|
-
|
|
43121
|
-
|
|
43122
|
-
|
|
43123
|
-
} else {
|
|
43124
|
-
this.tiptap?.chain().focus().setLink({ href: url }).run();
|
|
43398
|
+
if (!this.linkEditor) {
|
|
43399
|
+
this.linkEditor = new LinkEditor({
|
|
43400
|
+
editor: this.options.editor,
|
|
43401
|
+
trans: this.trans
|
|
43402
|
+
});
|
|
43125
43403
|
}
|
|
43404
|
+
this.linkEditor.open();
|
|
43126
43405
|
}
|
|
43127
43406
|
openCharMap() {
|
|
43128
43407
|
if (!this.charMap) {
|
|
@@ -43156,11 +43435,13 @@ class Toolbar {
|
|
|
43156
43435
|
this.searchReplace.open();
|
|
43157
43436
|
}
|
|
43158
43437
|
openSourceCode() {
|
|
43159
|
-
|
|
43160
|
-
|
|
43161
|
-
|
|
43162
|
-
|
|
43438
|
+
if (!this.sourceEditor) {
|
|
43439
|
+
this.sourceEditor = new SourceEditor({
|
|
43440
|
+
editor: this.options.editor,
|
|
43441
|
+
trans: this.trans
|
|
43442
|
+
});
|
|
43163
43443
|
}
|
|
43444
|
+
this.sourceEditor.open();
|
|
43164
43445
|
}
|
|
43165
43446
|
openPreview() {
|
|
43166
43447
|
const html = this.tiptap?.getHTML() ?? "";
|
|
@@ -43508,7 +43789,14 @@ const en = {
|
|
|
43508
43789
|
"Invalid image URL": "Invalid image URL",
|
|
43509
43790
|
"File too large": "File too large",
|
|
43510
43791
|
"Invalid file type": "Invalid file type",
|
|
43511
|
-
"More": "More"
|
|
43792
|
+
"More": "More",
|
|
43793
|
+
"Save": "Save",
|
|
43794
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
43795
|
+
"Text to display": "Text to display",
|
|
43796
|
+
"Title": "Title",
|
|
43797
|
+
"Open link in...": "Open link in...",
|
|
43798
|
+
"Current window": "Current window",
|
|
43799
|
+
"New window": "New window"
|
|
43512
43800
|
};
|
|
43513
43801
|
const ar = {
|
|
43514
43802
|
"Bold": "غامق",
|
|
@@ -43573,7 +43861,14 @@ const ar = {
|
|
|
43573
43861
|
"Invalid image URL": "رابط صورة غير صالح",
|
|
43574
43862
|
"File too large": "الملف كبير جداً",
|
|
43575
43863
|
"Invalid file type": "نوع ملف غير صالح",
|
|
43576
|
-
"More": "المزيد"
|
|
43864
|
+
"More": "المزيد",
|
|
43865
|
+
"Save": "Save",
|
|
43866
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
43867
|
+
"Text to display": "Text to display",
|
|
43868
|
+
"Title": "Title",
|
|
43869
|
+
"Open link in...": "Open link in...",
|
|
43870
|
+
"Current window": "Current window",
|
|
43871
|
+
"New window": "New window"
|
|
43577
43872
|
};
|
|
43578
43873
|
const ca = {
|
|
43579
43874
|
"Bold": "Negreta",
|
|
@@ -43638,7 +43933,14 @@ const ca = {
|
|
|
43638
43933
|
"Invalid image URL": "URL d'imatge no vàlida",
|
|
43639
43934
|
"File too large": "Fitxer massa gran",
|
|
43640
43935
|
"Invalid file type": "Tipus de fitxer no vàlid",
|
|
43641
|
-
"More": "Més"
|
|
43936
|
+
"More": "Més",
|
|
43937
|
+
"Save": "Save",
|
|
43938
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
43939
|
+
"Text to display": "Text to display",
|
|
43940
|
+
"Title": "Title",
|
|
43941
|
+
"Open link in...": "Open link in...",
|
|
43942
|
+
"Current window": "Current window",
|
|
43943
|
+
"New window": "New window"
|
|
43642
43944
|
};
|
|
43643
43945
|
const zh = {
|
|
43644
43946
|
"Bold": "粗体",
|
|
@@ -43703,7 +44005,14 @@ const zh = {
|
|
|
43703
44005
|
"Invalid image URL": "无效的图片 URL",
|
|
43704
44006
|
"File too large": "文件过大",
|
|
43705
44007
|
"Invalid file type": "无效的文件类型",
|
|
43706
|
-
"More": "更多"
|
|
44008
|
+
"More": "更多",
|
|
44009
|
+
"Save": "Save",
|
|
44010
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
44011
|
+
"Text to display": "Text to display",
|
|
44012
|
+
"Title": "Title",
|
|
44013
|
+
"Open link in...": "Open link in...",
|
|
44014
|
+
"Current window": "Current window",
|
|
44015
|
+
"New window": "New window"
|
|
43707
44016
|
};
|
|
43708
44017
|
const cs = {
|
|
43709
44018
|
"Bold": "Tučné",
|
|
@@ -43768,7 +44077,14 @@ const cs = {
|
|
|
43768
44077
|
"Invalid image URL": "Neplatná URL obrázku",
|
|
43769
44078
|
"File too large": "Soubor je příliš velký",
|
|
43770
44079
|
"Invalid file type": "Neplatný typ souboru",
|
|
43771
|
-
"More": "Více"
|
|
44080
|
+
"More": "Více",
|
|
44081
|
+
"Save": "Save",
|
|
44082
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
44083
|
+
"Text to display": "Text to display",
|
|
44084
|
+
"Title": "Title",
|
|
44085
|
+
"Open link in...": "Open link in...",
|
|
44086
|
+
"Current window": "Current window",
|
|
44087
|
+
"New window": "New window"
|
|
43772
44088
|
};
|
|
43773
44089
|
const da = {
|
|
43774
44090
|
"Bold": "Fed",
|
|
@@ -43833,7 +44149,14 @@ const da = {
|
|
|
43833
44149
|
"Invalid image URL": "Ugyldig billed-URL",
|
|
43834
44150
|
"File too large": "Filen er for stor",
|
|
43835
44151
|
"Invalid file type": "Ugyldig filtype",
|
|
43836
|
-
"More": "Mere"
|
|
44152
|
+
"More": "Mere",
|
|
44153
|
+
"Save": "Save",
|
|
44154
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
44155
|
+
"Text to display": "Text to display",
|
|
44156
|
+
"Title": "Title",
|
|
44157
|
+
"Open link in...": "Open link in...",
|
|
44158
|
+
"Current window": "Current window",
|
|
44159
|
+
"New window": "New window"
|
|
43837
44160
|
};
|
|
43838
44161
|
const enGb = {
|
|
43839
44162
|
"Bold": "Bold",
|
|
@@ -43898,7 +44221,14 @@ const enGb = {
|
|
|
43898
44221
|
"Invalid image URL": "Invalid image URL",
|
|
43899
44222
|
"File too large": "File too large",
|
|
43900
44223
|
"Invalid file type": "Invalid file type",
|
|
43901
|
-
"More": "More"
|
|
44224
|
+
"More": "More",
|
|
44225
|
+
"Save": "Save",
|
|
44226
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
44227
|
+
"Text to display": "Text to display",
|
|
44228
|
+
"Title": "Title",
|
|
44229
|
+
"Open link in...": "Open link in...",
|
|
44230
|
+
"Current window": "Current window",
|
|
44231
|
+
"New window": "New window"
|
|
43902
44232
|
};
|
|
43903
44233
|
const fi = {
|
|
43904
44234
|
"Bold": "Lihavoitu",
|
|
@@ -43963,7 +44293,14 @@ const fi = {
|
|
|
43963
44293
|
"Invalid image URL": "Virheellinen kuvan URL",
|
|
43964
44294
|
"File too large": "Tiedosto on liian suuri",
|
|
43965
44295
|
"Invalid file type": "Virheellinen tiedostotyyppi",
|
|
43966
|
-
"More": "Lisää"
|
|
44296
|
+
"More": "Lisää",
|
|
44297
|
+
"Save": "Save",
|
|
44298
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
44299
|
+
"Text to display": "Text to display",
|
|
44300
|
+
"Title": "Title",
|
|
44301
|
+
"Open link in...": "Open link in...",
|
|
44302
|
+
"Current window": "Current window",
|
|
44303
|
+
"New window": "New window"
|
|
43967
44304
|
};
|
|
43968
44305
|
const fr = {
|
|
43969
44306
|
"Bold": "Gras",
|
|
@@ -44028,7 +44365,14 @@ const fr = {
|
|
|
44028
44365
|
"Invalid image URL": "URL d'image invalide",
|
|
44029
44366
|
"File too large": "Fichier trop volumineux",
|
|
44030
44367
|
"Invalid file type": "Type de fichier invalide",
|
|
44031
|
-
"More": "Plus"
|
|
44368
|
+
"More": "Plus",
|
|
44369
|
+
"Save": "Save",
|
|
44370
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
44371
|
+
"Text to display": "Text to display",
|
|
44372
|
+
"Title": "Title",
|
|
44373
|
+
"Open link in...": "Open link in...",
|
|
44374
|
+
"Current window": "Current window",
|
|
44375
|
+
"New window": "New window"
|
|
44032
44376
|
};
|
|
44033
44377
|
const frCa = {
|
|
44034
44378
|
"Bold": "Gras",
|
|
@@ -44093,7 +44437,14 @@ const frCa = {
|
|
|
44093
44437
|
"Invalid image URL": "URL d'image invalide",
|
|
44094
44438
|
"File too large": "Fichier trop volumineux",
|
|
44095
44439
|
"Invalid file type": "Type de fichier invalide",
|
|
44096
|
-
"More": "Plus"
|
|
44440
|
+
"More": "Plus",
|
|
44441
|
+
"Save": "Save",
|
|
44442
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
44443
|
+
"Text to display": "Text to display",
|
|
44444
|
+
"Title": "Title",
|
|
44445
|
+
"Open link in...": "Open link in...",
|
|
44446
|
+
"Current window": "Current window",
|
|
44447
|
+
"New window": "New window"
|
|
44097
44448
|
};
|
|
44098
44449
|
const de = {
|
|
44099
44450
|
"Bold": "Fett",
|
|
@@ -44158,7 +44509,14 @@ const de = {
|
|
|
44158
44509
|
"Invalid image URL": "Ungültige Bild-URL",
|
|
44159
44510
|
"File too large": "Datei zu groß",
|
|
44160
44511
|
"Invalid file type": "Ungültiger Dateityp",
|
|
44161
|
-
"More": "Mehr"
|
|
44512
|
+
"More": "Mehr",
|
|
44513
|
+
"Save": "Save",
|
|
44514
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
44515
|
+
"Text to display": "Text to display",
|
|
44516
|
+
"Title": "Title",
|
|
44517
|
+
"Open link in...": "Open link in...",
|
|
44518
|
+
"Current window": "Current window",
|
|
44519
|
+
"New window": "New window"
|
|
44162
44520
|
};
|
|
44163
44521
|
const el = {
|
|
44164
44522
|
"Bold": "Έντονα",
|
|
@@ -44223,7 +44581,14 @@ const el = {
|
|
|
44223
44581
|
"Invalid image URL": "Μη έγκυρο URL εικόνας",
|
|
44224
44582
|
"File too large": "Το αρχείο είναι πολύ μεγάλο",
|
|
44225
44583
|
"Invalid file type": "Μη έγκυρος τύπος αρχείου",
|
|
44226
|
-
"More": "Περισσότερα"
|
|
44584
|
+
"More": "Περισσότερα",
|
|
44585
|
+
"Save": "Save",
|
|
44586
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
44587
|
+
"Text to display": "Text to display",
|
|
44588
|
+
"Title": "Title",
|
|
44589
|
+
"Open link in...": "Open link in...",
|
|
44590
|
+
"Current window": "Current window",
|
|
44591
|
+
"New window": "New window"
|
|
44227
44592
|
};
|
|
44228
44593
|
const hu = {
|
|
44229
44594
|
"Bold": "Félkövér",
|
|
@@ -44288,7 +44653,14 @@ const hu = {
|
|
|
44288
44653
|
"Invalid image URL": "Érvénytelen kép URL",
|
|
44289
44654
|
"File too large": "A fájl túl nagy",
|
|
44290
44655
|
"Invalid file type": "Érvénytelen fájltípus",
|
|
44291
|
-
"More": "Több"
|
|
44656
|
+
"More": "Több",
|
|
44657
|
+
"Save": "Save",
|
|
44658
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
44659
|
+
"Text to display": "Text to display",
|
|
44660
|
+
"Title": "Title",
|
|
44661
|
+
"Open link in...": "Open link in...",
|
|
44662
|
+
"Current window": "Current window",
|
|
44663
|
+
"New window": "New window"
|
|
44292
44664
|
};
|
|
44293
44665
|
const id = {
|
|
44294
44666
|
"Bold": "Tebal",
|
|
@@ -44353,7 +44725,14 @@ const id = {
|
|
|
44353
44725
|
"Invalid image URL": "URL gambar tidak valid",
|
|
44354
44726
|
"File too large": "File terlalu besar",
|
|
44355
44727
|
"Invalid file type": "Jenis file tidak valid",
|
|
44356
|
-
"More": "Lainnya"
|
|
44728
|
+
"More": "Lainnya",
|
|
44729
|
+
"Save": "Save",
|
|
44730
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
44731
|
+
"Text to display": "Text to display",
|
|
44732
|
+
"Title": "Title",
|
|
44733
|
+
"Open link in...": "Open link in...",
|
|
44734
|
+
"Current window": "Current window",
|
|
44735
|
+
"New window": "New window"
|
|
44357
44736
|
};
|
|
44358
44737
|
const it = {
|
|
44359
44738
|
"Bold": "Grassetto",
|
|
@@ -44418,7 +44797,14 @@ const it = {
|
|
|
44418
44797
|
"Invalid image URL": "URL immagine non valido",
|
|
44419
44798
|
"File too large": "File troppo grande",
|
|
44420
44799
|
"Invalid file type": "Tipo di file non valido",
|
|
44421
|
-
"More": "Altro"
|
|
44800
|
+
"More": "Altro",
|
|
44801
|
+
"Save": "Save",
|
|
44802
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
44803
|
+
"Text to display": "Text to display",
|
|
44804
|
+
"Title": "Title",
|
|
44805
|
+
"Open link in...": "Open link in...",
|
|
44806
|
+
"Current window": "Current window",
|
|
44807
|
+
"New window": "New window"
|
|
44422
44808
|
};
|
|
44423
44809
|
const ja = {
|
|
44424
44810
|
"Bold": "太字",
|
|
@@ -44483,7 +44869,14 @@ const ja = {
|
|
|
44483
44869
|
"Invalid image URL": "無効な画像URL",
|
|
44484
44870
|
"File too large": "ファイルが大きすぎます",
|
|
44485
44871
|
"Invalid file type": "無効なファイル形式",
|
|
44486
|
-
"More": "もっと見る"
|
|
44872
|
+
"More": "もっと見る",
|
|
44873
|
+
"Save": "Save",
|
|
44874
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
44875
|
+
"Text to display": "Text to display",
|
|
44876
|
+
"Title": "Title",
|
|
44877
|
+
"Open link in...": "Open link in...",
|
|
44878
|
+
"Current window": "Current window",
|
|
44879
|
+
"New window": "New window"
|
|
44487
44880
|
};
|
|
44488
44881
|
const ko = {
|
|
44489
44882
|
"Bold": "굵게",
|
|
@@ -44548,7 +44941,14 @@ const ko = {
|
|
|
44548
44941
|
"Invalid image URL": "잘못된 이미지 URL",
|
|
44549
44942
|
"File too large": "파일이 너무 큽니다",
|
|
44550
44943
|
"Invalid file type": "잘못된 파일 형식",
|
|
44551
|
-
"More": "더 보기"
|
|
44944
|
+
"More": "더 보기",
|
|
44945
|
+
"Save": "Save",
|
|
44946
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
44947
|
+
"Text to display": "Text to display",
|
|
44948
|
+
"Title": "Title",
|
|
44949
|
+
"Open link in...": "Open link in...",
|
|
44950
|
+
"Current window": "Current window",
|
|
44951
|
+
"New window": "New window"
|
|
44552
44952
|
};
|
|
44553
44953
|
const nl = {
|
|
44554
44954
|
"Bold": "Vet",
|
|
@@ -44613,7 +45013,14 @@ const nl = {
|
|
|
44613
45013
|
"Invalid image URL": "Ongeldige afbeeldings-URL",
|
|
44614
45014
|
"File too large": "Bestand te groot",
|
|
44615
45015
|
"Invalid file type": "Ongeldig bestandstype",
|
|
44616
|
-
"More": "Meer"
|
|
45016
|
+
"More": "Meer",
|
|
45017
|
+
"Save": "Save",
|
|
45018
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
45019
|
+
"Text to display": "Text to display",
|
|
45020
|
+
"Title": "Title",
|
|
45021
|
+
"Open link in...": "Open link in...",
|
|
45022
|
+
"Current window": "Current window",
|
|
45023
|
+
"New window": "New window"
|
|
44617
45024
|
};
|
|
44618
45025
|
const nb = {
|
|
44619
45026
|
"Bold": "Fet",
|
|
@@ -44678,7 +45085,14 @@ const nb = {
|
|
|
44678
45085
|
"Invalid image URL": "Ugyldig bilde-URL",
|
|
44679
45086
|
"File too large": "Filen er for stor",
|
|
44680
45087
|
"Invalid file type": "Ugyldig filtype",
|
|
44681
|
-
"More": "Mer"
|
|
45088
|
+
"More": "Mer",
|
|
45089
|
+
"Save": "Save",
|
|
45090
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
45091
|
+
"Text to display": "Text to display",
|
|
45092
|
+
"Title": "Title",
|
|
45093
|
+
"Open link in...": "Open link in...",
|
|
45094
|
+
"Current window": "Current window",
|
|
45095
|
+
"New window": "New window"
|
|
44682
45096
|
};
|
|
44683
45097
|
const pl = {
|
|
44684
45098
|
"Bold": "Pogrubienie",
|
|
@@ -44743,7 +45157,14 @@ const pl = {
|
|
|
44743
45157
|
"Invalid image URL": "Nieprawidłowy URL obrazu",
|
|
44744
45158
|
"File too large": "Plik jest za duży",
|
|
44745
45159
|
"Invalid file type": "Nieprawidłowy typ pliku",
|
|
44746
|
-
"More": "Więcej"
|
|
45160
|
+
"More": "Więcej",
|
|
45161
|
+
"Save": "Save",
|
|
45162
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
45163
|
+
"Text to display": "Text to display",
|
|
45164
|
+
"Title": "Title",
|
|
45165
|
+
"Open link in...": "Open link in...",
|
|
45166
|
+
"Current window": "Current window",
|
|
45167
|
+
"New window": "New window"
|
|
44747
45168
|
};
|
|
44748
45169
|
const pt = {
|
|
44749
45170
|
"Bold": "Negrito",
|
|
@@ -44808,7 +45229,14 @@ const pt = {
|
|
|
44808
45229
|
"Invalid image URL": "URL de imagem inválido",
|
|
44809
45230
|
"File too large": "Arquivo muito grande",
|
|
44810
45231
|
"Invalid file type": "Tipo de arquivo inválido",
|
|
44811
|
-
"More": "Mais"
|
|
45232
|
+
"More": "Mais",
|
|
45233
|
+
"Save": "Save",
|
|
45234
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
45235
|
+
"Text to display": "Text to display",
|
|
45236
|
+
"Title": "Title",
|
|
45237
|
+
"Open link in...": "Open link in...",
|
|
45238
|
+
"Current window": "Current window",
|
|
45239
|
+
"New window": "New window"
|
|
44812
45240
|
};
|
|
44813
45241
|
const ro = {
|
|
44814
45242
|
"Bold": "Îngroșat",
|
|
@@ -44873,7 +45301,14 @@ const ro = {
|
|
|
44873
45301
|
"Invalid image URL": "URL imagine invalid",
|
|
44874
45302
|
"File too large": "Fișierul este prea mare",
|
|
44875
45303
|
"Invalid file type": "Tip de fișier invalid",
|
|
44876
|
-
"More": "Mai mult"
|
|
45304
|
+
"More": "Mai mult",
|
|
45305
|
+
"Save": "Save",
|
|
45306
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
45307
|
+
"Text to display": "Text to display",
|
|
45308
|
+
"Title": "Title",
|
|
45309
|
+
"Open link in...": "Open link in...",
|
|
45310
|
+
"Current window": "Current window",
|
|
45311
|
+
"New window": "New window"
|
|
44877
45312
|
};
|
|
44878
45313
|
const ru = {
|
|
44879
45314
|
"Bold": "Полужирный",
|
|
@@ -44938,7 +45373,14 @@ const ru = {
|
|
|
44938
45373
|
"Invalid image URL": "Недопустимый URL изображения",
|
|
44939
45374
|
"File too large": "Файл слишком большой",
|
|
44940
45375
|
"Invalid file type": "Недопустимый тип файла",
|
|
44941
|
-
"More": "Ещё"
|
|
45376
|
+
"More": "Ещё",
|
|
45377
|
+
"Save": "Save",
|
|
45378
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
45379
|
+
"Text to display": "Text to display",
|
|
45380
|
+
"Title": "Title",
|
|
45381
|
+
"Open link in...": "Open link in...",
|
|
45382
|
+
"Current window": "Current window",
|
|
45383
|
+
"New window": "New window"
|
|
44942
45384
|
};
|
|
44943
45385
|
const sr = {
|
|
44944
45386
|
"Bold": "Подебљано",
|
|
@@ -45003,7 +45445,14 @@ const sr = {
|
|
|
45003
45445
|
"Invalid image URL": "Неважећи URL слике",
|
|
45004
45446
|
"File too large": "Датотека је превелика",
|
|
45005
45447
|
"Invalid file type": "Неважећи тип датотеке",
|
|
45006
|
-
"More": "Још"
|
|
45448
|
+
"More": "Још",
|
|
45449
|
+
"Save": "Save",
|
|
45450
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
45451
|
+
"Text to display": "Text to display",
|
|
45452
|
+
"Title": "Title",
|
|
45453
|
+
"Open link in...": "Open link in...",
|
|
45454
|
+
"Current window": "Current window",
|
|
45455
|
+
"New window": "New window"
|
|
45007
45456
|
};
|
|
45008
45457
|
const sl = {
|
|
45009
45458
|
"Bold": "Krepko",
|
|
@@ -45068,7 +45517,14 @@ const sl = {
|
|
|
45068
45517
|
"Invalid image URL": "Neveljaven URL slike",
|
|
45069
45518
|
"File too large": "Datoteka je prevelika",
|
|
45070
45519
|
"Invalid file type": "Neveljavna vrsta datoteke",
|
|
45071
|
-
"More": "Več"
|
|
45520
|
+
"More": "Več",
|
|
45521
|
+
"Save": "Save",
|
|
45522
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
45523
|
+
"Text to display": "Text to display",
|
|
45524
|
+
"Title": "Title",
|
|
45525
|
+
"Open link in...": "Open link in...",
|
|
45526
|
+
"Current window": "Current window",
|
|
45527
|
+
"New window": "New window"
|
|
45072
45528
|
};
|
|
45073
45529
|
const es = {
|
|
45074
45530
|
"Bold": "Negrita",
|
|
@@ -45133,7 +45589,14 @@ const es = {
|
|
|
45133
45589
|
"Invalid image URL": "URL de imagen no válida",
|
|
45134
45590
|
"File too large": "Archivo demasiado grande",
|
|
45135
45591
|
"Invalid file type": "Tipo de archivo no válido",
|
|
45136
|
-
"More": "Más"
|
|
45592
|
+
"More": "Más",
|
|
45593
|
+
"Save": "Save",
|
|
45594
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
45595
|
+
"Text to display": "Text to display",
|
|
45596
|
+
"Title": "Title",
|
|
45597
|
+
"Open link in...": "Open link in...",
|
|
45598
|
+
"Current window": "Current window",
|
|
45599
|
+
"New window": "New window"
|
|
45137
45600
|
};
|
|
45138
45601
|
const sv = {
|
|
45139
45602
|
"Bold": "Fet",
|
|
@@ -45198,7 +45661,14 @@ const sv = {
|
|
|
45198
45661
|
"Invalid image URL": "Ogiltig bild-URL",
|
|
45199
45662
|
"File too large": "Filen är för stor",
|
|
45200
45663
|
"Invalid file type": "Ogiltig filtyp",
|
|
45201
|
-
"More": "Mer"
|
|
45664
|
+
"More": "Mer",
|
|
45665
|
+
"Save": "Save",
|
|
45666
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
45667
|
+
"Text to display": "Text to display",
|
|
45668
|
+
"Title": "Title",
|
|
45669
|
+
"Open link in...": "Open link in...",
|
|
45670
|
+
"Current window": "Current window",
|
|
45671
|
+
"New window": "New window"
|
|
45202
45672
|
};
|
|
45203
45673
|
const zhTw = {
|
|
45204
45674
|
"Bold": "粗體",
|
|
@@ -45263,7 +45733,14 @@ const zhTw = {
|
|
|
45263
45733
|
"Invalid image URL": "無效的圖片 URL",
|
|
45264
45734
|
"File too large": "檔案過大",
|
|
45265
45735
|
"Invalid file type": "無效的檔案類型",
|
|
45266
|
-
"More": "更多"
|
|
45736
|
+
"More": "更多",
|
|
45737
|
+
"Save": "Save",
|
|
45738
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
45739
|
+
"Text to display": "Text to display",
|
|
45740
|
+
"Title": "Title",
|
|
45741
|
+
"Open link in...": "Open link in...",
|
|
45742
|
+
"Current window": "Current window",
|
|
45743
|
+
"New window": "New window"
|
|
45267
45744
|
};
|
|
45268
45745
|
const th = {
|
|
45269
45746
|
"Bold": "ตัวหนา",
|
|
@@ -45328,7 +45805,14 @@ const th = {
|
|
|
45328
45805
|
"Invalid image URL": "URL รูปภาพไม่ถูกต้อง",
|
|
45329
45806
|
"File too large": "ไฟล์ใหญ่เกินไป",
|
|
45330
45807
|
"Invalid file type": "ประเภทไฟล์ไม่ถูกต้อง",
|
|
45331
|
-
"More": "เพิ่มเติม"
|
|
45808
|
+
"More": "เพิ่มเติม",
|
|
45809
|
+
"Save": "Save",
|
|
45810
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
45811
|
+
"Text to display": "Text to display",
|
|
45812
|
+
"Title": "Title",
|
|
45813
|
+
"Open link in...": "Open link in...",
|
|
45814
|
+
"Current window": "Current window",
|
|
45815
|
+
"New window": "New window"
|
|
45332
45816
|
};
|
|
45333
45817
|
const tr = {
|
|
45334
45818
|
"Bold": "Kalın",
|
|
@@ -45393,7 +45877,14 @@ const tr = {
|
|
|
45393
45877
|
"Invalid image URL": "Geçersiz resim URL'si",
|
|
45394
45878
|
"File too large": "Dosya çok büyük",
|
|
45395
45879
|
"Invalid file type": "Geçersiz dosya türü",
|
|
45396
|
-
"More": "Daha fazla"
|
|
45880
|
+
"More": "Daha fazla",
|
|
45881
|
+
"Save": "Save",
|
|
45882
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
45883
|
+
"Text to display": "Text to display",
|
|
45884
|
+
"Title": "Title",
|
|
45885
|
+
"Open link in...": "Open link in...",
|
|
45886
|
+
"Current window": "Current window",
|
|
45887
|
+
"New window": "New window"
|
|
45397
45888
|
};
|
|
45398
45889
|
const vi = {
|
|
45399
45890
|
"Bold": "In đậm",
|
|
@@ -45458,7 +45949,14 @@ const vi = {
|
|
|
45458
45949
|
"Invalid image URL": "URL hình ảnh không hợp lệ",
|
|
45459
45950
|
"File too large": "Tệp quá lớn",
|
|
45460
45951
|
"Invalid file type": "Loại tệp không hợp lệ",
|
|
45461
|
-
"More": "Thêm"
|
|
45952
|
+
"More": "Thêm",
|
|
45953
|
+
"Save": "Save",
|
|
45954
|
+
"Insert/Edit Link": "Insert/Edit Link",
|
|
45955
|
+
"Text to display": "Text to display",
|
|
45956
|
+
"Title": "Title",
|
|
45957
|
+
"Open link in...": "Open link in...",
|
|
45958
|
+
"Current window": "Current window",
|
|
45959
|
+
"New window": "New window"
|
|
45462
45960
|
};
|
|
45463
45961
|
const locales = {
|
|
45464
45962
|
en,
|
|
@@ -45770,7 +46268,21 @@ class HTMLEditor {
|
|
|
45770
46268
|
TextAlign.configure({
|
|
45771
46269
|
types: ["heading", "paragraph"]
|
|
45772
46270
|
}),
|
|
45773
|
-
Link.
|
|
46271
|
+
Link.extend({
|
|
46272
|
+
addAttributes() {
|
|
46273
|
+
return {
|
|
46274
|
+
...this.parent?.(),
|
|
46275
|
+
title: {
|
|
46276
|
+
default: null,
|
|
46277
|
+
parseHTML: (element) => element.getAttribute("title"),
|
|
46278
|
+
renderHTML: (attributes) => {
|
|
46279
|
+
if (!attributes.title) return {};
|
|
46280
|
+
return { title: attributes.title };
|
|
46281
|
+
}
|
|
46282
|
+
}
|
|
46283
|
+
};
|
|
46284
|
+
}
|
|
46285
|
+
}).configure({
|
|
45774
46286
|
openOnClick: false,
|
|
45775
46287
|
HTMLAttributes: {
|
|
45776
46288
|
rel: "noopener noreferrer"
|
|
@@ -46005,8 +46517,10 @@ export {
|
|
|
46005
46517
|
FontSize,
|
|
46006
46518
|
HTMLEditor,
|
|
46007
46519
|
LineHeight,
|
|
46520
|
+
LinkEditor,
|
|
46008
46521
|
SearchReplace,
|
|
46009
46522
|
SignatureBlock,
|
|
46523
|
+
SourceEditor,
|
|
46010
46524
|
TRANSLATION_KEYS,
|
|
46011
46525
|
TextDirection,
|
|
46012
46526
|
Toolbar,
|
|
@@ -46020,4 +46534,3 @@ export {
|
|
|
46020
46534
|
setGetFileSrc,
|
|
46021
46535
|
setTranslate
|
|
46022
46536
|
};
|
|
46023
|
-
//# sourceMappingURL=index.mjs.map
|