@blocknote/core 0.20.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 +1602 -1569
- package/dist/blocknote.js.map +1 -1
- package/dist/blocknote.umd.cjs +6 -6
- 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/blockManipulation/commands/moveBlocks/moveBlocks.test.ts +3 -3
- package/src/api/blockManipulation/commands/moveBlocks/moveBlocks.ts +1 -3
- package/src/api/blockManipulation/commands/splitBlock/splitBlock.test.ts +1 -1
- package/src/api/blockManipulation/selections/selection.ts +5 -5
- 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/__snapshots__/internal/tableAllCells.html +1 -0
- package/src/api/clipboard/__snapshots__/internal/tableCell.html +1 -0
- package/src/api/clipboard/__snapshots__/internal/tableRow.html +1 -0
- package/src/api/clipboard/clipboardExternal.test.ts +161 -0
- package/src/api/clipboard/{clipboard.test.ts → clipboardInternal.test.ts} +66 -40
- package/src/api/clipboard/fromClipboard/handleFileInsertion.ts +1 -1
- package/src/api/clipboard/fromClipboard/handleVSCodePaste.ts +7 -14
- package/src/api/clipboard/fromClipboard/pasteExtension.ts +6 -6
- package/src/api/clipboard/testUtil.ts +27 -0
- package/src/api/clipboard/toClipboard/copyExtension.ts +8 -2
- package/src/api/exporters/html/__snapshots__/file/basic/internal.html +1 -1
- package/src/api/exporters/html/__snapshots__/file/nested/internal.html +1 -1
- package/src/api/exporters/html/__snapshots__/file/noCaption/internal.html +1 -1
- package/src/api/exporters/html/__snapshots__/file/noName/internal.html +1 -1
- package/src/api/exporters/html/__snapshots__/image/basic/internal.html +1 -1
- package/src/api/exporters/html/__snapshots__/image/nested/internal.html +1 -1
- package/src/api/exporters/html/__snapshots__/image/noCaption/internal.html +1 -1
- package/src/api/exporters/html/__snapshots__/image/noName/internal.html +1 -1
- package/src/api/exporters/html/__snapshots__/image/noPreview/internal.html +1 -1
- package/src/api/exporters/html/__snapshots__/simpleImage/basic/external.html +1 -1
- package/src/api/exporters/html/__snapshots__/simpleImage/basic/internal.html +1 -1
- package/src/api/exporters/html/__snapshots__/simpleImage/nested/external.html +1 -1
- package/src/api/exporters/html/__snapshots__/simpleImage/nested/internal.html +1 -1
- package/src/api/exporters/html/__snapshots__/simpleImage/noCaption/external.html +1 -1
- package/src/api/exporters/html/__snapshots__/simpleImage/noCaption/internal.html +1 -1
- package/src/api/exporters/html/__snapshots__/simpleImage/noName/external.html +1 -1
- package/src/api/exporters/html/__snapshots__/simpleImage/noName/internal.html +1 -1
- package/src/api/exporters/html/__snapshots__/simpleImage/noPreview/external.html +1 -1
- package/src/api/exporters/html/__snapshots__/simpleImage/noPreview/internal.html +1 -1
- package/src/api/exporters/html/util/serializeBlocksExternalHTML.ts +7 -1
- package/src/api/exporters/html/util/serializeBlocksInternalHTML.ts +3 -1
- package/src/api/exporters/markdown/__snapshots__/simpleImage/basic/markdown.md +1 -1
- package/src/api/exporters/markdown/__snapshots__/simpleImage/nested/markdown.md +2 -2
- package/src/api/exporters/markdown/__snapshots__/simpleImage/noCaption/markdown.md +1 -1
- package/src/api/exporters/markdown/__snapshots__/simpleImage/noName/markdown.md +1 -1
- package/src/api/nodeConversions/nodeToBlock.ts +4 -1
- package/src/api/parsers/markdown/__snapshots__/pasted/styled.json +2 -2
- package/src/api/parsers/markdown/parseMarkdown.test.ts +5 -7
- package/src/api/testUtil/partialBlockTestUtil.ts +4 -1
- package/src/blocks/AudioBlockContent/AudioBlockContent.ts +13 -14
- package/src/blocks/FileBlockContent/FileBlockContent.ts +5 -12
- package/src/blocks/FileBlockContent/helpers/parse/parseEmbedElement.ts +5 -0
- package/src/blocks/FileBlockContent/helpers/parse/parseFigureElement.ts +16 -0
- package/src/blocks/FileBlockContent/helpers/render/createAddFileButton.ts +63 -0
- package/src/blocks/FileBlockContent/helpers/render/createFileBlockWrapper.ts +80 -0
- package/src/blocks/FileBlockContent/helpers/render/createFileNameWithIcon.ts +24 -0
- package/src/blocks/FileBlockContent/helpers/render/createResizableFileBlockWrapper.ts +204 -0
- package/src/blocks/FileBlockContent/helpers/toExternalHTML/createFigureWithCaption.ts +13 -0
- package/src/blocks/FileBlockContent/helpers/toExternalHTML/createLinkWithCaption.ts +15 -0
- package/src/blocks/HeadingBlockContent/HeadingBlockContent.ts +3 -19
- package/src/blocks/ImageBlockContent/ImageBlockContent.ts +20 -28
- 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/blocks/VideoBlockContent/VideoBlockContent.ts +20 -27
- package/src/editor/Block.css +38 -54
- package/src/editor/BlockNoteEditor.test.ts +21 -1
- package/src/editor/BlockNoteEditor.ts +14 -7
- package/src/editor/BlockNoteExtensions.ts +7 -8
- package/src/editor/editor.css +7 -6
- package/src/editor/transformPasted.ts +57 -4
- package/src/extensions/LinkToolbar/protocols.ts +13 -0
- package/src/extensions/Placeholder/PlaceholderPlugin.ts +6 -6
- package/src/extensions/SideMenu/SideMenuPlugin.ts +5 -1
- package/src/extensions/SideMenu/dragging.ts +3 -0
- package/src/extensions/SuggestionMenu/SuggestionPlugin.ts +3 -6
- package/src/extensions/TableHandles/TableHandlesPlugin.ts +15 -3
- package/src/index.ts +9 -2
- package/src/schema/blocks/createSpec.ts +1 -1
- package/src/schema/blocks/internal.ts +16 -6
- package/src/schema/inlineContent/createSpec.ts +2 -2
- 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/fromClipboard/handleVSCodePaste.d.ts +2 -3
- package/types/src/api/clipboard/fromClipboard/pasteExtension.d.ts +1 -3
- 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/AudioBlockContent/AudioBlockContent.d.ts +2 -5
- package/types/src/blocks/FileBlockContent/FileBlockContent.d.ts +2 -5
- package/types/src/blocks/FileBlockContent/helpers/parse/parseEmbedElement.d.ts +3 -0
- package/types/src/blocks/FileBlockContent/helpers/parse/parseFigureElement.d.ts +4 -0
- package/types/src/blocks/FileBlockContent/helpers/render/createAddFileButton.d.ts +6 -0
- package/types/src/blocks/FileBlockContent/helpers/render/createFileBlockWrapper.d.ts +9 -0
- package/types/src/blocks/FileBlockContent/helpers/render/createFileNameWithIcon.d.ts +6 -0
- package/types/src/blocks/FileBlockContent/helpers/render/createResizableFileBlockWrapper.d.ts +9 -0
- package/types/src/blocks/FileBlockContent/helpers/toExternalHTML/createFigureWithCaption.d.ts +3 -0
- package/types/src/blocks/FileBlockContent/helpers/toExternalHTML/createLinkWithCaption.d.ts +3 -0
- package/types/src/blocks/ImageBlockContent/ImageBlockContent.d.ts +2 -5
- package/types/src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListItemBlockContent.d.ts +12 -0
- package/types/src/blocks/VideoBlockContent/VideoBlockContent.d.ts +2 -5
- package/types/src/blocks/defaultBlocks.d.ts +16 -0
- package/types/src/editor/BlockNoteEditor.d.ts +6 -4
- package/types/src/editor/transformPasted.d.ts +8 -4
- package/types/src/extensions/LinkToolbar/protocols.d.ts +2 -0
- package/types/src/index.d.ts +9 -2
- 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 -246
- 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 -26
- 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 -132
- 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 -109
- 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 -97
- package/dist/src/blocks/AudioBlockContent/AudioBlockContent.js.map +0 -1
- package/dist/src/blocks/AudioBlockContent/audioBlockHelpers.js +0 -5
- package/dist/src/blocks/AudioBlockContent/audioBlockHelpers.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 -70
- package/dist/src/blocks/FileBlockContent/FileBlockContent.js.map +0 -1
- package/dist/src/blocks/FileBlockContent/fileBlockHelpers.js +0 -317
- package/dist/src/blocks/FileBlockContent/fileBlockHelpers.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 -106
- package/dist/src/blocks/ImageBlockContent/ImageBlockContent.js.map +0 -1
- package/dist/src/blocks/ImageBlockContent/imageBlockHelpers.js +0 -6
- package/dist/src/blocks/ImageBlockContent/imageBlockHelpers.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 -103
- package/dist/src/blocks/VideoBlockContent/VideoBlockContent.js.map +0 -1
- package/dist/src/blocks/VideoBlockContent/videoBlockHelpers.js +0 -6
- package/dist/src/blocks/VideoBlockContent/videoBlockHelpers.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 -748
- 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 -196
- 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/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 -343
- package/dist/src/extensions/SideMenu/SideMenuPlugin.js.map +0 -1
- package/dist/src/extensions/SideMenu/dragging.js +0 -132
- 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 -570
- 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 -56
- 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__/tableAllCells.html +0 -1
- package/src/api/clipboard/__snapshots__/tableCell.html +0 -1
- package/src/api/clipboard/__snapshots__/tableRow.html +0 -1
- package/src/blocks/FileBlockContent/fileBlockHelpers.ts +0 -456
- package/types/src/blocks/FileBlockContent/fileBlockHelpers.d.ts +0 -41
- /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__/{tableCellText.html → internal/tableCellText.html} +0 -0
- /package/src/api/clipboard/__snapshots__/{unstyledText.html → internal/unstyledText.html} +0 -0
- /package/src/blocks/AudioBlockContent/{audioBlockHelpers.ts → parseAudioElement.ts} +0 -0
- /package/src/blocks/ImageBlockContent/{imageBlockHelpers.ts → parseImageElement.ts} +0 -0
- /package/src/blocks/VideoBlockContent/{videoBlockHelpers.ts → parseVideoElement.ts} +0 -0
- /package/types/src/api/clipboard/{clipboard.test.d.ts → clipboardExternal.test.d.ts} +0 -0
- /package/types/src/blocks/AudioBlockContent/{audioBlockHelpers.d.ts → parseAudioElement.d.ts} +0 -0
- /package/types/src/blocks/ImageBlockContent/{imageBlockHelpers.d.ts → parseImageElement.d.ts} +0 -0
- /package/types/src/blocks/VideoBlockContent/{videoBlockHelpers.d.ts → parseVideoElement.d.ts} +0 -0
|
@@ -1,297 +0,0 @@
|
|
|
1
|
-
export const pl = {
|
|
2
|
-
slash_menu: {
|
|
3
|
-
heading: {
|
|
4
|
-
title: "Nagłówek 1",
|
|
5
|
-
subtext: "Używany dla nagłówka najwyższego poziomu",
|
|
6
|
-
aliases: ["h", "naglowek1", "h1"],
|
|
7
|
-
group: "Nagłówki",
|
|
8
|
-
},
|
|
9
|
-
heading_2: {
|
|
10
|
-
title: "Nagłówek 2",
|
|
11
|
-
subtext: "Używany dla kluczowych sekcji",
|
|
12
|
-
aliases: ["h2", "naglowek2", "podnaglowek"],
|
|
13
|
-
group: "Nagłówki",
|
|
14
|
-
},
|
|
15
|
-
heading_3: {
|
|
16
|
-
title: "Nagłówek 3",
|
|
17
|
-
subtext: "Używany dla podsekcji i grup nagłówków",
|
|
18
|
-
aliases: ["h3", "naglowek3", "podnaglowek"],
|
|
19
|
-
group: "Nagłówki",
|
|
20
|
-
},
|
|
21
|
-
numbered_list: {
|
|
22
|
-
title: "Lista numerowana",
|
|
23
|
-
subtext: "Używana do wyświetlania listy numerowanej",
|
|
24
|
-
aliases: ["ol", "li", "lista", "numerowana lista"],
|
|
25
|
-
group: "Podstawowe bloki",
|
|
26
|
-
},
|
|
27
|
-
bullet_list: {
|
|
28
|
-
title: "Lista punktowana",
|
|
29
|
-
subtext: "Używana do wyświetlania listy bez numeracji",
|
|
30
|
-
aliases: ["ul", "li", "lista", "punktowana lista"],
|
|
31
|
-
group: "Podstawowe bloki",
|
|
32
|
-
},
|
|
33
|
-
check_list: {
|
|
34
|
-
title: "Lista z polami wyboru",
|
|
35
|
-
subtext: "Używana do wyświetlania listy z polami wyboru",
|
|
36
|
-
aliases: ["ul", "li", "lista", "lista z polami wyboru", "pole wyboru"],
|
|
37
|
-
group: "Podstawowe bloki",
|
|
38
|
-
},
|
|
39
|
-
paragraph: {
|
|
40
|
-
title: "Akapit",
|
|
41
|
-
subtext: "Używany dla treści dokumentu",
|
|
42
|
-
aliases: ["p", "akapit"],
|
|
43
|
-
group: "Podstawowe bloki",
|
|
44
|
-
},
|
|
45
|
-
code_block: {
|
|
46
|
-
title: "Blok kodu",
|
|
47
|
-
subtext: "Blok kodu z podświetleniem składni",
|
|
48
|
-
aliases: ["kod", "pre"],
|
|
49
|
-
group: "Podstawowe bloki",
|
|
50
|
-
},
|
|
51
|
-
table: {
|
|
52
|
-
title: "Tabela",
|
|
53
|
-
subtext: "Używana do tworzenia tabel",
|
|
54
|
-
aliases: ["tabela"],
|
|
55
|
-
group: "Zaawansowane",
|
|
56
|
-
},
|
|
57
|
-
image: {
|
|
58
|
-
title: "Zdjęcie",
|
|
59
|
-
subtext: "Wstaw zdjęcie",
|
|
60
|
-
aliases: [
|
|
61
|
-
"obraz",
|
|
62
|
-
"wrzućZdjęcie",
|
|
63
|
-
"wrzuć",
|
|
64
|
-
"img",
|
|
65
|
-
"zdjęcie",
|
|
66
|
-
"media",
|
|
67
|
-
"url",
|
|
68
|
-
],
|
|
69
|
-
group: "Media",
|
|
70
|
-
},
|
|
71
|
-
video: {
|
|
72
|
-
title: "Wideo",
|
|
73
|
-
subtext: "Wstaw wideo",
|
|
74
|
-
aliases: ["wideo", "wrzućWideo", "wrzuć", "mp4", "film", "media", "url"],
|
|
75
|
-
group: "Media",
|
|
76
|
-
},
|
|
77
|
-
audio: {
|
|
78
|
-
title: "Audio",
|
|
79
|
-
subtext: "Wstaw audio",
|
|
80
|
-
aliases: [
|
|
81
|
-
"audio",
|
|
82
|
-
"wrzućAudio",
|
|
83
|
-
"wrzuć",
|
|
84
|
-
"mp3",
|
|
85
|
-
"dźwięk",
|
|
86
|
-
"media",
|
|
87
|
-
"url",
|
|
88
|
-
],
|
|
89
|
-
group: "Media",
|
|
90
|
-
},
|
|
91
|
-
file: {
|
|
92
|
-
title: "Plik",
|
|
93
|
-
subtext: "Wstaw plik",
|
|
94
|
-
aliases: ["plik", "wrzuć", "wstaw", "media", "url"],
|
|
95
|
-
group: "Media",
|
|
96
|
-
},
|
|
97
|
-
emoji: {
|
|
98
|
-
title: "Emoji",
|
|
99
|
-
subtext: "Używane do wstawiania emoji",
|
|
100
|
-
aliases: ["emoji", "emotka", "wyrażenie emocji", "twarz"],
|
|
101
|
-
group: "Inne",
|
|
102
|
-
},
|
|
103
|
-
},
|
|
104
|
-
placeholders: {
|
|
105
|
-
default: "Wprowadź tekst lub wpisz '/' aby użyć poleceń",
|
|
106
|
-
heading: "Nagłówek",
|
|
107
|
-
bulletListItem: "Lista",
|
|
108
|
-
numberedListItem: "Lista",
|
|
109
|
-
checkListItem: "Lista",
|
|
110
|
-
},
|
|
111
|
-
file_blocks: {
|
|
112
|
-
image: {
|
|
113
|
-
add_button_text: "Dodaj zdjęcie",
|
|
114
|
-
},
|
|
115
|
-
video: {
|
|
116
|
-
add_button_text: "Dodaj wideo",
|
|
117
|
-
},
|
|
118
|
-
audio: {
|
|
119
|
-
add_button_text: "Dodaj audio",
|
|
120
|
-
},
|
|
121
|
-
file: {
|
|
122
|
-
add_button_text: "Dodaj plik",
|
|
123
|
-
},
|
|
124
|
-
},
|
|
125
|
-
side_menu: {
|
|
126
|
-
add_block_label: "Dodaj blok",
|
|
127
|
-
drag_handle_label: "Otwórz menu bloków",
|
|
128
|
-
},
|
|
129
|
-
drag_handle: {
|
|
130
|
-
delete_menuitem: "Usuń",
|
|
131
|
-
colors_menuitem: "Kolory",
|
|
132
|
-
},
|
|
133
|
-
table_handle: {
|
|
134
|
-
delete_column_menuitem: "Usuń kolumnę",
|
|
135
|
-
delete_row_menuitem: "Usuń wiersz",
|
|
136
|
-
add_left_menuitem: "Dodaj kolumnę po lewej",
|
|
137
|
-
add_right_menuitem: "Dodaj kolumnę po prawej",
|
|
138
|
-
add_above_menuitem: "Dodaj wiersz powyżej",
|
|
139
|
-
add_below_menuitem: "Dodaj wiersz poniżej",
|
|
140
|
-
},
|
|
141
|
-
suggestion_menu: {
|
|
142
|
-
no_items_title: "Nie znaleziono elementów",
|
|
143
|
-
loading: "Ładowanie…",
|
|
144
|
-
},
|
|
145
|
-
color_picker: {
|
|
146
|
-
text_title: "Tekst",
|
|
147
|
-
background_title: "Tło",
|
|
148
|
-
colors: {
|
|
149
|
-
default: "Domyślny",
|
|
150
|
-
gray: "Szary",
|
|
151
|
-
brown: "Brązowy",
|
|
152
|
-
red: "Czerwony",
|
|
153
|
-
orange: "Pomarańczowy",
|
|
154
|
-
yellow: "Żółty",
|
|
155
|
-
green: "Zielony",
|
|
156
|
-
blue: "Niebieski",
|
|
157
|
-
purple: "Fioletowy",
|
|
158
|
-
pink: "Różowy",
|
|
159
|
-
},
|
|
160
|
-
},
|
|
161
|
-
formatting_toolbar: {
|
|
162
|
-
bold: {
|
|
163
|
-
tooltip: "Pogrubienie",
|
|
164
|
-
secondary_tooltip: "Mod+B",
|
|
165
|
-
},
|
|
166
|
-
italic: {
|
|
167
|
-
tooltip: "Kursywa",
|
|
168
|
-
secondary_tooltip: "Mod+I",
|
|
169
|
-
},
|
|
170
|
-
underline: {
|
|
171
|
-
tooltip: "Podkreślenie",
|
|
172
|
-
secondary_tooltip: "Mod+U",
|
|
173
|
-
},
|
|
174
|
-
strike: {
|
|
175
|
-
tooltip: "Przekreślenie",
|
|
176
|
-
secondary_tooltip: "Mod+Shift+X",
|
|
177
|
-
},
|
|
178
|
-
code: {
|
|
179
|
-
tooltip: "Kod",
|
|
180
|
-
secondary_tooltip: "",
|
|
181
|
-
},
|
|
182
|
-
colors: {
|
|
183
|
-
tooltip: "Kolory",
|
|
184
|
-
},
|
|
185
|
-
link: {
|
|
186
|
-
tooltip: "Utwórz link",
|
|
187
|
-
secondary_tooltip: "Mod+K",
|
|
188
|
-
},
|
|
189
|
-
file_caption: {
|
|
190
|
-
tooltip: "Zmień podpis",
|
|
191
|
-
input_placeholder: "Zmień podpis",
|
|
192
|
-
},
|
|
193
|
-
file_replace: {
|
|
194
|
-
tooltip: {
|
|
195
|
-
image: "Zmień obraz",
|
|
196
|
-
video: "Zmień wideo",
|
|
197
|
-
audio: "Zmień audio",
|
|
198
|
-
file: "Zmień plik",
|
|
199
|
-
},
|
|
200
|
-
},
|
|
201
|
-
file_rename: {
|
|
202
|
-
tooltip: {
|
|
203
|
-
image: "Zmień nazwę zdjęcia",
|
|
204
|
-
video: "Zmień nazwę wideo",
|
|
205
|
-
audio: "Zmień nazwę audio",
|
|
206
|
-
file: "Zmień nazwę pliku",
|
|
207
|
-
},
|
|
208
|
-
input_placeholder: {
|
|
209
|
-
image: "Zmień nazwę zdjęcia",
|
|
210
|
-
video: "Zmień nazwę wideo",
|
|
211
|
-
audio: "Zmień nazwę audio",
|
|
212
|
-
file: "Zmień nazwę pliku",
|
|
213
|
-
},
|
|
214
|
-
},
|
|
215
|
-
file_download: {
|
|
216
|
-
tooltip: {
|
|
217
|
-
image: "Pobierz zdjęcie",
|
|
218
|
-
video: "Pobierz wideo",
|
|
219
|
-
audio: "Pobierz audio",
|
|
220
|
-
file: "Pobierz plik",
|
|
221
|
-
},
|
|
222
|
-
},
|
|
223
|
-
file_delete: {
|
|
224
|
-
tooltip: {
|
|
225
|
-
image: "Usuń zdjęcie",
|
|
226
|
-
video: "Usuń wideo",
|
|
227
|
-
audio: "Usuń audio",
|
|
228
|
-
file: "Usuń plik",
|
|
229
|
-
},
|
|
230
|
-
},
|
|
231
|
-
file_preview_toggle: {
|
|
232
|
-
tooltip: "Przełącz podgląd",
|
|
233
|
-
},
|
|
234
|
-
nest: {
|
|
235
|
-
tooltip: "Zagnieźdź blok",
|
|
236
|
-
secondary_tooltip: "Tab",
|
|
237
|
-
},
|
|
238
|
-
unnest: {
|
|
239
|
-
tooltip: "Odgagnieźdź blok",
|
|
240
|
-
secondary_tooltip: "Shift+Tab",
|
|
241
|
-
},
|
|
242
|
-
align_left: {
|
|
243
|
-
tooltip: "Wyrównaj tekst do lewej",
|
|
244
|
-
},
|
|
245
|
-
align_center: {
|
|
246
|
-
tooltip: "Wyśrodkuj tekst",
|
|
247
|
-
},
|
|
248
|
-
align_right: {
|
|
249
|
-
tooltip: "Wyrównaj tekst do prawej",
|
|
250
|
-
},
|
|
251
|
-
align_justify: {
|
|
252
|
-
tooltip: "Wyjustuj tekst",
|
|
253
|
-
},
|
|
254
|
-
},
|
|
255
|
-
file_panel: {
|
|
256
|
-
upload: {
|
|
257
|
-
title: "Wrzuć",
|
|
258
|
-
file_placeholder: {
|
|
259
|
-
image: "Wrzuć zdjęcie",
|
|
260
|
-
video: "Wrzuć wideo",
|
|
261
|
-
audio: "Wrzuć audio",
|
|
262
|
-
file: "Wrzuć plik",
|
|
263
|
-
},
|
|
264
|
-
upload_error: "Błąd: Przesyłanie nie powiodło się",
|
|
265
|
-
},
|
|
266
|
-
embed: {
|
|
267
|
-
title: "Wstaw",
|
|
268
|
-
embed_button: {
|
|
269
|
-
image: "Wstaw zdjęice",
|
|
270
|
-
video: "Wstaw wideo",
|
|
271
|
-
audio: "Wstaw audio",
|
|
272
|
-
file: "Wstaw plik",
|
|
273
|
-
},
|
|
274
|
-
url_placeholder: "Wprowadź URL",
|
|
275
|
-
},
|
|
276
|
-
},
|
|
277
|
-
link_toolbar: {
|
|
278
|
-
delete: {
|
|
279
|
-
tooltip: "Usuń link",
|
|
280
|
-
},
|
|
281
|
-
edit: {
|
|
282
|
-
text: "Edytuj link",
|
|
283
|
-
tooltip: "Edytuj",
|
|
284
|
-
},
|
|
285
|
-
open: {
|
|
286
|
-
tooltip: "Otwórz w nowej karcie",
|
|
287
|
-
},
|
|
288
|
-
form: {
|
|
289
|
-
title_placeholder: "Edytuj tytuł",
|
|
290
|
-
url_placeholder: "Edytuj URL",
|
|
291
|
-
},
|
|
292
|
-
},
|
|
293
|
-
generic: {
|
|
294
|
-
ctrl_shortcut: "Ctrl",
|
|
295
|
-
},
|
|
296
|
-
};
|
|
297
|
-
//# sourceMappingURL=pl.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pl.js","sourceRoot":"","sources":["../../../../src/i18n/locales/pl.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,305 +0,0 @@
|
|
|
1
|
-
export const pt = {
|
|
2
|
-
slash_menu: {
|
|
3
|
-
heading: {
|
|
4
|
-
title: "Título",
|
|
5
|
-
subtext: "Usado para um título de nível superior",
|
|
6
|
-
aliases: ["h", "titulo1", "h1"],
|
|
7
|
-
group: "Títulos",
|
|
8
|
-
},
|
|
9
|
-
heading_2: {
|
|
10
|
-
title: "Título 2",
|
|
11
|
-
subtext: "Usado para seções principais",
|
|
12
|
-
aliases: ["h2", "titulo2", "subtitulo"],
|
|
13
|
-
group: "Títulos",
|
|
14
|
-
},
|
|
15
|
-
heading_3: {
|
|
16
|
-
title: "Título 3",
|
|
17
|
-
subtext: "Usado para subseções e títulos de grupo",
|
|
18
|
-
aliases: ["h3", "titulo3", "subtitulo"],
|
|
19
|
-
group: "Títulos",
|
|
20
|
-
},
|
|
21
|
-
numbered_list: {
|
|
22
|
-
title: "Lista Numerada",
|
|
23
|
-
subtext: "Usado para exibir uma lista numerada",
|
|
24
|
-
aliases: ["ol", "li", "lista", "listanumerada", "lista numerada"],
|
|
25
|
-
group: "Blocos básicos",
|
|
26
|
-
},
|
|
27
|
-
bullet_list: {
|
|
28
|
-
title: "Lista com Marcadores",
|
|
29
|
-
subtext: "Usado para exibir uma lista não ordenada",
|
|
30
|
-
aliases: ["ul", "li", "lista", "listamarcadores", "lista com marcadores"],
|
|
31
|
-
group: "Blocos básicos",
|
|
32
|
-
},
|
|
33
|
-
check_list: {
|
|
34
|
-
title: "Lista de verificação",
|
|
35
|
-
subtext: "Usado para exibir uma lista com caixas de seleção",
|
|
36
|
-
aliases: [
|
|
37
|
-
"ul",
|
|
38
|
-
"li",
|
|
39
|
-
"lista",
|
|
40
|
-
"lista de verificação",
|
|
41
|
-
"lista marcada",
|
|
42
|
-
"caixa de seleção",
|
|
43
|
-
],
|
|
44
|
-
group: "Blocos básicos",
|
|
45
|
-
},
|
|
46
|
-
paragraph: {
|
|
47
|
-
title: "Parágrafo",
|
|
48
|
-
subtext: "Usado para o corpo do seu documento",
|
|
49
|
-
aliases: ["p", "paragrafo"],
|
|
50
|
-
group: "Blocos básicos",
|
|
51
|
-
},
|
|
52
|
-
code_block: {
|
|
53
|
-
title: "Bloco de Código",
|
|
54
|
-
subtext: "Usado para exibir código com destaque de sintaxe",
|
|
55
|
-
aliases: ["codigo", "pre"],
|
|
56
|
-
group: "Blocos básicos",
|
|
57
|
-
},
|
|
58
|
-
table: {
|
|
59
|
-
title: "Tabela",
|
|
60
|
-
subtext: "Usado para tabelas",
|
|
61
|
-
aliases: ["tabela"],
|
|
62
|
-
group: "Avançado",
|
|
63
|
-
},
|
|
64
|
-
image: {
|
|
65
|
-
title: "Imagem",
|
|
66
|
-
subtext: "Inserir uma imagem",
|
|
67
|
-
aliases: [
|
|
68
|
-
"imagem",
|
|
69
|
-
"uploadImagem",
|
|
70
|
-
"upload",
|
|
71
|
-
"img",
|
|
72
|
-
"foto",
|
|
73
|
-
"media",
|
|
74
|
-
"url",
|
|
75
|
-
],
|
|
76
|
-
group: "Mídia",
|
|
77
|
-
},
|
|
78
|
-
video: {
|
|
79
|
-
title: "Vídeo",
|
|
80
|
-
subtext: "Inserir um vídeo",
|
|
81
|
-
aliases: [
|
|
82
|
-
"vídeo",
|
|
83
|
-
"uploadVídeo",
|
|
84
|
-
"upload",
|
|
85
|
-
"mp4",
|
|
86
|
-
"filme",
|
|
87
|
-
"mídia",
|
|
88
|
-
"url",
|
|
89
|
-
],
|
|
90
|
-
group: "Mídia",
|
|
91
|
-
},
|
|
92
|
-
audio: {
|
|
93
|
-
title: "Áudio",
|
|
94
|
-
subtext: "Inserir um áudio",
|
|
95
|
-
aliases: ["áudio", "uploadÁudio", "upload", "mp3", "som", "mídia", "url"],
|
|
96
|
-
group: "Mídia",
|
|
97
|
-
},
|
|
98
|
-
file: {
|
|
99
|
-
title: "Arquivo",
|
|
100
|
-
subtext: "Inserir um arquivo",
|
|
101
|
-
aliases: ["arquivo", "upload", "incorporar", "mídia", "url"],
|
|
102
|
-
group: "Mídia",
|
|
103
|
-
},
|
|
104
|
-
emoji: {
|
|
105
|
-
title: "Emoji",
|
|
106
|
-
subtext: "Usado para inserir um emoji",
|
|
107
|
-
aliases: ["emoji", "emoticon", "expressão emocional", "rosto"],
|
|
108
|
-
group: "Outros",
|
|
109
|
-
},
|
|
110
|
-
},
|
|
111
|
-
placeholders: {
|
|
112
|
-
default: "Digite texto ou use '/' para comandos",
|
|
113
|
-
heading: "Título",
|
|
114
|
-
bulletListItem: "Lista",
|
|
115
|
-
numberedListItem: "Lista",
|
|
116
|
-
checkListItem: "Lista",
|
|
117
|
-
},
|
|
118
|
-
file_blocks: {
|
|
119
|
-
image: {
|
|
120
|
-
add_button_text: "Adicionar imagem",
|
|
121
|
-
},
|
|
122
|
-
video: {
|
|
123
|
-
add_button_text: "Adicionar vídeo",
|
|
124
|
-
},
|
|
125
|
-
audio: {
|
|
126
|
-
add_button_text: "Adicionar áudio",
|
|
127
|
-
},
|
|
128
|
-
file: {
|
|
129
|
-
add_button_text: "Adicionar arquivo",
|
|
130
|
-
},
|
|
131
|
-
},
|
|
132
|
-
// from react package:
|
|
133
|
-
side_menu: {
|
|
134
|
-
add_block_label: "Adicionar bloco",
|
|
135
|
-
drag_handle_label: "Abrir menu do bloco",
|
|
136
|
-
},
|
|
137
|
-
drag_handle: {
|
|
138
|
-
delete_menuitem: "Excluir",
|
|
139
|
-
colors_menuitem: "Cores",
|
|
140
|
-
},
|
|
141
|
-
table_handle: {
|
|
142
|
-
delete_column_menuitem: "Excluir coluna",
|
|
143
|
-
delete_row_menuitem: "Excluir linha",
|
|
144
|
-
add_left_menuitem: "Adicionar coluna à esquerda",
|
|
145
|
-
add_right_menuitem: "Adicionar coluna à direita",
|
|
146
|
-
add_above_menuitem: "Adicionar linha acima",
|
|
147
|
-
add_below_menuitem: "Adicionar linha abaixo",
|
|
148
|
-
},
|
|
149
|
-
suggestion_menu: {
|
|
150
|
-
no_items_title: "Nenhum item encontrado",
|
|
151
|
-
loading: "Carregando…",
|
|
152
|
-
},
|
|
153
|
-
color_picker: {
|
|
154
|
-
text_title: "Texto",
|
|
155
|
-
background_title: "Fundo",
|
|
156
|
-
colors: {
|
|
157
|
-
default: "Padrão",
|
|
158
|
-
gray: "Cinza",
|
|
159
|
-
brown: "Marrom",
|
|
160
|
-
red: "Vermelho",
|
|
161
|
-
orange: "Laranja",
|
|
162
|
-
yellow: "Amarelo",
|
|
163
|
-
green: "Verde",
|
|
164
|
-
blue: "Azul",
|
|
165
|
-
purple: "Roxo",
|
|
166
|
-
pink: "Rosa",
|
|
167
|
-
},
|
|
168
|
-
},
|
|
169
|
-
formatting_toolbar: {
|
|
170
|
-
bold: {
|
|
171
|
-
tooltip: "Negrito",
|
|
172
|
-
secondary_tooltip: "Mod+B",
|
|
173
|
-
},
|
|
174
|
-
italic: {
|
|
175
|
-
tooltip: "Itálico",
|
|
176
|
-
secondary_tooltip: "Mod+I",
|
|
177
|
-
},
|
|
178
|
-
underline: {
|
|
179
|
-
tooltip: "Sublinhado",
|
|
180
|
-
secondary_tooltip: "Mod+U",
|
|
181
|
-
},
|
|
182
|
-
strike: {
|
|
183
|
-
tooltip: "Riscado",
|
|
184
|
-
secondary_tooltip: "Mod+Shift+X",
|
|
185
|
-
},
|
|
186
|
-
code: {
|
|
187
|
-
tooltip: "Código",
|
|
188
|
-
secondary_tooltip: "",
|
|
189
|
-
},
|
|
190
|
-
colors: {
|
|
191
|
-
tooltip: "Cores",
|
|
192
|
-
},
|
|
193
|
-
link: {
|
|
194
|
-
tooltip: "Criar link",
|
|
195
|
-
secondary_tooltip: "Mod+K",
|
|
196
|
-
},
|
|
197
|
-
file_caption: {
|
|
198
|
-
tooltip: "Editar legenda",
|
|
199
|
-
input_placeholder: "Editar legenda",
|
|
200
|
-
},
|
|
201
|
-
file_replace: {
|
|
202
|
-
tooltip: {
|
|
203
|
-
image: "Substituir imagem",
|
|
204
|
-
video: "Substituir vídeo",
|
|
205
|
-
audio: "Substituir áudio",
|
|
206
|
-
file: "Substituir arquivo",
|
|
207
|
-
},
|
|
208
|
-
},
|
|
209
|
-
file_rename: {
|
|
210
|
-
tooltip: {
|
|
211
|
-
image: "Renomear imagem",
|
|
212
|
-
video: "Renomear vídeo",
|
|
213
|
-
audio: "Renomear áudio",
|
|
214
|
-
file: "Renomear arquivo",
|
|
215
|
-
},
|
|
216
|
-
input_placeholder: {
|
|
217
|
-
image: "Renomear imagem",
|
|
218
|
-
video: "Renomear vídeo",
|
|
219
|
-
audio: "Renomear áudio",
|
|
220
|
-
file: "Renomear arquivo",
|
|
221
|
-
},
|
|
222
|
-
},
|
|
223
|
-
file_download: {
|
|
224
|
-
tooltip: {
|
|
225
|
-
image: "Baixar imagem",
|
|
226
|
-
video: "Baixar vídeo",
|
|
227
|
-
audio: "Baixar áudio",
|
|
228
|
-
file: "Baixar arquivo",
|
|
229
|
-
},
|
|
230
|
-
},
|
|
231
|
-
file_delete: {
|
|
232
|
-
tooltip: {
|
|
233
|
-
image: "Excluir imagem",
|
|
234
|
-
video: "Excluir vídeo",
|
|
235
|
-
audio: "Excluir áudio",
|
|
236
|
-
file: "Excluir arquivo",
|
|
237
|
-
},
|
|
238
|
-
},
|
|
239
|
-
file_preview_toggle: {
|
|
240
|
-
tooltip: "Alternar visualização",
|
|
241
|
-
},
|
|
242
|
-
nest: {
|
|
243
|
-
tooltip: "Aninhar bloco",
|
|
244
|
-
secondary_tooltip: "Tab",
|
|
245
|
-
},
|
|
246
|
-
unnest: {
|
|
247
|
-
tooltip: "Desaninhar bloco",
|
|
248
|
-
secondary_tooltip: "Shift+Tab",
|
|
249
|
-
},
|
|
250
|
-
align_left: {
|
|
251
|
-
tooltip: "Alinhar à esquerda",
|
|
252
|
-
},
|
|
253
|
-
align_center: {
|
|
254
|
-
tooltip: "Alinhar ao centro",
|
|
255
|
-
},
|
|
256
|
-
align_right: {
|
|
257
|
-
tooltip: "Alinhar à direita",
|
|
258
|
-
},
|
|
259
|
-
align_justify: {
|
|
260
|
-
tooltip: "Justificar texto",
|
|
261
|
-
},
|
|
262
|
-
},
|
|
263
|
-
file_panel: {
|
|
264
|
-
upload: {
|
|
265
|
-
title: "Upload",
|
|
266
|
-
file_placeholder: {
|
|
267
|
-
image: "Upload de imagem",
|
|
268
|
-
video: "Upload de vídeo",
|
|
269
|
-
audio: "Upload de áudio",
|
|
270
|
-
file: "Upload de arquivo",
|
|
271
|
-
},
|
|
272
|
-
upload_error: "Erro: Falha no upload",
|
|
273
|
-
},
|
|
274
|
-
embed: {
|
|
275
|
-
title: "Incorporar",
|
|
276
|
-
embed_button: {
|
|
277
|
-
image: "Incorporar imagem",
|
|
278
|
-
video: "Incorporar vídeo",
|
|
279
|
-
audio: "Incorporar áudio",
|
|
280
|
-
file: "Incorporar arquivo",
|
|
281
|
-
},
|
|
282
|
-
url_placeholder: "Insira a URL",
|
|
283
|
-
},
|
|
284
|
-
},
|
|
285
|
-
link_toolbar: {
|
|
286
|
-
delete: {
|
|
287
|
-
tooltip: "Remover link",
|
|
288
|
-
},
|
|
289
|
-
edit: {
|
|
290
|
-
text: "Editar link",
|
|
291
|
-
tooltip: "Editar",
|
|
292
|
-
},
|
|
293
|
-
open: {
|
|
294
|
-
tooltip: "Abrir em nova aba",
|
|
295
|
-
},
|
|
296
|
-
form: {
|
|
297
|
-
title_placeholder: "Editar título",
|
|
298
|
-
url_placeholder: "Editar URL",
|
|
299
|
-
},
|
|
300
|
-
},
|
|
301
|
-
generic: {
|
|
302
|
-
ctrl_shortcut: "Ctrl",
|
|
303
|
-
},
|
|
304
|
-
};
|
|
305
|
-
//# sourceMappingURL=pt.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pt.js","sourceRoot":"","sources":["../../../../src/i18n/locales/pt.ts"],"names":[],"mappings":"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"}
|