@blocknote/core 0.32.0-hackdays.0 → 0.33.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.cjs +9 -9
- package/dist/blocknote.cjs.map +1 -1
- package/dist/blocknote.js +2193 -1961
- package/dist/blocknote.js.map +1 -1
- package/dist/en-CsgPjHa4.cjs +2 -0
- package/dist/en-CsgPjHa4.cjs.map +1 -0
- package/dist/{en-qGo6sk9V.js → en-Dx9fwHD4.js} +47 -1
- package/dist/en-Dx9fwHD4.js.map +1 -0
- package/dist/locales.cjs +1 -1
- package/dist/locales.cjs.map +1 -1
- package/dist/locales.js +1453 -30
- package/dist/locales.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/webpack-stats.json +1 -1
- package/package.json +1 -1
- package/src/api/blockManipulation/commands/insertBlocks/__snapshots__/insertBlocks.test.ts.snap +18 -0
- package/src/api/blockManipulation/commands/mergeBlocks/__snapshots__/mergeBlocks.test.ts.snap +10 -0
- package/src/api/blockManipulation/commands/moveBlocks/__snapshots__/moveBlocks.test.ts.snap +40 -0
- package/src/api/blockManipulation/commands/replaceBlocks/__snapshots__/replaceBlocks.test.ts.snap +23 -0
- package/src/api/blockManipulation/commands/splitBlock/__snapshots__/splitBlock.test.ts.snap +13 -0
- package/src/api/blockManipulation/commands/updateBlock/__snapshots__/updateBlock.test.ts.snap +50 -0
- package/src/blocks/HeadingBlockContent/HeadingBlockContent.ts +72 -74
- package/src/blocks/ListItemBlockContent/ListItemKeyboardShortcuts.ts +1 -0
- package/src/blocks/ListItemBlockContent/ToggleListItemBlockContent/ToggleListItemBlockContent.ts +104 -0
- package/src/blocks/ToggleWrapper/createToggleWrapper.ts +182 -0
- package/src/blocks/defaultBlockTypeGuards.ts +6 -2
- package/src/blocks/defaultBlocks.ts +2 -0
- package/src/editor/Block.css +112 -25
- package/src/editor/BlockNoteEditor.test.ts +1 -0
- package/src/editor/BlockNoteEditor.ts +18 -0
- package/src/editor/BlockNoteExtensions.ts +1 -1
- package/src/editor/BlockNoteTipTapEditor.ts +1 -0
- package/src/editor/editor.css +3 -0
- package/src/extensions/Collaboration/CursorPlugin.ts +33 -2
- package/src/extensions/Collaboration/ForkYDocPlugin.ts +26 -8
- package/src/extensions/Collaboration/UndoPlugin.ts +3 -2
- package/src/extensions/FormattingToolbar/FormattingToolbarPlugin.ts +4 -1
- package/src/extensions/KeyboardShortcuts/KeyboardShortcutsExtension.ts +16 -4
- package/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts +64 -0
- package/src/i18n/locales/ar.ts +46 -0
- package/src/i18n/locales/de.ts +65 -0
- package/src/i18n/locales/en.ts +46 -0
- package/src/i18n/locales/es.ts +46 -0
- package/src/i18n/locales/fr.ts +68 -0
- package/src/i18n/locales/he.ts +402 -0
- package/src/i18n/locales/hr.ts +46 -0
- package/src/i18n/locales/index.ts +1 -0
- package/src/i18n/locales/is.ts +67 -0
- package/src/i18n/locales/it.ts +67 -0
- package/src/i18n/locales/ja.ts +66 -0
- package/src/i18n/locales/ko.ts +46 -0
- package/src/i18n/locales/nl.ts +47 -0
- package/src/i18n/locales/no.ts +64 -0
- package/src/i18n/locales/pl.ts +52 -0
- package/src/i18n/locales/pt.ts +46 -0
- package/src/i18n/locales/ru.ts +62 -0
- package/src/i18n/locales/sk.ts +46 -0
- package/src/i18n/locales/uk.ts +46 -0
- package/src/i18n/locales/vi.ts +46 -0
- package/src/i18n/locales/zh-tw.ts +54 -0
- package/src/i18n/locales/zh.ts +54 -0
- package/src/index.ts +1 -0
- package/src/schema/blocks/createSpec.ts +3 -1
- package/src/util/browser.ts +11 -1
- package/types/src/api/blockManipulation/setupTestEnv.d.ts +42 -2
- package/types/src/blocks/HeadingBlockContent/HeadingBlockContent.d.ts +12 -3
- package/types/src/blocks/ListItemBlockContent/ToggleListItemBlockContent/ToggleListItemBlockContent.d.ts +46 -0
- package/types/src/blocks/ToggleWrapper/createToggleWrapper.d.ts +15 -0
- package/types/src/blocks/defaultBlockTypeGuards.d.ts +2 -2
- package/types/src/blocks/defaultBlocks.d.ts +84 -4
- package/types/src/editor/BlockNoteEditor.d.ts +14 -0
- package/types/src/extensions/Collaboration/CursorPlugin.d.ts +6 -0
- package/types/src/extensions/Collaboration/UndoPlugin.d.ts +4 -1
- package/types/src/i18n/locales/en.d.ts +45 -0
- package/types/src/i18n/locales/he.d.ts +2 -0
- package/types/src/i18n/locales/index.d.ts +1 -0
- package/types/src/i18n/locales/sk.d.ts +45 -0
- package/types/src/index.d.ts +1 -0
- package/types/src/schema/blocks/createSpec.d.ts +2 -1
- package/dist/en-BXVKCwYt.cjs +0 -2
- package/dist/en-BXVKCwYt.cjs.map +0 -1
- package/dist/en-qGo6sk9V.js.map +0 -1
- package/types/src/api/blockManipulation/selections/selection.test.d.ts +0 -1
- package/types/src/api/blockManipulation/selections/textCursorPosition/textCursorPosition.d.ts +0 -5
- package/types/src/api/blockManipulation/selections/textCursorPosition/textCursorPosition.test.d.ts +0 -1
- package/types/src/extensions/Collaboration/createCollaborationExtensions.d.ts +0 -17
package/dist/webpack-stats.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"builtAt":1748940573261,"assets":[{"name":"blocknote.cjs","size":191055},{"name":"comments.cjs","size":11826},{"name":"locales.cjs","size":122928},{"name":"en-BXVKCwYt.cjs","size":5518},{"name":"en-BXVKCwYt.cjs.map","size":12761},{"name":"comments.cjs.map","size":47628},{"name":"locales.cjs.map","size":259333},{"name":"blocknote.cjs.map","size":913837}],"chunks":[{"id":"a1ee98a","entry":true,"initial":true,"files":["blocknote.cjs"],"names":["blocknote"]},{"id":"1627b02","entry":true,"initial":true,"files":["comments.cjs"],"names":["comments"]},{"id":"9eaffe2","entry":true,"initial":true,"files":["locales.cjs"],"names":["locales"]},{"id":"a1e239a","entry":false,"initial":true,"files":["en-BXVKCwYt.cjs"],"names":["en"]}],"modules":[{"name":"./src/extensions/UniqueID/UniqueID.ts","size":9054,"chunks":["a1ee98a"]},{"name":"./src/schema/inlineContent/types.ts","size":302,"chunks":["a1ee98a"]},{"name":"./src/util/table.ts","size":1212,"chunks":["a1ee98a"]},{"name":"./src/util/typescript.ts","size":331,"chunks":["a1ee98a"]},{"name":"./src/util/browser.ts","size":536,"chunks":["a1ee98a"]},{"name":"./src/blocks/defaultBlockHelpers.ts","size":2080,"chunks":["a1ee98a"]},{"name":"./src/blocks/defaultProps.ts","size":269,"chunks":["a1ee98a"]},{"name":"./src/util/string.ts","size":299,"chunks":["a1ee98a"]},{"name":"./src/schema/blocks/internal.ts","size":4072,"chunks":["a1ee98a"]},{"name":"./src/schema/blocks/createSpec.ts","size":3612,"chunks":["a1ee98a"]},{"name":"./src/api/getBlockInfoFromPos.ts","size":3797,"chunks":["a1ee98a"]},{"name":"./src/api/pmUtil.ts","size":651,"chunks":["a1ee98a"]},{"name":"./src/api/nodeConversions/nodeToBlock.ts","size":13005,"chunks":["a1ee98a"]},{"name":"./src/schema/inlineContent/internal.ts","size":1398,"chunks":["a1ee98a"]},{"name":"./src/schema/inlineContent/createSpec.ts","size":2559,"chunks":["a1ee98a"]},{"name":"./src/schema/styles/internal.ts","size":1162,"chunks":["a1ee98a"]},{"name":"./src/schema/styles/createSpec.ts","size":1263,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/tables/tables.ts","size":10346,"chunks":["a1ee98a"]},{"name":"./src/api/nodeConversions/blockToNode.ts","size":7193,"chunks":["a1ee98a"]},{"name":"./src/api/nodeUtil.ts","size":3150,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/commands/insertBlocks/insertBlocks.ts","size":785,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/commands/replaceBlocks/replaceBlocks.ts","size":1876,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/commands/updateBlock/updateBlock.ts","size":5637,"chunks":["a1ee98a"]},{"name":"./src/api/exporters/html/util/serializeBlocksExternalHTML.ts","size":5025,"chunks":["a1ee98a"]},{"name":"./src/api/exporters/html/externalHTMLExporter.ts","size":886,"chunks":["a1ee98a"]},{"name":"./src/api/exporters/html/util/serializeBlocksInternalHTML.ts","size":3099,"chunks":["a1ee98a"]},{"name":"./src/api/exporters/html/internalHTMLSerializer.ts","size":288,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/helpers/parse/parseFigureElement.ts","size":342,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/helpers/render/createAddFileButton.ts","size":1710,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/helpers/render/createFileNameWithIcon.ts","size":753,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/helpers/render/createFileBlockWrapper.ts","size":1428,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/helpers/toExternalHTML/createFigureWithCaption.ts","size":307,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/helpers/toExternalHTML/createLinkWithCaption.ts","size":294,"chunks":["a1ee98a"]},{"name":"./src/blocks/AudioBlockContent/parseAudioElement.ts","size":108,"chunks":["a1ee98a"]},{"name":"./src/blocks/AudioBlockContent/AudioBlockContent.ts","size":3219,"chunks":["a1ee98a"]},{"name":"./src/blocks/CodeBlockContent/CodeBlockContent.ts","size":9248,"chunks":["a1ee98a"]},{"name":"./src/extensions/BackgroundColor/BackgroundColorMark.ts","size":946,"chunks":["a1ee98a"]},{"name":"./src/extensions/TextColor/TextColorMark.ts","size":866,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/helpers/parse/parseEmbedElement.ts","size":108,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/FileBlockContent.ts","size":1524,"chunks":["a1ee98a"]},{"name":"./src/blocks/HeadingBlockContent/HeadingBlockContent.ts","size":3376,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/helpers/render/createResizableFileBlockWrapper.ts","size":4836,"chunks":["a1ee98a"]},{"name":"./src/blocks/ImageBlockContent/parseImageElement.ts","size":175,"chunks":["a1ee98a"]},{"name":"./src/blocks/ImageBlockContent/ImageBlockContent.ts","size":3374,"chunks":["a1ee98a"]},{"name":"./src/blocks/ListItemBlockContent/getListItemContent.ts","size":1425,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/commands/splitBlock/splitBlock.ts","size":868,"chunks":["a1ee98a"]},{"name":"./src/blocks/ListItemBlockContent/ListItemKeyboardShortcuts.ts","size":1443,"chunks":["a1ee98a"]},{"name":"./src/blocks/ListItemBlockContent/BulletListItemBlockContent/BulletListItemBlockContent.ts","size":3121,"chunks":["a1ee98a"]},{"name":"./src/blocks/ListItemBlockContent/CheckListItemBlockContent/CheckListItemBlockContent.ts","size":7286,"chunks":["a1ee98a"]},{"name":"./src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListIndexingPlugin.ts","size":2207,"chunks":["a1ee98a"]},{"name":"./src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListItemBlockContent.ts","size":4057,"chunks":["a1ee98a"]},{"name":"./src/blocks/ParagraphBlockContent/ParagraphBlockContent.ts","size":1520,"chunks":["a1ee98a"]},{"name":"./src/blocks/QuoteBlockContent/QuoteBlockContent.ts","size":1953,"chunks":["a1ee98a"]},{"name":"./src/blocks/TableBlockContent/TableExtension.ts","size":2297,"chunks":["a1ee98a"]},{"name":"./src/blocks/TableBlockContent/TableBlockContent.ts","size":6183,"chunks":["a1ee98a"]},{"name":"./src/blocks/VideoBlockContent/parseVideoElement.ts","size":175,"chunks":["a1ee98a"]},{"name":"./src/blocks/VideoBlockContent/VideoBlockContent.ts","size":3293,"chunks":["a1ee98a"]},{"name":"./src/blocks/defaultBlocks.ts","size":1163,"chunks":["a1ee98a"]},{"name":"./src/blocks/defaultBlockTypeGuards.ts","size":1688,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/uploadToTmpFilesDotOrg_DEV_ONLY.ts","size":316,"chunks":["a1ee98a"]},{"name":"./src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts","size":7012,"chunks":["a1ee98a"]},{"name":"./src/editor/BlockNoteSchema.ts","size":1044,"chunks":["a1ee98a"]},{"name":"./src/blocks/PageBreakBlockContent/PageBreakBlockContent.ts","size":854,"chunks":["a1ee98a"]},{"name":"./src/blocks/PageBreakBlockContent/schema.ts","size":350,"chunks":["a1ee98a"]},{"name":"./src/blocks/PageBreakBlockContent/getPageBreakSlashMenuItems.ts","size":536,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/commands/moveBlocks/moveBlocks.ts","size":5642,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/commands/nestBlock/nestBlock.ts","size":2284,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/getBlock/getBlock.ts","size":1895,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/insertContentAt.ts","size":1049,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/selections/selection.ts","size":5093,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/selections/textCursorPosition.ts","size":2430,"chunks":["a1ee98a"]},{"name":"./src/util/esmDependencies.ts","size":820,"chunks":["a1ee98a"]},{"name":"./src/api/exporters/markdown/removeUnderlinesRehypePlugin.ts","size":752,"chunks":["a1ee98a"]},{"name":"./src/api/exporters/markdown/util/addSpacesToCheckboxesRehypePlugin.ts","size":969,"chunks":["a1ee98a"]},{"name":"./src/api/exporters/markdown/markdownExporter.ts","size":837,"chunks":["a1ee98a"]},{"name":"./src/api/parsers/html/util/nestedLists.ts","size":2174,"chunks":["a1ee98a"]},{"name":"./src/api/parsers/html/parseHTML.ts","size":429,"chunks":["a1ee98a"]},{"name":"./src/api/parsers/markdown/parseMarkdown.ts","size":1129,"chunks":["a1ee98a"]},{"name":"./src/api/clipboard/fromClipboard/acceptedMIMETypes.ts","size":134,"chunks":["a1ee98a"]},{"name":"./src/api/clipboard/fromClipboard/handleFileInsertion.ts","size":3928,"chunks":["a1ee98a"]},{"name":"./src/api/clipboard/fromClipboard/fileDropExtension.ts","size":884,"chunks":["a1ee98a"]},{"name":"./src/api/parsers/markdown/detectMarkdown.ts","size":1112,"chunks":["a1ee98a"]},{"name":"./src/api/clipboard/fromClipboard/handleVSCodePaste.ts","size":661,"chunks":["a1ee98a"]},{"name":"./src/api/clipboard/fromClipboard/pasteExtension.ts","size":2412,"chunks":["a1ee98a"]},{"name":"./src/api/nodeConversions/fragmentToBlocks.ts","size":629,"chunks":["a1ee98a"]},{"name":"./src/api/clipboard/toClipboard/copyExtension.ts","size":5159,"chunks":["a1ee98a"]},{"name":"./src/extensions/BackgroundColor/BackgroundColorExtension.ts","size":819,"chunks":["a1ee98a"]},{"name":"./src/util/EventEmitter.ts","size":744,"chunks":["a1ee98a"]},{"name":"./src/editor/BlockNoteExtension.ts","size":345,"chunks":["a1ee98a"]},{"name":"./src/extensions/Collaboration/CursorPlugin.ts","size":3785,"chunks":["a1ee98a"]},{"name":"./src/extensions/Collaboration/SyncPlugin.ts","size":244,"chunks":["a1ee98a"]},{"name":"./src/extensions/Collaboration/UndoPlugin.ts","size":227,"chunks":["a1ee98a"]},{"name":"./src/extensions/Comments/CommentMark.ts","size":1428,"chunks":["a1ee98a"]},{"name":"./src/extensions/Comments/userstore/UserStore.ts","size":1354,"chunks":["a1ee98a"]},{"name":"./src/extensions/Comments/CommentsPlugin.ts","size":7815,"chunks":["a1ee98a"]},{"name":"./src/extensions/FilePanel/FilePanelPlugin.ts","size":4135,"chunks":["a1ee98a"]},{"name":"./src/extensions/FormattingToolbar/FormattingToolbarPlugin.ts","size":6083,"chunks":["a1ee98a"]},{"name":"./src/extensions/HardBreak/HardBreak.ts","size":376,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/commands/mergeBlocks/mergeBlocks.ts","size":3228,"chunks":["a1ee98a"]},{"name":"./src/extensions/KeyboardShortcuts/KeyboardShortcutsExtension.ts","size":18080,"chunks":["a1ee98a"]},{"name":"./src/extensions/LinkToolbar/LinkToolbarPlugin.ts","size":7699,"chunks":["a1ee98a"]},{"name":"./src/extensions/LinkToolbar/protocols.ts","size":172,"chunks":["a1ee98a"]},{"name":"./src/extensions/NodeSelectionKeyboard/NodeSelectionKeyboardPlugin.ts","size":1367,"chunks":["a1ee98a"]},{"name":"./src/extensions/Placeholder/PlaceholderPlugin.ts","size":3895,"chunks":["a1ee98a"]},{"name":"./src/extensions/PreviousBlockType/PreviousBlockTypePlugin.ts","size":5232,"chunks":["a1ee98a"]},{"name":"./src/extensions/ShowSelection/ShowSelectionPlugin.ts","size":1043,"chunks":["a1ee98a"]},{"name":"./src/extensions/getDraggableBlockFromElement.ts","size":404,"chunks":["a1ee98a"]},{"name":"./src/extensions/SideMenu/MultipleNodeSelection.ts","size":1700,"chunks":["a1ee98a"]},{"name":"./src/extensions/SideMenu/dragging.ts","size":4718,"chunks":["a1ee98a"]},{"name":"./src/extensions/SideMenu/SideMenuPlugin.ts","size":14178,"chunks":["a1ee98a"]},{"name":"./src/api/positionMapping.ts","size":1652,"chunks":["a1ee98a"]},{"name":"./src/extensions/SuggestionMenu/SuggestionPlugin.ts","size":9360,"chunks":["a1ee98a"]},{"name":"./src/extensions/Suggestions/SuggestionMarks.ts","size":4452,"chunks":["a1ee98a"]},{"name":"./src/extensions/TableHandles/TableHandlesPlugin.ts","size":27335,"chunks":["a1ee98a"]},{"name":"./src/extensions/TextAlignment/TextAlignmentExtension.ts","size":976,"chunks":["a1ee98a"]},{"name":"./src/extensions/TextColor/TextColorExtension.ts","size":753,"chunks":["a1ee98a"]},{"name":"./src/extensions/TrailingNode/TrailingNodeExtension.ts","size":1563,"chunks":["a1ee98a"]},{"name":"./src/pm-nodes/BlockContainer.ts","size":2170,"chunks":["a1ee98a"]},{"name":"./src/pm-nodes/BlockGroup.ts","size":1146,"chunks":["a1ee98a"]},{"name":"./src/pm-nodes/Doc.ts","size":134,"chunks":["a1ee98a"]},{"name":"./src/extensions/Collaboration/ForkYDocPlugin.ts","size":3911,"chunks":["a1ee98a"]},{"name":"./src/editor/BlockNoteExtensions.ts","size":5400,"chunks":["a1ee98a"]},{"name":"./src/editor/transformPasted.ts","size":2604,"chunks":["a1ee98a"]},{"name":"./src/editor/BlockNoteTipTapEditor.ts","size":5702,"chunks":["a1ee98a"]},{"name":"./src/style.css","size":0,"chunks":["a1ee98a"]},{"name":"./src/editor/BlockNoteEditor.ts","size":37455,"chunks":["a1ee98a"]},{"name":"./src/editor/defaultColors.ts","size":1193,"chunks":["a1ee98a"]},{"name":"./src/exporter/Exporter.ts","size":1075,"chunks":["a1ee98a"]},{"name":"./src/exporter/mapping.ts","size":197,"chunks":["a1ee98a"]},{"name":"./src/extensions/SuggestionMenu/getDefaultEmojiPickerItems.ts","size":1204,"chunks":["a1ee98a"]},{"name":"./src/util/combineByGroup.ts","size":550,"chunks":["a1ee98a"]},{"name":"./src/index.ts","size":0,"chunks":["a1ee98a"]},{"name":"./src/comments/threadstore/ThreadStoreAuth.ts","size":25,"chunks":["1627b02"]},{"name":"./src/comments/threadstore/DefaultThreadStoreAuth.ts","size":2014,"chunks":["1627b02"]},{"name":"./src/comments/threadstore/ThreadStore.ts","size":77,"chunks":["1627b02"]},{"name":"./src/comments/threadstore/TipTapThreadStore.ts","size":5321,"chunks":["1627b02"]},{"name":"./src/comments/threadstore/yjs/yjsHelpers.ts","size":3002,"chunks":["1627b02"]},{"name":"./src/comments/threadstore/yjs/YjsThreadStoreBase.ts","size":790,"chunks":["1627b02"]},{"name":"./src/comments/threadstore/yjs/RESTYjsThreadStore.ts","size":2069,"chunks":["1627b02"]},{"name":"./src/comments/threadstore/yjs/YjsThreadStore.ts","size":7267,"chunks":["1627b02"]},{"name":"./src/comments/index.ts","size":0,"chunks":["1627b02"]},{"name":"./src/i18n/locales/ar.ts","size":7874,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/de.ts","size":8600,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/es.ts","size":8457,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/fr.ts","size":9228,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/hr.ts","size":8490,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/is.ts","size":8222,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/it.ts","size":8553,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/ja.ts","size":7485,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/ko.ts","size":7261,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/nl.ts","size":8458,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/no.ts","size":8333,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/pl.ts","size":8145,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/pt.ts","size":8391,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/ru.ts","size":9077,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/sk.ts","size":8288,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/uk.ts","size":9004,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/vi.ts","size":8253,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/zh.ts","size":7179,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/zh-tw.ts","size":7204,"chunks":["9eaffe2"]},{"name":"./src/i18n/index.ts","size":0,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/en.ts","size":7979,"chunks":["a1e239a"]}]}
|
|
1
|
+
{"builtAt":1751535590966,"assets":[{"name":"blocknote.cjs","size":196681},{"name":"comments.cjs","size":11826},{"name":"locales.cjs","size":157807},{"name":"en-CsgPjHa4.cjs","size":6613},{"name":"en-CsgPjHa4.cjs.map","size":14979},{"name":"comments.cjs.map","size":47628},{"name":"locales.cjs.map","size":326018},{"name":"blocknote.cjs.map","size":935944}],"chunks":[{"id":"a1ee98a","entry":true,"initial":true,"files":["blocknote.cjs"],"names":["blocknote"]},{"id":"1627b02","entry":true,"initial":true,"files":["comments.cjs"],"names":["comments"]},{"id":"9eaffe2","entry":true,"initial":true,"files":["locales.cjs"],"names":["locales"]},{"id":"a1e239a","entry":false,"initial":true,"files":["en-CsgPjHa4.cjs"],"names":["en"]}],"modules":[{"name":"./src/extensions/UniqueID/UniqueID.ts","size":9054,"chunks":["a1ee98a"]},{"name":"./src/schema/inlineContent/types.ts","size":302,"chunks":["a1ee98a"]},{"name":"./src/util/table.ts","size":1212,"chunks":["a1ee98a"]},{"name":"./src/util/typescript.ts","size":331,"chunks":["a1ee98a"]},{"name":"./src/util/browser.ts","size":643,"chunks":["a1ee98a"]},{"name":"./src/blocks/defaultBlockHelpers.ts","size":2080,"chunks":["a1ee98a"]},{"name":"./src/blocks/defaultProps.ts","size":269,"chunks":["a1ee98a"]},{"name":"./src/util/string.ts","size":299,"chunks":["a1ee98a"]},{"name":"./src/schema/blocks/internal.ts","size":4072,"chunks":["a1ee98a"]},{"name":"./src/schema/blocks/createSpec.ts","size":3647,"chunks":["a1ee98a"]},{"name":"./src/api/getBlockInfoFromPos.ts","size":3797,"chunks":["a1ee98a"]},{"name":"./src/api/pmUtil.ts","size":651,"chunks":["a1ee98a"]},{"name":"./src/api/nodeConversions/nodeToBlock.ts","size":13005,"chunks":["a1ee98a"]},{"name":"./src/schema/inlineContent/internal.ts","size":1398,"chunks":["a1ee98a"]},{"name":"./src/schema/inlineContent/createSpec.ts","size":2559,"chunks":["a1ee98a"]},{"name":"./src/schema/styles/internal.ts","size":1162,"chunks":["a1ee98a"]},{"name":"./src/schema/styles/createSpec.ts","size":1263,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/tables/tables.ts","size":10346,"chunks":["a1ee98a"]},{"name":"./src/api/nodeConversions/blockToNode.ts","size":7193,"chunks":["a1ee98a"]},{"name":"./src/api/nodeUtil.ts","size":3150,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/commands/insertBlocks/insertBlocks.ts","size":785,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/commands/replaceBlocks/replaceBlocks.ts","size":1876,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/commands/updateBlock/updateBlock.ts","size":5637,"chunks":["a1ee98a"]},{"name":"./src/api/exporters/html/util/serializeBlocksExternalHTML.ts","size":5025,"chunks":["a1ee98a"]},{"name":"./src/api/exporters/html/externalHTMLExporter.ts","size":886,"chunks":["a1ee98a"]},{"name":"./src/api/exporters/html/util/serializeBlocksInternalHTML.ts","size":3099,"chunks":["a1ee98a"]},{"name":"./src/api/exporters/html/internalHTMLSerializer.ts","size":288,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/helpers/parse/parseFigureElement.ts","size":342,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/helpers/render/createAddFileButton.ts","size":1710,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/helpers/render/createFileNameWithIcon.ts","size":753,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/helpers/render/createFileBlockWrapper.ts","size":1428,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/helpers/toExternalHTML/createFigureWithCaption.ts","size":307,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/helpers/toExternalHTML/createLinkWithCaption.ts","size":294,"chunks":["a1ee98a"]},{"name":"./src/blocks/AudioBlockContent/parseAudioElement.ts","size":108,"chunks":["a1ee98a"]},{"name":"./src/blocks/AudioBlockContent/AudioBlockContent.ts","size":3219,"chunks":["a1ee98a"]},{"name":"./src/blocks/CodeBlockContent/CodeBlockContent.ts","size":9248,"chunks":["a1ee98a"]},{"name":"./src/extensions/BackgroundColor/BackgroundColorMark.ts","size":946,"chunks":["a1ee98a"]},{"name":"./src/extensions/TextColor/TextColorMark.ts","size":866,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/helpers/parse/parseEmbedElement.ts","size":108,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/FileBlockContent.ts","size":1524,"chunks":["a1ee98a"]},{"name":"./src/blocks/ToggleWrapper/createToggleWrapper.ts","size":5121,"chunks":["a1ee98a"]},{"name":"./src/blocks/HeadingBlockContent/HeadingBlockContent.ts","size":3467,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/helpers/render/createResizableFileBlockWrapper.ts","size":4836,"chunks":["a1ee98a"]},{"name":"./src/blocks/ImageBlockContent/parseImageElement.ts","size":175,"chunks":["a1ee98a"]},{"name":"./src/blocks/ImageBlockContent/ImageBlockContent.ts","size":3374,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/commands/splitBlock/splitBlock.ts","size":868,"chunks":["a1ee98a"]},{"name":"./src/blocks/ListItemBlockContent/ListItemKeyboardShortcuts.ts","size":1495,"chunks":["a1ee98a"]},{"name":"./src/blocks/ListItemBlockContent/ToggleListItemBlockContent/ToggleListItemBlockContent.ts","size":2228,"chunks":["a1ee98a"]},{"name":"./src/blocks/ListItemBlockContent/getListItemContent.ts","size":1425,"chunks":["a1ee98a"]},{"name":"./src/blocks/ListItemBlockContent/BulletListItemBlockContent/BulletListItemBlockContent.ts","size":3121,"chunks":["a1ee98a"]},{"name":"./src/blocks/ListItemBlockContent/CheckListItemBlockContent/CheckListItemBlockContent.ts","size":7286,"chunks":["a1ee98a"]},{"name":"./src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListIndexingPlugin.ts","size":2207,"chunks":["a1ee98a"]},{"name":"./src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListItemBlockContent.ts","size":4057,"chunks":["a1ee98a"]},{"name":"./src/blocks/ParagraphBlockContent/ParagraphBlockContent.ts","size":1520,"chunks":["a1ee98a"]},{"name":"./src/blocks/QuoteBlockContent/QuoteBlockContent.ts","size":1953,"chunks":["a1ee98a"]},{"name":"./src/blocks/TableBlockContent/TableExtension.ts","size":2297,"chunks":["a1ee98a"]},{"name":"./src/blocks/TableBlockContent/TableBlockContent.ts","size":6183,"chunks":["a1ee98a"]},{"name":"./src/blocks/VideoBlockContent/parseVideoElement.ts","size":175,"chunks":["a1ee98a"]},{"name":"./src/blocks/VideoBlockContent/VideoBlockContent.ts","size":3293,"chunks":["a1ee98a"]},{"name":"./src/blocks/defaultBlocks.ts","size":1197,"chunks":["a1ee98a"]},{"name":"./src/blocks/defaultBlockTypeGuards.ts","size":1688,"chunks":["a1ee98a"]},{"name":"./src/blocks/FileBlockContent/uploadToTmpFilesDotOrg_DEV_ONLY.ts","size":316,"chunks":["a1ee98a"]},{"name":"./src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts","size":8656,"chunks":["a1ee98a"]},{"name":"./src/editor/BlockNoteSchema.ts","size":1044,"chunks":["a1ee98a"]},{"name":"./src/blocks/PageBreakBlockContent/PageBreakBlockContent.ts","size":854,"chunks":["a1ee98a"]},{"name":"./src/blocks/PageBreakBlockContent/schema.ts","size":350,"chunks":["a1ee98a"]},{"name":"./src/blocks/PageBreakBlockContent/getPageBreakSlashMenuItems.ts","size":536,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/commands/moveBlocks/moveBlocks.ts","size":5642,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/commands/nestBlock/nestBlock.ts","size":2284,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/getBlock/getBlock.ts","size":1895,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/insertContentAt.ts","size":1049,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/selections/selection.ts","size":5093,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/selections/textCursorPosition.ts","size":2430,"chunks":["a1ee98a"]},{"name":"./src/util/esmDependencies.ts","size":820,"chunks":["a1ee98a"]},{"name":"./src/api/exporters/markdown/removeUnderlinesRehypePlugin.ts","size":752,"chunks":["a1ee98a"]},{"name":"./src/api/exporters/markdown/util/addSpacesToCheckboxesRehypePlugin.ts","size":969,"chunks":["a1ee98a"]},{"name":"./src/api/exporters/markdown/markdownExporter.ts","size":837,"chunks":["a1ee98a"]},{"name":"./src/api/parsers/html/util/nestedLists.ts","size":2174,"chunks":["a1ee98a"]},{"name":"./src/api/parsers/html/parseHTML.ts","size":429,"chunks":["a1ee98a"]},{"name":"./src/api/parsers/markdown/parseMarkdown.ts","size":1129,"chunks":["a1ee98a"]},{"name":"./src/api/clipboard/fromClipboard/acceptedMIMETypes.ts","size":134,"chunks":["a1ee98a"]},{"name":"./src/api/clipboard/fromClipboard/handleFileInsertion.ts","size":3928,"chunks":["a1ee98a"]},{"name":"./src/api/clipboard/fromClipboard/fileDropExtension.ts","size":884,"chunks":["a1ee98a"]},{"name":"./src/api/parsers/markdown/detectMarkdown.ts","size":1112,"chunks":["a1ee98a"]},{"name":"./src/api/clipboard/fromClipboard/handleVSCodePaste.ts","size":661,"chunks":["a1ee98a"]},{"name":"./src/api/clipboard/fromClipboard/pasteExtension.ts","size":2412,"chunks":["a1ee98a"]},{"name":"./src/api/nodeConversions/fragmentToBlocks.ts","size":629,"chunks":["a1ee98a"]},{"name":"./src/api/clipboard/toClipboard/copyExtension.ts","size":5159,"chunks":["a1ee98a"]},{"name":"./src/extensions/BackgroundColor/BackgroundColorExtension.ts","size":819,"chunks":["a1ee98a"]},{"name":"./src/util/EventEmitter.ts","size":744,"chunks":["a1ee98a"]},{"name":"./src/editor/BlockNoteExtension.ts","size":345,"chunks":["a1ee98a"]},{"name":"./src/extensions/Collaboration/CursorPlugin.ts","size":4699,"chunks":["a1ee98a"]},{"name":"./src/extensions/Collaboration/SyncPlugin.ts","size":244,"chunks":["a1ee98a"]},{"name":"./src/extensions/Collaboration/UndoPlugin.ts","size":265,"chunks":["a1ee98a"]},{"name":"./src/extensions/Comments/CommentMark.ts","size":1428,"chunks":["a1ee98a"]},{"name":"./src/extensions/Comments/userstore/UserStore.ts","size":1354,"chunks":["a1ee98a"]},{"name":"./src/extensions/Comments/CommentsPlugin.ts","size":7815,"chunks":["a1ee98a"]},{"name":"./src/extensions/FilePanel/FilePanelPlugin.ts","size":4135,"chunks":["a1ee98a"]},{"name":"./src/extensions/FormattingToolbar/FormattingToolbarPlugin.ts","size":6101,"chunks":["a1ee98a"]},{"name":"./src/extensions/HardBreak/HardBreak.ts","size":376,"chunks":["a1ee98a"]},{"name":"./src/api/blockManipulation/commands/mergeBlocks/mergeBlocks.ts","size":3228,"chunks":["a1ee98a"]},{"name":"./src/extensions/KeyboardShortcuts/KeyboardShortcutsExtension.ts","size":18379,"chunks":["a1ee98a"]},{"name":"./src/extensions/LinkToolbar/LinkToolbarPlugin.ts","size":7699,"chunks":["a1ee98a"]},{"name":"./src/extensions/LinkToolbar/protocols.ts","size":172,"chunks":["a1ee98a"]},{"name":"./src/extensions/NodeSelectionKeyboard/NodeSelectionKeyboardPlugin.ts","size":1367,"chunks":["a1ee98a"]},{"name":"./src/extensions/Placeholder/PlaceholderPlugin.ts","size":3895,"chunks":["a1ee98a"]},{"name":"./src/extensions/PreviousBlockType/PreviousBlockTypePlugin.ts","size":5232,"chunks":["a1ee98a"]},{"name":"./src/extensions/ShowSelection/ShowSelectionPlugin.ts","size":1043,"chunks":["a1ee98a"]},{"name":"./src/extensions/getDraggableBlockFromElement.ts","size":404,"chunks":["a1ee98a"]},{"name":"./src/extensions/SideMenu/MultipleNodeSelection.ts","size":1700,"chunks":["a1ee98a"]},{"name":"./src/extensions/SideMenu/dragging.ts","size":4718,"chunks":["a1ee98a"]},{"name":"./src/extensions/SideMenu/SideMenuPlugin.ts","size":14178,"chunks":["a1ee98a"]},{"name":"./src/api/positionMapping.ts","size":1652,"chunks":["a1ee98a"]},{"name":"./src/extensions/SuggestionMenu/SuggestionPlugin.ts","size":9360,"chunks":["a1ee98a"]},{"name":"./src/extensions/Suggestions/SuggestionMarks.ts","size":4452,"chunks":["a1ee98a"]},{"name":"./src/extensions/TableHandles/TableHandlesPlugin.ts","size":27335,"chunks":["a1ee98a"]},{"name":"./src/extensions/TextAlignment/TextAlignmentExtension.ts","size":976,"chunks":["a1ee98a"]},{"name":"./src/extensions/TextColor/TextColorExtension.ts","size":753,"chunks":["a1ee98a"]},{"name":"./src/extensions/TrailingNode/TrailingNodeExtension.ts","size":1563,"chunks":["a1ee98a"]},{"name":"./src/pm-nodes/BlockContainer.ts","size":2170,"chunks":["a1ee98a"]},{"name":"./src/pm-nodes/BlockGroup.ts","size":1146,"chunks":["a1ee98a"]},{"name":"./src/pm-nodes/Doc.ts","size":134,"chunks":["a1ee98a"]},{"name":"./src/extensions/Collaboration/ForkYDocPlugin.ts","size":4306,"chunks":["a1ee98a"]},{"name":"./src/editor/BlockNoteExtensions.ts","size":5423,"chunks":["a1ee98a"]},{"name":"./src/editor/transformPasted.ts","size":2604,"chunks":["a1ee98a"]},{"name":"./src/editor/BlockNoteTipTapEditor.ts","size":5736,"chunks":["a1ee98a"]},{"name":"./src/style.css","size":0,"chunks":["a1ee98a"]},{"name":"./src/editor/BlockNoteEditor.ts","size":37535,"chunks":["a1ee98a"]},{"name":"./src/editor/defaultColors.ts","size":1193,"chunks":["a1ee98a"]},{"name":"./src/exporter/Exporter.ts","size":1075,"chunks":["a1ee98a"]},{"name":"./src/exporter/mapping.ts","size":197,"chunks":["a1ee98a"]},{"name":"./src/extensions/SuggestionMenu/getDefaultEmojiPickerItems.ts","size":1204,"chunks":["a1ee98a"]},{"name":"./src/util/combineByGroup.ts","size":550,"chunks":["a1ee98a"]},{"name":"./src/index.ts","size":0,"chunks":["a1ee98a"]},{"name":"./src/comments/threadstore/ThreadStoreAuth.ts","size":25,"chunks":["1627b02"]},{"name":"./src/comments/threadstore/DefaultThreadStoreAuth.ts","size":2014,"chunks":["1627b02"]},{"name":"./src/comments/threadstore/ThreadStore.ts","size":77,"chunks":["1627b02"]},{"name":"./src/comments/threadstore/TipTapThreadStore.ts","size":5321,"chunks":["1627b02"]},{"name":"./src/comments/threadstore/yjs/yjsHelpers.ts","size":3002,"chunks":["1627b02"]},{"name":"./src/comments/threadstore/yjs/YjsThreadStoreBase.ts","size":790,"chunks":["1627b02"]},{"name":"./src/comments/threadstore/yjs/RESTYjsThreadStore.ts","size":2069,"chunks":["1627b02"]},{"name":"./src/comments/threadstore/yjs/YjsThreadStore.ts","size":7267,"chunks":["1627b02"]},{"name":"./src/comments/index.ts","size":0,"chunks":["1627b02"]},{"name":"./src/i18n/locales/ar.ts","size":9382,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/de.ts","size":10527,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/es.ts","size":10087,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/fr.ts","size":11038,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/he.ts","size":9115,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/hr.ts","size":9907,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/is.ts","size":10089,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/it.ts","size":10512,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/ja.ts","size":8965,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/ko.ts","size":8454,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/nl.ts","size":10016,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/no.ts","size":10196,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/pl.ts","size":9721,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/pt.ts","size":9888,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/ru.ts","size":11054,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/sk.ts","size":9773,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/uk.ts","size":10721,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/vi.ts","size":9777,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/zh.ts","size":8448,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/zh-tw.ts","size":8488,"chunks":["9eaffe2"]},{"name":"./src/i18n/index.ts","size":0,"chunks":["9eaffe2"]},{"name":"./src/i18n/locales/en.ts","size":9418,"chunks":["a1e239a"]}]}
|
package/package.json
CHANGED
package/src/api/blockManipulation/commands/insertBlocks/__snapshots__/insertBlocks.test.ts.snap
CHANGED
|
@@ -307,6 +307,7 @@ exports[`Test insertBlocks > Insert multiple blocks after 2`] = `
|
|
|
307
307
|
"id": "heading-0",
|
|
308
308
|
"props": {
|
|
309
309
|
"backgroundColor": "default",
|
|
310
|
+
"isToggleable": false,
|
|
310
311
|
"level": 1,
|
|
311
312
|
"textAlignment": "left",
|
|
312
313
|
"textColor": "default",
|
|
@@ -653,6 +654,7 @@ exports[`Test insertBlocks > Insert multiple blocks after 2`] = `
|
|
|
653
654
|
"id": "heading-with-everything",
|
|
654
655
|
"props": {
|
|
655
656
|
"backgroundColor": "red",
|
|
657
|
+
"isToggleable": false,
|
|
656
658
|
"level": 2,
|
|
657
659
|
"textAlignment": "center",
|
|
658
660
|
"textColor": "red",
|
|
@@ -980,6 +982,7 @@ exports[`Test insertBlocks > Insert multiple blocks before 2`] = `
|
|
|
980
982
|
"id": "heading-0",
|
|
981
983
|
"props": {
|
|
982
984
|
"backgroundColor": "default",
|
|
985
|
+
"isToggleable": false,
|
|
983
986
|
"level": 1,
|
|
984
987
|
"textAlignment": "left",
|
|
985
988
|
"textColor": "default",
|
|
@@ -1326,6 +1329,7 @@ exports[`Test insertBlocks > Insert multiple blocks before 2`] = `
|
|
|
1326
1329
|
"id": "heading-with-everything",
|
|
1327
1330
|
"props": {
|
|
1328
1331
|
"backgroundColor": "red",
|
|
1332
|
+
"isToggleable": false,
|
|
1329
1333
|
"level": 2,
|
|
1330
1334
|
"textAlignment": "center",
|
|
1331
1335
|
"textColor": "red",
|
|
@@ -1573,6 +1577,7 @@ exports[`Test insertBlocks > Insert single basic block after 2`] = `
|
|
|
1573
1577
|
"id": "heading-0",
|
|
1574
1578
|
"props": {
|
|
1575
1579
|
"backgroundColor": "default",
|
|
1580
|
+
"isToggleable": false,
|
|
1576
1581
|
"level": 1,
|
|
1577
1582
|
"textAlignment": "left",
|
|
1578
1583
|
"textColor": "default",
|
|
@@ -1919,6 +1924,7 @@ exports[`Test insertBlocks > Insert single basic block after 2`] = `
|
|
|
1919
1924
|
"id": "heading-with-everything",
|
|
1920
1925
|
"props": {
|
|
1921
1926
|
"backgroundColor": "red",
|
|
1927
|
+
"isToggleable": false,
|
|
1922
1928
|
"level": 2,
|
|
1923
1929
|
"textAlignment": "center",
|
|
1924
1930
|
"textColor": "red",
|
|
@@ -2178,6 +2184,7 @@ exports[`Test insertBlocks > Insert single basic block before (without type) 2`]
|
|
|
2178
2184
|
"id": "heading-0",
|
|
2179
2185
|
"props": {
|
|
2180
2186
|
"backgroundColor": "default",
|
|
2187
|
+
"isToggleable": false,
|
|
2181
2188
|
"level": 1,
|
|
2182
2189
|
"textAlignment": "left",
|
|
2183
2190
|
"textColor": "default",
|
|
@@ -2524,6 +2531,7 @@ exports[`Test insertBlocks > Insert single basic block before (without type) 2`]
|
|
|
2524
2531
|
"id": "heading-with-everything",
|
|
2525
2532
|
"props": {
|
|
2526
2533
|
"backgroundColor": "red",
|
|
2534
|
+
"isToggleable": false,
|
|
2527
2535
|
"level": 2,
|
|
2528
2536
|
"textAlignment": "center",
|
|
2529
2537
|
"textColor": "red",
|
|
@@ -2771,6 +2779,7 @@ exports[`Test insertBlocks > Insert single basic block before 2`] = `
|
|
|
2771
2779
|
"id": "heading-0",
|
|
2772
2780
|
"props": {
|
|
2773
2781
|
"backgroundColor": "default",
|
|
2782
|
+
"isToggleable": false,
|
|
2774
2783
|
"level": 1,
|
|
2775
2784
|
"textAlignment": "left",
|
|
2776
2785
|
"textColor": "default",
|
|
@@ -3117,6 +3126,7 @@ exports[`Test insertBlocks > Insert single basic block before 2`] = `
|
|
|
3117
3126
|
"id": "heading-with-everything",
|
|
3118
3127
|
"props": {
|
|
3119
3128
|
"backgroundColor": "red",
|
|
3129
|
+
"isToggleable": false,
|
|
3120
3130
|
"level": 2,
|
|
3121
3131
|
"textAlignment": "center",
|
|
3122
3132
|
"textColor": "red",
|
|
@@ -3201,6 +3211,7 @@ exports[`Test insertBlocks > Insert single complex block after 1`] = `
|
|
|
3201
3211
|
"id": "inserted-heading-with-everything",
|
|
3202
3212
|
"props": {
|
|
3203
3213
|
"backgroundColor": "red",
|
|
3214
|
+
"isToggleable": false,
|
|
3204
3215
|
"level": 2,
|
|
3205
3216
|
"textAlignment": "center",
|
|
3206
3217
|
"textColor": "red",
|
|
@@ -3291,6 +3302,7 @@ exports[`Test insertBlocks > Insert single complex block after 2`] = `
|
|
|
3291
3302
|
"id": "inserted-heading-with-everything",
|
|
3292
3303
|
"props": {
|
|
3293
3304
|
"backgroundColor": "red",
|
|
3305
|
+
"isToggleable": false,
|
|
3294
3306
|
"level": 2,
|
|
3295
3307
|
"textAlignment": "center",
|
|
3296
3308
|
"textColor": "red",
|
|
@@ -3478,6 +3490,7 @@ exports[`Test insertBlocks > Insert single complex block after 2`] = `
|
|
|
3478
3490
|
"id": "heading-0",
|
|
3479
3491
|
"props": {
|
|
3480
3492
|
"backgroundColor": "default",
|
|
3493
|
+
"isToggleable": false,
|
|
3481
3494
|
"level": 1,
|
|
3482
3495
|
"textAlignment": "left",
|
|
3483
3496
|
"textColor": "default",
|
|
@@ -3824,6 +3837,7 @@ exports[`Test insertBlocks > Insert single complex block after 2`] = `
|
|
|
3824
3837
|
"id": "heading-with-everything",
|
|
3825
3838
|
"props": {
|
|
3826
3839
|
"backgroundColor": "red",
|
|
3840
|
+
"isToggleable": false,
|
|
3827
3841
|
"level": 2,
|
|
3828
3842
|
"textAlignment": "center",
|
|
3829
3843
|
"textColor": "red",
|
|
@@ -3908,6 +3922,7 @@ exports[`Test insertBlocks > Insert single complex block before 1`] = `
|
|
|
3908
3922
|
"id": "inserted-heading-with-everything",
|
|
3909
3923
|
"props": {
|
|
3910
3924
|
"backgroundColor": "red",
|
|
3925
|
+
"isToggleable": false,
|
|
3911
3926
|
"level": 2,
|
|
3912
3927
|
"textAlignment": "center",
|
|
3913
3928
|
"textColor": "red",
|
|
@@ -3981,6 +3996,7 @@ exports[`Test insertBlocks > Insert single complex block before 2`] = `
|
|
|
3981
3996
|
"id": "inserted-heading-with-everything",
|
|
3982
3997
|
"props": {
|
|
3983
3998
|
"backgroundColor": "red",
|
|
3999
|
+
"isToggleable": false,
|
|
3984
4000
|
"level": 2,
|
|
3985
4001
|
"textAlignment": "center",
|
|
3986
4002
|
"textColor": "red",
|
|
@@ -4185,6 +4201,7 @@ exports[`Test insertBlocks > Insert single complex block before 2`] = `
|
|
|
4185
4201
|
"id": "heading-0",
|
|
4186
4202
|
"props": {
|
|
4187
4203
|
"backgroundColor": "default",
|
|
4204
|
+
"isToggleable": false,
|
|
4188
4205
|
"level": 1,
|
|
4189
4206
|
"textAlignment": "left",
|
|
4190
4207
|
"textColor": "default",
|
|
@@ -4531,6 +4548,7 @@ exports[`Test insertBlocks > Insert single complex block before 2`] = `
|
|
|
4531
4548
|
"id": "heading-with-everything",
|
|
4532
4549
|
"props": {
|
|
4533
4550
|
"backgroundColor": "red",
|
|
4551
|
+
"isToggleable": false,
|
|
4534
4552
|
"level": 2,
|
|
4535
4553
|
"textAlignment": "center",
|
|
4536
4554
|
"textColor": "red",
|
package/src/api/blockManipulation/commands/mergeBlocks/__snapshots__/mergeBlocks.test.ts.snap
CHANGED
|
@@ -183,6 +183,7 @@ exports[`Test mergeBlocks > Basic 1`] = `
|
|
|
183
183
|
"id": "heading-0",
|
|
184
184
|
"props": {
|
|
185
185
|
"backgroundColor": "default",
|
|
186
|
+
"isToggleable": false,
|
|
186
187
|
"level": 1,
|
|
187
188
|
"textAlignment": "left",
|
|
188
189
|
"textColor": "default",
|
|
@@ -529,6 +530,7 @@ exports[`Test mergeBlocks > Basic 1`] = `
|
|
|
529
530
|
"id": "heading-with-everything",
|
|
530
531
|
"props": {
|
|
531
532
|
"backgroundColor": "red",
|
|
533
|
+
"isToggleable": false,
|
|
532
534
|
"level": 2,
|
|
533
535
|
"textAlignment": "center",
|
|
534
536
|
"textColor": "red",
|
|
@@ -749,6 +751,7 @@ exports[`Test mergeBlocks > Blocks have different types 1`] = `
|
|
|
749
751
|
"id": "heading-0",
|
|
750
752
|
"props": {
|
|
751
753
|
"backgroundColor": "default",
|
|
754
|
+
"isToggleable": false,
|
|
752
755
|
"level": 1,
|
|
753
756
|
"textAlignment": "left",
|
|
754
757
|
"textColor": "default",
|
|
@@ -1078,6 +1081,7 @@ exports[`Test mergeBlocks > Blocks have different types 1`] = `
|
|
|
1078
1081
|
"id": "heading-with-everything",
|
|
1079
1082
|
"props": {
|
|
1080
1083
|
"backgroundColor": "red",
|
|
1084
|
+
"isToggleable": false,
|
|
1081
1085
|
"level": 2,
|
|
1082
1086
|
"textAlignment": "center",
|
|
1083
1087
|
"textColor": "red",
|
|
@@ -1281,6 +1285,7 @@ exports[`Test mergeBlocks > First block has children 1`] = `
|
|
|
1281
1285
|
"id": "heading-0",
|
|
1282
1286
|
"props": {
|
|
1283
1287
|
"backgroundColor": "default",
|
|
1288
|
+
"isToggleable": false,
|
|
1284
1289
|
"level": 1,
|
|
1285
1290
|
"textAlignment": "left",
|
|
1286
1291
|
"textColor": "default",
|
|
@@ -1627,6 +1632,7 @@ exports[`Test mergeBlocks > First block has children 1`] = `
|
|
|
1627
1632
|
"id": "heading-with-everything",
|
|
1628
1633
|
"props": {
|
|
1629
1634
|
"backgroundColor": "red",
|
|
1635
|
+
"isToggleable": false,
|
|
1630
1636
|
"level": 2,
|
|
1631
1637
|
"textAlignment": "center",
|
|
1632
1638
|
"textColor": "red",
|
|
@@ -1829,6 +1835,7 @@ exports[`Test mergeBlocks > Second block has children 1`] = `
|
|
|
1829
1835
|
"id": "heading-0",
|
|
1830
1836
|
"props": {
|
|
1831
1837
|
"backgroundColor": "default",
|
|
1838
|
+
"isToggleable": false,
|
|
1832
1839
|
"level": 1,
|
|
1833
1840
|
"textAlignment": "left",
|
|
1834
1841
|
"textColor": "default",
|
|
@@ -2175,6 +2182,7 @@ exports[`Test mergeBlocks > Second block has children 1`] = `
|
|
|
2175
2182
|
"id": "heading-with-everything",
|
|
2176
2183
|
"props": {
|
|
2177
2184
|
"backgroundColor": "red",
|
|
2185
|
+
"isToggleable": false,
|
|
2178
2186
|
"level": 2,
|
|
2179
2187
|
"textAlignment": "center",
|
|
2180
2188
|
"textColor": "red",
|
|
@@ -2395,6 +2403,7 @@ exports[`Test mergeBlocks > Second block is empty 1`] = `
|
|
|
2395
2403
|
"id": "heading-0",
|
|
2396
2404
|
"props": {
|
|
2397
2405
|
"backgroundColor": "default",
|
|
2406
|
+
"isToggleable": false,
|
|
2398
2407
|
"level": 1,
|
|
2399
2408
|
"textAlignment": "left",
|
|
2400
2409
|
"textColor": "default",
|
|
@@ -2730,6 +2739,7 @@ exports[`Test mergeBlocks > Second block is empty 1`] = `
|
|
|
2730
2739
|
"id": "heading-with-everything",
|
|
2731
2740
|
"props": {
|
|
2732
2741
|
"backgroundColor": "red",
|
|
2742
|
+
"isToggleable": false,
|
|
2733
2743
|
"level": 2,
|
|
2734
2744
|
"textAlignment": "center",
|
|
2735
2745
|
"textColor": "red",
|
|
@@ -200,6 +200,7 @@ exports[`Test moveBlocksDown > Basic 1`] = `
|
|
|
200
200
|
"id": "heading-0",
|
|
201
201
|
"props": {
|
|
202
202
|
"backgroundColor": "default",
|
|
203
|
+
"isToggleable": false,
|
|
203
204
|
"level": 1,
|
|
204
205
|
"textAlignment": "left",
|
|
205
206
|
"textColor": "default",
|
|
@@ -546,6 +547,7 @@ exports[`Test moveBlocksDown > Basic 1`] = `
|
|
|
546
547
|
"id": "heading-with-everything",
|
|
547
548
|
"props": {
|
|
548
549
|
"backgroundColor": "red",
|
|
550
|
+
"isToggleable": false,
|
|
549
551
|
"level": 2,
|
|
550
552
|
"textAlignment": "center",
|
|
551
553
|
"textColor": "red",
|
|
@@ -766,6 +768,7 @@ exports[`Test moveBlocksDown > Into children 1`] = `
|
|
|
766
768
|
"id": "heading-0",
|
|
767
769
|
"props": {
|
|
768
770
|
"backgroundColor": "default",
|
|
771
|
+
"isToggleable": false,
|
|
769
772
|
"level": 1,
|
|
770
773
|
"textAlignment": "left",
|
|
771
774
|
"textColor": "default",
|
|
@@ -1112,6 +1115,7 @@ exports[`Test moveBlocksDown > Into children 1`] = `
|
|
|
1112
1115
|
"id": "heading-with-everything",
|
|
1113
1116
|
"props": {
|
|
1114
1117
|
"backgroundColor": "red",
|
|
1118
|
+
"isToggleable": false,
|
|
1115
1119
|
"level": 2,
|
|
1116
1120
|
"textAlignment": "center",
|
|
1117
1121
|
"textColor": "red",
|
|
@@ -1332,6 +1336,7 @@ exports[`Test moveBlocksDown > Last block 1`] = `
|
|
|
1332
1336
|
"id": "heading-0",
|
|
1333
1337
|
"props": {
|
|
1334
1338
|
"backgroundColor": "default",
|
|
1339
|
+
"isToggleable": false,
|
|
1335
1340
|
"level": 1,
|
|
1336
1341
|
"textAlignment": "left",
|
|
1337
1342
|
"textColor": "default",
|
|
@@ -1678,6 +1683,7 @@ exports[`Test moveBlocksDown > Last block 1`] = `
|
|
|
1678
1683
|
"id": "heading-with-everything",
|
|
1679
1684
|
"props": {
|
|
1680
1685
|
"backgroundColor": "red",
|
|
1686
|
+
"isToggleable": false,
|
|
1681
1687
|
"level": 2,
|
|
1682
1688
|
"textAlignment": "center",
|
|
1683
1689
|
"textColor": "red",
|
|
@@ -1898,6 +1904,7 @@ exports[`Test moveBlocksDown > Multiple blocks 1`] = `
|
|
|
1898
1904
|
"id": "heading-0",
|
|
1899
1905
|
"props": {
|
|
1900
1906
|
"backgroundColor": "default",
|
|
1907
|
+
"isToggleable": false,
|
|
1901
1908
|
"level": 1,
|
|
1902
1909
|
"textAlignment": "left",
|
|
1903
1910
|
"textColor": "default",
|
|
@@ -2244,6 +2251,7 @@ exports[`Test moveBlocksDown > Multiple blocks 1`] = `
|
|
|
2244
2251
|
"id": "heading-with-everything",
|
|
2245
2252
|
"props": {
|
|
2246
2253
|
"backgroundColor": "red",
|
|
2254
|
+
"isToggleable": false,
|
|
2247
2255
|
"level": 2,
|
|
2248
2256
|
"textAlignment": "center",
|
|
2249
2257
|
"textColor": "red",
|
|
@@ -2464,6 +2472,7 @@ exports[`Test moveBlocksDown > Multiple blocks ending in block with children 1`]
|
|
|
2464
2472
|
"id": "heading-0",
|
|
2465
2473
|
"props": {
|
|
2466
2474
|
"backgroundColor": "default",
|
|
2475
|
+
"isToggleable": false,
|
|
2467
2476
|
"level": 1,
|
|
2468
2477
|
"textAlignment": "left",
|
|
2469
2478
|
"textColor": "default",
|
|
@@ -2810,6 +2819,7 @@ exports[`Test moveBlocksDown > Multiple blocks ending in block with children 1`]
|
|
|
2810
2819
|
"id": "heading-with-everything",
|
|
2811
2820
|
"props": {
|
|
2812
2821
|
"backgroundColor": "red",
|
|
2822
|
+
"isToggleable": false,
|
|
2813
2823
|
"level": 2,
|
|
2814
2824
|
"textAlignment": "center",
|
|
2815
2825
|
"textColor": "red",
|
|
@@ -3030,6 +3040,7 @@ exports[`Test moveBlocksDown > Multiple blocks ending in nested block 1`] = `
|
|
|
3030
3040
|
"id": "heading-0",
|
|
3031
3041
|
"props": {
|
|
3032
3042
|
"backgroundColor": "default",
|
|
3043
|
+
"isToggleable": false,
|
|
3033
3044
|
"level": 1,
|
|
3034
3045
|
"textAlignment": "left",
|
|
3035
3046
|
"textColor": "default",
|
|
@@ -3376,6 +3387,7 @@ exports[`Test moveBlocksDown > Multiple blocks ending in nested block 1`] = `
|
|
|
3376
3387
|
"id": "heading-with-everything",
|
|
3377
3388
|
"props": {
|
|
3378
3389
|
"backgroundColor": "red",
|
|
3390
|
+
"isToggleable": false,
|
|
3379
3391
|
"level": 2,
|
|
3380
3392
|
"textAlignment": "center",
|
|
3381
3393
|
"textColor": "red",
|
|
@@ -3606,6 +3618,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting and ending in nested blo
|
|
|
3606
3618
|
"id": "heading-0",
|
|
3607
3619
|
"props": {
|
|
3608
3620
|
"backgroundColor": "default",
|
|
3621
|
+
"isToggleable": false,
|
|
3609
3622
|
"level": 1,
|
|
3610
3623
|
"textAlignment": "left",
|
|
3611
3624
|
"textColor": "default",
|
|
@@ -3952,6 +3965,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting and ending in nested blo
|
|
|
3952
3965
|
"id": "heading-with-everything",
|
|
3953
3966
|
"props": {
|
|
3954
3967
|
"backgroundColor": "red",
|
|
3968
|
+
"isToggleable": false,
|
|
3955
3969
|
"level": 2,
|
|
3956
3970
|
"textAlignment": "center",
|
|
3957
3971
|
"textColor": "red",
|
|
@@ -4172,6 +4186,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting in block with children 1
|
|
|
4172
4186
|
"id": "heading-0",
|
|
4173
4187
|
"props": {
|
|
4174
4188
|
"backgroundColor": "default",
|
|
4189
|
+
"isToggleable": false,
|
|
4175
4190
|
"level": 1,
|
|
4176
4191
|
"textAlignment": "left",
|
|
4177
4192
|
"textColor": "default",
|
|
@@ -4518,6 +4533,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting in block with children 1
|
|
|
4518
4533
|
"id": "heading-with-everything",
|
|
4519
4534
|
"props": {
|
|
4520
4535
|
"backgroundColor": "red",
|
|
4536
|
+
"isToggleable": false,
|
|
4521
4537
|
"level": 2,
|
|
4522
4538
|
"textAlignment": "center",
|
|
4523
4539
|
"textColor": "red",
|
|
@@ -4737,6 +4753,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting in nested block 1`] = `
|
|
|
4737
4753
|
"id": "heading-0",
|
|
4738
4754
|
"props": {
|
|
4739
4755
|
"backgroundColor": "default",
|
|
4756
|
+
"isToggleable": false,
|
|
4740
4757
|
"level": 1,
|
|
4741
4758
|
"textAlignment": "left",
|
|
4742
4759
|
"textColor": "default",
|
|
@@ -5083,6 +5100,7 @@ exports[`Test moveBlocksDown > Multiple blocks starting in nested block 1`] = `
|
|
|
5083
5100
|
"id": "heading-with-everything",
|
|
5084
5101
|
"props": {
|
|
5085
5102
|
"backgroundColor": "red",
|
|
5103
|
+
"isToggleable": false,
|
|
5086
5104
|
"level": 2,
|
|
5087
5105
|
"textAlignment": "center",
|
|
5088
5106
|
"textColor": "red",
|
|
@@ -5303,6 +5321,7 @@ exports[`Test moveBlocksDown > Out of children 1`] = `
|
|
|
5303
5321
|
"id": "heading-0",
|
|
5304
5322
|
"props": {
|
|
5305
5323
|
"backgroundColor": "default",
|
|
5324
|
+
"isToggleable": false,
|
|
5306
5325
|
"level": 1,
|
|
5307
5326
|
"textAlignment": "left",
|
|
5308
5327
|
"textColor": "default",
|
|
@@ -5613,6 +5632,7 @@ exports[`Test moveBlocksDown > Out of children 1`] = `
|
|
|
5613
5632
|
"id": "heading-with-everything",
|
|
5614
5633
|
"props": {
|
|
5615
5634
|
"backgroundColor": "red",
|
|
5635
|
+
"isToggleable": false,
|
|
5616
5636
|
"level": 2,
|
|
5617
5637
|
"textAlignment": "center",
|
|
5618
5638
|
"textColor": "red",
|
|
@@ -5868,6 +5888,7 @@ exports[`Test moveBlocksUp > Basic 1`] = `
|
|
|
5868
5888
|
"id": "heading-0",
|
|
5869
5889
|
"props": {
|
|
5870
5890
|
"backgroundColor": "default",
|
|
5891
|
+
"isToggleable": false,
|
|
5871
5892
|
"level": 1,
|
|
5872
5893
|
"textAlignment": "left",
|
|
5873
5894
|
"textColor": "default",
|
|
@@ -6214,6 +6235,7 @@ exports[`Test moveBlocksUp > Basic 1`] = `
|
|
|
6214
6235
|
"id": "heading-with-everything",
|
|
6215
6236
|
"props": {
|
|
6216
6237
|
"backgroundColor": "red",
|
|
6238
|
+
"isToggleable": false,
|
|
6217
6239
|
"level": 2,
|
|
6218
6240
|
"textAlignment": "center",
|
|
6219
6241
|
"textColor": "red",
|
|
@@ -6434,6 +6456,7 @@ exports[`Test moveBlocksUp > First block 1`] = `
|
|
|
6434
6456
|
"id": "heading-0",
|
|
6435
6457
|
"props": {
|
|
6436
6458
|
"backgroundColor": "default",
|
|
6459
|
+
"isToggleable": false,
|
|
6437
6460
|
"level": 1,
|
|
6438
6461
|
"textAlignment": "left",
|
|
6439
6462
|
"textColor": "default",
|
|
@@ -6780,6 +6803,7 @@ exports[`Test moveBlocksUp > First block 1`] = `
|
|
|
6780
6803
|
"id": "heading-with-everything",
|
|
6781
6804
|
"props": {
|
|
6782
6805
|
"backgroundColor": "red",
|
|
6806
|
+
"isToggleable": false,
|
|
6783
6807
|
"level": 2,
|
|
6784
6808
|
"textAlignment": "center",
|
|
6785
6809
|
"textColor": "red",
|
|
@@ -7000,6 +7024,7 @@ exports[`Test moveBlocksUp > Into children 1`] = `
|
|
|
7000
7024
|
"id": "heading-0",
|
|
7001
7025
|
"props": {
|
|
7002
7026
|
"backgroundColor": "default",
|
|
7027
|
+
"isToggleable": false,
|
|
7003
7028
|
"level": 1,
|
|
7004
7029
|
"textAlignment": "left",
|
|
7005
7030
|
"textColor": "default",
|
|
@@ -7346,6 +7371,7 @@ exports[`Test moveBlocksUp > Into children 1`] = `
|
|
|
7346
7371
|
"id": "heading-with-everything",
|
|
7347
7372
|
"props": {
|
|
7348
7373
|
"backgroundColor": "red",
|
|
7374
|
+
"isToggleable": false,
|
|
7349
7375
|
"level": 2,
|
|
7350
7376
|
"textAlignment": "center",
|
|
7351
7377
|
"textColor": "red",
|
|
@@ -7566,6 +7592,7 @@ exports[`Test moveBlocksUp > Multiple blocks 1`] = `
|
|
|
7566
7592
|
"id": "heading-0",
|
|
7567
7593
|
"props": {
|
|
7568
7594
|
"backgroundColor": "default",
|
|
7595
|
+
"isToggleable": false,
|
|
7569
7596
|
"level": 1,
|
|
7570
7597
|
"textAlignment": "left",
|
|
7571
7598
|
"textColor": "default",
|
|
@@ -7912,6 +7939,7 @@ exports[`Test moveBlocksUp > Multiple blocks 1`] = `
|
|
|
7912
7939
|
"id": "heading-with-everything",
|
|
7913
7940
|
"props": {
|
|
7914
7941
|
"backgroundColor": "red",
|
|
7942
|
+
"isToggleable": false,
|
|
7915
7943
|
"level": 2,
|
|
7916
7944
|
"textAlignment": "center",
|
|
7917
7945
|
"textColor": "red",
|
|
@@ -8132,6 +8160,7 @@ exports[`Test moveBlocksUp > Multiple blocks ending in block with children 1`] =
|
|
|
8132
8160
|
"id": "heading-0",
|
|
8133
8161
|
"props": {
|
|
8134
8162
|
"backgroundColor": "default",
|
|
8163
|
+
"isToggleable": false,
|
|
8135
8164
|
"level": 1,
|
|
8136
8165
|
"textAlignment": "left",
|
|
8137
8166
|
"textColor": "default",
|
|
@@ -8478,6 +8507,7 @@ exports[`Test moveBlocksUp > Multiple blocks ending in block with children 1`] =
|
|
|
8478
8507
|
"id": "heading-with-everything",
|
|
8479
8508
|
"props": {
|
|
8480
8509
|
"backgroundColor": "red",
|
|
8510
|
+
"isToggleable": false,
|
|
8481
8511
|
"level": 2,
|
|
8482
8512
|
"textAlignment": "center",
|
|
8483
8513
|
"textColor": "red",
|
|
@@ -8698,6 +8728,7 @@ exports[`Test moveBlocksUp > Multiple blocks ending in nested block 1`] = `
|
|
|
8698
8728
|
"id": "heading-0",
|
|
8699
8729
|
"props": {
|
|
8700
8730
|
"backgroundColor": "default",
|
|
8731
|
+
"isToggleable": false,
|
|
8701
8732
|
"level": 1,
|
|
8702
8733
|
"textAlignment": "left",
|
|
8703
8734
|
"textColor": "default",
|
|
@@ -9044,6 +9075,7 @@ exports[`Test moveBlocksUp > Multiple blocks ending in nested block 1`] = `
|
|
|
9044
9075
|
"id": "heading-with-everything",
|
|
9045
9076
|
"props": {
|
|
9046
9077
|
"backgroundColor": "red",
|
|
9078
|
+
"isToggleable": false,
|
|
9047
9079
|
"level": 2,
|
|
9048
9080
|
"textAlignment": "center",
|
|
9049
9081
|
"textColor": "red",
|
|
@@ -9246,6 +9278,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting and ending in nested block
|
|
|
9246
9278
|
"id": "heading-0",
|
|
9247
9279
|
"props": {
|
|
9248
9280
|
"backgroundColor": "default",
|
|
9281
|
+
"isToggleable": false,
|
|
9249
9282
|
"level": 1,
|
|
9250
9283
|
"textAlignment": "left",
|
|
9251
9284
|
"textColor": "default",
|
|
@@ -9592,6 +9625,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting and ending in nested block
|
|
|
9592
9625
|
"id": "heading-with-everything",
|
|
9593
9626
|
"props": {
|
|
9594
9627
|
"backgroundColor": "red",
|
|
9628
|
+
"isToggleable": false,
|
|
9595
9629
|
"level": 2,
|
|
9596
9630
|
"textAlignment": "center",
|
|
9597
9631
|
"textColor": "red",
|
|
@@ -9829,6 +9863,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting in block with children 1`]
|
|
|
9829
9863
|
"id": "heading-0",
|
|
9830
9864
|
"props": {
|
|
9831
9865
|
"backgroundColor": "default",
|
|
9866
|
+
"isToggleable": false,
|
|
9832
9867
|
"level": 1,
|
|
9833
9868
|
"textAlignment": "left",
|
|
9834
9869
|
"textColor": "default",
|
|
@@ -10175,6 +10210,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting in block with children 1`]
|
|
|
10175
10210
|
"id": "heading-with-everything",
|
|
10176
10211
|
"props": {
|
|
10177
10212
|
"backgroundColor": "red",
|
|
10213
|
+
"isToggleable": false,
|
|
10178
10214
|
"level": 2,
|
|
10179
10215
|
"textAlignment": "center",
|
|
10180
10216
|
"textColor": "red",
|
|
@@ -10394,6 +10430,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting in nested block 1`] = `
|
|
|
10394
10430
|
"id": "heading-0",
|
|
10395
10431
|
"props": {
|
|
10396
10432
|
"backgroundColor": "default",
|
|
10433
|
+
"isToggleable": false,
|
|
10397
10434
|
"level": 1,
|
|
10398
10435
|
"textAlignment": "left",
|
|
10399
10436
|
"textColor": "default",
|
|
@@ -10740,6 +10777,7 @@ exports[`Test moveBlocksUp > Multiple blocks starting in nested block 1`] = `
|
|
|
10740
10777
|
"id": "heading-with-everything",
|
|
10741
10778
|
"props": {
|
|
10742
10779
|
"backgroundColor": "red",
|
|
10780
|
+
"isToggleable": false,
|
|
10743
10781
|
"level": 2,
|
|
10744
10782
|
"textAlignment": "center",
|
|
10745
10783
|
"textColor": "red",
|
|
@@ -10960,6 +10998,7 @@ exports[`Test moveBlocksUp > Out of children 1`] = `
|
|
|
10960
10998
|
"id": "heading-0",
|
|
10961
10999
|
"props": {
|
|
10962
11000
|
"backgroundColor": "default",
|
|
11001
|
+
"isToggleable": false,
|
|
10963
11002
|
"level": 1,
|
|
10964
11003
|
"textAlignment": "left",
|
|
10965
11004
|
"textColor": "default",
|
|
@@ -11305,6 +11344,7 @@ exports[`Test moveBlocksUp > Out of children 1`] = `
|
|
|
11305
11344
|
"id": "heading-with-everything",
|
|
11306
11345
|
"props": {
|
|
11307
11346
|
"backgroundColor": "red",
|
|
11347
|
+
"isToggleable": false,
|
|
11308
11348
|
"level": 2,
|
|
11309
11349
|
"textAlignment": "center",
|
|
11310
11350
|
"textColor": "red",
|