1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-30 04:23:11 +03:00

Added base node/button for details/summary

This commit is contained in:
Dan Brown
2024-06-06 14:43:50 +01:00
parent 0722960260
commit 5c343638b6
5 changed files with 162 additions and 3 deletions

View File

@ -1,7 +1,7 @@
import {EditorButton, FormatPreviewButton} from "./framework/buttons";
import {
blockquote, bold, code,
dangerCallout,
dangerCallout, details,
h2, h3, h4, h5, image,
infoCallout, italic, link, paragraph,
redo, strikethrough, subscript,
@ -41,5 +41,6 @@ export function getMainEditorFullToolbar(): EditorContainerUiElement {
new EditorButton(link),
new EditorButton(image),
new EditorButton(details),
]);
}