chore(ckeditor): set correct metadata

This commit is contained in:
Elian Doran 2025-05-05 23:04:27 +03:00
parent 307c322165
commit ff0a24df55
No known key found for this signature in database
5 changed files with 27 additions and 21 deletions

View File

@ -9,7 +9,7 @@
{ {
"name": "admonition", "name": "admonition",
"type": "Button", "type": "Button",
"iconPath": "theme/icons/ckeditor.svg" "iconPath": "theme/icons/admonition.svg"
} }
], ],
"htmlOutput": [ "htmlOutput": [

View File

@ -7,9 +7,9 @@
"path": "src/footnotes.ts", "path": "src/footnotes.ts",
"uiComponents": [ "uiComponents": [
{ {
"name": "footnotes", "name": "insertFootnote",
"type": "Button", "type": "Button",
"iconPath": "theme/icons/ckeditor.svg" "iconPath": "theme/icons/insert-footnote.svg"
} }
] ]
} }

View File

@ -9,7 +9,7 @@
{ {
"name": "keyboardMarker", "name": "keyboardMarker",
"type": "Button", "type": "Button",
"iconPath": "theme/icons/ckeditor.svg" "iconPath": "theme/icons/kbd.svg"
} }
] ]
} }

View File

@ -3,15 +3,21 @@
{ {
"name": "Math", "name": "Math",
"className": "Math", "className": "Math",
"description": "Adds text to the editor.", "description": "Adds mathematical formulas to the editor.",
"path": "src/math.ts", "path": "src/math.js",
"uiComponents": [ "uiComponents": [
{ {
"name": "math", "name": "math",
"type": "Button", "type": "Button",
"iconPath": "theme/icons/ckeditor.svg" "iconPath": "theme/icons/math.svg"
} }
] ]
},
{
"name": "AutoformatMath",
"className": "AutoformatMath",
"description": "Implements autoformatting with mathematical formulas.",
"path": "src/autoformatmath.js"
} }
] ]
} }

View File

@ -3,13 +3,13 @@
{ {
"name": "Mermaid", "name": "Mermaid",
"className": "Mermaid", "className": "Mermaid",
"description": "Adds text to the editor.", "description": "Mermaid widget for CKEditor 5.",
"path": "src/mermaid.ts", "path": "src/mermaid.ts",
"uiComponents": [ "uiComponents": [
{ {
"name": "mermaid", "name": "mermaid",
"type": "Button", "type": "Button",
"iconPath": "theme/icons/ckeditor.svg" "iconPath": "theme/icons/insert.svg"
} }
] ]
} }