@multiplatform.one/rich-text 6.1.0 → 6.4.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/README.md +60 -0
- package/dist/cjs/RichEditor.cjs +89 -9
- package/dist/cjs/RichEditor.native.js +444 -35
- package/dist/cjs/RichEditor.native.js.map +1 -1
- package/dist/cjs/RichTextEditor/index.cjs +20 -2
- package/dist/cjs/RichTextEditor/index.native.js +20 -2
- package/dist/cjs/RichTextEditor/index.native.js.map +1 -1
- package/dist/cjs/constants.cjs +52 -29
- package/dist/cjs/constants.native.js +59 -29
- package/dist/cjs/constants.native.js.map +1 -1
- package/dist/cjs/editor/BlockDragHandle.cjs +22 -7
- package/dist/cjs/editor/BlockDragHandle.native.js +41 -7
- package/dist/cjs/editor/BlockDragHandle.native.js.map +1 -1
- package/dist/cjs/editor/SlashCommands.cjs +257 -294
- package/dist/cjs/editor/SlashCommands.native.js +320 -341
- package/dist/cjs/editor/SlashCommands.native.js.map +1 -1
- package/dist/cjs/editor/TentapEditor.native.js +59 -12
- package/dist/cjs/editor/TentapEditor.native.js.map +1 -1
- package/dist/cjs/editor/TiptapEditor.cjs +143 -240
- package/dist/cjs/editor/TiptapEditor.native.js +163 -289
- package/dist/cjs/editor/TiptapEditor.native.js.map +1 -1
- package/dist/cjs/editor/blockAnchor.cjs +43 -0
- package/dist/cjs/editor/blockAnchor.native.js +68 -0
- package/dist/cjs/editor/blockAnchor.native.js.map +1 -0
- package/dist/cjs/editor/capabilities.cjs +37 -0
- package/dist/cjs/editor/capabilities.native.js +41 -0
- package/dist/cjs/editor/capabilities.native.js.map +1 -0
- package/dist/cjs/editor/codeBlockPreview.cjs +230 -0
- package/dist/cjs/editor/codeBlockPreview.native.js +265 -0
- package/dist/cjs/editor/codeBlockPreview.native.js.map +1 -0
- package/dist/cjs/editor/editorStyles.cjs +203 -34
- package/dist/cjs/editor/editorStyles.native.js +203 -34
- package/dist/cjs/editor/editorStyles.native.js.map +1 -1
- package/dist/cjs/editor/emoji.cjs +128 -0
- package/dist/cjs/editor/emoji.native.js +184 -0
- package/dist/cjs/editor/emoji.native.js.map +1 -0
- package/dist/cjs/editor/extensions.cjs +275 -0
- package/dist/cjs/editor/extensions.native.js +328 -0
- package/dist/cjs/editor/extensions.native.js.map +1 -0
- package/dist/cjs/editor/lazyKatex.cjs +78 -0
- package/dist/cjs/editor/lazyKatex.native.js +117 -0
- package/dist/cjs/editor/lazyKatex.native.js.map +1 -0
- package/dist/cjs/editor/markdown.cjs +216 -0
- package/dist/cjs/editor/markdown.native.js +278 -0
- package/dist/cjs/editor/markdown.native.js.map +1 -0
- package/dist/cjs/editor/mathematics.cjs +168 -0
- package/dist/cjs/editor/mathematics.native.js +202 -0
- package/dist/cjs/editor/mathematics.native.js.map +1 -0
- package/dist/cjs/editor/media.cjs +138 -0
- package/dist/cjs/editor/media.native.js +172 -0
- package/dist/cjs/editor/media.native.js.map +1 -0
- package/dist/cjs/editor/mentions.cjs +73 -0
- package/dist/cjs/editor/mentions.native.js +84 -0
- package/dist/cjs/editor/mentions.native.js.map +1 -0
- package/dist/cjs/editor/pasteCleanup.cjs +83 -0
- package/dist/cjs/editor/pasteCleanup.native.js +175 -0
- package/dist/cjs/editor/pasteCleanup.native.js.map +1 -0
- package/dist/cjs/editor/suggestionPopup.cjs +297 -0
- package/dist/cjs/editor/suggestionPopup.native.js +327 -0
- package/dist/cjs/editor/suggestionPopup.native.js.map +1 -0
- package/dist/cjs/index.cjs +5 -2
- package/dist/cjs/index.native.js +4 -1
- package/dist/cjs/index.native.js.map +1 -1
- package/dist/cjs/preview.cjs +263 -0
- package/dist/cjs/preview.native.js +294 -0
- package/dist/cjs/preview.native.js.map +1 -0
- package/dist/cjs/shared/t.cjs +53 -0
- package/dist/cjs/shared/t.native.js +56 -0
- package/dist/cjs/shared/t.native.js.map +1 -0
- package/dist/cjs/shared/url.cjs +35 -0
- package/dist/cjs/shared/url.native.js +38 -0
- package/dist/cjs/shared/url.native.js.map +1 -0
- package/dist/cjs/styled.cjs +13 -6
- package/dist/cjs/styled.native.js +13 -6
- package/dist/cjs/styled.native.js.map +1 -1
- package/dist/cjs/toolbar/BubbleToolbar.cjs +19 -14
- package/dist/cjs/toolbar/BubbleToolbar.native.js +22 -15
- package/dist/cjs/toolbar/BubbleToolbar.native.js.map +1 -1
- package/dist/cjs/toolbar/CodeBlockBubble.cjs +59 -23
- package/dist/cjs/toolbar/CodeBlockBubble.native.js +71 -25
- package/dist/cjs/toolbar/CodeBlockBubble.native.js.map +1 -1
- package/dist/cjs/toolbar/ColorPicker.cjs +19 -54
- package/dist/cjs/toolbar/ColorPicker.native.js +81 -179
- package/dist/cjs/toolbar/ColorPicker.native.js.map +1 -1
- package/dist/cjs/toolbar/FixedToolbar.cjs +39 -13
- package/dist/cjs/toolbar/FixedToolbar.native.js +46 -54
- package/dist/cjs/toolbar/FixedToolbar.native.js.map +1 -1
- package/dist/cjs/toolbar/HeadingPicker.cjs +32 -39
- package/dist/cjs/toolbar/HeadingPicker.native.js +61 -51
- package/dist/cjs/toolbar/HeadingPicker.native.js.map +1 -1
- package/dist/cjs/toolbar/ImageBubble.cjs +20 -43
- package/dist/cjs/toolbar/ImageBubble.native.js +20 -43
- package/dist/cjs/toolbar/ImageBubble.native.js.map +1 -1
- package/dist/cjs/toolbar/ImageDialog.cjs +5 -4
- package/dist/cjs/toolbar/ImageDialog.native.js +76 -65
- package/dist/cjs/toolbar/ImageDialog.native.js.map +1 -1
- package/dist/cjs/toolbar/LinkBubble.cjs +23 -70
- package/dist/cjs/toolbar/LinkBubble.native.js +23 -70
- package/dist/cjs/toolbar/LinkBubble.native.js.map +1 -1
- package/dist/cjs/toolbar/LinkDialog.cjs +19 -18
- package/dist/cjs/toolbar/LinkDialog.native.js +86 -83
- package/dist/cjs/toolbar/LinkDialog.native.js.map +1 -1
- package/dist/cjs/toolbar/ListPicker.cjs +32 -43
- package/dist/cjs/toolbar/ListPicker.native.js +43 -44
- package/dist/cjs/toolbar/ListPicker.native.js.map +1 -1
- package/dist/cjs/toolbar/MathBubble.cjs +159 -0
- package/dist/cjs/toolbar/MathBubble.native.js +169 -0
- package/dist/cjs/toolbar/MathBubble.native.js.map +1 -0
- package/dist/cjs/toolbar/MoreDropdown.cjs +54 -93
- package/dist/cjs/toolbar/MoreDropdown.native.js +80 -93
- package/dist/cjs/toolbar/MoreDropdown.native.js.map +1 -1
- package/dist/cjs/toolbar/StatusBar.cjs +19 -10
- package/dist/cjs/toolbar/StatusBar.native.js +19 -10
- package/dist/cjs/toolbar/StatusBar.native.js.map +1 -1
- package/dist/cjs/toolbar/TableBubble.cjs +91 -96
- package/dist/cjs/toolbar/TableBubble.native.js +90 -73
- package/dist/cjs/toolbar/TableBubble.native.js.map +1 -1
- package/dist/cjs/toolbar/ToolbarButton.cjs +86 -21
- package/dist/cjs/toolbar/ToolbarButton.native.js +14 -4
- package/dist/cjs/toolbar/ToolbarButton.native.js.map +1 -1
- package/dist/cjs/toolbar/icons.cjs +111 -468
- package/dist/cjs/toolbar/shortcuts.cjs +73 -24
- package/dist/cjs/toolbar/shortcuts.native.js +73 -24
- package/dist/cjs/toolbar/shortcuts.native.js.map +1 -1
- package/dist/cjs/toolbar/useHorizontalScroll.cjs +25 -5
- package/dist/cjs/toolbar/useHorizontalScroll.native.js +25 -5
- package/dist/cjs/toolbar/useHorizontalScroll.native.js.map +1 -1
- package/dist/cjs/toolbar/useRovingFocus.cjs +80 -0
- package/dist/cjs/toolbar/useRovingFocus.native.js +113 -0
- package/dist/cjs/toolbar/useRovingFocus.native.js.map +1 -0
- package/dist/cjs/types.native.js.map +1 -1
- package/dist/esm/RichEditor.mjs +90 -10
- package/dist/esm/RichEditor.mjs.map +1 -1
- package/dist/esm/RichEditor.native.js +447 -38
- package/dist/esm/RichEditor.native.js.map +1 -1
- package/dist/esm/RichTextEditor/index.mjs +20 -2
- package/dist/esm/RichTextEditor/index.mjs.map +1 -1
- package/dist/esm/RichTextEditor/index.native.js +20 -2
- package/dist/esm/RichTextEditor/index.native.js.map +1 -1
- package/dist/esm/constants.mjs +47 -29
- package/dist/esm/constants.mjs.map +1 -1
- package/dist/esm/constants.native.js +54 -29
- package/dist/esm/constants.native.js.map +1 -1
- package/dist/esm/editor/BlockDragHandle.mjs +22 -7
- package/dist/esm/editor/BlockDragHandle.mjs.map +1 -1
- package/dist/esm/editor/BlockDragHandle.native.js +41 -7
- package/dist/esm/editor/BlockDragHandle.native.js.map +1 -1
- package/dist/esm/editor/SlashCommands.mjs +258 -295
- package/dist/esm/editor/SlashCommands.mjs.map +1 -1
- package/dist/esm/editor/SlashCommands.native.js +321 -342
- package/dist/esm/editor/SlashCommands.native.js.map +1 -1
- package/dist/esm/editor/TentapEditor.native.js +60 -13
- package/dist/esm/editor/TentapEditor.native.js.map +1 -1
- package/dist/esm/editor/TiptapEditor.mjs +145 -231
- package/dist/esm/editor/TiptapEditor.mjs.map +1 -1
- package/dist/esm/editor/TiptapEditor.native.js +165 -280
- package/dist/esm/editor/TiptapEditor.native.js.map +1 -1
- package/dist/esm/editor/blockAnchor.mjs +18 -0
- package/dist/esm/editor/blockAnchor.mjs.map +1 -0
- package/dist/esm/editor/blockAnchor.native.js +40 -0
- package/dist/esm/editor/blockAnchor.native.js.map +1 -0
- package/dist/esm/editor/capabilities.mjs +10 -0
- package/dist/esm/editor/capabilities.mjs.map +1 -0
- package/dist/esm/editor/capabilities.native.js +11 -0
- package/dist/esm/editor/capabilities.native.js.map +1 -0
- package/dist/esm/editor/codeBlockPreview.mjs +190 -0
- package/dist/esm/editor/codeBlockPreview.mjs.map +1 -0
- package/dist/esm/editor/codeBlockPreview.native.js +222 -0
- package/dist/esm/editor/codeBlockPreview.native.js.map +1 -0
- package/dist/esm/editor/editorStyles.mjs +203 -34
- package/dist/esm/editor/editorStyles.mjs.map +1 -1
- package/dist/esm/editor/editorStyles.native.js +203 -34
- package/dist/esm/editor/editorStyles.native.js.map +1 -1
- package/dist/esm/editor/emoji.mjs +88 -0
- package/dist/esm/editor/emoji.mjs.map +1 -0
- package/dist/esm/editor/emoji.native.js +141 -0
- package/dist/esm/editor/emoji.native.js.map +1 -0
- package/dist/esm/editor/extensions.mjs +236 -0
- package/dist/esm/editor/extensions.mjs.map +1 -0
- package/dist/esm/editor/extensions.native.js +286 -0
- package/dist/esm/editor/extensions.native.js.map +1 -0
- package/dist/esm/editor/lazyKatex.mjs +40 -0
- package/dist/esm/editor/lazyKatex.mjs.map +1 -0
- package/dist/esm/editor/lazyKatex.native.js +76 -0
- package/dist/esm/editor/lazyKatex.native.js.map +1 -0
- package/dist/esm/editor/markdown.mjs +179 -0
- package/dist/esm/editor/markdown.mjs.map +1 -0
- package/dist/esm/editor/markdown.native.js +238 -0
- package/dist/esm/editor/markdown.native.js.map +1 -0
- package/dist/esm/editor/mathematics.mjs +142 -0
- package/dist/esm/editor/mathematics.mjs.map +1 -0
- package/dist/esm/editor/mathematics.native.js +173 -0
- package/dist/esm/editor/mathematics.native.js.map +1 -0
- package/dist/esm/editor/media.mjs +113 -0
- package/dist/esm/editor/media.mjs.map +1 -0
- package/dist/esm/editor/media.native.js +144 -0
- package/dist/esm/editor/media.native.js.map +1 -0
- package/dist/esm/editor/mentions.mjs +37 -0
- package/dist/esm/editor/mentions.mjs.map +1 -0
- package/dist/esm/editor/mentions.native.js +45 -0
- package/dist/esm/editor/mentions.native.js.map +1 -0
- package/dist/esm/editor/pasteCleanup.mjs +57 -0
- package/dist/esm/editor/pasteCleanup.mjs.map +1 -0
- package/dist/esm/editor/pasteCleanup.native.js +146 -0
- package/dist/esm/editor/pasteCleanup.native.js.map +1 -0
- package/dist/esm/editor/suggestionPopup.mjs +268 -0
- package/dist/esm/editor/suggestionPopup.mjs.map +1 -0
- package/dist/esm/editor/suggestionPopup.native.js +295 -0
- package/dist/esm/editor/suggestionPopup.native.js.map +1 -0
- package/dist/esm/index.mjs +2 -1
- package/dist/esm/index.mjs.map +1 -1
- package/dist/esm/index.native.js +2 -1
- package/dist/esm/index.native.js.map +1 -1
- package/dist/esm/preview.mjs +236 -0
- package/dist/esm/preview.mjs.map +1 -0
- package/dist/esm/preview.native.js +264 -0
- package/dist/esm/preview.native.js.map +1 -0
- package/dist/esm/shared/t.mjs +17 -0
- package/dist/esm/shared/t.mjs.map +1 -0
- package/dist/esm/shared/t.native.js +17 -0
- package/dist/esm/shared/t.native.js.map +1 -0
- package/dist/esm/shared/url.mjs +10 -0
- package/dist/esm/shared/url.mjs.map +1 -0
- package/dist/esm/shared/url.native.js +10 -0
- package/dist/esm/shared/url.native.js.map +1 -0
- package/dist/esm/styled.mjs +13 -6
- package/dist/esm/styled.mjs.map +1 -1
- package/dist/esm/styled.native.js +13 -6
- package/dist/esm/styled.native.js.map +1 -1
- package/dist/esm/toolbar/BubbleToolbar.mjs +20 -15
- package/dist/esm/toolbar/BubbleToolbar.mjs.map +1 -1
- package/dist/esm/toolbar/BubbleToolbar.native.js +23 -16
- package/dist/esm/toolbar/BubbleToolbar.native.js.map +1 -1
- package/dist/esm/toolbar/CodeBlockBubble.mjs +60 -24
- package/dist/esm/toolbar/CodeBlockBubble.mjs.map +1 -1
- package/dist/esm/toolbar/CodeBlockBubble.native.js +72 -26
- package/dist/esm/toolbar/CodeBlockBubble.native.js.map +1 -1
- package/dist/esm/toolbar/ColorPicker.mjs +21 -56
- package/dist/esm/toolbar/ColorPicker.mjs.map +1 -1
- package/dist/esm/toolbar/ColorPicker.native.js +82 -180
- package/dist/esm/toolbar/ColorPicker.native.js.map +1 -1
- package/dist/esm/toolbar/FixedToolbar.mjs +40 -14
- package/dist/esm/toolbar/FixedToolbar.mjs.map +1 -1
- package/dist/esm/toolbar/FixedToolbar.native.js +47 -55
- package/dist/esm/toolbar/FixedToolbar.native.js.map +1 -1
- package/dist/esm/toolbar/HeadingPicker.mjs +34 -41
- package/dist/esm/toolbar/HeadingPicker.mjs.map +1 -1
- package/dist/esm/toolbar/HeadingPicker.native.js +63 -53
- package/dist/esm/toolbar/HeadingPicker.native.js.map +1 -1
- package/dist/esm/toolbar/ImageBubble.mjs +20 -43
- package/dist/esm/toolbar/ImageBubble.mjs.map +1 -1
- package/dist/esm/toolbar/ImageBubble.native.js +20 -43
- package/dist/esm/toolbar/ImageBubble.native.js.map +1 -1
- package/dist/esm/toolbar/ImageDialog.mjs +5 -4
- package/dist/esm/toolbar/ImageDialog.mjs.map +1 -1
- package/dist/esm/toolbar/ImageDialog.native.js +75 -64
- package/dist/esm/toolbar/ImageDialog.native.js.map +1 -1
- package/dist/esm/toolbar/LinkBubble.mjs +23 -70
- package/dist/esm/toolbar/LinkBubble.mjs.map +1 -1
- package/dist/esm/toolbar/LinkBubble.native.js +23 -70
- package/dist/esm/toolbar/LinkBubble.native.js.map +1 -1
- package/dist/esm/toolbar/LinkDialog.mjs +17 -16
- package/dist/esm/toolbar/LinkDialog.mjs.map +1 -1
- package/dist/esm/toolbar/LinkDialog.native.js +84 -80
- package/dist/esm/toolbar/LinkDialog.native.js.map +1 -1
- package/dist/esm/toolbar/ListPicker.mjs +33 -44
- package/dist/esm/toolbar/ListPicker.mjs.map +1 -1
- package/dist/esm/toolbar/ListPicker.native.js +44 -45
- package/dist/esm/toolbar/ListPicker.native.js.map +1 -1
- package/dist/esm/toolbar/MathBubble.mjs +134 -0
- package/dist/esm/toolbar/MathBubble.mjs.map +1 -0
- package/dist/esm/toolbar/MathBubble.native.js +141 -0
- package/dist/esm/toolbar/MathBubble.native.js.map +1 -0
- package/dist/esm/toolbar/MoreDropdown.mjs +53 -92
- package/dist/esm/toolbar/MoreDropdown.mjs.map +1 -1
- package/dist/esm/toolbar/MoreDropdown.native.js +79 -92
- package/dist/esm/toolbar/MoreDropdown.native.js.map +1 -1
- package/dist/esm/toolbar/StatusBar.mjs +19 -10
- package/dist/esm/toolbar/StatusBar.mjs.map +1 -1
- package/dist/esm/toolbar/StatusBar.native.js +19 -10
- package/dist/esm/toolbar/StatusBar.native.js.map +1 -1
- package/dist/esm/toolbar/TableBubble.mjs +91 -96
- package/dist/esm/toolbar/TableBubble.mjs.map +1 -1
- package/dist/esm/toolbar/TableBubble.native.js +90 -73
- package/dist/esm/toolbar/TableBubble.native.js.map +1 -1
- package/dist/esm/toolbar/ToolbarButton.mjs +87 -22
- package/dist/esm/toolbar/ToolbarButton.mjs.map +1 -1
- package/dist/esm/toolbar/ToolbarButton.native.js +14 -4
- package/dist/esm/toolbar/ToolbarButton.native.js.map +1 -1
- package/dist/esm/toolbar/icons.mjs +109 -469
- package/dist/esm/toolbar/icons.mjs.map +1 -1
- package/dist/esm/toolbar/shortcuts.mjs +73 -24
- package/dist/esm/toolbar/shortcuts.mjs.map +1 -1
- package/dist/esm/toolbar/shortcuts.native.js +73 -24
- package/dist/esm/toolbar/shortcuts.native.js.map +1 -1
- package/dist/esm/toolbar/useHorizontalScroll.mjs +25 -6
- package/dist/esm/toolbar/useHorizontalScroll.mjs.map +1 -1
- package/dist/esm/toolbar/useHorizontalScroll.native.js +25 -6
- package/dist/esm/toolbar/useHorizontalScroll.native.js.map +1 -1
- package/dist/esm/toolbar/useRovingFocus.mjs +55 -0
- package/dist/esm/toolbar/useRovingFocus.mjs.map +1 -0
- package/dist/esm/toolbar/useRovingFocus.native.js +85 -0
- package/dist/esm/toolbar/useRovingFocus.native.js.map +1 -0
- package/dist/esm/types.mjs.map +1 -1
- package/dist/esm/types.native.js.map +1 -1
- package/dist/jsx/RichEditor.mjs +90 -10
- package/dist/jsx/RichEditor.mjs.map +1 -1
- package/dist/jsx/RichEditor.native.js +444 -35
- package/dist/jsx/RichEditor.native.js.map +1 -1
- package/dist/jsx/RichTextEditor/index.mjs +20 -2
- package/dist/jsx/RichTextEditor/index.mjs.map +1 -1
- package/dist/jsx/RichTextEditor/index.native.js +20 -2
- package/dist/jsx/RichTextEditor/index.native.js.map +1 -1
- package/dist/jsx/constants.mjs +47 -29
- package/dist/jsx/constants.mjs.map +1 -1
- package/dist/jsx/constants.native.js +59 -29
- package/dist/jsx/constants.native.js.map +1 -1
- package/dist/jsx/editor/BlockDragHandle.mjs +22 -7
- package/dist/jsx/editor/BlockDragHandle.mjs.map +1 -1
- package/dist/jsx/editor/BlockDragHandle.native.js +41 -7
- package/dist/jsx/editor/BlockDragHandle.native.js.map +1 -1
- package/dist/jsx/editor/SlashCommands.mjs +258 -295
- package/dist/jsx/editor/SlashCommands.mjs.map +1 -1
- package/dist/jsx/editor/SlashCommands.native.js +320 -341
- package/dist/jsx/editor/SlashCommands.native.js.map +1 -1
- package/dist/jsx/editor/TentapEditor.native.js +59 -12
- package/dist/jsx/editor/TentapEditor.native.js.map +1 -1
- package/dist/jsx/editor/TiptapEditor.mjs +145 -231
- package/dist/jsx/editor/TiptapEditor.mjs.map +1 -1
- package/dist/jsx/editor/TiptapEditor.native.js +163 -289
- package/dist/jsx/editor/TiptapEditor.native.js.map +1 -1
- package/dist/jsx/editor/blockAnchor.mjs +18 -0
- package/dist/jsx/editor/blockAnchor.mjs.map +1 -0
- package/dist/jsx/editor/blockAnchor.native.js +68 -0
- package/dist/jsx/editor/blockAnchor.native.js.map +1 -0
- package/dist/jsx/editor/capabilities.mjs +10 -0
- package/dist/jsx/editor/capabilities.mjs.map +1 -0
- package/dist/jsx/editor/capabilities.native.js +41 -0
- package/dist/jsx/editor/capabilities.native.js.map +1 -0
- package/dist/jsx/editor/codeBlockPreview.mjs +190 -0
- package/dist/jsx/editor/codeBlockPreview.mjs.map +1 -0
- package/dist/jsx/editor/codeBlockPreview.native.js +265 -0
- package/dist/jsx/editor/codeBlockPreview.native.js.map +1 -0
- package/dist/jsx/editor/editorStyles.mjs +203 -34
- package/dist/jsx/editor/editorStyles.mjs.map +1 -1
- package/dist/jsx/editor/editorStyles.native.js +203 -34
- package/dist/jsx/editor/editorStyles.native.js.map +1 -1
- package/dist/jsx/editor/emoji.mjs +88 -0
- package/dist/jsx/editor/emoji.mjs.map +1 -0
- package/dist/jsx/editor/emoji.native.js +184 -0
- package/dist/jsx/editor/emoji.native.js.map +1 -0
- package/dist/jsx/editor/extensions.mjs +236 -0
- package/dist/jsx/editor/extensions.mjs.map +1 -0
- package/dist/jsx/editor/extensions.native.js +328 -0
- package/dist/jsx/editor/extensions.native.js.map +1 -0
- package/dist/jsx/editor/lazyKatex.mjs +40 -0
- package/dist/jsx/editor/lazyKatex.mjs.map +1 -0
- package/dist/jsx/editor/lazyKatex.native.js +117 -0
- package/dist/jsx/editor/lazyKatex.native.js.map +1 -0
- package/dist/jsx/editor/markdown.mjs +179 -0
- package/dist/jsx/editor/markdown.mjs.map +1 -0
- package/dist/jsx/editor/markdown.native.js +278 -0
- package/dist/jsx/editor/markdown.native.js.map +1 -0
- package/dist/jsx/editor/mathematics.mjs +142 -0
- package/dist/jsx/editor/mathematics.mjs.map +1 -0
- package/dist/jsx/editor/mathematics.native.js +202 -0
- package/dist/jsx/editor/mathematics.native.js.map +1 -0
- package/dist/jsx/editor/media.mjs +113 -0
- package/dist/jsx/editor/media.mjs.map +1 -0
- package/dist/jsx/editor/media.native.js +172 -0
- package/dist/jsx/editor/media.native.js.map +1 -0
- package/dist/jsx/editor/mentions.mjs +37 -0
- package/dist/jsx/editor/mentions.mjs.map +1 -0
- package/dist/jsx/editor/mentions.native.js +84 -0
- package/dist/jsx/editor/mentions.native.js.map +1 -0
- package/dist/jsx/editor/pasteCleanup.mjs +57 -0
- package/dist/jsx/editor/pasteCleanup.mjs.map +1 -0
- package/dist/jsx/editor/pasteCleanup.native.js +175 -0
- package/dist/jsx/editor/pasteCleanup.native.js.map +1 -0
- package/dist/jsx/editor/suggestionPopup.mjs +268 -0
- package/dist/jsx/editor/suggestionPopup.mjs.map +1 -0
- package/dist/jsx/editor/suggestionPopup.native.js +327 -0
- package/dist/jsx/editor/suggestionPopup.native.js.map +1 -0
- package/dist/jsx/index.js +2 -1
- package/dist/jsx/index.js.map +1 -1
- package/dist/jsx/index.mjs +2 -1
- package/dist/jsx/index.mjs.map +1 -1
- package/dist/jsx/index.native.js +4 -1
- package/dist/jsx/index.native.js.map +1 -1
- package/dist/jsx/preview.mjs +236 -0
- package/dist/jsx/preview.mjs.map +1 -0
- package/dist/jsx/preview.native.js +294 -0
- package/dist/jsx/preview.native.js.map +1 -0
- package/dist/jsx/shared/t.mjs +17 -0
- package/dist/jsx/shared/t.mjs.map +1 -0
- package/dist/jsx/shared/t.native.js +56 -0
- package/dist/jsx/shared/t.native.js.map +1 -0
- package/dist/jsx/shared/url.mjs +10 -0
- package/dist/jsx/shared/url.mjs.map +1 -0
- package/dist/jsx/shared/url.native.js +38 -0
- package/dist/jsx/shared/url.native.js.map +1 -0
- package/dist/jsx/styled.mjs +13 -6
- package/dist/jsx/styled.mjs.map +1 -1
- package/dist/jsx/styled.native.js +13 -6
- package/dist/jsx/styled.native.js.map +1 -1
- package/dist/jsx/toolbar/BubbleToolbar.mjs +20 -15
- package/dist/jsx/toolbar/BubbleToolbar.mjs.map +1 -1
- package/dist/jsx/toolbar/BubbleToolbar.native.js +22 -15
- package/dist/jsx/toolbar/BubbleToolbar.native.js.map +1 -1
- package/dist/jsx/toolbar/CodeBlockBubble.mjs +60 -24
- package/dist/jsx/toolbar/CodeBlockBubble.mjs.map +1 -1
- package/dist/jsx/toolbar/CodeBlockBubble.native.js +71 -25
- package/dist/jsx/toolbar/CodeBlockBubble.native.js.map +1 -1
- package/dist/jsx/toolbar/ColorPicker.mjs +21 -56
- package/dist/jsx/toolbar/ColorPicker.mjs.map +1 -1
- package/dist/jsx/toolbar/ColorPicker.native.js +81 -179
- package/dist/jsx/toolbar/ColorPicker.native.js.map +1 -1
- package/dist/jsx/toolbar/FixedToolbar.mjs +40 -14
- package/dist/jsx/toolbar/FixedToolbar.mjs.map +1 -1
- package/dist/jsx/toolbar/FixedToolbar.native.js +46 -54
- package/dist/jsx/toolbar/FixedToolbar.native.js.map +1 -1
- package/dist/jsx/toolbar/HeadingPicker.mjs +34 -41
- package/dist/jsx/toolbar/HeadingPicker.mjs.map +1 -1
- package/dist/jsx/toolbar/HeadingPicker.native.js +61 -51
- package/dist/jsx/toolbar/HeadingPicker.native.js.map +1 -1
- package/dist/jsx/toolbar/ImageBubble.mjs +20 -43
- package/dist/jsx/toolbar/ImageBubble.mjs.map +1 -1
- package/dist/jsx/toolbar/ImageBubble.native.js +20 -43
- package/dist/jsx/toolbar/ImageBubble.native.js.map +1 -1
- package/dist/jsx/toolbar/ImageDialog.mjs +5 -4
- package/dist/jsx/toolbar/ImageDialog.mjs.map +1 -1
- package/dist/jsx/toolbar/ImageDialog.native.js +76 -65
- package/dist/jsx/toolbar/ImageDialog.native.js.map +1 -1
- package/dist/jsx/toolbar/LinkBubble.mjs +23 -70
- package/dist/jsx/toolbar/LinkBubble.mjs.map +1 -1
- package/dist/jsx/toolbar/LinkBubble.native.js +23 -70
- package/dist/jsx/toolbar/LinkBubble.native.js.map +1 -1
- package/dist/jsx/toolbar/LinkDialog.mjs +17 -16
- package/dist/jsx/toolbar/LinkDialog.mjs.map +1 -1
- package/dist/jsx/toolbar/LinkDialog.native.js +86 -83
- package/dist/jsx/toolbar/LinkDialog.native.js.map +1 -1
- package/dist/jsx/toolbar/ListPicker.mjs +33 -44
- package/dist/jsx/toolbar/ListPicker.mjs.map +1 -1
- package/dist/jsx/toolbar/ListPicker.native.js +43 -44
- package/dist/jsx/toolbar/ListPicker.native.js.map +1 -1
- package/dist/jsx/toolbar/MathBubble.mjs +134 -0
- package/dist/jsx/toolbar/MathBubble.mjs.map +1 -0
- package/dist/jsx/toolbar/MathBubble.native.js +169 -0
- package/dist/jsx/toolbar/MathBubble.native.js.map +1 -0
- package/dist/jsx/toolbar/MoreDropdown.mjs +53 -92
- package/dist/jsx/toolbar/MoreDropdown.mjs.map +1 -1
- package/dist/jsx/toolbar/MoreDropdown.native.js +80 -93
- package/dist/jsx/toolbar/MoreDropdown.native.js.map +1 -1
- package/dist/jsx/toolbar/StatusBar.mjs +19 -10
- package/dist/jsx/toolbar/StatusBar.mjs.map +1 -1
- package/dist/jsx/toolbar/StatusBar.native.js +19 -10
- package/dist/jsx/toolbar/StatusBar.native.js.map +1 -1
- package/dist/jsx/toolbar/TableBubble.mjs +91 -96
- package/dist/jsx/toolbar/TableBubble.mjs.map +1 -1
- package/dist/jsx/toolbar/TableBubble.native.js +90 -73
- package/dist/jsx/toolbar/TableBubble.native.js.map +1 -1
- package/dist/jsx/toolbar/ToolbarButton.mjs +87 -22
- package/dist/jsx/toolbar/ToolbarButton.mjs.map +1 -1
- package/dist/jsx/toolbar/ToolbarButton.native.js +14 -4
- package/dist/jsx/toolbar/ToolbarButton.native.js.map +1 -1
- package/dist/jsx/toolbar/icons.mjs +109 -469
- package/dist/jsx/toolbar/icons.mjs.map +1 -1
- package/dist/jsx/toolbar/shortcuts.mjs +73 -24
- package/dist/jsx/toolbar/shortcuts.mjs.map +1 -1
- package/dist/jsx/toolbar/shortcuts.native.js +73 -24
- package/dist/jsx/toolbar/shortcuts.native.js.map +1 -1
- package/dist/jsx/toolbar/useHorizontalScroll.mjs +25 -6
- package/dist/jsx/toolbar/useHorizontalScroll.mjs.map +1 -1
- package/dist/jsx/toolbar/useHorizontalScroll.native.js +25 -5
- package/dist/jsx/toolbar/useHorizontalScroll.native.js.map +1 -1
- package/dist/jsx/toolbar/useRovingFocus.mjs +55 -0
- package/dist/jsx/toolbar/useRovingFocus.mjs.map +1 -0
- package/dist/jsx/toolbar/useRovingFocus.native.js +113 -0
- package/dist/jsx/toolbar/useRovingFocus.native.js.map +1 -0
- package/dist/jsx/types.mjs.map +1 -1
- package/dist/jsx/types.native.js.map +1 -1
- package/package.json +28 -13
- package/src/RichEditor.native.tsx +471 -49
- package/src/RichEditor.stories.tsx +190 -0
- package/src/RichEditor.tsx +126 -7
- package/src/RichTextEditor/index.tsx +54 -3
- package/src/RichTextEditor/richTextEditor.spec.tsx +11 -4
- package/src/constants.ts +86 -24
- package/src/editor/BlockDragHandle.ts +30 -5
- package/src/editor/SlashCommands.tsx +238 -293
- package/src/editor/TentapEditor.native.tsx +81 -17
- package/src/editor/TiptapEditor.tsx +202 -265
- package/src/editor/blockAnchor.spec.ts +70 -0
- package/src/editor/blockAnchor.ts +42 -0
- package/src/editor/capabilities.spec.ts +190 -0
- package/src/editor/capabilities.ts +76 -0
- package/src/editor/codeBlockPreview.spec.ts +144 -0
- package/src/editor/codeBlockPreview.ts +266 -0
- package/src/editor/css.d.ts +2 -0
- package/src/editor/details.spec.ts +48 -0
- package/src/editor/editorStyles.spec.ts +25 -0
- package/src/editor/editorStyles.ts +218 -34
- package/src/editor/emoji.spec.ts +88 -0
- package/src/editor/emoji.ts +147 -0
- package/src/editor/emojilib.d.ts +16 -0
- package/src/editor/extensions.ts +315 -0
- package/src/editor/lazyKatex.spec.ts +38 -0
- package/src/editor/lazyKatex.ts +68 -0
- package/src/editor/markdown.spec.ts +196 -0
- package/src/editor/markdown.ts +249 -0
- package/src/editor/mathematics.spec.ts +97 -0
- package/src/editor/mathematics.ts +179 -0
- package/src/editor/media.spec.ts +121 -0
- package/src/editor/media.ts +133 -0
- package/src/editor/mentions.spec.ts +41 -0
- package/src/editor/mentions.ts +55 -0
- package/src/editor/pasteCleanup.spec.ts +84 -0
- package/src/editor/pasteCleanup.ts +124 -0
- package/src/editor/suggestionPopup.spec.tsx +105 -0
- package/src/editor/suggestionPopup.tsx +414 -0
- package/src/editor/tiptapEditor.spec.tsx +15 -8
- package/src/exports.spec.ts +4 -2
- package/src/index.ts +10 -1
- package/src/integration.spec.tsx +38 -9
- package/src/preview.spec.ts +130 -0
- package/src/preview.ts +287 -0
- package/src/richEditor.spec.tsx +10 -3
- package/src/shared/t.ts +25 -0
- package/src/shared/url.ts +16 -0
- package/src/styled.ts +13 -6
- package/src/toolbar/BubbleToolbar.tsx +48 -33
- package/src/toolbar/CodeBlockBubble.tsx +66 -28
- package/src/toolbar/ColorPicker.native.tsx +126 -0
- package/src/toolbar/ColorPicker.tsx +23 -67
- package/src/toolbar/FixedToolbar.native.tsx +51 -51
- package/src/toolbar/FixedToolbar.tsx +73 -21
- package/src/toolbar/HeadingPicker.tsx +46 -38
- package/src/toolbar/ImageBubble.tsx +26 -44
- package/src/toolbar/ImageDialog.native.tsx +97 -0
- package/src/toolbar/ImageDialog.tsx +5 -4
- package/src/toolbar/LinkBubble.tsx +27 -64
- package/src/toolbar/LinkDialog.native.tsx +117 -0
- package/src/toolbar/LinkDialog.tsx +28 -24
- package/src/toolbar/ListPicker.tsx +47 -43
- package/src/toolbar/MathBubble.tsx +140 -0
- package/src/toolbar/MoreDropdown.tsx +79 -62
- package/src/toolbar/StatusBar.tsx +13 -8
- package/src/toolbar/TableBubble.tsx +136 -95
- package/src/toolbar/ToolbarButton.native.tsx +14 -4
- package/src/toolbar/ToolbarButton.tsx +98 -19
- package/src/toolbar/bubbleToolbar.spec.tsx +2 -1
- package/src/toolbar/fixedToolbar.spec.tsx +4 -2
- package/src/toolbar/icons.tsx +113 -323
- package/src/toolbar/shortcuts.ts +77 -24
- package/src/toolbar/toolbarPrimitives.spec.tsx +29 -1
- package/src/toolbar/toolbarSubComponents.spec.tsx +4 -2
- package/src/toolbar/useHorizontalScroll.spec.ts +67 -0
- package/src/toolbar/useHorizontalScroll.tsx +39 -12
- package/src/toolbar/useRovingFocus.spec.tsx +100 -0
- package/src/toolbar/useRovingFocus.ts +82 -0
- package/src/types.spec.ts +40 -1
- package/src/types.ts +56 -1
- package/types/RichEditor.d.ts +51 -0
- package/types/RichEditor.d.ts.map +1 -0
- package/types/RichEditor.native.d.ts +59 -0
- package/types/RichEditor.native.d.ts.map +1 -0
- package/types/RichTextEditor/index.d.ts +77 -0
- package/types/RichTextEditor/index.d.ts.map +1 -0
- package/types/constants.d.ts +49 -0
- package/types/constants.d.ts.map +1 -0
- package/types/context.d.ts +10 -0
- package/types/context.d.ts.map +1 -0
- package/types/editor/BlockDragHandle.d.ts +8 -0
- package/types/editor/BlockDragHandle.d.ts.map +1 -0
- package/types/editor/MarkdownPaste.d.ts +8 -0
- package/types/editor/MarkdownPaste.d.ts.map +1 -0
- package/types/editor/SlashCommands.d.ts +24 -0
- package/types/editor/SlashCommands.d.ts.map +1 -0
- package/types/editor/TentapEditor.native.d.ts +21 -0
- package/types/editor/TentapEditor.native.d.ts.map +1 -0
- package/types/editor/TiptapEditor.d.ts +24 -0
- package/types/editor/TiptapEditor.d.ts.map +1 -0
- package/types/editor/blockAnchor.d.ts +25 -0
- package/types/editor/blockAnchor.d.ts.map +1 -0
- package/types/editor/capabilities.d.ts +29 -0
- package/types/editor/capabilities.d.ts.map +1 -0
- package/types/editor/codeBlockPreview.d.ts +51 -0
- package/types/editor/codeBlockPreview.d.ts.map +1 -0
- package/types/editor/editorStyles.d.ts +25 -0
- package/types/editor/editorStyles.d.ts.map +1 -0
- package/types/editor/emoji.d.ts +45 -0
- package/types/editor/emoji.d.ts.map +1 -0
- package/types/editor/extensions.d.ts +41 -0
- package/types/editor/extensions.d.ts.map +1 -0
- package/types/editor/index.d.ts +11 -0
- package/types/editor/index.d.ts.map +1 -0
- package/types/editor/lazyKatex.d.ts +33 -0
- package/types/editor/lazyKatex.d.ts.map +1 -0
- package/types/editor/markdown.d.ts +24 -0
- package/types/editor/markdown.d.ts.map +1 -0
- package/types/editor/mathematics.d.ts +44 -0
- package/types/editor/mathematics.d.ts.map +1 -0
- package/types/editor/media.d.ts +32 -0
- package/types/editor/media.d.ts.map +1 -0
- package/types/editor/mentions.d.ts +15 -0
- package/types/editor/mentions.d.ts.map +1 -0
- package/types/editor/pasteCleanup.d.ts +24 -0
- package/types/editor/pasteCleanup.d.ts.map +1 -0
- package/types/editor/suggestionPopup.d.ts +113 -0
- package/types/editor/suggestionPopup.d.ts.map +1 -0
- package/types/editor/types.d.ts +80 -0
- package/types/editor/types.d.ts.map +1 -0
- package/types/editor/useEditorState.d.ts +19 -0
- package/types/editor/useEditorState.d.ts.map +1 -0
- package/types/index.d.ts +12 -0
- package/types/index.d.ts.map +1 -0
- package/types/preview.d.ts +44 -0
- package/types/preview.d.ts.map +1 -0
- package/types/shared/t.d.ts +10 -0
- package/types/shared/t.d.ts.map +1 -0
- package/types/shared/url.d.ts +9 -0
- package/types/shared/url.d.ts.map +1 -0
- package/types/styled.d.ts +40 -0
- package/types/styled.d.ts.map +1 -0
- package/types/toolbar/BubbleToolbar.d.ts +25 -0
- package/types/toolbar/BubbleToolbar.d.ts.map +1 -0
- package/types/toolbar/CodeBlockBubble.d.ts +10 -0
- package/types/toolbar/CodeBlockBubble.d.ts.map +1 -0
- package/types/toolbar/ColorPicker.d.ts +15 -0
- package/types/toolbar/ColorPicker.d.ts.map +1 -0
- package/types/toolbar/ColorPicker.native.d.ts +20 -0
- package/types/toolbar/ColorPicker.native.d.ts.map +1 -0
- package/types/toolbar/FixedToolbar.d.ts +34 -0
- package/types/toolbar/FixedToolbar.d.ts.map +1 -0
- package/types/toolbar/FixedToolbar.native.d.ts +30 -0
- package/types/toolbar/FixedToolbar.native.d.ts.map +1 -0
- package/types/toolbar/HeadingPicker.d.ts +14 -0
- package/types/toolbar/HeadingPicker.d.ts.map +1 -0
- package/types/toolbar/ImageBubble.d.ts +10 -0
- package/types/toolbar/ImageBubble.d.ts.map +1 -0
- package/types/toolbar/ImageDialog.d.ts +12 -0
- package/types/toolbar/ImageDialog.d.ts.map +1 -0
- package/types/toolbar/ImageDialog.native.d.ts +15 -0
- package/types/toolbar/ImageDialog.native.d.ts.map +1 -0
- package/types/toolbar/LinkBubble.d.ts +10 -0
- package/types/toolbar/LinkBubble.d.ts.map +1 -0
- package/types/toolbar/LinkDialog.d.ts +20 -0
- package/types/toolbar/LinkDialog.d.ts.map +1 -0
- package/types/toolbar/LinkDialog.native.d.ts +18 -0
- package/types/toolbar/LinkDialog.native.d.ts.map +1 -0
- package/types/toolbar/ListPicker.d.ts +14 -0
- package/types/toolbar/ListPicker.d.ts.map +1 -0
- package/types/toolbar/MathBubble.d.ts +11 -0
- package/types/toolbar/MathBubble.d.ts.map +1 -0
- package/types/toolbar/MoreDropdown.d.ts +15 -0
- package/types/toolbar/MoreDropdown.d.ts.map +1 -0
- package/types/toolbar/ResizeHandle.d.ts +11 -0
- package/types/toolbar/ResizeHandle.d.ts.map +1 -0
- package/types/toolbar/StatusBar.d.ts +11 -0
- package/types/toolbar/StatusBar.d.ts.map +1 -0
- package/types/toolbar/TableBubble.d.ts +13 -0
- package/types/toolbar/TableBubble.d.ts.map +1 -0
- package/types/toolbar/ToolbarButton.d.ts +35 -0
- package/types/toolbar/ToolbarButton.d.ts.map +1 -0
- package/types/toolbar/ToolbarButton.native.d.ts +30 -0
- package/types/toolbar/ToolbarButton.native.d.ts.map +1 -0
- package/types/toolbar/ToolbarGroup.d.ts +14 -0
- package/types/toolbar/ToolbarGroup.d.ts.map +1 -0
- package/types/toolbar/icons.d.ts +52 -0
- package/types/toolbar/icons.d.ts.map +1 -0
- package/types/toolbar/icons.native.d.ts +41 -0
- package/types/toolbar/icons.native.d.ts.map +1 -0
- package/types/toolbar/shortcuts.d.ts +34 -0
- package/types/toolbar/shortcuts.d.ts.map +1 -0
- package/types/toolbar/useHorizontalScroll.d.ts +43 -0
- package/types/toolbar/useHorizontalScroll.d.ts.map +1 -0
- package/types/toolbar/useRovingFocus.d.ts +10 -0
- package/types/toolbar/useRovingFocus.d.ts.map +1 -0
- package/types/types.d.ts +147 -0
- package/types/types.d.ts.map +1 -0
- package/dist/cjs/RichEditor.stories.cjs +0 -327
- package/dist/cjs/RichEditor.stories.native.js +0 -342
- package/dist/cjs/RichEditor.stories.native.js.map +0 -1
- package/dist/esm/RichEditor.stories.mjs +0 -291
- package/dist/esm/RichEditor.stories.mjs.map +0 -1
- package/dist/esm/RichEditor.stories.native.js +0 -303
- package/dist/esm/RichEditor.stories.native.js.map +0 -1
- package/dist/jsx/RichEditor.stories.mjs +0 -291
- package/dist/jsx/RichEditor.stories.mjs.map +0 -1
- package/dist/jsx/RichEditor.stories.native.js +0 -342
- package/dist/jsx/RichEditor.stories.native.js.map +0 -1
|
@@ -7,81 +7,110 @@ import { useState } from "react";
|
|
|
7
7
|
import type { Editor } from "@tiptap/react";
|
|
8
8
|
import { BubbleMenu } from "@tiptap/react/menus";
|
|
9
9
|
import { useResolvedKnobs } from "@multiplatform.one/theme";
|
|
10
|
+
import { ColumnsPlusRightIcon, RowsPlusBottomIcon, TrashIcon } from "@phosphor-icons/react";
|
|
10
11
|
import { Popover, Text, XStack, YStack } from "tamagui";
|
|
11
12
|
import { DropdownMenuItemFrame, ToolbarSeparatorFrame } from "../styled";
|
|
13
|
+
import type { EditorCapabilities } from "../types";
|
|
14
|
+
import { getBlockVirtualElement } from "../editor/blockAnchor";
|
|
12
15
|
import { ToolbarButton, ToolbarDropdownButton } from "./ToolbarButton";
|
|
13
|
-
|
|
14
|
-
function RowPlusIcon() {
|
|
15
|
-
return (
|
|
16
|
-
<svg
|
|
17
|
-
width="14"
|
|
18
|
-
height="14"
|
|
19
|
-
viewBox="0 0 24 24"
|
|
20
|
-
fill="none"
|
|
21
|
-
stroke="currentColor"
|
|
22
|
-
strokeWidth="2"
|
|
23
|
-
>
|
|
24
|
-
<line x1="12" y1="5" x2="12" y2="19" />
|
|
25
|
-
<line x1="5" y1="12" x2="19" y2="12" />
|
|
26
|
-
</svg>
|
|
27
|
-
);
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
function TrashIcon() {
|
|
31
|
-
return (
|
|
32
|
-
<svg
|
|
33
|
-
width="14"
|
|
34
|
-
height="14"
|
|
35
|
-
viewBox="0 0 24 24"
|
|
36
|
-
fill="none"
|
|
37
|
-
stroke="currentColor"
|
|
38
|
-
strokeWidth="2"
|
|
39
|
-
>
|
|
40
|
-
<polyline points="3 6 5 6 21 6" />
|
|
41
|
-
<path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" />
|
|
42
|
-
</svg>
|
|
43
|
-
);
|
|
44
|
-
}
|
|
16
|
+
import { t } from "../shared/t";
|
|
45
17
|
|
|
46
18
|
interface TableAction {
|
|
47
|
-
|
|
19
|
+
/** Stable identifier (capability filtering) */
|
|
20
|
+
id: string;
|
|
21
|
+
label: () => string;
|
|
48
22
|
action: (editor: Editor) => void;
|
|
49
23
|
}
|
|
50
24
|
|
|
51
25
|
const ROW_ACTIONS: TableAction[] = [
|
|
52
|
-
{
|
|
53
|
-
|
|
54
|
-
|
|
26
|
+
{
|
|
27
|
+
id: "addRowBefore",
|
|
28
|
+
label: () => t("Add row above"),
|
|
29
|
+
action: (e) => e.chain().focus().addRowBefore().run(),
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
id: "addRowAfter",
|
|
33
|
+
label: () => t("Add row below"),
|
|
34
|
+
action: (e) => e.chain().focus().addRowAfter().run(),
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
id: "deleteRow",
|
|
38
|
+
label: () => t("Delete row"),
|
|
39
|
+
action: (e) => e.chain().focus().deleteRow().run(),
|
|
40
|
+
},
|
|
55
41
|
];
|
|
56
42
|
|
|
57
43
|
const COL_ACTIONS: TableAction[] = [
|
|
58
|
-
{
|
|
59
|
-
|
|
60
|
-
|
|
44
|
+
{
|
|
45
|
+
id: "addColumnBefore",
|
|
46
|
+
label: () => t("Add column before"),
|
|
47
|
+
action: (e) => e.chain().focus().addColumnBefore().run(),
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
id: "addColumnAfter",
|
|
51
|
+
label: () => t("Add column after"),
|
|
52
|
+
action: (e) => e.chain().focus().addColumnAfter().run(),
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
id: "deleteColumn",
|
|
56
|
+
label: () => t("Delete column"),
|
|
57
|
+
action: (e) => e.chain().focus().deleteColumn().run(),
|
|
58
|
+
},
|
|
61
59
|
];
|
|
62
60
|
|
|
63
61
|
const TABLE_ACTIONS: TableAction[] = [
|
|
64
|
-
{
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
62
|
+
{
|
|
63
|
+
id: "toggleHeaderRow",
|
|
64
|
+
label: () => t("Toggle header row"),
|
|
65
|
+
action: (e) => e.chain().focus().toggleHeaderRow().run(),
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
id: "mergeCells",
|
|
69
|
+
label: () => t("Merge cells"),
|
|
70
|
+
action: (e) => e.chain().focus().mergeCells().run(),
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
id: "splitCell",
|
|
74
|
+
label: () => t("Split cell"),
|
|
75
|
+
action: (e) => e.chain().focus().splitCell().run(),
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
id: "deleteTable",
|
|
79
|
+
label: () => t("Delete table"),
|
|
80
|
+
action: (e) => e.chain().focus().deleteTable().run(),
|
|
81
|
+
},
|
|
68
82
|
];
|
|
69
83
|
|
|
84
|
+
/** GFM pipe tables are simple grids — merge/split have no markdown form (LC-52) */
|
|
85
|
+
const MARKDOWN_EXCLUDED_TABLE_ACTIONS = new Set(["mergeCells", "splitCell"]);
|
|
86
|
+
|
|
70
87
|
export interface TableBubbleProps {
|
|
71
88
|
editor: Editor | null;
|
|
89
|
+
/** Capability surface — markdown drops merge/split (default "full") */
|
|
90
|
+
capabilities?: EditorCapabilities;
|
|
72
91
|
}
|
|
73
92
|
|
|
74
|
-
export function TableBubble({ editor }: TableBubbleProps) {
|
|
93
|
+
export function TableBubble({ editor, capabilities = "full" }: TableBubbleProps) {
|
|
75
94
|
const { knobProps } = useResolvedKnobs();
|
|
76
95
|
const [menuOpen, setMenuOpen] = useState(false);
|
|
77
96
|
|
|
97
|
+
const tableActions =
|
|
98
|
+
capabilities === "markdown"
|
|
99
|
+
? TABLE_ACTIONS.filter((a) => !MARKDOWN_EXCLUDED_TABLE_ACTIONS.has(a.id))
|
|
100
|
+
: TABLE_ACTIONS;
|
|
101
|
+
|
|
78
102
|
if (!editor) return null;
|
|
79
103
|
|
|
80
104
|
return (
|
|
81
105
|
<BubbleMenu
|
|
82
106
|
editor={editor}
|
|
107
|
+
className="rt-bubble-menu"
|
|
83
108
|
shouldShow={({ editor: e }) => e.isActive("table")}
|
|
84
|
-
|
|
109
|
+
// Anchor to the table rect (not the caret) so the bubble never covers
|
|
110
|
+
// the first row and holds still while typing in cells (LC-06 spirit:
|
|
111
|
+
// chrome must not sit on top of the content being edited).
|
|
112
|
+
getReferencedVirtualElement={() => getBlockVirtualElement(editor, "table")}
|
|
113
|
+
options={{ placement: "top-start", offset: 6 }}
|
|
85
114
|
>
|
|
86
115
|
<XStack
|
|
87
116
|
backgroundColor="$background"
|
|
@@ -95,30 +124,33 @@ export function TableBubble({ editor }: TableBubbleProps) {
|
|
|
95
124
|
>
|
|
96
125
|
<ToolbarButton
|
|
97
126
|
onPress={() => editor.chain().focus().addRowAfter().run()}
|
|
98
|
-
aria-label="Add row"
|
|
99
|
-
tooltip="Add row below"
|
|
127
|
+
aria-label={t("Add row")}
|
|
128
|
+
tooltip={t("Add row below")}
|
|
100
129
|
>
|
|
101
|
-
<
|
|
130
|
+
<RowsPlusBottomIcon size={14} />
|
|
102
131
|
</ToolbarButton>
|
|
103
132
|
|
|
104
133
|
<ToolbarButton
|
|
105
134
|
onPress={() => editor.chain().focus().addColumnAfter().run()}
|
|
106
|
-
aria-label="Add column"
|
|
107
|
-
tooltip="Add column after"
|
|
135
|
+
aria-label={t("Add column")}
|
|
136
|
+
tooltip={t("Add column after")}
|
|
108
137
|
>
|
|
109
|
-
<
|
|
110
|
-
+Col
|
|
111
|
-
</Text>
|
|
138
|
+
<ColumnsPlusRightIcon size={14} />
|
|
112
139
|
</ToolbarButton>
|
|
113
140
|
|
|
114
141
|
<Popover open={menuOpen} onOpenChange={setMenuOpen} placement="bottom">
|
|
115
142
|
<Popover.Trigger asChild>
|
|
116
|
-
<ToolbarDropdownButton
|
|
117
|
-
|
|
143
|
+
<ToolbarDropdownButton
|
|
144
|
+
onPress={() => setMenuOpen(true)}
|
|
145
|
+
aria-label={t("Table options")}
|
|
146
|
+
>
|
|
147
|
+
<Text fontSize={12}>{t("Table")}</Text>
|
|
118
148
|
</ToolbarDropdownButton>
|
|
119
149
|
</Popover.Trigger>
|
|
120
150
|
<Popover.Content
|
|
121
|
-
|
|
151
|
+
// SP-EDGE: container owns only its border — items own all padding.
|
|
152
|
+
padding={0}
|
|
153
|
+
overflow="hidden"
|
|
122
154
|
backgroundColor="$background"
|
|
123
155
|
borderWidth={1}
|
|
124
156
|
borderColor="$borderColor"
|
|
@@ -128,18 +160,21 @@ export function TableBubble({ editor }: TableBubbleProps) {
|
|
|
128
160
|
exitStyle={{ opacity: 0, y: -5 }}
|
|
129
161
|
>
|
|
130
162
|
<YStack gap="$0.5" minWidth={180}>
|
|
131
|
-
{ROW_ACTIONS.map((a) =>
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
163
|
+
{ROW_ACTIONS.map((a) => {
|
|
164
|
+
const label = a.label();
|
|
165
|
+
return (
|
|
166
|
+
<DropdownMenuItemFrame
|
|
167
|
+
key={label}
|
|
168
|
+
onPress={() => {
|
|
169
|
+
a.action(editor);
|
|
170
|
+
setMenuOpen(false);
|
|
171
|
+
}}
|
|
172
|
+
aria-label={label}
|
|
173
|
+
>
|
|
174
|
+
<Text fontSize={13}>{label}</Text>
|
|
175
|
+
</DropdownMenuItemFrame>
|
|
176
|
+
);
|
|
177
|
+
})}
|
|
143
178
|
<XStack paddingVertical="$0.5">
|
|
144
179
|
<ToolbarSeparatorFrame
|
|
145
180
|
vertical={false}
|
|
@@ -148,18 +183,21 @@ export function TableBubble({ editor }: TableBubbleProps) {
|
|
|
148
183
|
marginHorizontal={0}
|
|
149
184
|
/>
|
|
150
185
|
</XStack>
|
|
151
|
-
{COL_ACTIONS.map((a) =>
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
186
|
+
{COL_ACTIONS.map((a) => {
|
|
187
|
+
const label = a.label();
|
|
188
|
+
return (
|
|
189
|
+
<DropdownMenuItemFrame
|
|
190
|
+
key={label}
|
|
191
|
+
onPress={() => {
|
|
192
|
+
a.action(editor);
|
|
193
|
+
setMenuOpen(false);
|
|
194
|
+
}}
|
|
195
|
+
aria-label={label}
|
|
196
|
+
>
|
|
197
|
+
<Text fontSize={13}>{label}</Text>
|
|
198
|
+
</DropdownMenuItemFrame>
|
|
199
|
+
);
|
|
200
|
+
})}
|
|
163
201
|
<XStack paddingVertical="$0.5">
|
|
164
202
|
<ToolbarSeparatorFrame
|
|
165
203
|
vertical={false}
|
|
@@ -168,28 +206,31 @@ export function TableBubble({ editor }: TableBubbleProps) {
|
|
|
168
206
|
marginHorizontal={0}
|
|
169
207
|
/>
|
|
170
208
|
</XStack>
|
|
171
|
-
{
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
209
|
+
{tableActions.map((a) => {
|
|
210
|
+
const label = a.label();
|
|
211
|
+
return (
|
|
212
|
+
<DropdownMenuItemFrame
|
|
213
|
+
key={label}
|
|
214
|
+
onPress={() => {
|
|
215
|
+
a.action(editor);
|
|
216
|
+
setMenuOpen(false);
|
|
217
|
+
}}
|
|
218
|
+
aria-label={label}
|
|
219
|
+
>
|
|
220
|
+
<Text fontSize={13}>{label}</Text>
|
|
221
|
+
</DropdownMenuItemFrame>
|
|
222
|
+
);
|
|
223
|
+
})}
|
|
183
224
|
</YStack>
|
|
184
225
|
</Popover.Content>
|
|
185
226
|
</Popover>
|
|
186
227
|
|
|
187
228
|
<ToolbarButton
|
|
188
229
|
onPress={() => editor.chain().focus().deleteTable().run()}
|
|
189
|
-
aria-label="Delete table"
|
|
190
|
-
tooltip="Delete table"
|
|
230
|
+
aria-label={t("Delete table")}
|
|
231
|
+
tooltip={t("Delete table")}
|
|
191
232
|
>
|
|
192
|
-
<TrashIcon />
|
|
233
|
+
<TrashIcon size={14} />
|
|
193
234
|
</ToolbarButton>
|
|
194
235
|
</XStack>
|
|
195
236
|
</BubbleMenu>
|
|
@@ -19,6 +19,8 @@ export interface ToolbarButtonProps {
|
|
|
19
19
|
onPress: () => void;
|
|
20
20
|
children: ReactNode;
|
|
21
21
|
"aria-label": string;
|
|
22
|
+
/** Marks the button as a toggle; reflects the pressed state to AT */
|
|
23
|
+
"aria-pressed"?: boolean;
|
|
22
24
|
tooltip?: string;
|
|
23
25
|
size?: SizeTokens;
|
|
24
26
|
compact?: boolean;
|
|
@@ -45,21 +47,27 @@ export function ToolbarButton({
|
|
|
45
47
|
children,
|
|
46
48
|
size: sizeProp,
|
|
47
49
|
compact: compactProp,
|
|
50
|
+
"aria-pressed": ariaPressed,
|
|
48
51
|
...props
|
|
49
52
|
}: ToolbarButtonProps) {
|
|
50
53
|
const ctx = RichEditorContext.useStyledContext();
|
|
51
54
|
const size = sizeProp ?? (ctx.size as SizeTokens);
|
|
52
55
|
const compact = compactProp ?? ctx.compact;
|
|
53
56
|
const isDisabled = disabled ?? ctx.disabled;
|
|
57
|
+
const pressed = ariaPressed ?? (active !== undefined ? !!active : undefined);
|
|
54
58
|
|
|
55
59
|
return (
|
|
56
60
|
<Button
|
|
57
61
|
chromeless
|
|
58
62
|
size={size}
|
|
59
63
|
compact={compact}
|
|
60
|
-
disabled
|
|
61
|
-
|
|
64
|
+
// DG-ST-03: aria-disabled explain, mirroring ToolbarButton.tsx —
|
|
65
|
+
// focusable, state announced, press swallowed, chrome dimmed.
|
|
66
|
+
aria-disabled={isDisabled || undefined}
|
|
67
|
+
onPress={isDisabled ? undefined : onPress}
|
|
68
|
+
opacity={isDisabled ? 0.5 : 1}
|
|
62
69
|
paddingHorizontal="$2"
|
|
70
|
+
{...(pressed !== undefined ? { "aria-pressed": pressed } : undefined)}
|
|
63
71
|
{...(active ? { theme: "active" } : undefined)}
|
|
64
72
|
{...props}
|
|
65
73
|
>
|
|
@@ -91,8 +99,10 @@ export function ToolbarDropdownButton({
|
|
|
91
99
|
chromeless
|
|
92
100
|
size={size}
|
|
93
101
|
compact={compact}
|
|
94
|
-
disabled
|
|
95
|
-
|
|
102
|
+
// DG-ST-03: aria-disabled explain (see ToolbarButton above).
|
|
103
|
+
aria-disabled={isDisabled || undefined}
|
|
104
|
+
onPress={isDisabled ? undefined : onPress}
|
|
105
|
+
opacity={isDisabled ? 0.5 : 1}
|
|
96
106
|
{...(active ? { theme: "active" } : undefined)}
|
|
97
107
|
{...props}
|
|
98
108
|
>
|
|
@@ -1,18 +1,29 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Toolbar button primitives for the rich text editor.
|
|
3
3
|
*
|
|
4
|
-
* ToolbarButton: square icon button
|
|
5
|
-
*
|
|
4
|
+
* ToolbarButton: square icon button; ToolbarDropdownButton: button with a
|
|
5
|
+
* trailing caret (variable width).
|
|
6
|
+
*
|
|
7
|
+
* Axiom 12 LEGIBLE FLOOR: the pressable/focusable element is a 44x44
|
|
8
|
+
* transparent target (same split as the forms RadioGroup/Checkbox fix);
|
|
9
|
+
* the visible chrome (hover/press/active surface) is the inner glyph box,
|
|
10
|
+
* so visual density survives while the touch target is floored.
|
|
11
|
+
*
|
|
12
|
+
* Toggle semantics: when `active` is provided the button reports
|
|
13
|
+
* `aria-pressed` so assistive tech reads format state.
|
|
6
14
|
*/
|
|
7
15
|
|
|
8
16
|
import type { ReactNode } from "react";
|
|
9
|
-
import { XStack, View } from "tamagui";
|
|
17
|
+
import { XStack, View, styled } from "tamagui";
|
|
10
18
|
import { Button } from "@multiplatform.one/forms";
|
|
11
19
|
import { Tooltip } from "@multiplatform.one/components";
|
|
12
20
|
import { CaretDownIcon } from "@phosphor-icons/react";
|
|
13
21
|
import { RichEditorContext } from "../context";
|
|
14
22
|
|
|
15
|
-
|
|
23
|
+
/** WCAG / Axiom 12 pressable floor */
|
|
24
|
+
const TARGET_SIZE = 44;
|
|
25
|
+
/** Visible chrome box inside the target */
|
|
26
|
+
const VISUAL_SIZE = 30;
|
|
16
27
|
|
|
17
28
|
// ===========================================================================
|
|
18
29
|
// Types
|
|
@@ -24,6 +35,8 @@ export interface ToolbarButtonProps {
|
|
|
24
35
|
onPress: () => void;
|
|
25
36
|
children: ReactNode;
|
|
26
37
|
"aria-label": string;
|
|
38
|
+
/** Marks the button as a toggle; reflects the pressed state to AT */
|
|
39
|
+
"aria-pressed"?: boolean;
|
|
27
40
|
tooltip?: string;
|
|
28
41
|
}
|
|
29
42
|
|
|
@@ -35,6 +48,44 @@ export interface ToolbarDropdownButtonProps {
|
|
|
35
48
|
"aria-label": string;
|
|
36
49
|
}
|
|
37
50
|
|
|
51
|
+
// ===========================================================================
|
|
52
|
+
// Inner chrome box (the visible button surface)
|
|
53
|
+
// ===========================================================================
|
|
54
|
+
|
|
55
|
+
const ChromeBox = styled(View, {
|
|
56
|
+
name: "ToolbarButtonChrome",
|
|
57
|
+
alignItems: "center",
|
|
58
|
+
justifyContent: "center",
|
|
59
|
+
width: VISUAL_SIZE,
|
|
60
|
+
height: VISUAL_SIZE,
|
|
61
|
+
borderRadius: "$2",
|
|
62
|
+
|
|
63
|
+
hoverStyle: {
|
|
64
|
+
backgroundColor: "$color4",
|
|
65
|
+
},
|
|
66
|
+
|
|
67
|
+
variants: {
|
|
68
|
+
active: {
|
|
69
|
+
true: {
|
|
70
|
+
backgroundColor: "$color5",
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
stretch: {
|
|
74
|
+
true: {
|
|
75
|
+
width: "auto",
|
|
76
|
+
paddingHorizontal: "$2",
|
|
77
|
+
},
|
|
78
|
+
},
|
|
79
|
+
// An aria-disabled control must not light up on hover like a pressable
|
|
80
|
+
// one (DG-ST-03 / LC-40 washed chrome).
|
|
81
|
+
unavailable: {
|
|
82
|
+
true: {
|
|
83
|
+
hoverStyle: { backgroundColor: "transparent" },
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
} as const,
|
|
87
|
+
});
|
|
88
|
+
|
|
38
89
|
// ===========================================================================
|
|
39
90
|
// ToolbarButton (square)
|
|
40
91
|
// ===========================================================================
|
|
@@ -45,30 +96,48 @@ export function ToolbarButton({
|
|
|
45
96
|
onPress,
|
|
46
97
|
children,
|
|
47
98
|
tooltip,
|
|
99
|
+
"aria-pressed": ariaPressed,
|
|
48
100
|
...props
|
|
49
101
|
}: ToolbarButtonProps) {
|
|
50
102
|
const ctx = RichEditorContext.useStyledContext();
|
|
51
103
|
const isDisabled = disabled ?? ctx.disabled;
|
|
104
|
+
const pressed = ariaPressed ?? (active !== undefined ? !!active : undefined);
|
|
52
105
|
|
|
53
106
|
const button = (
|
|
54
107
|
<Button
|
|
55
108
|
chromeless
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
109
|
+
// DG-ST-03: an unavailable action (undo with no history, …) is never
|
|
110
|
+
// bare-`disabled` — it stays focusable, reports `aria-disabled`,
|
|
111
|
+
// swallows presses, and dims. The icon strip has no room for Button's
|
|
112
|
+
// visible `disabledReason` text, so aria state + washed chrome is the
|
|
113
|
+
// toolbar-idiom explain.
|
|
114
|
+
aria-disabled={isDisabled || undefined}
|
|
115
|
+
onPress={isDisabled ? undefined : onPress}
|
|
116
|
+
cursor={isDisabled ? "not-allowed" : undefined}
|
|
117
|
+
opacity={isDisabled ? 0.5 : 1}
|
|
118
|
+
width={TARGET_SIZE}
|
|
119
|
+
height={TARGET_SIZE}
|
|
120
|
+
minWidth={TARGET_SIZE}
|
|
121
|
+
minHeight={TARGET_SIZE}
|
|
60
122
|
padding={0}
|
|
123
|
+
borderWidth={0}
|
|
124
|
+
backgroundColor="transparent"
|
|
125
|
+
hoverStyle={{ backgroundColor: "transparent" }}
|
|
126
|
+
pressStyle={{ backgroundColor: "transparent" }}
|
|
61
127
|
borderRadius="$2"
|
|
128
|
+
{...(pressed !== undefined ? { "aria-pressed": pressed } : undefined)}
|
|
62
129
|
{...(active ? { theme: "active" } : undefined)}
|
|
63
130
|
{...props}
|
|
64
131
|
>
|
|
65
|
-
<
|
|
132
|
+
<ChromeBox active={!!active} unavailable={!!isDisabled}>
|
|
66
133
|
{children}
|
|
67
|
-
</
|
|
134
|
+
</ChromeBox>
|
|
68
135
|
</Button>
|
|
69
136
|
);
|
|
70
137
|
|
|
71
|
-
|
|
138
|
+
// DG-OVL-05: no hover tooltip on a disabled control — the shortcut hint
|
|
139
|
+
// returns with availability.
|
|
140
|
+
if (tooltip && !isDisabled) {
|
|
72
141
|
return (
|
|
73
142
|
<Tooltip content={tooltip} placement="bottom" delay={400}>
|
|
74
143
|
{button}
|
|
@@ -96,19 +165,29 @@ export function ToolbarDropdownButton({
|
|
|
96
165
|
return (
|
|
97
166
|
<Button
|
|
98
167
|
chromeless
|
|
99
|
-
disabled
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
168
|
+
// DG-ST-03: aria-disabled explain (see ToolbarButton above).
|
|
169
|
+
aria-disabled={isDisabled || undefined}
|
|
170
|
+
onPress={isDisabled ? undefined : onPress}
|
|
171
|
+
cursor={isDisabled ? "not-allowed" : undefined}
|
|
172
|
+
opacity={isDisabled ? 0.5 : 1}
|
|
173
|
+
height={TARGET_SIZE}
|
|
174
|
+
minHeight={TARGET_SIZE}
|
|
175
|
+
paddingHorizontal={0}
|
|
103
176
|
paddingVertical={0}
|
|
177
|
+
borderWidth={0}
|
|
178
|
+
backgroundColor="transparent"
|
|
179
|
+
hoverStyle={{ backgroundColor: "transparent" }}
|
|
180
|
+
pressStyle={{ backgroundColor: "transparent" }}
|
|
104
181
|
borderRadius="$2"
|
|
105
182
|
{...(active ? { theme: "active" } : undefined)}
|
|
106
183
|
{...props}
|
|
107
184
|
>
|
|
108
|
-
<
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
185
|
+
<ChromeBox active={!!active} stretch unavailable={!!isDisabled}>
|
|
186
|
+
<XStack alignItems="center" gap="$1">
|
|
187
|
+
{children}
|
|
188
|
+
<CaretDownIcon size={10} />
|
|
189
|
+
</XStack>
|
|
190
|
+
</ChromeBox>
|
|
112
191
|
</Button>
|
|
113
192
|
);
|
|
114
193
|
}
|
|
@@ -3,7 +3,8 @@ import { renderWithProviders } from "@multiplatform.one/test-utils";
|
|
|
3
3
|
import { RichEditorContext } from "../context";
|
|
4
4
|
import { defaultEditorState } from "../types";
|
|
5
5
|
|
|
6
|
-
vi.mock("@multiplatform.one/forms", () => ({
|
|
6
|
+
vi.mock("@multiplatform.one/forms", async (importOriginal) => ({
|
|
7
|
+
...(await importOriginal<Record<string, unknown>>()),
|
|
7
8
|
Button: (props: any) => (
|
|
8
9
|
<button
|
|
9
10
|
role="button"
|
|
@@ -4,7 +4,8 @@ import { RichEditorContext } from "../context";
|
|
|
4
4
|
import { defaultEditorState } from "../types";
|
|
5
5
|
import type { ToolbarSection } from "../types";
|
|
6
6
|
|
|
7
|
-
vi.mock("@multiplatform.one/forms", () => ({
|
|
7
|
+
vi.mock("@multiplatform.one/forms", async (importOriginal) => ({
|
|
8
|
+
...(await importOriginal<Record<string, unknown>>()),
|
|
8
9
|
Button: (props: any) => (
|
|
9
10
|
<button
|
|
10
11
|
role="button"
|
|
@@ -18,7 +19,8 @@ vi.mock("@multiplatform.one/forms", () => ({
|
|
|
18
19
|
),
|
|
19
20
|
}));
|
|
20
21
|
|
|
21
|
-
vi.mock("@multiplatform.one/components", () => ({
|
|
22
|
+
vi.mock("@multiplatform.one/components", async (importOriginal) => ({
|
|
23
|
+
...(await importOriginal<Record<string, unknown>>()),
|
|
22
24
|
Tooltip: ({ children }: any) => children,
|
|
23
25
|
}));
|
|
24
26
|
|