@blocknote/core 0.21.0 → 0.22.0
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/dist/blocknote.js +1023 -999
- package/dist/blocknote.js.map +1 -1
- package/dist/blocknote.umd.cjs +7 -7
- package/dist/blocknote.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/webpack-stats.json +1 -1
- package/package.json +3 -3
- package/src/api/clipboard/__snapshots__/external/pasteEndOfParagraph.html +96 -0
- package/src/api/clipboard/__snapshots__/external/pasteEndOfParagraphText.html +96 -0
- package/src/api/clipboard/__snapshots__/external/pasteImage.html +111 -0
- package/src/api/clipboard/__snapshots__/external/pasteParagraphInCustomBlock.html +96 -0
- package/src/api/clipboard/__snapshots__/external/pasteTable.html +149 -0
- package/src/api/clipboard/__snapshots__/external/pasteTableInExistingTable.html +124 -0
- package/src/api/clipboard/__snapshots__/internal/paragraphInCustomBlock.html +1 -0
- package/src/api/clipboard/clipboardExternal.test.ts +161 -0
- package/src/api/clipboard/{clipboard.test.ts → clipboardInternal.test.ts} +60 -38
- package/src/api/clipboard/testUtil.ts +27 -0
- package/src/api/clipboard/toClipboard/copyExtension.ts +1 -0
- package/src/api/exporters/html/util/serializeBlocksExternalHTML.ts +7 -1
- package/src/api/exporters/html/util/serializeBlocksInternalHTML.ts +3 -1
- package/src/api/nodeConversions/nodeToBlock.ts +4 -1
- package/src/api/parsers/markdown/__snapshots__/pasted/styled.json +2 -2
- package/src/api/testUtil/partialBlockTestUtil.ts +4 -1
- package/src/blocks/HeadingBlockContent/HeadingBlockContent.ts +3 -19
- package/src/blocks/ListItemBlockContent/CheckListItemBlockContent/CheckListItemBlockContent.ts +3 -15
- package/src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListIndexingPlugin.ts +11 -3
- package/src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListItemBlockContent.ts +25 -5
- package/src/editor/Block.css +3 -3
- package/src/editor/BlockNoteEditor.test.ts +21 -1
- package/src/editor/editor.css +6 -6
- package/src/editor/transformPasted.ts +57 -4
- package/src/schema/blocks/createSpec.ts +1 -1
- package/src/schema/blocks/internal.ts +16 -6
- package/src/schema/inlineContent/internal.ts +4 -1
- package/src/schema/propTypes.ts +41 -18
- package/types/src/api/blockManipulation/setupTestEnv.d.ts +8 -0
- package/types/src/api/clipboard/clipboardInternal.test.d.ts +1 -0
- package/types/src/api/clipboard/testUtil.d.ts +509 -0
- package/types/src/api/testUtil/cases/customBlocks.d.ts +8 -0
- package/types/src/api/testUtil/cases/customInlineContent.d.ts +8 -0
- package/types/src/api/testUtil/cases/customStyles.d.ts +8 -0
- package/types/src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListItemBlockContent.d.ts +12 -0
- package/types/src/blocks/defaultBlocks.d.ts +16 -0
- package/types/src/editor/transformPasted.d.ts +8 -4
- package/types/src/schema/propTypes.d.ts +20 -2
- package/dist/src/api/blockManipulation/commands/insertBlocks/insertBlocks.js +0 -30
- package/dist/src/api/blockManipulation/commands/insertBlocks/insertBlocks.js.map +0 -1
- package/dist/src/api/blockManipulation/commands/insertBlocks/insertBlocks.test.js +0 -99
- package/dist/src/api/blockManipulation/commands/insertBlocks/insertBlocks.test.js.map +0 -1
- package/dist/src/api/blockManipulation/commands/mergeBlocks/mergeBlocks.js +0 -97
- package/dist/src/api/blockManipulation/commands/mergeBlocks/mergeBlocks.js.map +0 -1
- package/dist/src/api/blockManipulation/commands/mergeBlocks/mergeBlocks.test.js +0 -88
- package/dist/src/api/blockManipulation/commands/mergeBlocks/mergeBlocks.test.js.map +0 -1
- package/dist/src/api/blockManipulation/commands/moveBlocks/moveBlocks.js +0 -219
- package/dist/src/api/blockManipulation/commands/moveBlocks/moveBlocks.js.map +0 -1
- package/dist/src/api/blockManipulation/commands/moveBlocks/moveBlocks.test.js +0 -175
- package/dist/src/api/blockManipulation/commands/moveBlocks/moveBlocks.test.js.map +0 -1
- package/dist/src/api/blockManipulation/commands/nestBlock/nestBlock.js +0 -57
- package/dist/src/api/blockManipulation/commands/nestBlock/nestBlock.js.map +0 -1
- package/dist/src/api/blockManipulation/commands/removeBlocks/removeBlocks.js +0 -5
- package/dist/src/api/blockManipulation/commands/removeBlocks/removeBlocks.js.map +0 -1
- package/dist/src/api/blockManipulation/commands/removeBlocks/removeBlocks.test.js +0 -31
- package/dist/src/api/blockManipulation/commands/removeBlocks/removeBlocks.test.js.map +0 -1
- package/dist/src/api/blockManipulation/commands/replaceBlocks/replaceBlocks.js +0 -71
- package/dist/src/api/blockManipulation/commands/replaceBlocks/replaceBlocks.js.map +0 -1
- package/dist/src/api/blockManipulation/commands/replaceBlocks/replaceBlocks.test.js +0 -157
- package/dist/src/api/blockManipulation/commands/replaceBlocks/replaceBlocks.test.js.map +0 -1
- package/dist/src/api/blockManipulation/commands/splitBlock/splitBlock.js +0 -27
- package/dist/src/api/blockManipulation/commands/splitBlock/splitBlock.js.map +0 -1
- package/dist/src/api/blockManipulation/commands/splitBlock/splitBlock.test.js +0 -67
- package/dist/src/api/blockManipulation/commands/splitBlock/splitBlock.test.js.map +0 -1
- package/dist/src/api/blockManipulation/commands/updateBlock/updateBlock.js +0 -148
- package/dist/src/api/blockManipulation/commands/updateBlock/updateBlock.js.map +0 -1
- package/dist/src/api/blockManipulation/commands/updateBlock/updateBlock.test.js +0 -252
- package/dist/src/api/blockManipulation/commands/updateBlock/updateBlock.test.js.map +0 -1
- package/dist/src/api/blockManipulation/getBlock/getBlock.js +0 -56
- package/dist/src/api/blockManipulation/getBlock/getBlock.js.map +0 -1
- package/dist/src/api/blockManipulation/insertContentAt.js +0 -64
- package/dist/src/api/blockManipulation/insertContentAt.js.map +0 -1
- package/dist/src/api/blockManipulation/selections/selection.js +0 -149
- package/dist/src/api/blockManipulation/selections/selection.js.map +0 -1
- package/dist/src/api/blockManipulation/selections/selection.test.js +0 -39
- package/dist/src/api/blockManipulation/selections/selection.test.js.map +0 -1
- package/dist/src/api/blockManipulation/selections/textCursorPosition/textCursorPosition.js +0 -79
- package/dist/src/api/blockManipulation/selections/textCursorPosition/textCursorPosition.js.map +0 -1
- package/dist/src/api/blockManipulation/selections/textCursorPosition/textCursorPosition.test.js +0 -33
- package/dist/src/api/blockManipulation/selections/textCursorPosition/textCursorPosition.test.js.map +0 -1
- package/dist/src/api/blockManipulation/setupTestEnv.js +0 -172
- package/dist/src/api/blockManipulation/setupTestEnv.js.map +0 -1
- package/dist/src/api/clipboard/clipboard.test.js +0 -249
- package/dist/src/api/clipboard/clipboard.test.js.map +0 -1
- package/dist/src/api/clipboard/fromClipboard/acceptedMIMETypes.js +0 -8
- package/dist/src/api/clipboard/fromClipboard/acceptedMIMETypes.js.map +0 -1
- package/dist/src/api/clipboard/fromClipboard/fileDropExtension.js +0 -38
- package/dist/src/api/clipboard/fromClipboard/fileDropExtension.js.map +0 -1
- package/dist/src/api/clipboard/fromClipboard/handleFileInsertion.js +0 -111
- package/dist/src/api/clipboard/fromClipboard/handleFileInsertion.js.map +0 -1
- package/dist/src/api/clipboard/fromClipboard/handleVSCodePaste.js +0 -25
- package/dist/src/api/clipboard/fromClipboard/handleVSCodePaste.js.map +0 -1
- package/dist/src/api/clipboard/fromClipboard/pasteExtension.js +0 -57
- package/dist/src/api/clipboard/fromClipboard/pasteExtension.js.map +0 -1
- package/dist/src/api/clipboard/toClipboard/copyExtension.js +0 -134
- package/dist/src/api/clipboard/toClipboard/copyExtension.js.map +0 -1
- package/dist/src/api/exporters/html/externalHTMLExporter.js +0 -35
- package/dist/src/api/exporters/html/externalHTMLExporter.js.map +0 -1
- package/dist/src/api/exporters/html/htmlConversion.test.js +0 -72
- package/dist/src/api/exporters/html/htmlConversion.test.js.map +0 -1
- package/dist/src/api/exporters/html/internalHTMLSerializer.js +0 -21
- package/dist/src/api/exporters/html/internalHTMLSerializer.js.map +0 -1
- package/dist/src/api/exporters/html/util/serializeBlocksExternalHTML.js +0 -141
- package/dist/src/api/exporters/html/util/serializeBlocksExternalHTML.js.map +0 -1
- package/dist/src/api/exporters/html/util/serializeBlocksInternalHTML.js +0 -96
- package/dist/src/api/exporters/html/util/serializeBlocksInternalHTML.js.map +0 -1
- package/dist/src/api/exporters/markdown/markdownExporter.js +0 -31
- package/dist/src/api/exporters/markdown/markdownExporter.js.map +0 -1
- package/dist/src/api/exporters/markdown/markdownExporter.test.js +0 -57
- package/dist/src/api/exporters/markdown/markdownExporter.test.js.map +0 -1
- package/dist/src/api/exporters/markdown/removeUnderlinesRehypePlugin.js +0 -33
- package/dist/src/api/exporters/markdown/removeUnderlinesRehypePlugin.js.map +0 -1
- package/dist/src/api/exporters/markdown/util/addSpacesToCheckboxesRehypePlugin.js +0 -37
- package/dist/src/api/exporters/markdown/util/addSpacesToCheckboxesRehypePlugin.js.map +0 -1
- package/dist/src/api/getBlockInfoFromPos.js +0 -165
- package/dist/src/api/getBlockInfoFromPos.js.map +0 -1
- package/dist/src/api/nodeConversions/blockToNode.js +0 -197
- package/dist/src/api/nodeConversions/blockToNode.js.map +0 -1
- package/dist/src/api/nodeConversions/fragmentToBlocks.js +0 -50
- package/dist/src/api/nodeConversions/fragmentToBlocks.js.map +0 -1
- package/dist/src/api/nodeConversions/nodeConversions.test.js +0 -54
- package/dist/src/api/nodeConversions/nodeConversions.test.js.map +0 -1
- package/dist/src/api/nodeConversions/nodeToBlock.js +0 -316
- package/dist/src/api/nodeConversions/nodeToBlock.js.map +0 -1
- package/dist/src/api/nodeUtil.js +0 -28
- package/dist/src/api/nodeUtil.js.map +0 -1
- package/dist/src/api/parsers/html/parseHTML.js +0 -19
- package/dist/src/api/parsers/html/parseHTML.js.map +0 -1
- package/dist/src/api/parsers/html/parseHTML.test.js +0 -470
- package/dist/src/api/parsers/html/parseHTML.test.js.map +0 -1
- package/dist/src/api/parsers/html/util/nestedLists.js +0 -106
- package/dist/src/api/parsers/html/util/nestedLists.js.map +0 -1
- package/dist/src/api/parsers/html/util/nestedLists.test.js +0 -166
- package/dist/src/api/parsers/html/util/nestedLists.test.js.map +0 -1
- package/dist/src/api/parsers/markdown/parseMarkdown.js +0 -52
- package/dist/src/api/parsers/markdown/parseMarkdown.js.map +0 -1
- package/dist/src/api/parsers/markdown/parseMarkdown.test.js +0 -112
- package/dist/src/api/parsers/markdown/parseMarkdown.test.js.map +0 -1
- package/dist/src/api/testUtil/cases/customBlocks.js +0 -313
- package/dist/src/api/testUtil/cases/customBlocks.js.map +0 -1
- package/dist/src/api/testUtil/cases/customInlineContent.js +0 -91
- package/dist/src/api/testUtil/cases/customInlineContent.js.map +0 -1
- package/dist/src/api/testUtil/cases/customStyles.js +0 -83
- package/dist/src/api/testUtil/cases/customStyles.js.map +0 -1
- package/dist/src/api/testUtil/cases/defaultSchema.js +0 -673
- package/dist/src/api/testUtil/cases/defaultSchema.js.map +0 -1
- package/dist/src/api/testUtil/index.js +0 -2
- package/dist/src/api/testUtil/index.js.map +0 -1
- package/dist/src/api/testUtil/partialBlockTestUtil.js +0 -114
- package/dist/src/api/testUtil/partialBlockTestUtil.js.map +0 -1
- package/dist/src/api/testUtil/paste.js +0 -29
- package/dist/src/api/testUtil/paste.js.map +0 -1
- package/dist/src/blocks/AudioBlockContent/AudioBlockContent.js +0 -104
- package/dist/src/blocks/AudioBlockContent/AudioBlockContent.js.map +0 -1
- package/dist/src/blocks/AudioBlockContent/parseAudioElement.js +0 -5
- package/dist/src/blocks/AudioBlockContent/parseAudioElement.js.map +0 -1
- package/dist/src/blocks/CodeBlockContent/CodeBlockContent.js +0 -281
- package/dist/src/blocks/CodeBlockContent/CodeBlockContent.js.map +0 -1
- package/dist/src/blocks/CodeBlockContent/defaultSupportedLanguages.js +0 -110
- package/dist/src/blocks/CodeBlockContent/defaultSupportedLanguages.js.map +0 -1
- package/dist/src/blocks/FileBlockContent/FileBlockContent.js +0 -71
- package/dist/src/blocks/FileBlockContent/FileBlockContent.js.map +0 -1
- package/dist/src/blocks/FileBlockContent/helpers/parse/parseEmbedElement.js +0 -5
- package/dist/src/blocks/FileBlockContent/helpers/parse/parseEmbedElement.js.map +0 -1
- package/dist/src/blocks/FileBlockContent/helpers/parse/parseFigureElement.js +0 -10
- package/dist/src/blocks/FileBlockContent/helpers/parse/parseFigureElement.js.map +0 -1
- package/dist/src/blocks/FileBlockContent/helpers/render/createAddFileButton.js +0 -39
- package/dist/src/blocks/FileBlockContent/helpers/render/createAddFileButton.js.map +0 -1
- package/dist/src/blocks/FileBlockContent/helpers/render/createFileBlockWrapper.js +0 -51
- package/dist/src/blocks/FileBlockContent/helpers/render/createFileBlockWrapper.js.map +0 -1
- package/dist/src/blocks/FileBlockContent/helpers/render/createFileNameWithIcon.js +0 -17
- package/dist/src/blocks/FileBlockContent/helpers/render/createFileNameWithIcon.js.map +0 -1
- package/dist/src/blocks/FileBlockContent/helpers/render/createResizableFileBlockWrapper.js +0 -147
- package/dist/src/blocks/FileBlockContent/helpers/render/createResizableFileBlockWrapper.js.map +0 -1
- package/dist/src/blocks/FileBlockContent/helpers/toExternalHTML/createFigureWithCaption.js +0 -9
- package/dist/src/blocks/FileBlockContent/helpers/toExternalHTML/createFigureWithCaption.js.map +0 -1
- package/dist/src/blocks/FileBlockContent/helpers/toExternalHTML/createLinkWithCaption.js +0 -11
- package/dist/src/blocks/FileBlockContent/helpers/toExternalHTML/createLinkWithCaption.js.map +0 -1
- package/dist/src/blocks/FileBlockContent/uploadToTmpFilesDotOrg_DEV_ONLY.js +0 -15
- package/dist/src/blocks/FileBlockContent/uploadToTmpFilesDotOrg_DEV_ONLY.js.map +0 -1
- package/dist/src/blocks/HeadingBlockContent/HeadingBlockContent.js +0 -145
- package/dist/src/blocks/HeadingBlockContent/HeadingBlockContent.js.map +0 -1
- package/dist/src/blocks/ImageBlockContent/ImageBlockContent.js +0 -114
- package/dist/src/blocks/ImageBlockContent/ImageBlockContent.js.map +0 -1
- package/dist/src/blocks/ImageBlockContent/parseImageElement.js +0 -6
- package/dist/src/blocks/ImageBlockContent/parseImageElement.js.map +0 -1
- package/dist/src/blocks/ListItemBlockContent/BulletListItemBlockContent/BulletListItemBlockContent.js +0 -113
- package/dist/src/blocks/ListItemBlockContent/BulletListItemBlockContent/BulletListItemBlockContent.js.map +0 -1
- package/dist/src/blocks/ListItemBlockContent/CheckListItemBlockContent/CheckListItemBlockContent.js +0 -224
- package/dist/src/blocks/ListItemBlockContent/CheckListItemBlockContent/CheckListItemBlockContent.js.map +0 -1
- package/dist/src/blocks/ListItemBlockContent/ListItemKeyboardShortcuts.js +0 -45
- package/dist/src/blocks/ListItemBlockContent/ListItemKeyboardShortcuts.js.map +0 -1
- package/dist/src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListIndexingPlugin.js +0 -58
- package/dist/src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListIndexingPlugin.js.map +0 -1
- package/dist/src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListItemBlockContent.js +0 -130
- package/dist/src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListItemBlockContent.js.map +0 -1
- package/dist/src/blocks/ParagraphBlockContent/ParagraphBlockContent.js +0 -52
- package/dist/src/blocks/ParagraphBlockContent/ParagraphBlockContent.js.map +0 -1
- package/dist/src/blocks/TableBlockContent/TableBlockContent.js +0 -129
- package/dist/src/blocks/TableBlockContent/TableBlockContent.js.map +0 -1
- package/dist/src/blocks/TableBlockContent/TableExtension.js +0 -64
- package/dist/src/blocks/TableBlockContent/TableExtension.js.map +0 -1
- package/dist/src/blocks/VideoBlockContent/VideoBlockContent.js +0 -114
- package/dist/src/blocks/VideoBlockContent/VideoBlockContent.js.map +0 -1
- package/dist/src/blocks/VideoBlockContent/parseVideoElement.js +0 -6
- package/dist/src/blocks/VideoBlockContent/parseVideoElement.js.map +0 -1
- package/dist/src/blocks/defaultBlockHelpers.js +0 -50
- package/dist/src/blocks/defaultBlockHelpers.js.map +0 -1
- package/dist/src/blocks/defaultBlockTypeGuards.js +0 -40
- package/dist/src/blocks/defaultBlockTypeGuards.js.map +0 -1
- package/dist/src/blocks/defaultBlocks.js +0 -50
- package/dist/src/blocks/defaultBlocks.js.map +0 -1
- package/dist/src/blocks/defaultProps.js +0 -19
- package/dist/src/blocks/defaultProps.js.map +0 -1
- package/dist/src/editor/BlockNoteEditor.js +0 -751
- package/dist/src/editor/BlockNoteEditor.js.map +0 -1
- package/dist/src/editor/BlockNoteEditor.test.js +0 -65
- package/dist/src/editor/BlockNoteEditor.test.js.map +0 -1
- package/dist/src/editor/BlockNoteExtensions.js +0 -192
- package/dist/src/editor/BlockNoteExtensions.js.map +0 -1
- package/dist/src/editor/BlockNoteSchema.js +0 -38
- package/dist/src/editor/BlockNoteSchema.js.map +0 -1
- package/dist/src/editor/BlockNoteTipTapEditor.js +0 -169
- package/dist/src/editor/BlockNoteTipTapEditor.js.map +0 -1
- package/dist/src/editor/cursorPositionTypes.js +0 -2
- package/dist/src/editor/cursorPositionTypes.js.map +0 -1
- package/dist/src/editor/defaultColors.js +0 -77
- package/dist/src/editor/defaultColors.js.map +0 -1
- package/dist/src/editor/selectionTypes.js +0 -2
- package/dist/src/editor/selectionTypes.js.map +0 -1
- package/dist/src/editor/transformPasted.js +0 -79
- package/dist/src/editor/transformPasted.js.map +0 -1
- package/dist/src/exporter/Exporter.js +0 -36
- package/dist/src/exporter/Exporter.js.map +0 -1
- package/dist/src/exporter/index.js +0 -3
- package/dist/src/exporter/index.js.map +0 -1
- package/dist/src/exporter/mapping.js +0 -12
- package/dist/src/exporter/mapping.js.map +0 -1
- package/dist/src/extensions/BackgroundColor/BackgroundColorExtension.js +0 -30
- package/dist/src/extensions/BackgroundColor/BackgroundColorExtension.js.map +0 -1
- package/dist/src/extensions/BackgroundColor/BackgroundColorMark.js +0 -39
- package/dist/src/extensions/BackgroundColor/BackgroundColorMark.js.map +0 -1
- package/dist/src/extensions/FilePanel/FilePanelPlugin.js +0 -131
- package/dist/src/extensions/FilePanel/FilePanelPlugin.js.map +0 -1
- package/dist/src/extensions/FormattingToolbar/FormattingToolbarPlugin.js +0 -197
- package/dist/src/extensions/FormattingToolbar/FormattingToolbarPlugin.js.map +0 -1
- package/dist/src/extensions/KeyboardShortcuts/KeyboardShortcutsExtension.js +0 -341
- package/dist/src/extensions/KeyboardShortcuts/KeyboardShortcutsExtension.js.map +0 -1
- package/dist/src/extensions/LinkToolbar/LinkToolbarPlugin.js +0 -251
- package/dist/src/extensions/LinkToolbar/LinkToolbarPlugin.js.map +0 -1
- package/dist/src/extensions/LinkToolbar/protocols.js +0 -14
- package/dist/src/extensions/LinkToolbar/protocols.js.map +0 -1
- package/dist/src/extensions/NodeSelectionKeyboard/NodeSelectionKeyboardPlugin.js +0 -54
- package/dist/src/extensions/NodeSelectionKeyboard/NodeSelectionKeyboardPlugin.js.map +0 -1
- package/dist/src/extensions/Placeholder/PlaceholderPlugin.js +0 -90
- package/dist/src/extensions/Placeholder/PlaceholderPlugin.js.map +0 -1
- package/dist/src/extensions/PreviousBlockType/PreviousBlockTypePlugin.js +0 -187
- package/dist/src/extensions/PreviousBlockType/PreviousBlockTypePlugin.js.map +0 -1
- package/dist/src/extensions/SideMenu/MultipleNodeSelection.js +0 -68
- package/dist/src/extensions/SideMenu/MultipleNodeSelection.js.map +0 -1
- package/dist/src/extensions/SideMenu/SideMenuPlugin.js +0 -347
- package/dist/src/extensions/SideMenu/SideMenuPlugin.js.map +0 -1
- package/dist/src/extensions/SideMenu/dragging.js +0 -135
- package/dist/src/extensions/SideMenu/dragging.js.map +0 -1
- package/dist/src/extensions/SuggestionMenu/DefaultGridSuggestionItem.js +0 -2
- package/dist/src/extensions/SuggestionMenu/DefaultGridSuggestionItem.js.map +0 -1
- package/dist/src/extensions/SuggestionMenu/DefaultSuggestionItem.js +0 -2
- package/dist/src/extensions/SuggestionMenu/DefaultSuggestionItem.js.map +0 -1
- package/dist/src/extensions/SuggestionMenu/SuggestionPlugin.js +0 -245
- package/dist/src/extensions/SuggestionMenu/SuggestionPlugin.js.map +0 -1
- package/dist/src/extensions/SuggestionMenu/getDefaultEmojiPickerItems.js +0 -26
- package/dist/src/extensions/SuggestionMenu/getDefaultEmojiPickerItems.js.map +0 -1
- package/dist/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.js +0 -241
- package/dist/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.js.map +0 -1
- package/dist/src/extensions/TableHandles/TableHandlesPlugin.js +0 -579
- package/dist/src/extensions/TableHandles/TableHandlesPlugin.js.map +0 -1
- package/dist/src/extensions/TextAlignment/TextAlignmentExtension.js +0 -36
- package/dist/src/extensions/TextAlignment/TextAlignmentExtension.js.map +0 -1
- package/dist/src/extensions/TextColor/TextColorExtension.js +0 -29
- package/dist/src/extensions/TextColor/TextColorExtension.js.map +0 -1
- package/dist/src/extensions/TextColor/TextColorMark.js +0 -37
- package/dist/src/extensions/TextColor/TextColorMark.js.map +0 -1
- package/dist/src/extensions/TrailingNode/TrailingNodeExtension.js +0 -58
- package/dist/src/extensions/TrailingNode/TrailingNodeExtension.js.map +0 -1
- package/dist/src/extensions/UniqueID/UniqueID.js +0 -283
- package/dist/src/extensions/UniqueID/UniqueID.js.map +0 -1
- package/dist/src/extensions/getDraggableBlockFromElement.js +0 -13
- package/dist/src/extensions/getDraggableBlockFromElement.js.map +0 -1
- package/dist/src/extensions-shared/UiElementPosition.js +0 -2
- package/dist/src/extensions-shared/UiElementPosition.js.map +0 -1
- package/dist/src/i18n/dictionary.js +0 -4
- package/dist/src/i18n/dictionary.js.map +0 -1
- package/dist/src/i18n/locales/ar.js +0 -298
- package/dist/src/i18n/locales/ar.js.map +0 -1
- package/dist/src/i18n/locales/de.js +0 -313
- package/dist/src/i18n/locales/de.js.map +0 -1
- package/dist/src/i18n/locales/en.js +0 -314
- package/dist/src/i18n/locales/en.js.map +0 -1
- package/dist/src/i18n/locales/es.js +0 -312
- package/dist/src/i18n/locales/es.js.map +0 -1
- package/dist/src/i18n/locales/fr.js +0 -313
- package/dist/src/i18n/locales/fr.js.map +0 -1
- package/dist/src/i18n/locales/hr.js +0 -308
- package/dist/src/i18n/locales/hr.js.map +0 -1
- package/dist/src/i18n/locales/index.js +0 -16
- package/dist/src/i18n/locales/index.js.map +0 -1
- package/dist/src/i18n/locales/is.js +0 -305
- package/dist/src/i18n/locales/is.js.map +0 -1
- package/dist/src/i18n/locales/ja.js +0 -333
- package/dist/src/i18n/locales/ja.js.map +0 -1
- package/dist/src/i18n/locales/ko.js +0 -326
- package/dist/src/i18n/locales/ko.js.map +0 -1
- package/dist/src/i18n/locales/nl.js +0 -313
- package/dist/src/i18n/locales/nl.js.map +0 -1
- package/dist/src/i18n/locales/pl.js +0 -297
- package/dist/src/i18n/locales/pl.js.map +0 -1
- package/dist/src/i18n/locales/pt.js +0 -305
- package/dist/src/i18n/locales/pt.js.map +0 -1
- package/dist/src/i18n/locales/ru.js +0 -340
- package/dist/src/i18n/locales/ru.js.map +0 -1
- package/dist/src/i18n/locales/vi.js +0 -312
- package/dist/src/i18n/locales/vi.js.map +0 -1
- package/dist/src/i18n/locales/zh.js +0 -346
- package/dist/src/i18n/locales/zh.js.map +0 -1
- package/dist/src/index.js +0 -63
- package/dist/src/index.js.map +0 -1
- package/dist/src/pm-nodes/BlockContainer.js +0 -72
- package/dist/src/pm-nodes/BlockContainer.js.map +0 -1
- package/dist/src/pm-nodes/BlockGroup.js +0 -43
- package/dist/src/pm-nodes/BlockGroup.js.map +0 -1
- package/dist/src/pm-nodes/Doc.js +0 -7
- package/dist/src/pm-nodes/Doc.js.map +0 -1
- package/dist/src/pm-nodes/index.js +0 -4
- package/dist/src/pm-nodes/index.js.map +0 -1
- package/dist/src/schema/blocks/createSpec.js +0 -126
- package/dist/src/schema/blocks/createSpec.js.map +0 -1
- package/dist/src/schema/blocks/internal.js +0 -147
- package/dist/src/schema/blocks/internal.js.map +0 -1
- package/dist/src/schema/blocks/types.js +0 -2
- package/dist/src/schema/blocks/types.js.map +0 -1
- package/dist/src/schema/index.js +0 -11
- package/dist/src/schema/index.js.map +0 -1
- package/dist/src/schema/inlineContent/createSpec.js +0 -64
- package/dist/src/schema/inlineContent/createSpec.js.map +0 -1
- package/dist/src/schema/inlineContent/internal.js +0 -52
- package/dist/src/schema/inlineContent/internal.js.map +0 -1
- package/dist/src/schema/inlineContent/types.js +0 -10
- package/dist/src/schema/inlineContent/types.js.map +0 -1
- package/dist/src/schema/propTypes.js +0 -2
- package/dist/src/schema/propTypes.js.map +0 -1
- package/dist/src/schema/styles/createSpec.js +0 -48
- package/dist/src/schema/styles/createSpec.js.map +0 -1
- package/dist/src/schema/styles/internal.js +0 -53
- package/dist/src/schema/styles/internal.js.map +0 -1
- package/dist/src/schema/styles/types.js +0 -2
- package/dist/src/schema/styles/types.js.map +0 -1
- package/dist/src/util/EventEmitter.js +0 -33
- package/dist/src/util/EventEmitter.js.map +0 -1
- package/dist/src/util/browser.js +0 -17
- package/dist/src/util/browser.js.map +0 -1
- package/dist/src/util/combineByGroup.js +0 -20
- package/dist/src/util/combineByGroup.js.map +0 -1
- package/dist/src/util/esmDependencies.js +0 -35
- package/dist/src/util/esmDependencies.js.map +0 -1
- package/dist/src/util/string.js +0 -14
- package/dist/src/util/string.js.map +0 -1
- package/dist/src/util/typescript.js +0 -12
- package/dist/src/util/typescript.js.map +0 -1
- /package/src/api/clipboard/__snapshots__/{childToParent.html → internal/childToParent.html} +0 -0
- /package/src/api/clipboard/__snapshots__/{childrenToNextParent.html → internal/childrenToNextParent.html} +0 -0
- /package/src/api/clipboard/__snapshots__/{childrenToNextParentsChildren.html → internal/childrenToNextParentsChildren.html} +0 -0
- /package/src/api/clipboard/__snapshots__/{image.html → internal/image.html} +0 -0
- /package/src/api/clipboard/__snapshots__/{multipleChildren.html → internal/multipleChildren.html} +0 -0
- /package/src/api/clipboard/__snapshots__/{multipleStyledText.html → internal/multipleStyledText.html} +0 -0
- /package/src/api/clipboard/__snapshots__/{nestedImage.html → internal/nestedImage.html} +0 -0
- /package/src/api/clipboard/__snapshots__/{partialChildToParent.html → internal/partialChildToParent.html} +0 -0
- /package/src/api/clipboard/__snapshots__/{styledText.html → internal/styledText.html} +0 -0
- /package/src/api/clipboard/__snapshots__/{tableAllCells.html → internal/tableAllCells.html} +0 -0
- /package/src/api/clipboard/__snapshots__/{tableCell.html → internal/tableCell.html} +0 -0
- /package/src/api/clipboard/__snapshots__/{tableCellText.html → internal/tableCellText.html} +0 -0
- /package/src/api/clipboard/__snapshots__/{tableRow.html → internal/tableRow.html} +0 -0
- /package/src/api/clipboard/__snapshots__/{unstyledText.html → internal/unstyledText.html} +0 -0
- /package/types/src/api/clipboard/{clipboard.test.d.ts → clipboardExternal.test.d.ts} +0 -0
|
@@ -1,305 +0,0 @@
|
|
|
1
|
-
export const is = {
|
|
2
|
-
slash_menu: {
|
|
3
|
-
heading: {
|
|
4
|
-
title: "Fyrirsögn 1",
|
|
5
|
-
subtext: "Notað fyrir efstu fyrirsögn",
|
|
6
|
-
aliases: ["h", "fyrirsogn1", "h1"],
|
|
7
|
-
group: "Fyrirsagnir",
|
|
8
|
-
},
|
|
9
|
-
heading_2: {
|
|
10
|
-
title: "Fyrirsögn 2",
|
|
11
|
-
subtext: "Notað fyrir lykilhluta",
|
|
12
|
-
aliases: ["h2", "fyrirsogn2", "undirfyrirsogn"],
|
|
13
|
-
group: "Fyrirsagnir",
|
|
14
|
-
},
|
|
15
|
-
heading_3: {
|
|
16
|
-
title: "Fyrirsögn 3",
|
|
17
|
-
subtext: "Notað fyrir undirhluta og hópfyrirsagnir",
|
|
18
|
-
aliases: ["h3", "fyrirsogn3", "undirfyrirsogn"],
|
|
19
|
-
group: "Fyrirsagnir",
|
|
20
|
-
},
|
|
21
|
-
numbered_list: {
|
|
22
|
-
title: "Númeruð listi",
|
|
23
|
-
subtext: "Notað til að birta númeraðan lista",
|
|
24
|
-
aliases: ["ol", "li", "listi", "numeradurlisti"],
|
|
25
|
-
group: "Grunnblokkar",
|
|
26
|
-
},
|
|
27
|
-
bullet_list: {
|
|
28
|
-
title: "Punktalisti",
|
|
29
|
-
subtext: "Notað til að birta óraðaðan lista",
|
|
30
|
-
aliases: ["ul", "li", "listi", "punktalisti"],
|
|
31
|
-
group: "Grunnblokkar",
|
|
32
|
-
},
|
|
33
|
-
check_list: {
|
|
34
|
-
title: "Athugunarlisti",
|
|
35
|
-
subtext: "Notað til að sýna lista með gátreitum",
|
|
36
|
-
aliases: ["ul", "li", "listi", "athugunarlisti", "merktur listi"],
|
|
37
|
-
group: "Grunnblokkar",
|
|
38
|
-
},
|
|
39
|
-
paragraph: {
|
|
40
|
-
title: "Málsgrein",
|
|
41
|
-
subtext: "Notað fyrir meginmál skjalsins",
|
|
42
|
-
aliases: ["p", "malsgrein"],
|
|
43
|
-
group: "Grunnblokkar",
|
|
44
|
-
},
|
|
45
|
-
code_block: {
|
|
46
|
-
title: "Kóðablokk",
|
|
47
|
-
subtext: "Kóðablokkur með litskiptingu",
|
|
48
|
-
aliases: ["kóði", "pre"],
|
|
49
|
-
group: "Grunnblokkar",
|
|
50
|
-
},
|
|
51
|
-
table: {
|
|
52
|
-
title: "Tafla",
|
|
53
|
-
subtext: "Notað fyrir töflur",
|
|
54
|
-
aliases: ["tafla"],
|
|
55
|
-
group: "Ítarlegt",
|
|
56
|
-
},
|
|
57
|
-
image: {
|
|
58
|
-
title: "Mynd",
|
|
59
|
-
subtext: "Settu inn mynd",
|
|
60
|
-
aliases: [
|
|
61
|
-
"mynd",
|
|
62
|
-
"myndaupphlaed",
|
|
63
|
-
"upphlaed",
|
|
64
|
-
"img",
|
|
65
|
-
"mynd",
|
|
66
|
-
"media",
|
|
67
|
-
"url",
|
|
68
|
-
],
|
|
69
|
-
group: "Miðlar",
|
|
70
|
-
},
|
|
71
|
-
video: {
|
|
72
|
-
title: "Myndband",
|
|
73
|
-
subtext: "Setja inn myndband",
|
|
74
|
-
aliases: [
|
|
75
|
-
"myndband",
|
|
76
|
-
"videoUpphala",
|
|
77
|
-
"hlaða upp",
|
|
78
|
-
"mp4",
|
|
79
|
-
"kvikmynd",
|
|
80
|
-
"miðill",
|
|
81
|
-
"url",
|
|
82
|
-
],
|
|
83
|
-
group: "Miðill",
|
|
84
|
-
},
|
|
85
|
-
audio: {
|
|
86
|
-
title: "Hljóð",
|
|
87
|
-
subtext: "Setja inn hljóð",
|
|
88
|
-
aliases: [
|
|
89
|
-
"hljóð",
|
|
90
|
-
"audioUpphala",
|
|
91
|
-
"hlaða upp",
|
|
92
|
-
"mp3",
|
|
93
|
-
"hljóð",
|
|
94
|
-
"miðill",
|
|
95
|
-
"url",
|
|
96
|
-
],
|
|
97
|
-
group: "Miðlar",
|
|
98
|
-
},
|
|
99
|
-
file: {
|
|
100
|
-
title: "Skrá",
|
|
101
|
-
subtext: "Setja inn skrá",
|
|
102
|
-
aliases: ["skrá", "hlaða upp", "fella inn", "miðill", "url"],
|
|
103
|
-
group: "Miðlar",
|
|
104
|
-
},
|
|
105
|
-
emoji: {
|
|
106
|
-
title: "Emoji",
|
|
107
|
-
subtext: "Notað til að setja inn smámynd",
|
|
108
|
-
aliases: ["emoji", "andlitsávísun", "tilfinningar", "andlit"],
|
|
109
|
-
group: "Annað",
|
|
110
|
-
},
|
|
111
|
-
},
|
|
112
|
-
placeholders: {
|
|
113
|
-
default: "Sláðu inn texta eða skrifaðu '/' fyrir skipanir",
|
|
114
|
-
heading: "Fyrirsögn",
|
|
115
|
-
bulletListItem: "Listi",
|
|
116
|
-
numberedListItem: "Listi",
|
|
117
|
-
checkListItem: "Listi",
|
|
118
|
-
},
|
|
119
|
-
file_blocks: {
|
|
120
|
-
image: {
|
|
121
|
-
add_button_text: "Bæta við mynd",
|
|
122
|
-
},
|
|
123
|
-
video: {
|
|
124
|
-
add_button_text: "Bæta við myndbandi",
|
|
125
|
-
},
|
|
126
|
-
audio: {
|
|
127
|
-
add_button_text: "Bæta við hljóði",
|
|
128
|
-
},
|
|
129
|
-
file: {
|
|
130
|
-
add_button_text: "Bæta við skrá",
|
|
131
|
-
},
|
|
132
|
-
},
|
|
133
|
-
side_menu: {
|
|
134
|
-
add_block_label: "Bæta við blokki",
|
|
135
|
-
drag_handle_label: "Opna blokkarvalmynd",
|
|
136
|
-
},
|
|
137
|
-
drag_handle: {
|
|
138
|
-
delete_menuitem: "Eyða",
|
|
139
|
-
colors_menuitem: "Litir",
|
|
140
|
-
},
|
|
141
|
-
table_handle: {
|
|
142
|
-
delete_column_menuitem: "Eyða dálki",
|
|
143
|
-
delete_row_menuitem: "Eyða röð",
|
|
144
|
-
add_left_menuitem: "Bæta dálki við til vinstri",
|
|
145
|
-
add_right_menuitem: "Bæta dálki við til hægri",
|
|
146
|
-
add_above_menuitem: "Bæta röð við fyrir ofan",
|
|
147
|
-
add_below_menuitem: "Bæta röð við fyrir neðan",
|
|
148
|
-
},
|
|
149
|
-
suggestion_menu: {
|
|
150
|
-
no_items_title: "Engir hlutir fundust",
|
|
151
|
-
loading: "Hleður…",
|
|
152
|
-
},
|
|
153
|
-
color_picker: {
|
|
154
|
-
text_title: "Texti",
|
|
155
|
-
background_title: "Bakgrunnur",
|
|
156
|
-
colors: {
|
|
157
|
-
default: "Sjálfgefið",
|
|
158
|
-
gray: "Grár",
|
|
159
|
-
brown: "Brúnn",
|
|
160
|
-
red: "Rauður",
|
|
161
|
-
orange: "Appelsínugulur",
|
|
162
|
-
yellow: "Gulur",
|
|
163
|
-
green: "Grænn",
|
|
164
|
-
blue: "Blár",
|
|
165
|
-
purple: "Fjólublár",
|
|
166
|
-
pink: "Bleikur",
|
|
167
|
-
},
|
|
168
|
-
},
|
|
169
|
-
formatting_toolbar: {
|
|
170
|
-
bold: {
|
|
171
|
-
tooltip: "Feitletrað",
|
|
172
|
-
secondary_tooltip: "Mod+B",
|
|
173
|
-
},
|
|
174
|
-
italic: {
|
|
175
|
-
tooltip: "Skáletrað",
|
|
176
|
-
secondary_tooltip: "Mod+I",
|
|
177
|
-
},
|
|
178
|
-
underline: {
|
|
179
|
-
tooltip: "Undirstrikað",
|
|
180
|
-
secondary_tooltip: "Mod+U",
|
|
181
|
-
},
|
|
182
|
-
strike: {
|
|
183
|
-
tooltip: "Yfirstrikað",
|
|
184
|
-
secondary_tooltip: "Mod+Shift+X",
|
|
185
|
-
},
|
|
186
|
-
code: {
|
|
187
|
-
tooltip: "Kóði",
|
|
188
|
-
secondary_tooltip: "",
|
|
189
|
-
},
|
|
190
|
-
colors: {
|
|
191
|
-
tooltip: "Litir",
|
|
192
|
-
},
|
|
193
|
-
link: {
|
|
194
|
-
tooltip: "Búa til tengil",
|
|
195
|
-
secondary_tooltip: "Mod+K",
|
|
196
|
-
},
|
|
197
|
-
file_caption: {
|
|
198
|
-
tooltip: "Breyta myndatexta",
|
|
199
|
-
input_placeholder: "Breyta myndatexta",
|
|
200
|
-
},
|
|
201
|
-
file_replace: {
|
|
202
|
-
tooltip: {
|
|
203
|
-
image: "Skipta um mynd",
|
|
204
|
-
video: "Skipta um myndband",
|
|
205
|
-
audio: "Skipta um hljóð",
|
|
206
|
-
file: "Skipta um skrá",
|
|
207
|
-
},
|
|
208
|
-
},
|
|
209
|
-
file_rename: {
|
|
210
|
-
tooltip: {
|
|
211
|
-
image: "Endurnefna mynd",
|
|
212
|
-
video: "Endurnefna myndband",
|
|
213
|
-
audio: "Endurnefna hljóð",
|
|
214
|
-
file: "Endurnefna skrá",
|
|
215
|
-
},
|
|
216
|
-
input_placeholder: {
|
|
217
|
-
image: "Endurnefna mynd",
|
|
218
|
-
video: "Endurnefna myndband",
|
|
219
|
-
audio: "Endurnefna hljóð",
|
|
220
|
-
file: "Endurnefna skrá",
|
|
221
|
-
},
|
|
222
|
-
},
|
|
223
|
-
file_download: {
|
|
224
|
-
tooltip: {
|
|
225
|
-
image: "Sækja mynd",
|
|
226
|
-
video: "Sækja myndband",
|
|
227
|
-
audio: "Sækja hljóð",
|
|
228
|
-
file: "Sækja skrá",
|
|
229
|
-
},
|
|
230
|
-
},
|
|
231
|
-
file_delete: {
|
|
232
|
-
tooltip: {
|
|
233
|
-
image: "Eyða mynd",
|
|
234
|
-
video: "Eyða myndbandi",
|
|
235
|
-
audio: "Eyða hljóði",
|
|
236
|
-
file: "Eyða skrá",
|
|
237
|
-
},
|
|
238
|
-
},
|
|
239
|
-
file_preview_toggle: {
|
|
240
|
-
tooltip: "Skipta um forskoðun",
|
|
241
|
-
},
|
|
242
|
-
nest: {
|
|
243
|
-
tooltip: "Fella blokk saman",
|
|
244
|
-
secondary_tooltip: "Tab",
|
|
245
|
-
},
|
|
246
|
-
unnest: {
|
|
247
|
-
tooltip: "Afþýða blokk",
|
|
248
|
-
secondary_tooltip: "Shift+Tab",
|
|
249
|
-
},
|
|
250
|
-
align_left: {
|
|
251
|
-
tooltip: "Vinstrijafna texta",
|
|
252
|
-
},
|
|
253
|
-
align_center: {
|
|
254
|
-
tooltip: "Miðjustilla texta",
|
|
255
|
-
},
|
|
256
|
-
align_right: {
|
|
257
|
-
tooltip: "Hægrijafna texta",
|
|
258
|
-
},
|
|
259
|
-
align_justify: {
|
|
260
|
-
tooltip: "Jafna texta",
|
|
261
|
-
},
|
|
262
|
-
},
|
|
263
|
-
file_panel: {
|
|
264
|
-
upload: {
|
|
265
|
-
title: "Hlaða upp",
|
|
266
|
-
file_placeholder: {
|
|
267
|
-
image: "Hlaða upp mynd",
|
|
268
|
-
video: "Hlaða upp myndband",
|
|
269
|
-
audio: "Hlaða upp hljóð",
|
|
270
|
-
file: "Hlaða upp skrá",
|
|
271
|
-
},
|
|
272
|
-
upload_error: "Villa: Upphleðsla mistókst",
|
|
273
|
-
},
|
|
274
|
-
embed: {
|
|
275
|
-
title: "Innsetja",
|
|
276
|
-
embed_button: {
|
|
277
|
-
image: "Innsetja mynd",
|
|
278
|
-
video: "Innsetja myndband",
|
|
279
|
-
audio: "Innsetja hljóð",
|
|
280
|
-
file: "Innsetja skrá",
|
|
281
|
-
},
|
|
282
|
-
url_placeholder: "Sláðu inn URL",
|
|
283
|
-
},
|
|
284
|
-
},
|
|
285
|
-
link_toolbar: {
|
|
286
|
-
delete: {
|
|
287
|
-
tooltip: "Fjarlægja tengil",
|
|
288
|
-
},
|
|
289
|
-
edit: {
|
|
290
|
-
text: "Breyta tengli",
|
|
291
|
-
tooltip: "Breyta",
|
|
292
|
-
},
|
|
293
|
-
open: {
|
|
294
|
-
tooltip: "Opna í nýjum flipa",
|
|
295
|
-
},
|
|
296
|
-
form: {
|
|
297
|
-
title_placeholder: "Breyta titli",
|
|
298
|
-
url_placeholder: "Breyta URL",
|
|
299
|
-
},
|
|
300
|
-
},
|
|
301
|
-
generic: {
|
|
302
|
-
ctrl_shortcut: "Ctrl",
|
|
303
|
-
},
|
|
304
|
-
};
|
|
305
|
-
//# sourceMappingURL=is.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"is.js","sourceRoot":"","sources":["../../../../src/i18n/locales/is.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,333 +0,0 @@
|
|
|
1
|
-
export const ja = {
|
|
2
|
-
slash_menu: {
|
|
3
|
-
heading: {
|
|
4
|
-
title: "見出し1",
|
|
5
|
-
subtext: "トップレベルの見出しに使用",
|
|
6
|
-
aliases: ["h", "見出し1", "h1", "大見出し"],
|
|
7
|
-
group: "見出し",
|
|
8
|
-
},
|
|
9
|
-
heading_2: {
|
|
10
|
-
title: "見出し2",
|
|
11
|
-
subtext: "重要なセクションに使用",
|
|
12
|
-
aliases: ["h2", "見出し2", "subheading", "中見出し"],
|
|
13
|
-
group: "見出し",
|
|
14
|
-
},
|
|
15
|
-
heading_3: {
|
|
16
|
-
title: "見出し3",
|
|
17
|
-
subtext: "セクションやグループの見出しに使用",
|
|
18
|
-
aliases: ["h3", "見出し3", "subheading", "小見出し"],
|
|
19
|
-
group: "見出し",
|
|
20
|
-
},
|
|
21
|
-
numbered_list: {
|
|
22
|
-
title: "番号付リスト",
|
|
23
|
-
subtext: "番号付リストを表示するために使用",
|
|
24
|
-
aliases: [
|
|
25
|
-
"ol",
|
|
26
|
-
"li",
|
|
27
|
-
"numberedlist",
|
|
28
|
-
"numbered list",
|
|
29
|
-
"リスト",
|
|
30
|
-
"番号付リスト",
|
|
31
|
-
"番号 リスト",
|
|
32
|
-
],
|
|
33
|
-
group: "基本ブロック",
|
|
34
|
-
},
|
|
35
|
-
bullet_list: {
|
|
36
|
-
title: "箇条書き",
|
|
37
|
-
subtext: "箇条書きを表示するために使用",
|
|
38
|
-
aliases: [
|
|
39
|
-
"ul",
|
|
40
|
-
"li",
|
|
41
|
-
"bulletlist",
|
|
42
|
-
"bullet list",
|
|
43
|
-
"リスト",
|
|
44
|
-
"箇条書きリスト",
|
|
45
|
-
],
|
|
46
|
-
group: "基本ブロック",
|
|
47
|
-
},
|
|
48
|
-
check_list: {
|
|
49
|
-
title: "チェックリスト",
|
|
50
|
-
subtext: "チェックボックス付きリストを表示するために使用されます",
|
|
51
|
-
aliases: [
|
|
52
|
-
"ul",
|
|
53
|
-
"li",
|
|
54
|
-
"list",
|
|
55
|
-
"checklist",
|
|
56
|
-
"checked list",
|
|
57
|
-
"リスト",
|
|
58
|
-
"チェックリスト",
|
|
59
|
-
"チェックされたリスト",
|
|
60
|
-
],
|
|
61
|
-
group: "基本ブロック",
|
|
62
|
-
},
|
|
63
|
-
paragraph: {
|
|
64
|
-
title: "標準テキスト",
|
|
65
|
-
subtext: "本文に使用",
|
|
66
|
-
aliases: ["p", "paragraph", "標準テキスト"],
|
|
67
|
-
group: "基本ブロック",
|
|
68
|
-
},
|
|
69
|
-
code_block: {
|
|
70
|
-
title: "コードブロック",
|
|
71
|
-
subtext: "シンタックスハイライト付きのコードブロック",
|
|
72
|
-
aliases: ["code", "pre", "コード", "コードブロック"],
|
|
73
|
-
group: "基本ブロック",
|
|
74
|
-
},
|
|
75
|
-
table: {
|
|
76
|
-
title: "表",
|
|
77
|
-
subtext: "表に使用",
|
|
78
|
-
aliases: ["table", "表", "テーブル"],
|
|
79
|
-
group: "高度なブロック",
|
|
80
|
-
},
|
|
81
|
-
image: {
|
|
82
|
-
title: "画像",
|
|
83
|
-
subtext: "画像を挿入",
|
|
84
|
-
aliases: [
|
|
85
|
-
"image",
|
|
86
|
-
"imageUpload",
|
|
87
|
-
"upload",
|
|
88
|
-
"img",
|
|
89
|
-
"picture",
|
|
90
|
-
"media",
|
|
91
|
-
"url",
|
|
92
|
-
"画像",
|
|
93
|
-
],
|
|
94
|
-
group: "メディア",
|
|
95
|
-
},
|
|
96
|
-
video: {
|
|
97
|
-
title: "ビデオ",
|
|
98
|
-
subtext: "ビデオを挿入",
|
|
99
|
-
aliases: [
|
|
100
|
-
"video",
|
|
101
|
-
"videoUpload",
|
|
102
|
-
"upload",
|
|
103
|
-
"mp4",
|
|
104
|
-
"film",
|
|
105
|
-
"media",
|
|
106
|
-
"url",
|
|
107
|
-
"ビデオ",
|
|
108
|
-
],
|
|
109
|
-
group: "メディア",
|
|
110
|
-
},
|
|
111
|
-
audio: {
|
|
112
|
-
title: "オーディオ",
|
|
113
|
-
subtext: "オーディオを挿入",
|
|
114
|
-
aliases: [
|
|
115
|
-
"audio",
|
|
116
|
-
"audioUpload",
|
|
117
|
-
"upload",
|
|
118
|
-
"mp3",
|
|
119
|
-
"sound",
|
|
120
|
-
"media",
|
|
121
|
-
"url",
|
|
122
|
-
"オーディオ",
|
|
123
|
-
],
|
|
124
|
-
group: "メディア",
|
|
125
|
-
},
|
|
126
|
-
file: {
|
|
127
|
-
title: "ファイル",
|
|
128
|
-
subtext: "ファイルを挿入",
|
|
129
|
-
aliases: ["file", "upload", "embed", "media", "url", "ファイル"],
|
|
130
|
-
group: "メディア",
|
|
131
|
-
},
|
|
132
|
-
emoji: {
|
|
133
|
-
title: "絵文字",
|
|
134
|
-
subtext: "絵文字を挿入するために使用します",
|
|
135
|
-
aliases: ["絵文字", "顔文字", "感情表現", "顔"],
|
|
136
|
-
group: "その他",
|
|
137
|
-
},
|
|
138
|
-
},
|
|
139
|
-
placeholders: {
|
|
140
|
-
default: "テキストを入力するか'/' を入力してコマンド選択",
|
|
141
|
-
heading: "見出し",
|
|
142
|
-
bulletListItem: "リストを追加",
|
|
143
|
-
numberedListItem: "リストを追加",
|
|
144
|
-
checkListItem: "リストを追加",
|
|
145
|
-
},
|
|
146
|
-
file_blocks: {
|
|
147
|
-
image: {
|
|
148
|
-
add_button_text: "画像を追加",
|
|
149
|
-
},
|
|
150
|
-
video: {
|
|
151
|
-
add_button_text: "ビデオを追加",
|
|
152
|
-
},
|
|
153
|
-
audio: {
|
|
154
|
-
add_button_text: "オーディオを追加",
|
|
155
|
-
},
|
|
156
|
-
file: {
|
|
157
|
-
add_button_text: "ファイルを追加",
|
|
158
|
-
},
|
|
159
|
-
},
|
|
160
|
-
// from react package:
|
|
161
|
-
side_menu: {
|
|
162
|
-
add_block_label: "ブロックを追加",
|
|
163
|
-
drag_handle_label: "ブロックメニュー",
|
|
164
|
-
},
|
|
165
|
-
drag_handle: {
|
|
166
|
-
delete_menuitem: "削除",
|
|
167
|
-
colors_menuitem: "色を変更",
|
|
168
|
-
},
|
|
169
|
-
table_handle: {
|
|
170
|
-
delete_column_menuitem: "列を削除",
|
|
171
|
-
delete_row_menuitem: "行を削除",
|
|
172
|
-
add_left_menuitem: "左に列を追加",
|
|
173
|
-
add_right_menuitem: "右に列を追加",
|
|
174
|
-
add_above_menuitem: "上に行を追加",
|
|
175
|
-
add_below_menuitem: "下に行を追加",
|
|
176
|
-
},
|
|
177
|
-
suggestion_menu: {
|
|
178
|
-
no_items_title: "アイテムが見つかりません",
|
|
179
|
-
loading: "読込中…",
|
|
180
|
-
},
|
|
181
|
-
color_picker: {
|
|
182
|
-
text_title: "文字色",
|
|
183
|
-
background_title: "背景色",
|
|
184
|
-
colors: {
|
|
185
|
-
default: "デフォルト",
|
|
186
|
-
gray: "グレー",
|
|
187
|
-
brown: "茶色",
|
|
188
|
-
red: "赤",
|
|
189
|
-
orange: "オレンジ",
|
|
190
|
-
yellow: "黄色",
|
|
191
|
-
green: "緑",
|
|
192
|
-
blue: "青",
|
|
193
|
-
purple: "紫",
|
|
194
|
-
pink: "ピンク",
|
|
195
|
-
},
|
|
196
|
-
},
|
|
197
|
-
formatting_toolbar: {
|
|
198
|
-
bold: {
|
|
199
|
-
tooltip: "太字",
|
|
200
|
-
secondary_tooltip: "Mod+B",
|
|
201
|
-
},
|
|
202
|
-
italic: {
|
|
203
|
-
tooltip: "斜体",
|
|
204
|
-
secondary_tooltip: "Mod+I",
|
|
205
|
-
},
|
|
206
|
-
underline: {
|
|
207
|
-
tooltip: "下線",
|
|
208
|
-
secondary_tooltip: "Mod+U",
|
|
209
|
-
},
|
|
210
|
-
strike: {
|
|
211
|
-
tooltip: "打ち消し",
|
|
212
|
-
secondary_tooltip: "Mod+Shift+X",
|
|
213
|
-
},
|
|
214
|
-
code: {
|
|
215
|
-
tooltip: "コード",
|
|
216
|
-
secondary_tooltip: "",
|
|
217
|
-
},
|
|
218
|
-
colors: {
|
|
219
|
-
tooltip: "色",
|
|
220
|
-
},
|
|
221
|
-
link: {
|
|
222
|
-
tooltip: "リンク",
|
|
223
|
-
secondary_tooltip: "Mod+K",
|
|
224
|
-
},
|
|
225
|
-
file_caption: {
|
|
226
|
-
tooltip: "キャプションを編集",
|
|
227
|
-
input_placeholder: "キャプションを編集",
|
|
228
|
-
},
|
|
229
|
-
file_replace: {
|
|
230
|
-
tooltip: {
|
|
231
|
-
image: "画像を置換",
|
|
232
|
-
video: "ビデオを置換",
|
|
233
|
-
audio: "オーディオを置換",
|
|
234
|
-
file: "ファイルを置換",
|
|
235
|
-
},
|
|
236
|
-
},
|
|
237
|
-
file_rename: {
|
|
238
|
-
tooltip: {
|
|
239
|
-
image: "画像の名前を変更",
|
|
240
|
-
video: "ビデオの名前を変更",
|
|
241
|
-
audio: "オーディオの名前を変更",
|
|
242
|
-
file: "ファイルの名前を変更",
|
|
243
|
-
},
|
|
244
|
-
input_placeholder: {
|
|
245
|
-
image: "画像の名前を変更",
|
|
246
|
-
video: "ビデオの名前を変更",
|
|
247
|
-
audio: "オーディオの名前を変更",
|
|
248
|
-
file: "ファイルの名前を変更",
|
|
249
|
-
},
|
|
250
|
-
},
|
|
251
|
-
file_download: {
|
|
252
|
-
tooltip: {
|
|
253
|
-
image: "画像をダウンロード",
|
|
254
|
-
video: "ビデオをダウンロード",
|
|
255
|
-
audio: "オーディオをダウンロード",
|
|
256
|
-
file: "ファイルをダウンロード",
|
|
257
|
-
},
|
|
258
|
-
},
|
|
259
|
-
file_delete: {
|
|
260
|
-
tooltip: {
|
|
261
|
-
image: "画像を削除",
|
|
262
|
-
video: "ビデオを削除",
|
|
263
|
-
audio: "オーディオを削除",
|
|
264
|
-
file: "ファイルを削除",
|
|
265
|
-
},
|
|
266
|
-
},
|
|
267
|
-
file_preview_toggle: {
|
|
268
|
-
tooltip: "プレビューの切り替え",
|
|
269
|
-
},
|
|
270
|
-
nest: {
|
|
271
|
-
tooltip: "インデント増",
|
|
272
|
-
secondary_tooltip: "Tab",
|
|
273
|
-
},
|
|
274
|
-
unnest: {
|
|
275
|
-
tooltip: "インデント減",
|
|
276
|
-
secondary_tooltip: "Shift+Tab",
|
|
277
|
-
},
|
|
278
|
-
align_left: {
|
|
279
|
-
tooltip: "左揃え",
|
|
280
|
-
},
|
|
281
|
-
align_center: {
|
|
282
|
-
tooltip: "中央揃え",
|
|
283
|
-
},
|
|
284
|
-
align_right: {
|
|
285
|
-
tooltip: "右揃え",
|
|
286
|
-
},
|
|
287
|
-
align_justify: {
|
|
288
|
-
tooltip: "両端揃え",
|
|
289
|
-
},
|
|
290
|
-
},
|
|
291
|
-
file_panel: {
|
|
292
|
-
upload: {
|
|
293
|
-
title: "アップロード",
|
|
294
|
-
file_placeholder: {
|
|
295
|
-
image: "画像をアップロード",
|
|
296
|
-
video: "ビデオをアップロード",
|
|
297
|
-
audio: "オーディオをアップロード",
|
|
298
|
-
file: "ファイルをアップロード",
|
|
299
|
-
},
|
|
300
|
-
upload_error: "エラー: アップロードが失敗しました",
|
|
301
|
-
},
|
|
302
|
-
embed: {
|
|
303
|
-
title: "埋め込み",
|
|
304
|
-
embed_button: {
|
|
305
|
-
image: "画像を埋め込む",
|
|
306
|
-
video: "ビデオを埋め込む",
|
|
307
|
-
audio: "オーディオを埋め込む",
|
|
308
|
-
file: "ファイルを埋め込む",
|
|
309
|
-
},
|
|
310
|
-
url_placeholder: "URLを入力",
|
|
311
|
-
},
|
|
312
|
-
},
|
|
313
|
-
link_toolbar: {
|
|
314
|
-
delete: {
|
|
315
|
-
tooltip: "リンクを解除",
|
|
316
|
-
},
|
|
317
|
-
edit: {
|
|
318
|
-
text: "リンクを編集",
|
|
319
|
-
tooltip: "編集",
|
|
320
|
-
},
|
|
321
|
-
open: {
|
|
322
|
-
tooltip: "新しいタブでリンクを開く",
|
|
323
|
-
},
|
|
324
|
-
form: {
|
|
325
|
-
title_placeholder: "タイトルを編集",
|
|
326
|
-
url_placeholder: "URLを編集",
|
|
327
|
-
},
|
|
328
|
-
},
|
|
329
|
-
generic: {
|
|
330
|
-
ctrl_shortcut: "Ctrl",
|
|
331
|
-
},
|
|
332
|
-
};
|
|
333
|
-
//# sourceMappingURL=ja.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ja.js","sourceRoot":"","sources":["../../../../src/i18n/locales/ja.ts"],"names":[],"mappings":"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"}
|