@ones-editor/editor 0.0.3-beta.9 → 0.0.3-beta.90
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/@ones-editor/auto-link/package.json +8 -0
- package/@ones-editor/auto-link/src/index.d.ts +3 -0
- package/@ones-editor/block-locker/src/hook.d.ts +1 -0
- package/@ones-editor/block-locker/src/i18n/en-US.d.ts +8 -0
- package/@ones-editor/block-locker/src/i18n/index.d.ts +1 -0
- package/@ones-editor/block-locker/src/i18n/zh-CN.d.ts +8 -0
- package/@ones-editor/block-locker/src/index.d.ts +4 -1
- package/@ones-editor/block-locker/src/paste-handler.d.ts +4 -0
- package/@ones-editor/block-menu/src/block-menu/items/block-command-items.d.ts +1 -1
- package/@ones-editor/block-menu/src/block-menu/items/insert-block-items/index.d.ts +1 -1
- package/@ones-editor/block-menu/src/block-menu-button/drag-drop/find-preview-element.d.ts +1 -1
- package/@ones-editor/block-menu/src/block-menu-button/drag-preview/index.d.ts +1 -1
- package/@ones-editor/code-block/src/code-block/caption/caption-input-handler.d.ts +2 -2
- package/@ones-editor/code-block/src/code-block/child-container.d.ts +2 -2
- package/@ones-editor/code-block/src/code-block/code-caret.d.ts +7 -0
- package/@ones-editor/code-block/src/code-block/code-copy.d.ts +4 -0
- package/@ones-editor/code-block/src/code-block/create-empty-code.d.ts +2 -2
- package/@ones-editor/code-block/src/code-block/index.d.ts +3 -1
- package/@ones-editor/code-block/src/code-block/settings/index.d.ts +3 -0
- package/@ones-editor/code-block/src/code-block/types.d.ts +3 -0
- package/@ones-editor/code-block/src/icons/copy.d.ts +1 -1
- package/@ones-editor/code-block/src/icons/wrap.d.ts +1 -1
- package/@ones-editor/code-block/src/index.d.ts +1 -0
- package/@ones-editor/code-block/src/locale/en-us.d.ts +3 -0
- package/@ones-editor/code-block/src/locale/ja-jp.d.ts +10 -0
- package/@ones-editor/code-block/src/locale/zh-cn.d.ts +3 -0
- package/@ones-editor/column-block/package.json +8 -0
- package/@ones-editor/column-block/src/child-containers.d.ts +2 -0
- package/@ones-editor/column-block/src/columns-options.d.ts +2 -0
- package/@ones-editor/column-block/src/columns-properties.d.ts +15 -0
- package/@ones-editor/column-block/src/index.d.ts +4 -0
- package/@ones-editor/column-block/src/types.d.ts +11 -0
- package/@ones-editor/comments/src/actions/add-comment-to-block.d.ts +3 -2
- package/@ones-editor/comments/src/actions/add-comment-to-text-block.d.ts +2 -1
- package/@ones-editor/comments/src/actions/editor-add-comment.d.ts +2 -0
- package/@ones-editor/comments/src/comment-item/comment-item.d.ts +1 -0
- package/@ones-editor/comments/src/comments/comments.d.ts +4 -4
- package/@ones-editor/comments/src/comments-helper/utils.d.ts +1 -1
- package/@ones-editor/comments/src/comments-list/arrange-items.d.ts +1 -1
- package/@ones-editor/comments/src/comments-list/comments-list.d.ts +2 -10
- package/@ones-editor/comments/src/comments-list/group-item.d.ts +1 -0
- package/@ones-editor/comments/src/comments-list/group-list.d.ts +4 -2
- package/@ones-editor/comments/src/comments-list/mini-comment/mini-comments-list.d.ts +1 -4
- package/@ones-editor/comments/src/comments-list/mobile-comments-list/group-list.d.ts +1 -0
- package/@ones-editor/comments/src/comments-list/mobile-comments-list/mobile-comments-list.d.ts +5 -3
- package/@ones-editor/comments/src/index.d.ts +1 -0
- package/@ones-editor/comments/src/types.d.ts +11 -4
- package/@ones-editor/core/src/core/blocks/block-anchor/create-block-anchor.d.ts +1 -0
- package/@ones-editor/core/src/core/blocks/common/block-dom.d.ts +2 -0
- package/@ones-editor/core/src/core/blocks/common/block-properties.d.ts +7 -1
- package/@ones-editor/core/src/core/blocks/complex-blocks/complex-block-helper.d.ts +4 -4
- package/@ones-editor/core/src/core/blocks/text-blocks/index.d.ts +1 -0
- package/@ones-editor/core/src/core/blocks/text-blocks/text-block/to-markdown.d.ts +3 -0
- package/@ones-editor/core/src/core/blocks/text-blocks/text-block/to-plain-html.d.ts +3 -0
- package/@ones-editor/core/src/core/blocks/text-blocks/text-block/to-plain-text.d.ts +3 -0
- package/@ones-editor/core/src/core/composition/clipboard/copy.d.ts +3 -2
- package/@ones-editor/core/src/core/composition/editor-input.d.ts +3 -0
- package/@ones-editor/core/src/core/composition/index.d.ts +1 -1
- package/@ones-editor/core/src/core/containers/root-container.d.ts +2 -1
- package/@ones-editor/core/src/core/converter/block-to-html.d.ts +2 -2
- package/@ones-editor/core/src/core/converter/block-to-markdown.d.ts +2 -2
- package/@ones-editor/core/src/core/converter/block-to-text.d.ts +2 -2
- package/@ones-editor/core/src/core/doc/doc.d.ts +6 -2
- package/@ones-editor/core/src/core/doc/to-plain-text.d.ts +1 -0
- package/@ones-editor/core/src/core/editor/actions/auto-insert-block.d.ts +2 -2
- package/@ones-editor/core/src/core/editor/actions/break-text-block.d.ts +2 -0
- package/@ones-editor/core/src/core/editor/actions/delete-block-text.d.ts +2 -2
- package/@ones-editor/core/src/core/editor/actions/focus-to-end.d.ts +0 -1
- package/@ones-editor/core/src/core/editor/actions/insert-block.d.ts +2 -2
- package/@ones-editor/core/src/core/editor/actions/insert-text.d.ts +2 -2
- package/@ones-editor/core/src/core/editor-doc/editor-doc.d.ts +5 -3
- package/@ones-editor/core/src/core/index.d.ts +1 -0
- package/@ones-editor/core/src/core/input-handler/input-handler.d.ts +3 -0
- package/@ones-editor/core/src/core/input-handler/remove-quoted.d.ts +2 -0
- package/@ones-editor/core/src/core/selection/actions/index.d.ts +2 -2
- package/@ones-editor/core/src/core/selection/actions/select-all.d.ts +3 -1
- package/@ones-editor/core/src/core/selection/actions/select-block.d.ts +2 -0
- package/@ones-editor/core/src/core/selection/actions/word-offset.d.ts +1 -1
- package/@ones-editor/core/src/core/selection/editor-selection.d.ts +3 -2
- package/@ones-editor/core/src/core/selection/index.d.ts +1 -0
- package/@ones-editor/core/src/core/selection/range/simple-range.d.ts +2 -1
- package/@ones-editor/core/src/core/settings/index.d.ts +3 -3
- package/@ones-editor/core/src/core/types.d.ts +36 -21
- package/@ones-editor/core/src/helper/block-helper.d.ts +1 -1
- package/@ones-editor/core/src/helper/find-block.d.ts +3 -0
- package/@ones-editor/core/src/helper/index.d.ts +1 -0
- package/@ones-editor/core/src/i18n/i18n.d.ts +36 -0
- package/@ones-editor/core/src/local-doc/index.d.ts +6 -2
- package/@ones-editor/core/src/utils/dom-scroll.d.ts +3 -1
- package/@ones-editor/core/src/utils/dom.d.ts +2 -0
- package/@ones-editor/core/src/utils/file.d.ts +1 -0
- package/@ones-editor/core/src/utils/logger/index.d.ts +9 -0
- package/@ones-editor/details-block/package.json +8 -0
- package/@ones-editor/details-block/src/auto-expand.d.ts +7 -0
- package/@ones-editor/details-block/src/create-empty-details.d.ts +8 -0
- package/@ones-editor/details-block/src/details-dom.d.ts +3 -0
- package/@ones-editor/details-block/src/details-object.d.ts +11 -0
- package/@ones-editor/details-block/src/details-options.d.ts +2 -0
- package/@ones-editor/details-block/src/index.d.ts +4 -0
- package/@ones-editor/details-block/src/types.d.ts +5 -0
- package/@ones-editor/details-block/src/update-expand.d.ts +3 -0
- package/@ones-editor/drawio-embed/src/helper/index.d.ts +3 -3
- package/@ones-editor/drawio-embed/types/index.d.ts +3 -3
- package/@ones-editor/drop-target/src/drop-indicator.d.ts +1 -0
- package/@ones-editor/drop-target/src/drop-target.d.ts +1 -1
- package/@ones-editor/drop-target/src/handlers/drag-file.d.ts +7 -0
- package/@ones-editor/drop-target/src/handlers/patch-insert-file.d.ts +2 -0
- package/@ones-editor/drop-target/src/index.d.ts +2 -1
- package/@ones-editor/embed-block-helper/src/block-properties/embed-block-properties.d.ts +2 -1
- package/@ones-editor/embed-block-helper/src/block-resizer/index.d.ts +14 -0
- package/@ones-editor/embed-block-helper/src/index.d.ts +1 -0
- package/@ones-editor/excalidraw/package.json +11 -0
- package/@ones-editor/excalidraw/src/excalidraw/block-properties.d.ts +2 -0
- package/@ones-editor/excalidraw/src/excalidraw/editor.d.ts +2 -0
- package/@ones-editor/excalidraw/src/index.d.ts +4 -0
- package/@ones-editor/excalidraw/src/types.d.ts +9 -0
- package/@ones-editor/excalidraw/src/utils/excalidraw-data.d.ts +4 -0
- package/@ones-editor/exclusive-block/package.json +6 -0
- package/@ones-editor/exclusive-block/src/exclusive-block-hook.d.ts +6 -0
- package/@ones-editor/exclusive-block/src/exclusive-block.d.ts +22 -0
- package/@ones-editor/exclusive-block/src/exclusive-dom.d.ts +5 -0
- package/@ones-editor/exclusive-block/src/handle-remote-exclusive-message.d.ts +3 -0
- package/@ones-editor/exclusive-block/src/index.d.ts +5 -0
- package/@ones-editor/exclusive-block/src/types.d.ts +7 -0
- package/@ones-editor/file/src/file-embed/card/index.d.ts +3 -3
- package/@ones-editor/file/src/index.d.ts +1 -0
- package/@ones-editor/file/src/types.d.ts +1 -0
- package/@ones-editor/find-dialog/src/find-dialog.d.ts +1 -0
- package/@ones-editor/graph-embed/src/helper/graph-base.d.ts +3 -2
- package/@ones-editor/graph-embed/src/helper/graph-block-commands.d.ts +3 -2
- package/@ones-editor/heading-collapse/src/heading-collapse-button/drop-handler.d.ts +1 -1
- package/@ones-editor/image-embed/package.json +2 -1
- package/@ones-editor/image-embed/src/drag-drop/drag-handler.d.ts +4 -0
- package/@ones-editor/image-embed/src/drag-drop/handle-drop-over.d.ts +5 -1
- package/@ones-editor/image-embed/src/drag-drop/handle-drop.d.ts +1 -1
- package/@ones-editor/image-embed/src/empty-image-converter.d.ts +5 -0
- package/@ones-editor/image-embed/src/image-file.d.ts +5 -0
- package/@ones-editor/image-embed/src/image-resizer.d.ts +3 -0
- package/@ones-editor/image-embed/src/index.d.ts +2 -1
- package/@ones-editor/image-embed/src/types.d.ts +6 -1
- package/@ones-editor/input-handlers/src/enforce-with-document-title/types.d.ts +1 -0
- package/@ones-editor/input-handlers/src/i18n/en-us.d.ts +1 -0
- package/@ones-editor/input-handlers/src/i18n/zh-cn.d.ts +1 -0
- package/@ones-editor/input-handlers/src/markdown-shortcuts/table-converter.d.ts +2 -0
- package/@ones-editor/list-block/src/converter/convert-list-to.d.ts +2 -0
- package/@ones-editor/list-block/src/converter/convert-to-list.d.ts +14 -0
- package/@ones-editor/list-block/src/converter/index.d.ts +2 -14
- package/@ones-editor/list-block/src/drop/index.d.ts +1 -1
- package/@ones-editor/list-block/src/index.d.ts +3 -2
- package/@ones-editor/list-block/src/level/change-multi-levels.d.ts +2 -0
- package/@ones-editor/list-block/src/level/decrease-level.d.ts +1 -0
- package/@ones-editor/list-block/src/mindmap/index.d.ts +1 -1
- package/@ones-editor/list-block/src/mindmap/to-mindmap/close-mindmap.d.ts +1 -0
- package/@ones-editor/list-block/src/mindmap/to-mindmap/index.d.ts +1 -1
- package/@ones-editor/list-block/src/types.d.ts +2 -1
- package/@ones-editor/list-block/src/utils/list-brother.d.ts +5 -1
- package/@ones-editor/markdown-to-doc/src/markdown-to-doc.d.ts +1 -0
- package/@ones-editor/markdown-to-doc/src/tokens/block-tokens/latex.d.ts +4 -0
- package/@ones-editor/markdown-to-doc/src/tokens/block-tokens/paragraph.d.ts +1 -0
- package/@ones-editor/mathjax/package.json +3 -0
- package/@ones-editor/mathjax/src/index.d.ts +2 -1
- package/@ones-editor/mathjax/src/mathjax-box/convert-mathjax.d.ts +5 -0
- package/@ones-editor/mathjax/src/mathjax-box/mathjax-editor.d.ts +2 -2
- package/@ones-editor/media-embed/src/core/media-embed.d.ts +4 -2
- package/@ones-editor/media-embed/src/core/media.d.ts +7 -4
- package/@ones-editor/media-embed/src/utils/file.d.ts +1 -1
- package/@ones-editor/mention/src/block-mention.d.ts +1 -1
- package/@ones-editor/mention/src/dom/mention-button.d.ts +1 -1
- package/@ones-editor/mention/src/mention.d.ts +1 -0
- package/@ones-editor/mobile-helper/package.json +9 -0
- package/@ones-editor/mobile-helper/src/index.d.ts +11 -0
- package/@ones-editor/paste-handler/src/paste-handler.d.ts +1 -1
- package/@ones-editor/paste-special/src/paste-special-handler.d.ts +2 -2
- package/@ones-editor/scroll-container/src/dom-utils.d.ts +9 -0
- package/@ones-editor/scroll-container/src/index.d.ts +8 -18
- package/@ones-editor/scroll-container/src/observer/container-resize-observer.d.ts +2 -1
- package/@ones-editor/scroll-container/src/observer/locating-resize-observer.d.ts +13 -0
- package/@ones-editor/scroll-container/src/scroll-listener.d.ts +3 -0
- package/@ones-editor/scroll-container/src/types.d.ts +1 -0
- package/@ones-editor/sharedb-doc/src/doc/auth-connection.d.ts +3 -3
- package/@ones-editor/sharedb-doc/src/doc/sharedb-client.d.ts +3 -3
- package/@ones-editor/sharedb-doc/src/doc/sharedb-doc.d.ts +6 -1
- package/@ones-editor/sharedb-doc/src/index.d.ts +1 -0
- package/@ones-editor/sharedb-doc/src/types.d.ts +3 -2
- package/@ones-editor/table-block/src/constant/index.d.ts +1 -0
- package/@ones-editor/table-block/src/locale/en-us.d.ts +5 -0
- package/@ones-editor/table-block/src/locale/zh-cn.d.ts +5 -0
- package/@ones-editor/table-block/src/table-block/border-bar/table-row-column-toolbar.d.ts +1 -0
- package/@ones-editor/table-block/src/table-block/convert-table-to.d.ts +2 -0
- package/@ones-editor/table-block/src/table-block/doc-table-data.d.ts +1 -1
- package/@ones-editor/table-block/src/table-block/selection-range.d.ts +2 -1
- package/@ones-editor/table-block/src/table-block/table-creator/index.d.ts +1 -1
- package/@ones-editor/table-block/src/table-block/table-resize/resize-gripper.d.ts +1 -1
- package/@ones-editor/table-block/src/table-block/table-scroll-events.d.ts +1 -0
- package/@ones-editor/table-block/src/types.d.ts +2 -0
- package/@ones-editor/tabs-block/package.json +8 -0
- package/@ones-editor/tabs-block/src/active-tab.d.ts +2 -0
- package/@ones-editor/tabs-block/src/create-empty-tabs.d.ts +8 -0
- package/@ones-editor/tabs-block/src/index.d.ts +4 -0
- package/@ones-editor/tabs-block/src/tabs-dom.d.ts +4 -0
- package/@ones-editor/tabs-block/src/tabs-object.d.ts +14 -0
- package/@ones-editor/tabs-block/src/tabs-options.d.ts +2 -0
- package/@ones-editor/tabs-block/src/types.d.ts +8 -0
- package/@ones-editor/templates/package.json +9 -0
- package/@ones-editor/templates/src/index.d.ts +4 -0
- package/@ones-editor/templates/src/locale/en-us.d.ts +9 -0
- package/@ones-editor/templates/src/locale/index.d.ts +1 -0
- package/@ones-editor/templates/src/locale/zh-cn.d.ts +9 -0
- package/@ones-editor/templates/src/templates/select-template.d.ts +7 -0
- package/@ones-editor/templates/src/templates/types.d.ts +14 -0
- package/@ones-editor/text-commands/src/locale/en-us.d.ts +1 -0
- package/@ones-editor/text-commands/src/locale/zh-cn.d.ts +1 -0
- package/@ones-editor/text-commands/src/text-command-provider.d.ts +1 -0
- package/@ones-editor/toc/src/heading-scroll/index.d.ts +22 -0
- package/@ones-editor/toc/src/heading-scroll/utils.d.ts +7 -0
- package/@ones-editor/toc/src/index.d.ts +1 -0
- package/@ones-editor/tsconfig.tsbuildinfo +1 -1
- package/@ones-editor/ui/src/index.d.ts +4 -3
- package/@ones-editor/ui/src/locale/en-us.d.ts +2 -0
- package/@ones-editor/ui/src/locale/zh-cn.d.ts +2 -0
- package/@ones-editor/ui/src/quick-menu/basic-commands.d.ts +5 -0
- package/@ones-editor/ui/src/quick-menu/basic-menu-items.d.ts +10 -10
- package/@ones-editor/ui/src/quick-menu/index.d.ts +6 -0
- package/@ones-editor/ui/src/quick-menu/inline-box-items.d.ts +8 -14
- package/@ones-editor/ui/src/toolbar/box-only.d.ts +2 -0
- package/@ones-editor/ui/src/toolbar/commands/paragraph.d.ts +1 -0
- package/@ones-editor/ui/src/toolbar/object-commands.d.ts +5 -1
- package/@ones-editor/ui/src/toolbar/toolbar-handler.d.ts +4 -1
- package/@ones-editor/ui/src/tooltips/index.d.ts +4 -0
- package/@ones-editor/ui-base/src/auto-suggest/auto-suggest-menu.d.ts +2 -1
- package/@ones-editor/ui-base/src/auto-suggest/auto-suggest.d.ts +4 -1
- package/@ones-editor/ui-base/src/auto-suggest/index.d.ts +2 -1
- package/@ones-editor/ui-base/src/auto-suggest/should-focus-to-editor.d.ts +2 -0
- package/@ones-editor/ui-base/src/command-bar/command-bar.d.ts +4 -1
- package/@ones-editor/ui-base/src/command-bar/types.d.ts +6 -0
- package/@ones-editor/ui-base/src/dialog/index.d.ts +1 -0
- package/@ones-editor/ui-base/src/dialog/manual-close-dialog.d.ts +1 -1
- package/@ones-editor/ui-base/src/dialog/types.d.ts +4 -0
- package/@ones-editor/ui-base/src/index.d.ts +1 -0
- package/@ones-editor/ui-base/src/input/create-input.d.ts +1 -0
- package/@ones-editor/ui-base/src/item-shortcuts/index.d.ts +1 -0
- package/@ones-editor/ui-base/src/list/drop-down-filterable-list.d.ts +2 -2
- package/@ones-editor/ui-base/src/locale/en-us.d.ts +1 -0
- package/@ones-editor/ui-base/src/locale/zh-cn.d.ts +1 -0
- package/@ones-editor/versions/src/types.d.ts +1 -0
- package/@ones-editor/versions/src/version-dialog/index.d.ts +3 -1
- package/@ones-editor/webpage-embed/src/types.d.ts +2 -0
- package/@ones-editor/webpage-embed/src/ui/dialog.d.ts +2 -2
- package/@ones-editor/webpage-embed/src/webpage-embed/webpage-items.d.ts +2 -14
- package/dist/comments/create-comment-editor.d.ts +4 -7
- package/dist/comments/local-doc-comments-provider.d.ts +18 -0
- package/dist/comments/{comments-provider.d.ts → sharedb-doc-comments-provider.d.ts} +3 -6
- package/dist/index.d.ts +16 -3
- package/dist/index.js +246 -292
- package/dist/lang/en-us.d.ts +14 -0
- package/dist/lang/index.d.ts +1 -0
- package/dist/lang/zh-cn.d.ts +14 -0
- package/dist/types.d.ts +36 -2
- package/package.json +6 -4
- package/@ones-editor/e2e/cypress/support/commands.d.ts +0 -19
- package/@ones-editor/e2e/cypress/support/e2e.d.ts +0 -1
- package/@ones-editor/e2e/cypress.config.d.ts +0 -3
- package/@ones-editor/e2e/package.json +0 -13
- package/@ones-editor/e2e/src/block-menu/menu-list.cy.d.ts +0 -0
- package/@ones-editor/e2e/src/data.d.ts +0 -106
- package/@ones-editor/e2e/src/input-handlers/case.d.ts +0 -10
- package/@ones-editor/e2e/src/input-handlers/shortcut.cy.d.ts +0 -1
- package/@ones-editor/e2e/src/list-block/case.d.ts +0 -8
- package/@ones-editor/e2e/src/list-block/list.cy.d.ts +0 -1
- package/@ones-editor/e2e/src/toc/case.d.ts +0 -5
- package/@ones-editor/e2e/src/toc/toc.cy.d.ts +0 -1
- package/@ones-editor/list-block/src/command/covert-to-list.d.ts +0 -3
- /package/@ones-editor/block-menu/src/block-menu-button/{drag-drop → drag-preview}/element-to-data-url.d.ts +0 -0
|
@@ -10,6 +10,8 @@ export interface EditorInputCallbacks {
|
|
|
10
10
|
onFocus: () => void;
|
|
11
11
|
onBlur: () => void;
|
|
12
12
|
onPaste: (event: ClipboardEvent) => void;
|
|
13
|
+
onPasteText: (text: string) => void;
|
|
14
|
+
onCopy: (event: ClipboardEvent) => void;
|
|
13
15
|
addHandler: (handler: OnesEditorInputHandler) => void;
|
|
14
16
|
removeHandler: (handler: OnesEditorInputHandler) => void;
|
|
15
17
|
defaultInsertText: (editor: OnesEditor, containerId: string, blockIndex: number, offset: number, text: string) => void;
|
|
@@ -36,6 +38,7 @@ export declare class EditorInput implements OnesEditorInput {
|
|
|
36
38
|
handleCopy: (event: ClipboardEvent) => void;
|
|
37
39
|
handleCut: (event: ClipboardEvent) => void;
|
|
38
40
|
handlePaste: (event: ClipboardEvent) => void;
|
|
41
|
+
handlePasteText: (text: string) => void;
|
|
39
42
|
handleChanged(action: OnesEditorUndoAction): void;
|
|
40
43
|
handleRemoteChanged(type: RemoteChangeType): void;
|
|
41
44
|
addHandler(handler: OnesEditorInputHandler): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { editorCopyBlock } from './clipboard/copy';
|
|
1
|
+
export { editorCopyBlock, addMetaToDoc, injectDocToHtmlFragment } from './clipboard/copy';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnesEditor, ContainerElement } from '../types';
|
|
1
|
+
import { OnesEditor, ContainerElement, BlockElement } from '../types';
|
|
2
2
|
export declare class RootContainer {
|
|
3
3
|
private editor;
|
|
4
4
|
rootContainer: ContainerElement;
|
|
@@ -10,6 +10,7 @@ export declare class RootContainer {
|
|
|
10
10
|
handleContextMenu: (event: Event) => void;
|
|
11
11
|
handleResize: () => void;
|
|
12
12
|
handleClick: (event: MouseEvent) => void;
|
|
13
|
+
handleBlockClick: (event: MouseEvent, block: BlockElement, elem: Element) => void;
|
|
13
14
|
handleDblClick: (event: MouseEvent) => void;
|
|
14
15
|
handleMouseDown: (event: MouseEvent) => void;
|
|
15
16
|
handleMouseMove: (event: MouseEvent) => void;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { DocBlock, DocObject } from '../doc';
|
|
2
|
-
import { OnesEditor } from '../types';
|
|
3
|
-
export declare function blockToHtml(editor: OnesEditor, blockData: DocBlock, doc: DocObject): string;
|
|
2
|
+
import { BlockPath, OnesEditor } from '../types';
|
|
3
|
+
export declare function blockToHtml(editor: OnesEditor, blockData: DocBlock, doc: DocObject, path: BlockPath): string;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { DocBlock, DocObject } from '../doc';
|
|
2
|
-
import { OnesEditor } from '../types';
|
|
3
|
-
export declare function blockToMarkdown(editor: OnesEditor, blockData: DocBlock, doc: DocObject): string;
|
|
2
|
+
import { BlockPath, OnesEditor } from '../types';
|
|
3
|
+
export declare function blockToMarkdown(editor: OnesEditor, blockData: DocBlock, doc: DocObject, path: BlockPath): string;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { DocBlock, DocObject } from '../doc';
|
|
2
|
-
import { OnesEditor } from '../types';
|
|
3
|
-
export declare function blockToText(editor: OnesEditor, blockData: DocBlock, doc: DocObject): string;
|
|
2
|
+
import { BlockPath, OnesEditor } from '../types';
|
|
3
|
+
export declare function blockToText(editor: OnesEditor, blockData: DocBlock, doc: DocObject, path: BlockPath): string;
|
|
@@ -179,15 +179,19 @@ export interface RecognizeLinkResult {
|
|
|
179
179
|
providerName?: string;
|
|
180
180
|
url: string;
|
|
181
181
|
}
|
|
182
|
+
export interface InsertBlockOptions {
|
|
183
|
+
noScroll?: boolean;
|
|
184
|
+
}
|
|
185
|
+
export type UpdateBlockOptions = InsertBlockOptions;
|
|
182
186
|
export interface OnesEditorDoc {
|
|
183
187
|
registerCallback: (callbacks: OnesEditorDocCallbacks) => void;
|
|
184
188
|
unregisterCallback: (callbacks: OnesEditorDocCallbacks) => void;
|
|
185
189
|
toJSON: () => DocObject;
|
|
186
190
|
getContainerBlocks: (containerId: string) => DocBlock[];
|
|
187
191
|
getBlockData: (containerId: string, blockIndex: number) => DocBlock;
|
|
188
|
-
localUpdateBlockText: (containerId: string, blockIndex: number, actions: DocBlockTextActions) => DocBlockText;
|
|
192
|
+
localUpdateBlockText: (containerId: string, blockIndex: number, actions: DocBlockTextActions, options?: UpdateBlockOptions) => DocBlockText;
|
|
189
193
|
localUpdateBlockData: (containerId: string, blockIndex: number, delta: DocBlockDelta, newRange: OnesEditorDocRange) => DocBlock;
|
|
190
|
-
localInsertBlock: (containerId: string, blockIndex: number, data: DocBlock, newRange: OnesEditorDocRange) => DocBlock;
|
|
194
|
+
localInsertBlock: (containerId: string, blockIndex: number, data: DocBlock, newRange: OnesEditorDocRange, options?: InsertBlockOptions) => DocBlock;
|
|
191
195
|
localDeleteBlock: (containerId: string, blockIndex: number, newRange: OnesEditorDocRange) => DocBlock;
|
|
192
196
|
localInsertChildContainer: (containerId: string, blocks: DocBlock[]) => void;
|
|
193
197
|
localDeleteChildContainers: (containerIds: string[]) => void;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { DocBlock, OnesEditorDocRange } from '../../doc';
|
|
1
|
+
import { InsertBlockOptions, DocBlock, OnesEditorDocRange } from '../../doc';
|
|
2
2
|
import { OnesEditor } from '../../types';
|
|
3
|
-
export declare function editorAutoInsertBlock(editor: OnesEditor, blockData: DocBlock, containerId?: string, blockIndex?: number, newRange?: OnesEditorDocRange): import("../../types").BlockElement;
|
|
3
|
+
export declare function editorAutoInsertBlock(editor: OnesEditor, blockData: DocBlock, containerId?: string, blockIndex?: number, newRange?: OnesEditorDocRange, insertBlockOptions?: InsertBlockOptions): import("../../types").BlockElement;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { BlockElement, BreakTextOptions, OnesEditor } from '../../types';
|
|
2
|
+
import { DocBlockAttributes } from '../../doc';
|
|
2
3
|
export interface BreakTextBlockResult {
|
|
3
4
|
block: BlockElement;
|
|
4
5
|
newBlock: BlockElement;
|
|
5
6
|
}
|
|
7
|
+
export declare function copyBlockAttributes(editor: OnesEditor, block: BlockElement): DocBlockAttributes;
|
|
6
8
|
export declare function editorBreakTextBlock(editor: OnesEditor, block: BlockElement, offset: number, options?: BreakTextOptions): BreakTextBlockResult;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { OnesEditor, BlockElement } from '../../types';
|
|
2
|
-
export declare function editorDeleteBlockText(editor: OnesEditor, block: BlockElement, offset: number, count: number): number;
|
|
1
|
+
import { OnesEditor, BlockElement, InsertTextOptions } from '../../types';
|
|
2
|
+
export declare function editorDeleteBlockText(editor: OnesEditor, block: BlockElement, offset: number, count: number, options?: InsertTextOptions): number;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { DocBlock, OnesEditorDocRange } from '../../doc';
|
|
1
|
+
import { DocBlock, InsertBlockOptions, OnesEditorDocRange } from '../../doc';
|
|
2
2
|
import { OnesEditor, BlockElement } from '../../types';
|
|
3
|
-
export declare function editorInsertBlock(editor: OnesEditor, containerId: string, blockIndex: number, blockData: DocBlock, newRange: OnesEditorDocRange): BlockElement;
|
|
3
|
+
export declare function editorInsertBlock(editor: OnesEditor, containerId: string, blockIndex: number, blockData: DocBlock, newRange: OnesEditorDocRange, options?: InsertBlockOptions): BlockElement;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { OnesEditor, BlockElement } from '../../types';
|
|
1
|
+
import { OnesEditor, BlockElement, InsertTextOptions } from '../../types';
|
|
2
2
|
import { DocBlockText, DocBox } from '../../doc';
|
|
3
|
-
export declare function editorInsertTextToBlock(editor: OnesEditor, block: BlockElement, offset: number, text: string | DocBlockText): DocBlockText;
|
|
3
|
+
export declare function editorInsertTextToBlock(editor: OnesEditor, block: BlockElement, offset: number, text: string | DocBlockText, options?: InsertTextOptions): DocBlockText;
|
|
4
4
|
export declare function editorInsertBoxToBlock(editor: OnesEditor, block: BlockElement, offset: number, boxData: DocBox): DocBlockText;
|
|
5
5
|
export declare function editorInsertTextToBlockEx(editor: OnesEditor, text: string | DocBlockText, containerId: string, blockIndex: number, offset: number): DocBlockText;
|
|
6
6
|
export declare function editorInsertText(editor: OnesEditor, text: string | DocBlockText): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EditorDocLocalActionCallbacks, OnesEditor } from '../types';
|
|
2
|
-
import { BuildResourceUrlOptions, DocBlock, DocBlockDelta, DocBlockText, DocBlockTextActions, DocObject, OnesEditorDoc, OnesEditorDocCallbacks, OnesEditorDocRange, OnesEditorDocServerMeta, OnesEditorDocStatus, UploadResourceOptions, UploadResourceResult } from '../doc';
|
|
2
|
+
import { BuildResourceUrlOptions, InsertBlockOptions, DocBlock, DocBlockDelta, DocBlockText, DocBlockTextActions, DocObject, OnesEditorDoc, OnesEditorDocCallbacks, OnesEditorDocRange, OnesEditorDocServerMeta, OnesEditorDocStatus, UploadResourceOptions, UploadResourceResult, UpdateBlockOptions } from '../doc';
|
|
3
3
|
import { EventCallbacks } from '../../utils';
|
|
4
4
|
export default class EditorDoc extends EventCallbacks<OnesEditorDocCallbacks> implements OnesEditorDoc, OnesEditorDocCallbacks {
|
|
5
5
|
private editor;
|
|
@@ -13,9 +13,10 @@ export default class EditorDoc extends EventCallbacks<OnesEditorDocCallbacks> im
|
|
|
13
13
|
getVersionHelper(): import("../doc").OnesEditorDocVersionHelper | undefined;
|
|
14
14
|
getContainerBlocks(containerId: string): DocBlock[];
|
|
15
15
|
getBlockData(containerId: string, blockIndex: number): DocBlock;
|
|
16
|
-
|
|
16
|
+
verifyBlockWritable(containerId: string, blockIndex: number): void;
|
|
17
|
+
localUpdateBlockText(containerId: string, blockIndex: number, actions: DocBlockTextActions, options?: UpdateBlockOptions): DocBlockText;
|
|
17
18
|
localUpdateBlockData(containerId: string, blockIndex: number, delta: DocBlockDelta, newRange: OnesEditorDocRange): DocBlock;
|
|
18
|
-
localInsertBlock(containerId: string, blockIndex: number, data: DocBlock, newRange: OnesEditorDocRange): DocBlock;
|
|
19
|
+
localInsertBlock(containerId: string, blockIndex: number, data: DocBlock, newRange: OnesEditorDocRange, options?: InsertBlockOptions): DocBlock;
|
|
19
20
|
localDeleteBlock(containerId: string, blockIndex: number, newRange: OnesEditorDocRange): DocBlock;
|
|
20
21
|
localDeleteChildContainers(containerIds: string[]): void;
|
|
21
22
|
localInsertChildContainer(containerId: string, blocks: DocBlock[]): void;
|
|
@@ -38,4 +39,5 @@ export default class EditorDoc extends EventCallbacks<OnesEditorDocCallbacks> im
|
|
|
38
39
|
getRemoteUsers(): import("../doc").OnesEditorRemoteUsers;
|
|
39
40
|
destroy(): void;
|
|
40
41
|
getServerMeta(): OnesEditorDocServerMeta;
|
|
42
|
+
reset(doc: OnesEditorDoc): void;
|
|
41
43
|
}
|
|
@@ -11,7 +11,9 @@ export declare class EditorInputHandlers implements EditorInputCallbacks {
|
|
|
11
11
|
onRemoteChanged(type: RemoteChangeType): void;
|
|
12
12
|
onCompositionStart(event: Event): void;
|
|
13
13
|
onUpdateCompositionText(event: Event, text: string, end: boolean): void;
|
|
14
|
+
onCopy(event: ClipboardEvent): void;
|
|
14
15
|
onPaste(event: ClipboardEvent): void;
|
|
16
|
+
onPasteText: (text: string) => Promise<void>;
|
|
15
17
|
onFocus(): void;
|
|
16
18
|
onBlur(): void;
|
|
17
19
|
addHandler(handler: OnesEditorInputHandler): void;
|
|
@@ -23,5 +25,6 @@ export declare class EditorInputHandlers implements EditorInputCallbacks {
|
|
|
23
25
|
defaultInsertText(editor: OnesEditor, containerId: string, blockIndex: number, offset: number, text: string): void;
|
|
24
26
|
defaultHandleKeydown(editor: OnesEditor, event: KeyboardEvent): boolean;
|
|
25
27
|
pasteDoc(doc: DocObject): Promise<void>;
|
|
28
|
+
private pasteDocs;
|
|
26
29
|
destroy(): void;
|
|
27
30
|
}
|
|
@@ -22,5 +22,5 @@ import { editorMovePageUp } from './move-page-up';
|
|
|
22
22
|
import { editorMovePageDown } from './move-page-down';
|
|
23
23
|
import { editorSelectPageUp } from './select-page-up';
|
|
24
24
|
import { editorSelectPageDown } from './select-page-down';
|
|
25
|
-
import { editorSelectAll } from './select-all';
|
|
26
|
-
export { editorMoveLeft, editorMoveRight, editorMoveUp, editorMoveDown, editorSelectDown, editorSelectUp, editorSelectLeft, editorSelectRight, editorMoveWordLeft, editorMoveWordEnd, editorSelectWordLeft, editorSelectWordEnd, editorMoveHome, editorMoveEnd, editorSelectHome, editorSelectEnd, editorMovePageUp, editorMovePageDown, editorSelectPageUp, editorSelectPageDown, editorSelectLineHome, editorSelectLineEnd, editorMoveLineHome, editorMoveLineEnd, editorSelectAll, };
|
|
25
|
+
import { editorSelectAll, editorSelectContainer, isContainerSelectedAllChildBlocks } from './select-all';
|
|
26
|
+
export { editorMoveLeft, editorMoveRight, editorMoveUp, editorMoveDown, editorSelectDown, editorSelectUp, editorSelectLeft, editorSelectRight, editorMoveWordLeft, editorMoveWordEnd, editorSelectWordLeft, editorSelectWordEnd, editorMoveHome, editorMoveEnd, editorSelectHome, editorSelectEnd, editorMovePageUp, editorMovePageDown, editorSelectPageUp, editorSelectPageDown, editorSelectLineHome, editorSelectLineEnd, editorMoveLineHome, editorMoveLineEnd, editorSelectAll, editorSelectContainer, isContainerSelectedAllChildBlocks, };
|
|
@@ -1,2 +1,4 @@
|
|
|
1
|
-
import { OnesEditor } from '../../types';
|
|
1
|
+
import { ContainerElement, OnesEditor, SimpleSelectionRange } from '../../types';
|
|
2
|
+
export declare function isContainerSelectedAllChildBlocks(container: ContainerElement, range: SimpleSelectionRange): boolean;
|
|
2
3
|
export declare function editorSelectAll(editor: OnesEditor): boolean;
|
|
4
|
+
export declare function editorSelectContainer(editor: OnesEditor, container: ContainerElement): void;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { OnesEditor, SimpleBlockPosition } from '../../types';
|
|
2
2
|
export declare function editorGetWordLeftPos(editor: OnesEditor, type: 'move' | 'select'): SimpleBlockPosition | null;
|
|
3
|
-
export declare function
|
|
3
|
+
export declare function editorGetWordRightPos(editor: OnesEditor, type: 'move' | 'select'): SimpleBlockPosition | null;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EditorCaret } from '../blocks/text-blocks/caret/editor-caret';
|
|
2
|
-
import { OnesEditorSelection, BlockElement, BlockPosition, SelectionRange, OnesEditor,
|
|
2
|
+
import { OnesEditorSelection, BlockElement, BlockPosition, SelectionRange, OnesEditor, DeleteBlockEventOptions, ChangeSelectionOptions } from '../types';
|
|
3
3
|
export declare class EditorSelection implements OnesEditorSelection {
|
|
4
4
|
readonly editor: OnesEditor;
|
|
5
5
|
readonly caret: EditorCaret;
|
|
@@ -16,7 +16,7 @@ export declare class EditorSelection implements OnesEditorSelection {
|
|
|
16
16
|
getEndBlock(): BlockElement;
|
|
17
17
|
selectBlock(block: BlockElement, start: number, end?: number): void;
|
|
18
18
|
setSelection(anchor: BlockPosition, focus?: BlockPosition, options?: ChangeSelectionOptions): SelectionRange;
|
|
19
|
-
setRange(range: SelectionRange): SelectionRange;
|
|
19
|
+
setRange(range: SelectionRange, options?: ChangeSelectionOptions): SelectionRange;
|
|
20
20
|
updateSelection(): void;
|
|
21
21
|
getFocusedPos(): BlockPosition;
|
|
22
22
|
getAnchorPos(): BlockPosition;
|
|
@@ -29,6 +29,7 @@ export declare class EditorSelection implements OnesEditorSelection {
|
|
|
29
29
|
private verifyPos;
|
|
30
30
|
private updateFocusedBlock;
|
|
31
31
|
verify(): void;
|
|
32
|
+
to(type: 'text' | 'markdown' | 'html'): string;
|
|
32
33
|
private removeAllBlockFocusedClass;
|
|
33
34
|
private setBlockFocused;
|
|
34
35
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnesEditorDocRange } from '../../doc';
|
|
2
|
-
import { OnesEditor, SelectionRange, SelectedBlock, ContainerElement } from '../../types';
|
|
2
|
+
import { OnesEditor, SelectionRange, SelectedBlock, ContainerElement, SimpleSelectionRange } from '../../types';
|
|
3
3
|
import { EditorSimpleBlockPosition } from '../editor-position';
|
|
4
4
|
interface SimpleRangeOptions {
|
|
5
5
|
anchor: EditorSimpleBlockPosition;
|
|
@@ -26,5 +26,6 @@ export default class EditorSimpleSelectionRange implements SelectionRange {
|
|
|
26
26
|
getFocusedPos(): EditorSimpleBlockPosition;
|
|
27
27
|
clone(): EditorSimpleSelectionRange;
|
|
28
28
|
toDocRange(): OnesEditorDocRange;
|
|
29
|
+
static from(editor: OnesEditor, other: SimpleSelectionRange): EditorSimpleSelectionRange;
|
|
29
30
|
}
|
|
30
31
|
export {};
|
|
@@ -3,7 +3,7 @@ export default class DefaultSettingsProvider implements OnesEditorSettingsProvid
|
|
|
3
3
|
private editor;
|
|
4
4
|
constructor(editor: OnesEditor);
|
|
5
5
|
getKey(key: string): string;
|
|
6
|
-
getItem(key: string):
|
|
7
|
-
setItem(key: string, value: string | null):
|
|
8
|
-
removeItem(key: string):
|
|
6
|
+
getItem(key: string): string | null;
|
|
7
|
+
setItem(key: string, value: string | null): void;
|
|
8
|
+
removeItem(key: string): void;
|
|
9
9
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypedEmitter } from 'tiny-typed-emitter';
|
|
2
|
-
import { DocBlock, DocBlockAttributes, DocBlocks, DocBlockText, DocBlockTextAttributes, DocBox, DocEmbedBlock, DocEmbedData, DocInsertion, DocObject, OnesEditorDoc, OnesEditorDocRange } from './doc';
|
|
2
|
+
import { DocBlock, DocBlockAttributes, DocBlocks, DocBlockText, DocBlockTextAttributes, DocBox, DocEmbedBlock, DocEmbedData, DocInsertion, DocObject, InsertBlockOptions, OnesEditorDoc, OnesEditorDocRange } from './doc';
|
|
3
3
|
export type ContainerElement = HTMLDivElement & {
|
|
4
4
|
__neverUse: 'ContainerElement';
|
|
5
5
|
};
|
|
@@ -61,6 +61,7 @@ export interface Box {
|
|
|
61
61
|
boxType: string;
|
|
62
62
|
updateBoxContent: (editor: OnesEditor, boxElement: BoxElement, boxContent: BoxContentElement, boxData: DocBox) => void;
|
|
63
63
|
convertFrom?: (editor: OnesEditor, text: string) => DocBox | null;
|
|
64
|
+
convertTo?: (editor: OnesEditor, boxData: DocBox, doc: DocObject, type: 'text' | 'html' | 'markdown') => string;
|
|
64
65
|
handleClickBox?: (editor: OnesEditor, box: BoxElement, event: MouseEvent) => void;
|
|
65
66
|
toStandardText?: (editor: OnesEditor, box: DocBox) => Promise<DocBlockText | undefined>;
|
|
66
67
|
getBoxProperties?: (editor: OnesEditor, boxElement: BoxElement) => BoxProperties;
|
|
@@ -88,12 +89,13 @@ export interface Embed {
|
|
|
88
89
|
getOptions?: (editor: OnesEditor) => EmbedOptions;
|
|
89
90
|
handleDeleteBlock?: (editor: OnesEditor, block: BlockElement, local: boolean, options: DeleteBlockEventOptions) => void;
|
|
90
91
|
handleUpdateBlock?: (editor: OnesEditor, block: BlockElement, blockData: DocEmbedBlock) => boolean;
|
|
91
|
-
handleDropOver?: (editor: OnesEditor, block: BlockElement,
|
|
92
|
-
handleDrop?: (editor: OnesEditor, block: BlockElement,
|
|
92
|
+
handleDropOver?: (editor: OnesEditor, block: BlockElement, dragData: DragObject | DataTransferItemList | null, x: number, y: number) => DropInsertPos | undefined;
|
|
93
|
+
handleDrop?: (editor: OnesEditor, block: BlockElement, dragData: DragObject | File[], insertPos: DropInsertPos, options: DropOptions) => boolean | undefined;
|
|
93
94
|
convertFrom?: (editor: OnesEditor, srcBlock: BlockElement, options: {
|
|
94
95
|
offset: number;
|
|
95
96
|
data?: DocBlockAttributes;
|
|
96
97
|
}) => ConvertBlockResult | null;
|
|
98
|
+
toStandardDoc?: (editor: OnesEditor, blockData: DocBlock, doc: DocObject, path: BlockPath) => Promise<DocObject | undefined>;
|
|
97
99
|
}
|
|
98
100
|
export interface ConvertBlockResult {
|
|
99
101
|
blockData: DocBlock;
|
|
@@ -118,7 +120,7 @@ export interface CommandItem {
|
|
|
118
120
|
value?: string;
|
|
119
121
|
order?: number;
|
|
120
122
|
type?: CommandItemType;
|
|
121
|
-
element?: HTMLElement;
|
|
123
|
+
element?: HTMLElement | ((item: CommandItem) => HTMLElement);
|
|
122
124
|
icon?: string;
|
|
123
125
|
childrenType?: 'menu' | 'toolbar';
|
|
124
126
|
children?: CommandItem[];
|
|
@@ -130,7 +132,9 @@ export interface CommandItem {
|
|
|
130
132
|
manualShowChildren?: boolean;
|
|
131
133
|
childrenPlacement?: CommandItemChildrenPlacement;
|
|
132
134
|
childrenOffset?: [number, number];
|
|
133
|
-
|
|
135
|
+
subText?: string;
|
|
136
|
+
defaultCheckedChildren?: string[];
|
|
137
|
+
disableTooltip?: boolean;
|
|
134
138
|
setCloseable?: (closeable: Closeable) => void;
|
|
135
139
|
beforePopup?: (parent: unknown) => void;
|
|
136
140
|
}
|
|
@@ -199,13 +203,13 @@ export interface Block {
|
|
|
199
203
|
clearSelection: (editor: OnesEditor) => void;
|
|
200
204
|
getBlockProperties?: (editor: OnesEditor, block: BlockElement) => BlockProperties;
|
|
201
205
|
getOptions?: (editor: OnesEditor) => BlockOptions;
|
|
202
|
-
notify?: (editor: OnesEditor, command: string, params?: unknown) =>
|
|
206
|
+
notify?: (editor: OnesEditor, command: string, params?: unknown) => unknown | undefined;
|
|
203
207
|
handleBlockElementUpdated?: (editor: OnesEditor, block: BlockElement, blockData: DocBlock) => void;
|
|
204
208
|
handleContainerResized?: (editor: OnesEditor, block: BlockElement) => void;
|
|
205
209
|
handleDeleteBlock?: (editor: OnesEditor, block: BlockElement, local: boolean, options: DeleteBlockEventOptions) => void;
|
|
206
210
|
handleUpdateBlock?: (editor: OnesEditor, block: BlockElement, blockData: DocBlock) => boolean;
|
|
207
|
-
handleDropOver?: (editor: OnesEditor, block: BlockElement,
|
|
208
|
-
handleDrop?: (editor: OnesEditor, block: BlockElement,
|
|
211
|
+
handleDropOver?: (editor: OnesEditor, block: BlockElement, dragData: DragObject | DataTransferItemList | null, x: number, y: number) => DropInsertPos | false | undefined;
|
|
212
|
+
handleDrop?: (editor: OnesEditor, block: BlockElement, dragData: DragObject | File[], insertPos: DropInsertPos, options: DropOptions) => boolean | undefined;
|
|
209
213
|
getClientRects?: (editor: OnesEditor, block: BlockElement, range: SelectionRange) => DOMRect[];
|
|
210
214
|
getMinWidth?: (editor: OnesEditor, block: BlockElement) => number | undefined;
|
|
211
215
|
convertFrom?: (editor: OnesEditor, srcBlock: BlockElement, options: {
|
|
@@ -213,7 +217,7 @@ export interface Block {
|
|
|
213
217
|
data?: DocBlockAttributes;
|
|
214
218
|
}) => ConvertBlockResult | null;
|
|
215
219
|
selectionToDoc?: (editor: OnesEditor, selectedBlock: SelectedBlock) => DocObject;
|
|
216
|
-
convertTo?: (editor: OnesEditor, blockData: DocBlock, doc: DocObject, type: 'text' | 'html' | 'markdown') => string;
|
|
220
|
+
convertTo?: (editor: OnesEditor, blockData: DocBlock, doc: DocObject, type: 'text' | 'html' | 'markdown', path: BlockPath) => string;
|
|
217
221
|
toStandardDoc?: (editor: OnesEditor, blockData: DocBlock, doc: DocObject) => Promise<DocObject | undefined>;
|
|
218
222
|
getBlockStyles?: (editor: OnesEditor, block: BlockElement) => BlockStyles;
|
|
219
223
|
blockToDoc?: (srcDoc: DocObject, srcBlockData: DocBlock, childBlockConverter: (srcDoc: DocObject, srcBlockData: DocBlock) => DocObject) => DocObject;
|
|
@@ -229,9 +233,12 @@ export interface TextKindBlock extends Block {
|
|
|
229
233
|
export interface NextContainerOptions {
|
|
230
234
|
noWrap?: boolean;
|
|
231
235
|
}
|
|
236
|
+
export interface GetChildContainerOptions {
|
|
237
|
+
visibleOnly?: boolean;
|
|
238
|
+
}
|
|
232
239
|
export interface ComplexKindBlock extends Block {
|
|
233
240
|
enableKeyboardSelect?: boolean;
|
|
234
|
-
getChildContainers: (editor: OnesEditor, complexBlock: BlockElement) => ContainerElement[];
|
|
241
|
+
getChildContainers: (editor: OnesEditor, complexBlock: BlockElement, options?: GetChildContainerOptions) => ContainerElement[];
|
|
235
242
|
getNextContainer: (editor: OnesEditor, complexBlock: BlockElement, childContainer: ContainerElement, type: MoveDirection, options?: NextContainerOptions) => ContainerElement | null;
|
|
236
243
|
getSelectedContainers: (editor: OnesEditor, complexBlock: BlockElement, start: ComplexBlockPosition, end: ComplexBlockPosition) => ContainerElement[];
|
|
237
244
|
adjustSelectionPos?: (editor: OnesEditor, complexBlock: BlockElement, anchor: ComplexBlockPosition, focus: ComplexBlockPosition) => {
|
|
@@ -344,9 +351,10 @@ export interface OnesEditorDataConverters {
|
|
|
344
351
|
export interface BreakTextOptions {
|
|
345
352
|
forceInsertAfter?: boolean;
|
|
346
353
|
newBlockData?: DocBlock;
|
|
354
|
+
copyBlockAttributes?: boolean;
|
|
347
355
|
}
|
|
348
356
|
export interface OnesEditorEvents {
|
|
349
|
-
'docChanged': (editor: OnesEditor) => void;
|
|
357
|
+
'docChanged': (editor: OnesEditor, local: boolean) => void;
|
|
350
358
|
'readonlyChanged': (editor: OnesEditor) => void;
|
|
351
359
|
'selectionChanged': (editor: OnesEditor) => void;
|
|
352
360
|
'focusBlockChanged': (editor: OnesEditor, newBlock: BlockElement | null, oldBlock: BlockElement | null) => void;
|
|
@@ -355,15 +363,16 @@ export interface OnesEditorEvents {
|
|
|
355
363
|
'resize': (editor: OnesEditor) => void;
|
|
356
364
|
'load': (editor: OnesEditor, reload: boolean) => void;
|
|
357
365
|
'click': (editor: OnesEditor, event: MouseEvent) => void;
|
|
366
|
+
'clickLink': (editor: OnesEditor, event: MouseEvent, link: Element) => void;
|
|
358
367
|
'beforeClearSelection': (editor: OnesEditor) => void;
|
|
359
368
|
'afterClearSelection': (editor: OnesEditor) => void;
|
|
360
369
|
'blur': (editor: OnesEditor) => void;
|
|
361
370
|
'focus': (editor: OnesEditor) => void;
|
|
362
371
|
}
|
|
363
372
|
export interface OnesEditorSettingsProvider {
|
|
364
|
-
getItem: (key: string) =>
|
|
365
|
-
setItem: (key: string, value: string | null) =>
|
|
366
|
-
removeItem: (key: string) =>
|
|
373
|
+
getItem: (key: string) => string | null;
|
|
374
|
+
setItem: (key: string, value: string | null) => void;
|
|
375
|
+
removeItem: (key: string) => void;
|
|
367
376
|
}
|
|
368
377
|
export interface OnesEditorOptionalOptions {
|
|
369
378
|
shortcuts?: ShortcutRecords[];
|
|
@@ -411,7 +420,7 @@ export declare class OnesEditorCustomDataWrapper<T> {
|
|
|
411
420
|
private editor;
|
|
412
421
|
private data;
|
|
413
422
|
constructor(editor: OnesEditor, data: T);
|
|
414
|
-
getData
|
|
423
|
+
getData(): T;
|
|
415
424
|
getEditor(): OnesEditor;
|
|
416
425
|
destroy(): void;
|
|
417
426
|
}
|
|
@@ -425,6 +434,7 @@ export interface OnesEditorDomEvents extends OnesEditorCustom {
|
|
|
425
434
|
removeEventListener: (element: Element | Document | Window | null, eventName: string | null, eventHandler: (editor: OnesEditor, event: Event) => void) => void;
|
|
426
435
|
removeAllListeners: (element: Element | Document | Window, eventName?: string) => void;
|
|
427
436
|
}
|
|
437
|
+
export type InsertTextOptions = InsertBlockOptions;
|
|
428
438
|
export interface OnesEditor extends TypedEmitter<OnesEditorEvents> {
|
|
429
439
|
readonly parent: HTMLElement;
|
|
430
440
|
readonly rootElement: HTMLDivElement;
|
|
@@ -489,7 +499,7 @@ export interface OnesEditor extends TypedEmitter<OnesEditorEvents> {
|
|
|
489
499
|
contains: (node: Node) => boolean;
|
|
490
500
|
getSelectedText: () => string;
|
|
491
501
|
clearSelectedContents: () => void;
|
|
492
|
-
insertBlock: (containerId: string, blockIndex: number, blockData: DocBlock, newRange?: OnesEditorDocRange) => BlockElement;
|
|
502
|
+
insertBlock: (containerId: string, blockIndex: number, blockData: DocBlock, newRange?: OnesEditorDocRange, options?: InsertBlockOptions) => BlockElement;
|
|
493
503
|
insertEmbed: (containerId: string, blockIndex: number, embedType: string, embedData: DocEmbedData, newRange?: OnesEditorDocRange) => BlockElement;
|
|
494
504
|
deleteBlock: (block: BlockElement, newRange?: OnesEditorDocRange) => void;
|
|
495
505
|
getTextPosition: () => BlockTextPosition;
|
|
@@ -500,8 +510,8 @@ export interface OnesEditor extends TypedEmitter<OnesEditorEvents> {
|
|
|
500
510
|
getBlockText: (block: BlockElement) => DocBlockText;
|
|
501
511
|
setBlockText: (block: BlockElement, text: DocBlockText) => void;
|
|
502
512
|
getBoxData: (box: BoxElement) => DocBox;
|
|
503
|
-
deleteTextFromBlock: (block: BlockElement, offset: number, count: number) => number;
|
|
504
|
-
insertTextToBlock: (block: BlockElement, offset: number, text: string | DocBlockText) => DocBlockText;
|
|
513
|
+
deleteTextFromBlock: (block: BlockElement, offset: number, count: number, options?: InsertTextOptions) => number;
|
|
514
|
+
insertTextToBlock: (block: BlockElement, offset: number, text: string | DocBlockText, options?: InsertTextOptions) => DocBlockText;
|
|
505
515
|
insertBoxToBlock: (block: BlockElement, offset: number, boxData: DocBox) => DocBlockText;
|
|
506
516
|
mergeTextBlock: (block1: BlockElement, block2: BlockElement, options?: {
|
|
507
517
|
focus?: boolean;
|
|
@@ -509,6 +519,7 @@ export interface OnesEditor extends TypedEmitter<OnesEditorEvents> {
|
|
|
509
519
|
breakTextBlock: (block: BlockElement, offset: number, options?: BreakTextOptions) => BlockElement;
|
|
510
520
|
insertTextBlock: (text?: string | DocBlockText, containerId?: string, blockIndex?: number, options?: {
|
|
511
521
|
newRange?: OnesEditorDocRange;
|
|
522
|
+
insertBlockOptions?: InsertBlockOptions;
|
|
512
523
|
}) => BlockElement;
|
|
513
524
|
insertDoc: (block: BlockElement, offset: number, doc: DocObject, cloneDocResult?: CloneBlockResultInfo) => void;
|
|
514
525
|
insertDocAt: (container: ContainerElement, blockIndex: number, doc: DocObject, cloneDocResult?: CloneBlockResultInfo) => BlockElement[];
|
|
@@ -530,7 +541,7 @@ export interface OnesEditorSelection {
|
|
|
530
541
|
readonly startBlock: BlockElement;
|
|
531
542
|
readonly endBlock: BlockElement;
|
|
532
543
|
setSelection: (anchor: BlockPosition, focus?: BlockPosition, options?: ChangeSelectionOptions) => SelectionRange;
|
|
533
|
-
setRange: (range: SelectionRange) => SelectionRange;
|
|
544
|
+
setRange: (range: SelectionRange, options?: ChangeSelectionOptions) => SelectionRange;
|
|
534
545
|
selectBlock: (block: BlockElement, start: number, end?: number) => void;
|
|
535
546
|
updateSelection: (old: SelectionRange | null) => void;
|
|
536
547
|
updateLastCaretRect: () => void;
|
|
@@ -538,6 +549,7 @@ export interface OnesEditorSelection {
|
|
|
538
549
|
getAnchorPos: () => BlockPosition;
|
|
539
550
|
getFocusedPos: () => BlockPosition;
|
|
540
551
|
scrollIntoView: () => void;
|
|
552
|
+
to: (type: 'text' | 'markdown' | 'html') => string;
|
|
541
553
|
}
|
|
542
554
|
export type RemoteChangeType = 'UpdateBlockText' | 'UpdateBlockData' | 'InsertBlock' | 'DeleteBlock' | 'InsertChildContainer' | 'DeleteChildContainer';
|
|
543
555
|
export interface OnesEditorInput {
|
|
@@ -551,6 +563,7 @@ export interface OnesEditorInput {
|
|
|
551
563
|
handleKeyDown: (event: KeyboardEvent) => void;
|
|
552
564
|
handleChanged: (action: OnesEditorUndoAction) => void;
|
|
553
565
|
handleRemoteChanged: (type: RemoteChangeType) => void;
|
|
566
|
+
handlePasteText: (text: string) => void;
|
|
554
567
|
addHandler: (handler: OnesEditorInputHandler) => void;
|
|
555
568
|
removeHandler: (handler: OnesEditorInputHandler) => void;
|
|
556
569
|
defaultInsertText: (editor: OnesEditor, containerId: string, blockIndex: number, offset: number, text: string) => void;
|
|
@@ -574,8 +587,9 @@ export interface OnesEditorInputHandler {
|
|
|
574
587
|
handleAfterInsertText?: (editor: OnesEditor, containerId: string, blockIndex: number, offset: number, text: string) => boolean;
|
|
575
588
|
handleBeforeKeyDown?: (editor: OnesEditor, event: KeyboardEvent) => boolean;
|
|
576
589
|
handleAfterKeyDown?: (editor: OnesEditor, event: KeyboardEvent) => boolean;
|
|
577
|
-
|
|
578
|
-
|
|
590
|
+
handleBeforeCopy?: (editor: OnesEditor, event: ClipboardEvent, doc: DocObject) => DocObject | boolean | undefined;
|
|
591
|
+
handleBeforePaste?: (editor: OnesEditor, event: ClipboardEvent | null, doc: OnesEditorDocs) => Promise<boolean>;
|
|
592
|
+
handleAfterPaste?: (editor: OnesEditor, event: ClipboardEvent | null, doc: OnesEditorDocs) => Promise<boolean>;
|
|
579
593
|
handleBeforePasteDoc?: (editor: OnesEditor, doc: DocObject) => Promise<boolean>;
|
|
580
594
|
handleAfterPasteDoc?: (editor: OnesEditor, doc: DocObject) => Promise<boolean>;
|
|
581
595
|
handleChanged?: (editor: OnesEditor, action: OnesEditorUndoAction) => void;
|
|
@@ -589,6 +603,7 @@ export interface OnesEditorBlocks {
|
|
|
589
603
|
getBlockClass: (type: string) => Block;
|
|
590
604
|
createBlock: (path: BlockPath, container: ContainerElement, block: DocBlock) => BlockElement;
|
|
591
605
|
forEach: (callback: (blockClass: Block) => void) => void;
|
|
606
|
+
hasBlock: (type: string) => boolean;
|
|
592
607
|
}
|
|
593
608
|
export interface OnesEditorEmbeds {
|
|
594
609
|
registerEmbedClass: (embedClass: Embed) => void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { BlockElement } from '../core';
|
|
1
|
+
import { BlockElement } from '../core/types';
|
|
2
2
|
export declare function isRootBlock(block: BlockElement): boolean;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { BlockElement, OnesEditor } from '../core/types';
|
|
2
|
+
export declare function findPrevVisibleSimpleBlock(editor: OnesEditor, block: BlockElement): BlockElement | null;
|
|
3
|
+
export declare function findNextVisibleSimpleBlock(editor: OnesEditor, block: BlockElement): BlockElement | null;
|
|
@@ -3,3 +3,4 @@ import type { OnesEditorHoveringBlockFilter, OnesEditorHoveringBlockFinder } fro
|
|
|
3
3
|
export { OnesEditorHoveringBlock, OnesEditorHoveringBlockFilter, OnesEditorHoveringBlockFinder };
|
|
4
4
|
export * from './block-helper';
|
|
5
5
|
export * from './run-once';
|
|
6
|
+
export * from './find-block';
|
|
@@ -1,3 +1,39 @@
|
|
|
1
|
+
declare const langs: {
|
|
2
|
+
'en-US': {
|
|
3
|
+
name: string;
|
|
4
|
+
date: {
|
|
5
|
+
dateFromFuture: string;
|
|
6
|
+
dateJustNow: string;
|
|
7
|
+
dateYesterday: string;
|
|
8
|
+
dateMinutesAgo: string;
|
|
9
|
+
date1HourAgo: string;
|
|
10
|
+
dateHoursAgo: string;
|
|
11
|
+
dateDaysAgo: string;
|
|
12
|
+
dateWeeksAgo: string;
|
|
13
|
+
};
|
|
14
|
+
common: {
|
|
15
|
+
cancel: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
'zh-CN': {
|
|
19
|
+
name: string;
|
|
20
|
+
date: {
|
|
21
|
+
dateFromFuture: string;
|
|
22
|
+
dateJustNow: string;
|
|
23
|
+
dateYesterday: string;
|
|
24
|
+
dateMinutesAgo: string;
|
|
25
|
+
date1HourAgo: string;
|
|
26
|
+
dateHoursAgo: string;
|
|
27
|
+
dateDaysAgo: string;
|
|
28
|
+
dateWeeksAgo: string;
|
|
29
|
+
};
|
|
30
|
+
common: {
|
|
31
|
+
cancel: string;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|
|
1
35
|
export declare function setLang(lang?: string | null | undefined): void;
|
|
2
36
|
export declare function mergeLang(l: any): void;
|
|
3
37
|
export declare function t(key: string, args?: Record<string, string>): string;
|
|
38
|
+
export type LANGS = keyof typeof langs;
|
|
39
|
+
export {};
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import { DocBlock, DocBlockDelta, DocBlockText, DocBlockTextActions, DocObject, OnesEditorDoc, OnesEditorDocCallbacks, OnesEditorUser, UploadResourceOptions, UploadResourceResult } from '../core/doc';
|
|
1
|
+
import { DocBlock, DocBlockDelta, DocBlockText, OnesEditorDocServerMeta, DocBlockTextActions, DocObject, OnesEditorDoc, OnesEditorDocCallbacks, OnesEditorUser, UploadResourceOptions, UploadResourceResult } from '../core/doc';
|
|
2
2
|
import { EventCallbacks } from '../utils';
|
|
3
3
|
import { RemoteUsers } from '../users';
|
|
4
4
|
export declare class LocalDoc extends EventCallbacks<OnesEditorDocCallbacks> implements OnesEditorDoc {
|
|
5
5
|
doc: DocObject;
|
|
6
|
-
|
|
6
|
+
serviceUrl: string;
|
|
7
|
+
constructor(doc: DocObject | null, options?: {
|
|
8
|
+
serverUrl?: string;
|
|
9
|
+
});
|
|
7
10
|
beginBatchUpdate(): number;
|
|
8
11
|
endBatchUpdate(): number;
|
|
9
12
|
toJSON(): DocObject;
|
|
@@ -20,6 +23,7 @@ export declare class LocalDoc extends EventCallbacks<OnesEditorDocCallbacks> imp
|
|
|
20
23
|
buildResourceUrl(src: string): string;
|
|
21
24
|
request<T>(url: string, opt?: any): Promise<T>;
|
|
22
25
|
broadcastMessage(data: unknown): void;
|
|
26
|
+
getServerMeta(): OnesEditorDocServerMeta;
|
|
23
27
|
getUser(): OnesEditorUser;
|
|
24
28
|
getRemoteUsers(): RemoteUsers;
|
|
25
29
|
setDoc(doc: DocObject): void;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
export declare function getScrollContainer(element: HTMLElement
|
|
1
|
+
export declare function getScrollContainer(element: HTMLElement, options?: {
|
|
2
|
+
horizontal?: boolean;
|
|
3
|
+
}): HTMLElement;
|
|
2
4
|
export declare function disablePageScroll(id: string): void;
|
|
3
5
|
export declare function enablePageScroll(id: string): void;
|
|
@@ -26,4 +26,6 @@ export declare function getElementOffset(el: Element): {
|
|
|
26
26
|
left: number;
|
|
27
27
|
};
|
|
28
28
|
export declare function findTarget(event: Event, cssSelector: string): Element | null;
|
|
29
|
+
export declare function findEventTargetBlock(event: Event): Element | null;
|
|
30
|
+
export declare function isElementVisible(element: Element | null): boolean;
|
|
29
31
|
export {};
|
|
@@ -4,6 +4,7 @@ interface SelectFileOptions {
|
|
|
4
4
|
export declare function selectFile<T extends SelectFileOptions = SelectFileOptions>(accept: string, options?: T): Promise<T extends {
|
|
5
5
|
multiple: true;
|
|
6
6
|
} ? File[] : File>;
|
|
7
|
+
export declare function isDraggingFiles(v: unknown): v is File[];
|
|
7
8
|
export declare function getFileExt(file: string): string;
|
|
8
9
|
export declare function requestDownload(downloadUrl: string, fileName?: string): void;
|
|
9
10
|
export {};
|
|
@@ -1,7 +1,16 @@
|
|
|
1
|
+
export declare enum LogLevel {
|
|
2
|
+
DEBUG = "DEBUG",
|
|
3
|
+
INFO = "INFO ",
|
|
4
|
+
WARN = "WARN ",
|
|
5
|
+
ERROR = "ERROR"
|
|
6
|
+
}
|
|
1
7
|
export declare class Logger {
|
|
2
8
|
private category;
|
|
3
9
|
private times;
|
|
10
|
+
static debugMode: boolean;
|
|
11
|
+
static level: LogLevel;
|
|
4
12
|
constructor(category: string);
|
|
13
|
+
shouldLog(level: LogLevel): boolean;
|
|
5
14
|
private _log;
|
|
6
15
|
log(msg: string | object, context?: string): void;
|
|
7
16
|
debug(msg: string | object, context?: string): void;
|