@ones-editor/editor 0.0.3-beta.3 → 0.0.3-beta.32
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/block-locker/src/i18n/en-US.d.ts +8 -0
- package/@ones-editor/block-locker/src/i18n/zh-CN.d.ts +8 -0
- package/@ones-editor/block-locker/src/index.d.ts +2 -0
- package/@ones-editor/block-menu/src/block-menu/index.d.ts +1 -0
- package/@ones-editor/block-menu/src/block-menu/items/text-styles/text-style-item.d.ts +4 -3
- 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/block-hook/index.d.ts +3 -1
- package/@ones-editor/comments/src/comment-editor/index.d.ts +3 -5
- package/@ones-editor/comments/src/comment-input-handler/index.d.ts +2 -10
- package/@ones-editor/comments/src/comment-input-handler/input-handler.d.ts +11 -0
- package/@ones-editor/comments/src/comment-input-handler/quick-reply-input-handler.d.ts +7 -0
- package/@ones-editor/comments/src/comment-item/comment-item.d.ts +2 -0
- package/@ones-editor/comments/src/comment-item/index.d.ts +1 -0
- package/@ones-editor/comments/src/comment-item/mobile-comment-item/index.d.ts +1 -0
- package/@ones-editor/comments/src/comment-item/mobile-comment-item/mobile-comment-item.d.ts +18 -0
- package/@ones-editor/comments/src/comments/comments.d.ts +12 -8
- package/@ones-editor/comments/src/comments-button/index.d.ts +3 -1
- package/@ones-editor/comments/src/comments-helper/utils.d.ts +2 -1
- package/@ones-editor/comments/src/comments-list/comments-list.d.ts +1 -9
- package/@ones-editor/comments/src/comments-list/group-item.d.ts +1 -0
- package/@ones-editor/comments/src/comments-list/group-list.d.ts +0 -1
- package/@ones-editor/comments/src/comments-list/index.d.ts +1 -0
- package/@ones-editor/comments/src/comments-list/mini-comment/mini-comments-list.d.ts +0 -4
- package/@ones-editor/comments/src/comments-list/mobile-comments-list/children-list.d.ts +17 -0
- package/@ones-editor/comments/src/comments-list/mobile-comments-list/group-item.d.ts +30 -0
- package/@ones-editor/comments/src/comments-list/mobile-comments-list/group-list.d.ts +29 -0
- package/@ones-editor/comments/src/comments-list/mobile-comments-list/index.d.ts +1 -0
- package/@ones-editor/comments/src/comments-list/mobile-comments-list/mobile-comments-list.d.ts +28 -0
- package/@ones-editor/comments/src/constant/index.d.ts +1 -1
- package/@ones-editor/comments/src/index.d.ts +1 -1
- package/@ones-editor/comments/src/locale/en-us.d.ts +1 -0
- package/@ones-editor/comments/src/locale/ja-jp.d.ts +1 -0
- package/@ones-editor/comments/src/locale/zh-cn.d.ts +1 -0
- package/@ones-editor/comments/src/text-comments/comments-command-provider.d.ts +3 -1
- package/@ones-editor/comments/src/types.d.ts +12 -17
- package/@ones-editor/core/src/common/index.d.ts +2 -2
- package/@ones-editor/core/src/core/converter/block-to-doc.d.ts +1 -1
- package/@ones-editor/core/src/core/converter/selected-block-to-doc.d.ts +3 -1
- package/@ones-editor/core/src/core/doc/doc.d.ts +6 -2
- package/@ones-editor/core/src/core/doc/rich-text/insert-text.d.ts +2 -1
- 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/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/editor-dom/dom-events.d.ts +3 -3
- package/@ones-editor/core/src/core/editor-doc/editor-doc.d.ts +4 -3
- package/@ones-editor/core/src/core/input-handler/remove-quoted.d.ts +2 -0
- package/@ones-editor/core/src/core/selection/editor-selection.d.ts +2 -2
- package/@ones-editor/core/src/core/types.d.ts +27 -12
- package/@ones-editor/core/src/i18n/i18n.d.ts +36 -0
- package/@ones-editor/core/src/utils/file.d.ts +3 -0
- package/@ones-editor/core/src/utils/logger/index.d.ts +1 -3
- package/@ones-editor/drawio-embed/src/helper/default-style.d.ts +1 -0
- 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 +8 -0
- package/@ones-editor/e2e/cypress/support/commands.d.ts +25 -0
- package/@ones-editor/e2e/cypress/support/e2e.d.ts +1 -0
- package/@ones-editor/e2e/cypress.config.d.ts +3 -0
- package/@ones-editor/e2e/package.json +13 -0
- package/@ones-editor/e2e/src/block-menu/case.d.ts +17 -0
- package/@ones-editor/e2e/src/block-menu/menu.cy.d.ts +1 -0
- package/@ones-editor/e2e/src/data.d.ts +131 -0
- package/@ones-editor/e2e/src/input-handlers/case.d.ts +10 -0
- package/@ones-editor/e2e/src/input-handlers/shortcut.cy.d.ts +1 -0
- package/@ones-editor/e2e/src/list-block/case.d.ts +8 -0
- package/@ones-editor/e2e/src/list-block/list.cy.d.ts +1 -0
- package/@ones-editor/e2e/src/toc/case.d.ts +5 -0
- package/@ones-editor/e2e/src/toc/toc.cy.d.ts +1 -0
- package/@ones-editor/embed-block-helper/src/block-properties/embed-block-properties.d.ts +1 -0
- package/@ones-editor/file/package.json +8 -0
- package/@ones-editor/file/src/file-box/index.d.ts +4 -0
- package/@ones-editor/file/src/file-embed/card/file-icon.d.ts +1 -0
- package/@ones-editor/file/src/file-embed/card/index.d.ts +6 -0
- package/@ones-editor/file/src/file-embed/download-file.d.ts +2 -0
- package/@ones-editor/file/src/file-embed/index.d.ts +4 -0
- package/@ones-editor/file/src/index.d.ts +3 -0
- package/@ones-editor/file/src/types.d.ts +22 -0
- package/@ones-editor/find-dialog/src/find-dialog.d.ts +0 -1
- package/@ones-editor/heading-collapse/src/doc-event/index.d.ts +1 -1
- package/@ones-editor/heading-collapse/src/heading-collapse-button/drop-handler.d.ts +1 -1
- 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/index.d.ts +2 -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/drop/index.d.ts +1 -1
- package/@ones-editor/list-block/src/lang/en-us.d.ts +3 -0
- package/@ones-editor/list-block/src/lang/zh-cn.d.ts +3 -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/mention/src/block-mention.d.ts +10 -0
- package/@ones-editor/mention/src/dom/mention-button.d.ts +2 -0
- package/@ones-editor/mention/src/index.d.ts +2 -1
- package/@ones-editor/scroll-container/src/index.d.ts +6 -18
- package/@ones-editor/scroll-container/src/observer/locating-resize-observer.d.ts +12 -0
- package/@ones-editor/scroll-container/src/scroll-listener.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/table-block/doc-table-data.d.ts +1 -1
- package/@ones-editor/table-block/src/table-block/table-resize/resize-gripper.d.ts +1 -1
- 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/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 +3 -1
- package/@ones-editor/ui/src/quick-menu/basic-menu-items.d.ts +2 -4
- package/@ones-editor/ui/src/quick-menu/index.d.ts +1 -6
- package/@ones-editor/ui/src/quick-menu/insert-empty-block.d.ts +4 -2
- package/@ones-editor/ui/src/quick-menu/types.d.ts +24 -1
- package/@ones-editor/ui/src/toolbar/toolbar-handler.d.ts +0 -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 +1 -0
- 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 +2 -1
- package/@ones-editor/ui-base/src/command-bar/types.d.ts +5 -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 +2 -1
- package/@ones-editor/ui-base/src/dialog/types.d.ts +4 -0
- package/@ones-editor/ui-base/src/icons/index.d.ts +2 -1
- package/@ones-editor/versions/src/types.d.ts +1 -0
- package/@ones-editor/versions/src/version-dialog/index.d.ts +3 -1
- package/dist/comments/create-comment-editor.d.ts +4 -10
- package/dist/comments/local-doc-comments-provider.d.ts +18 -0
- package/dist/comments/{comments-provider.d.ts → sharedb-doc-comments-provider.d.ts} +4 -7
- package/dist/index.d.ts +10 -3
- package/dist/index.js +358 -158
- package/dist/lang/en-us.d.ts +13 -0
- package/dist/lang/index.d.ts +1 -0
- package/dist/lang/zh-cn.d.ts +13 -0
- package/dist/types.d.ts +21 -4
- package/package.json +5 -2
- /package/@ones-editor/{core/src/utils/logger/fake-process.d.ts → block-locker/src/i18n/index.d.ts} +0 -0
|
@@ -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 { OnesEditor } from '../../types';
|
|
2
|
-
export type DomEventCallback = (editor: OnesEditor, event:
|
|
2
|
+
export type DomEventCallback<T = Event> = (editor: OnesEditor, event: T, data: unknown) => void;
|
|
3
3
|
declare class DomEventHandler {
|
|
4
4
|
editor: OnesEditor;
|
|
5
5
|
dom: Element | Document | Window;
|
|
@@ -12,10 +12,10 @@ declare class DomEventHandler {
|
|
|
12
12
|
}
|
|
13
13
|
export declare class EditorDomEvents {
|
|
14
14
|
private editor;
|
|
15
|
-
handlers: Map<
|
|
15
|
+
handlers: Map<Element | Document | Window, DomEventHandler[]>;
|
|
16
16
|
constructor(editor: OnesEditor);
|
|
17
17
|
destroy(): void;
|
|
18
|
-
addEventListener(element: Element | Document | Window, eventName: string, eventHandler: DomEventCallback
|
|
18
|
+
addEventListener<T = Event>(element: Element | Document | Window, eventName: string, eventHandler: DomEventCallback<T>, data?: unknown): void;
|
|
19
19
|
removeEventListener(element: Element | Document | Window | null, eventName: string | null, eventHandler: DomEventCallback): void;
|
|
20
20
|
removeAllListeners(element: Element | Document | Window, eventName?: string): void;
|
|
21
21
|
}
|
|
@@ -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,9 @@ 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
|
-
localUpdateBlockText(containerId: string, blockIndex: number, actions: DocBlockTextActions): DocBlockText;
|
|
16
|
+
localUpdateBlockText(containerId: string, blockIndex: number, actions: DocBlockTextActions, options?: UpdateBlockOptions): DocBlockText;
|
|
17
17
|
localUpdateBlockData(containerId: string, blockIndex: number, delta: DocBlockDelta, newRange: OnesEditorDocRange): DocBlock;
|
|
18
|
-
localInsertBlock(containerId: string, blockIndex: number, data: DocBlock, newRange: OnesEditorDocRange): DocBlock;
|
|
18
|
+
localInsertBlock(containerId: string, blockIndex: number, data: DocBlock, newRange: OnesEditorDocRange, options?: InsertBlockOptions): DocBlock;
|
|
19
19
|
localDeleteBlock(containerId: string, blockIndex: number, newRange: OnesEditorDocRange): DocBlock;
|
|
20
20
|
localDeleteChildContainers(containerIds: string[]): void;
|
|
21
21
|
localInsertChildContainer(containerId: string, blocks: DocBlock[]): void;
|
|
@@ -38,4 +38,5 @@ export default class EditorDoc extends EventCallbacks<OnesEditorDocCallbacks> im
|
|
|
38
38
|
getRemoteUsers(): import("../doc").OnesEditorRemoteUsers;
|
|
39
39
|
destroy(): void;
|
|
40
40
|
getServerMeta(): OnesEditorDocServerMeta;
|
|
41
|
+
reset(doc: OnesEditorDoc): void;
|
|
41
42
|
}
|
|
@@ -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;
|
|
@@ -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
|
};
|
|
@@ -49,12 +49,21 @@ export interface ComplexBlockPosition {
|
|
|
49
49
|
isSimple: () => false;
|
|
50
50
|
}
|
|
51
51
|
export type BlockPosition = SimpleBlockPosition | ComplexBlockPosition;
|
|
52
|
+
export interface BoxCommands {
|
|
53
|
+
group: string;
|
|
54
|
+
commands: CommandItem[];
|
|
55
|
+
executeCommand: (editor: OnesEditor, block: BlockElement, box: BoxElement, item: CommandItem) => unknown;
|
|
56
|
+
}
|
|
57
|
+
export interface BoxProperties {
|
|
58
|
+
boxCommands?: Record<string, BoxCommands>;
|
|
59
|
+
}
|
|
52
60
|
export interface Box {
|
|
53
61
|
boxType: string;
|
|
54
62
|
updateBoxContent: (editor: OnesEditor, boxElement: BoxElement, boxContent: BoxContentElement, boxData: DocBox) => void;
|
|
55
63
|
convertFrom?: (editor: OnesEditor, text: string) => DocBox | null;
|
|
56
64
|
handleClickBox?: (editor: OnesEditor, box: BoxElement, event: MouseEvent) => void;
|
|
57
65
|
toStandardText?: (editor: OnesEditor, box: DocBox) => Promise<DocBlockText | undefined>;
|
|
66
|
+
getBoxProperties?: (editor: OnesEditor, boxElement: BoxElement) => BoxProperties;
|
|
58
67
|
}
|
|
59
68
|
export interface Insertion {
|
|
60
69
|
insertionType: string;
|
|
@@ -79,8 +88,8 @@ export interface Embed {
|
|
|
79
88
|
getOptions?: (editor: OnesEditor) => EmbedOptions;
|
|
80
89
|
handleDeleteBlock?: (editor: OnesEditor, block: BlockElement, local: boolean, options: DeleteBlockEventOptions) => void;
|
|
81
90
|
handleUpdateBlock?: (editor: OnesEditor, block: BlockElement, blockData: DocEmbedBlock) => boolean;
|
|
82
|
-
handleDropOver?: (editor: OnesEditor, block: BlockElement,
|
|
83
|
-
handleDrop?: (editor: OnesEditor, block: BlockElement,
|
|
91
|
+
handleDropOver?: (editor: OnesEditor, block: BlockElement, dragData: DragObject | null, x: number, y: number) => DropInsertPos | undefined;
|
|
92
|
+
handleDrop?: (editor: OnesEditor, block: BlockElement, dragData: DragObject | File[], insertPos: DropInsertPos, options: DropOptions) => boolean | undefined;
|
|
84
93
|
convertFrom?: (editor: OnesEditor, srcBlock: BlockElement, options: {
|
|
85
94
|
offset: number;
|
|
86
95
|
data?: DocBlockAttributes;
|
|
@@ -109,7 +118,7 @@ export interface CommandItem {
|
|
|
109
118
|
value?: string;
|
|
110
119
|
order?: number;
|
|
111
120
|
type?: CommandItemType;
|
|
112
|
-
element?: HTMLElement;
|
|
121
|
+
element?: HTMLElement | ((item: CommandItem) => HTMLElement);
|
|
113
122
|
icon?: string;
|
|
114
123
|
childrenType?: 'menu' | 'toolbar';
|
|
115
124
|
children?: CommandItem[];
|
|
@@ -121,6 +130,8 @@ export interface CommandItem {
|
|
|
121
130
|
manualShowChildren?: boolean;
|
|
122
131
|
childrenPlacement?: CommandItemChildrenPlacement;
|
|
123
132
|
childrenOffset?: [number, number];
|
|
133
|
+
shortcut?: string;
|
|
134
|
+
defaultCheckedChildren?: string[];
|
|
124
135
|
setCloseable?: (closeable: Closeable) => void;
|
|
125
136
|
beforePopup?: (parent: unknown) => void;
|
|
126
137
|
}
|
|
@@ -194,8 +205,8 @@ export interface Block {
|
|
|
194
205
|
handleContainerResized?: (editor: OnesEditor, block: BlockElement) => void;
|
|
195
206
|
handleDeleteBlock?: (editor: OnesEditor, block: BlockElement, local: boolean, options: DeleteBlockEventOptions) => void;
|
|
196
207
|
handleUpdateBlock?: (editor: OnesEditor, block: BlockElement, blockData: DocBlock) => boolean;
|
|
197
|
-
handleDropOver?: (editor: OnesEditor, block: BlockElement,
|
|
198
|
-
handleDrop?: (editor: OnesEditor, block: BlockElement,
|
|
208
|
+
handleDropOver?: (editor: OnesEditor, block: BlockElement, dragData: DragObject | null, x: number, y: number) => DropInsertPos | undefined;
|
|
209
|
+
handleDrop?: (editor: OnesEditor, block: BlockElement, dragData: DragObject | File[], insertPos: DropInsertPos, options: DropOptions) => boolean | undefined;
|
|
199
210
|
getClientRects?: (editor: OnesEditor, block: BlockElement, range: SelectionRange) => DOMRect[];
|
|
200
211
|
getMinWidth?: (editor: OnesEditor, block: BlockElement) => number | undefined;
|
|
201
212
|
convertFrom?: (editor: OnesEditor, srcBlock: BlockElement, options: {
|
|
@@ -334,9 +345,10 @@ export interface OnesEditorDataConverters {
|
|
|
334
345
|
export interface BreakTextOptions {
|
|
335
346
|
forceInsertAfter?: boolean;
|
|
336
347
|
newBlockData?: DocBlock;
|
|
348
|
+
copyBlockAttributes?: boolean;
|
|
337
349
|
}
|
|
338
350
|
export interface OnesEditorEvents {
|
|
339
|
-
'docChanged': (editor: OnesEditor) => void;
|
|
351
|
+
'docChanged': (editor: OnesEditor, local: boolean) => void;
|
|
340
352
|
'readonlyChanged': (editor: OnesEditor) => void;
|
|
341
353
|
'selectionChanged': (editor: OnesEditor) => void;
|
|
342
354
|
'focusBlockChanged': (editor: OnesEditor, newBlock: BlockElement | null, oldBlock: BlockElement | null) => void;
|
|
@@ -411,10 +423,11 @@ export interface CloneBlockResultInfo {
|
|
|
411
423
|
blockIdMap: Map<string, string>;
|
|
412
424
|
}
|
|
413
425
|
export interface OnesEditorDomEvents extends OnesEditorCustom {
|
|
414
|
-
addEventListener: (element: Element | Document | Window, eventName: string, eventHandler: (editor: OnesEditor, event:
|
|
426
|
+
addEventListener: <T = Event>(element: Element | Document | Window, eventName: string, eventHandler: (editor: OnesEditor, event: T) => void) => void;
|
|
415
427
|
removeEventListener: (element: Element | Document | Window | null, eventName: string | null, eventHandler: (editor: OnesEditor, event: Event) => void) => void;
|
|
416
428
|
removeAllListeners: (element: Element | Document | Window, eventName?: string) => void;
|
|
417
429
|
}
|
|
430
|
+
export type InsertTextOptions = InsertBlockOptions;
|
|
418
431
|
export interface OnesEditor extends TypedEmitter<OnesEditorEvents> {
|
|
419
432
|
readonly parent: HTMLElement;
|
|
420
433
|
readonly rootElement: HTMLDivElement;
|
|
@@ -479,7 +492,7 @@ export interface OnesEditor extends TypedEmitter<OnesEditorEvents> {
|
|
|
479
492
|
contains: (node: Node) => boolean;
|
|
480
493
|
getSelectedText: () => string;
|
|
481
494
|
clearSelectedContents: () => void;
|
|
482
|
-
insertBlock: (containerId: string, blockIndex: number, blockData: DocBlock, newRange?: OnesEditorDocRange) => BlockElement;
|
|
495
|
+
insertBlock: (containerId: string, blockIndex: number, blockData: DocBlock, newRange?: OnesEditorDocRange, options?: InsertBlockOptions) => BlockElement;
|
|
483
496
|
insertEmbed: (containerId: string, blockIndex: number, embedType: string, embedData: DocEmbedData, newRange?: OnesEditorDocRange) => BlockElement;
|
|
484
497
|
deleteBlock: (block: BlockElement, newRange?: OnesEditorDocRange) => void;
|
|
485
498
|
getTextPosition: () => BlockTextPosition;
|
|
@@ -490,8 +503,8 @@ export interface OnesEditor extends TypedEmitter<OnesEditorEvents> {
|
|
|
490
503
|
getBlockText: (block: BlockElement) => DocBlockText;
|
|
491
504
|
setBlockText: (block: BlockElement, text: DocBlockText) => void;
|
|
492
505
|
getBoxData: (box: BoxElement) => DocBox;
|
|
493
|
-
deleteTextFromBlock: (block: BlockElement, offset: number, count: number) => number;
|
|
494
|
-
insertTextToBlock: (block: BlockElement, offset: number, text: string | DocBlockText) => DocBlockText;
|
|
506
|
+
deleteTextFromBlock: (block: BlockElement, offset: number, count: number, options?: InsertTextOptions) => number;
|
|
507
|
+
insertTextToBlock: (block: BlockElement, offset: number, text: string | DocBlockText, options?: InsertTextOptions) => DocBlockText;
|
|
495
508
|
insertBoxToBlock: (block: BlockElement, offset: number, boxData: DocBox) => DocBlockText;
|
|
496
509
|
mergeTextBlock: (block1: BlockElement, block2: BlockElement, options?: {
|
|
497
510
|
focus?: boolean;
|
|
@@ -499,6 +512,7 @@ export interface OnesEditor extends TypedEmitter<OnesEditorEvents> {
|
|
|
499
512
|
breakTextBlock: (block: BlockElement, offset: number, options?: BreakTextOptions) => BlockElement;
|
|
500
513
|
insertTextBlock: (text?: string | DocBlockText, containerId?: string, blockIndex?: number, options?: {
|
|
501
514
|
newRange?: OnesEditorDocRange;
|
|
515
|
+
insertBlockOptions?: InsertBlockOptions;
|
|
502
516
|
}) => BlockElement;
|
|
503
517
|
insertDoc: (block: BlockElement, offset: number, doc: DocObject, cloneDocResult?: CloneBlockResultInfo) => void;
|
|
504
518
|
insertDocAt: (container: ContainerElement, blockIndex: number, doc: DocObject, cloneDocResult?: CloneBlockResultInfo) => BlockElement[];
|
|
@@ -520,7 +534,7 @@ export interface OnesEditorSelection {
|
|
|
520
534
|
readonly startBlock: BlockElement;
|
|
521
535
|
readonly endBlock: BlockElement;
|
|
522
536
|
setSelection: (anchor: BlockPosition, focus?: BlockPosition, options?: ChangeSelectionOptions) => SelectionRange;
|
|
523
|
-
setRange: (range: SelectionRange) => SelectionRange;
|
|
537
|
+
setRange: (range: SelectionRange, options?: ChangeSelectionOptions) => SelectionRange;
|
|
524
538
|
selectBlock: (block: BlockElement, start: number, end?: number) => void;
|
|
525
539
|
updateSelection: (old: SelectionRange | null) => void;
|
|
526
540
|
updateLastCaretRect: () => void;
|
|
@@ -579,6 +593,7 @@ export interface OnesEditorBlocks {
|
|
|
579
593
|
getBlockClass: (type: string) => Block;
|
|
580
594
|
createBlock: (path: BlockPath, container: ContainerElement, block: DocBlock) => BlockElement;
|
|
581
595
|
forEach: (callback: (blockClass: Block) => void) => void;
|
|
596
|
+
hasBlock: (type: string) => boolean;
|
|
582
597
|
}
|
|
583
598
|
export interface OnesEditorEmbeds {
|
|
584
599
|
registerEmbedClass: (embedClass: Embed) => void;
|
|
@@ -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 {};
|
|
@@ -4,4 +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[];
|
|
8
|
+
export declare function getFileExt(file: string): string;
|
|
9
|
+
export declare function requestDownload(downloadUrl: string, fileName?: string): void;
|
|
7
10
|
export {};
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import './fake-process';
|
|
2
|
-
declare const customChalk: import("chalk").Chalk;
|
|
3
1
|
export declare class Logger {
|
|
4
2
|
private category;
|
|
5
3
|
private times;
|
|
4
|
+
static debugMode: boolean;
|
|
6
5
|
constructor(category: string);
|
|
7
6
|
private _log;
|
|
8
7
|
log(msg: string | object, context?: string): void;
|
|
@@ -17,4 +16,3 @@ export declare class Logger {
|
|
|
17
16
|
static setExtParams(params: string): void;
|
|
18
17
|
}
|
|
19
18
|
export declare function getLogger(category: string): Logger;
|
|
20
|
-
export { customChalk as chalk };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const DEFAULT_STYLES = "\n<mxStylesheet>\n<add as=\"defaultVertex\">\n<add as=\"shape\" value=\"label\"/>\n<add as=\"perimeter\" value=\"rectanglePerimeter\"/>\n<add as=\"fontSize\" value=\"12\"/>\n<add as=\"fontFamily\" value=\"Helvetica\"/>\n<add as=\"align\" value=\"center\"/>\n<add as=\"verticalAlign\" value=\"middle\"/>\n<add as=\"fillColor\" value=\"#ffffff\"/>\n<add as=\"strokeColor\" value=\"#000000\"/>\n<add as=\"fontColor\" value=\"#000000\"/>\n</add>\n<add as=\"defaultEdge\">\n<add as=\"shape\" value=\"connector\"/>\n<add as=\"labelBackgroundColor\" value=\"#ffffff\"/>\n<add as=\"endArrow\" value=\"classic\"/>\n<add as=\"fontSize\" value=\"11\"/>\n<add as=\"fontFamily\" value=\"Helvetica\"/>\n<add as=\"align\" value=\"center\"/>\n<add as=\"verticalAlign\" value=\"middle\"/>\n<add as=\"rounded\" value=\"1\"/>\n<add as=\"strokeColor\" value=\"#000000\"/>\n<add as=\"fontColor\" value=\"#000000\"/>\n</add>\n<add as=\"text\">\n<add as=\"fillColor\" value=\"none\"/>\n<add as=\"gradientColor\" value=\"none\"/>\n<add as=\"strokeColor\" value=\"none\"/>\n<add as=\"align\" value=\"left\"/>\n<add as=\"verticalAlign\" value=\"top\"/>\n</add>\n<add as=\"edgeLabel\" extend=\"text\">\n<add as=\"labelBackgroundColor\" value=\"#ffffff\"/>\n<add as=\"fontSize\" value=\"11\"/>\n</add>\n<add as=\"label\">\n<add as=\"fontStyle\" value=\"1\"/>\n<add as=\"align\" value=\"left\"/>\n<add as=\"verticalAlign\" value=\"middle\"/>\n<add as=\"spacing\" value=\"2\"/>\n<add as=\"spacingLeft\" value=\"52\"/>\n<add as=\"imageWidth\" value=\"42\"/>\n<add as=\"imageHeight\" value=\"42\"/>\n<add as=\"rounded\" value=\"1\"/>\n</add>\n<add as=\"icon\" extend=\"label\">\n<add as=\"align\" value=\"center\"/>\n<add as=\"imageAlign\" value=\"center\"/>\n<add as=\"verticalLabelPosition\" value=\"bottom\"/>\n<add as=\"verticalAlign\" value=\"top\"/>\n<add as=\"spacingTop\" value=\"4\"/>\n<add as=\"labelBackgroundColor\" value=\"#ffffff\"/>\n<add as=\"spacing\" value=\"0\"/>\n<add as=\"spacingLeft\" value=\"0\"/>\n<add as=\"spacingTop\" value=\"6\"/>\n<add as=\"fontStyle\" value=\"0\"/>\n<add as=\"imageWidth\" value=\"48\"/>\n<add as=\"imageHeight\" value=\"48\"/>\n</add>\n<add as=\"swimlane\">\n<add as=\"shape\" value=\"swimlane\"/>\n<add as=\"fontSize\" value=\"12\"/>\n<add as=\"fontStyle\" value=\"1\"/>\n<add as=\"startSize\" value=\"23\"/>\n</add>\n<add as=\"group\">\n<add as=\"verticalAlign\" value=\"top\"/>\n<add as=\"fillColor\" value=\"none\"/>\n<add as=\"strokeColor\" value=\"none\"/>\n<add as=\"gradientColor\" value=\"none\"/>\n<add as=\"pointerEvents\" value=\"0\"/>\n</add>\n<add as=\"ellipse\">\n<add as=\"shape\" value=\"ellipse\"/>\n<add as=\"perimeter\" value=\"ellipsePerimeter\"/>\n</add>\n<add as=\"rhombus\">\n<add as=\"shape\" value=\"rhombus\"/>\n<add as=\"perimeter\" value=\"rhombusPerimeter\"/>\n</add>\n<add as=\"triangle\">\n<add as=\"shape\" value=\"triangle\"/>\n<add as=\"perimeter\" value=\"trianglePerimeter\"/>\n</add>\n<add as=\"line\">\n<add as=\"shape\" value=\"line\"/>\n<add as=\"strokeWidth\" value=\"4\"/>\n<add as=\"labelBackgroundColor\" value=\"#ffffff\"/>\n<add as=\"verticalAlign\" value=\"top\"/>\n<add as=\"spacingTop\" value=\"8\"/>\n</add>\n<add as=\"image\">\n<add as=\"shape\" value=\"image\"/>\n<add as=\"labelBackgroundColor\" value=\"white\"/>\n<add as=\"verticalAlign\" value=\"top\"/>\n<add as=\"verticalLabelPosition\" value=\"bottom\"/>\n</add>\n<add as=\"roundImage\" extend=\"image\">\n<add as=\"perimeter\" value=\"ellipsePerimeter\"/>\n</add>\n<add as=\"rhombusImage\" extend=\"image\">\n<add as=\"perimeter\" value=\"rhombusPerimeter\"/>\n</add>\n<add as=\"arrow\">\n<add as=\"shape\" value=\"arrow\"/>\n<add as=\"edgeStyle\" value=\"none\"/>\n<add as=\"fillColor\" value=\"#ffffff\"/>\n</add>\n</mxStylesheet>\n";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { BlockElement, ContainerElement, OnesEditor } from '../../../@ones-editor/core';
|
|
2
2
|
import DropIndicator from './drop-indicator';
|
|
3
3
|
export interface DropHandler {
|
|
4
|
-
handleDrop: (editor: OnesEditor,
|
|
4
|
+
handleDrop: (editor: OnesEditor, dragData: BlockElement | File[], targetContainer: ContainerElement, blockIndex: number) => boolean | undefined;
|
|
5
5
|
}
|
|
6
6
|
export default class OnesEditorDropTarget {
|
|
7
7
|
private editor;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OnesEditor, ContainerElement, BlockElement } from '../../../../@ones-editor/core';
|
|
2
|
+
import type { DropHandler } from '../drop-target';
|
|
3
|
+
export declare class DropFileHandler implements DropHandler {
|
|
4
|
+
private editor;
|
|
5
|
+
constructor(editor: OnesEditor);
|
|
6
|
+
private getEmbedClassByFile;
|
|
7
|
+
handleDrop: (editor: OnesEditor, dragData: BlockElement | File[], targetContainer: ContainerElement, blockIndex: number) => boolean;
|
|
8
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/// <reference types="cypress" />
|
|
2
|
+
/// <reference types="cypress" />
|
|
3
|
+
declare namespace Cypress {
|
|
4
|
+
interface Chainable {
|
|
5
|
+
getBlocksByType: (blockType: string) => Chainable<Element>;
|
|
6
|
+
clearAllNoteByKeyboard: () => void;
|
|
7
|
+
getBlockContent: () => Chainable<Element>;
|
|
8
|
+
getBlockContentByBlockId: (blockId: string) => Chainable<Element>;
|
|
9
|
+
cacheBlock: (blockType: string, block: BlockCache) => Chainable<JQuery>;
|
|
10
|
+
createHeadingByShortcut: (blockId: string, level: number, title: string) => Chainable<Element>;
|
|
11
|
+
getMenuItemByDataId: (dataId: string) => Chainable<Element>;
|
|
12
|
+
clickBlockMenuButton: (dataId: string) => Chainable<JQuery>;
|
|
13
|
+
getBlockMenuButton: (dataId: string) => Chainable<JQuery>;
|
|
14
|
+
checkTextStyle: (blockId: string, checkSpanIndex: number, expectedClassValue: string, expectedTextValue: string) => Chainable<JQuery>;
|
|
15
|
+
checkTextColer: (blockId: string, checkSpanIndex: number, expectedClassValue: string, expectBlockAttr: string, expectBlockAttrValue: string, expectedTextValue: string) => Chainable<JQuery>;
|
|
16
|
+
checkHeadingStyle: (blockId: string, expectBlockAttr: string, expectBlockAttrValue: string) => Chainable<JQuery>;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
interface BlockCache {
|
|
20
|
+
TitleBlockId: string;
|
|
21
|
+
BlockCacheMap: Map<string, string[]>;
|
|
22
|
+
setBlock(blockType: string, blockId: string): void;
|
|
23
|
+
getLastBlockId(blockType: string): string;
|
|
24
|
+
setTitleBlockId(blockId: string): void;
|
|
25
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import './commands';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ones-editor/e2e",
|
|
3
|
+
"private": "true",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"main": "index.ts",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"test": "cypress open",
|
|
9
|
+
"e2e-headless": "node ./scripts/e2e-run-tests.js",
|
|
10
|
+
"test-mobile": "cypress open --config viewportWidth=390,viewportHeight=844"
|
|
11
|
+
},
|
|
12
|
+
"types": "src/index.d.ts"
|
|
13
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { BaseAssertion } from '../data';
|
|
2
|
+
declare class Item {
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
shortcut: string;
|
|
6
|
+
constructor(id: string, name: string, shortcut: string);
|
|
7
|
+
}
|
|
8
|
+
export declare const items: Map<string, Item>;
|
|
9
|
+
export declare class BlockMenuCase {
|
|
10
|
+
/**
|
|
11
|
+
* howToOpen : clickToOpen | shortcutToOpen:default
|
|
12
|
+
* @returns null
|
|
13
|
+
*/
|
|
14
|
+
checkBlockMenuItem: (howToOpen: string, block: string) => () => void;
|
|
15
|
+
checkBlockMenuButton: (button: string, assertData: BaseAssertion) => () => void;
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import 'cypress-real-events';
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
export declare class BlockCache {
|
|
2
|
+
TitleBlockId: string;
|
|
3
|
+
BlockCacheMap: Map<string, string[]>;
|
|
4
|
+
constructor();
|
|
5
|
+
setBlock(blockType: string, blockId: string): Map<string, string[]>;
|
|
6
|
+
getLastBlockId(blockType: string): string;
|
|
7
|
+
setTitleBlockId(blockId: string): void;
|
|
8
|
+
}
|
|
9
|
+
export declare class BaseAssertion {
|
|
10
|
+
}
|
|
11
|
+
export declare class TestHeadingStyleData extends BaseAssertion {
|
|
12
|
+
key: string;
|
|
13
|
+
inputStr: string;
|
|
14
|
+
expected: string;
|
|
15
|
+
expectedPlaceholder: string;
|
|
16
|
+
constructor(key: string, inputStr: string, expected: string, expectedPlaceholder: string);
|
|
17
|
+
}
|
|
18
|
+
export declare class CheckBlockData extends BaseAssertion {
|
|
19
|
+
expectBlockAttr: string;
|
|
20
|
+
expectBlockAttrValue: string;
|
|
21
|
+
constructor(expectBlockAttr: string, expectBlockAttrValue: string);
|
|
22
|
+
}
|
|
23
|
+
export declare class CheckTextStyleData extends BaseAssertion {
|
|
24
|
+
checkSpanIndex: number;
|
|
25
|
+
expectedClassValue: string;
|
|
26
|
+
expectedTextValue: string;
|
|
27
|
+
constructor(checkSpanIndex: number, expectedClassValue: string, expectedTextValue: string);
|
|
28
|
+
}
|
|
29
|
+
export declare class TestTextStyleData extends CheckTextStyleData {
|
|
30
|
+
inputStr: string;
|
|
31
|
+
constructor(inputStr: string, checkSpanIndex: number, expectedClassValue: string, expectedTextValue: string);
|
|
32
|
+
}
|
|
33
|
+
export declare class CheckTextColerData extends CheckTextStyleData {
|
|
34
|
+
attr: string;
|
|
35
|
+
attrValue: string;
|
|
36
|
+
constructor(attr: string, attrValue: string, checkSpanIndex: number, expectedClassValue: string, expectedTextValue: string);
|
|
37
|
+
}
|
|
38
|
+
export declare const docTestBlockStyle = "block-style";
|
|
39
|
+
export declare const blockCache: BlockCache;
|
|
40
|
+
export declare const TEXT_BLOCK_ATTRIBUTE: {
|
|
41
|
+
PLACE_HOLDER: {
|
|
42
|
+
KEY: string;
|
|
43
|
+
DEFAULT: string;
|
|
44
|
+
HEADING1: string;
|
|
45
|
+
HEADING2: string;
|
|
46
|
+
HEADING3: string;
|
|
47
|
+
HEADING4: string;
|
|
48
|
+
HEADING5: string;
|
|
49
|
+
HEADING6: string;
|
|
50
|
+
HEADING7: string;
|
|
51
|
+
HEADING8: string;
|
|
52
|
+
};
|
|
53
|
+
STYLE_HEADING: {
|
|
54
|
+
KEY: string;
|
|
55
|
+
};
|
|
56
|
+
STYLE_QUOTE: {
|
|
57
|
+
QUOTECLASSNAME: string;
|
|
58
|
+
};
|
|
59
|
+
STYLE_ALIGN: {
|
|
60
|
+
ALIGN: string;
|
|
61
|
+
};
|
|
62
|
+
STYLE_COLER: {
|
|
63
|
+
TC_COLER: string;
|
|
64
|
+
BC_CLOER: string;
|
|
65
|
+
};
|
|
66
|
+
STYLE_TEXT: {
|
|
67
|
+
BoldStyleClass: string;
|
|
68
|
+
BoldAndItalicStyleClass: string;
|
|
69
|
+
ItalicStyleClass: string;
|
|
70
|
+
CodeStyleClass: string;
|
|
71
|
+
StrikeThrough: string;
|
|
72
|
+
SubscriptCLass: string;
|
|
73
|
+
SuperscriptClass: string;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
export declare const LIST_BLOCK_ATTRIBUTE: {
|
|
77
|
+
PLACE_HOLDER: {
|
|
78
|
+
KEY: string;
|
|
79
|
+
LIST: string;
|
|
80
|
+
};
|
|
81
|
+
LEVEL: string;
|
|
82
|
+
START: string;
|
|
83
|
+
GROUP_ID: string;
|
|
84
|
+
LISTTYPE: string;
|
|
85
|
+
VALUE: {
|
|
86
|
+
LISTTYPE_ORDERED: string;
|
|
87
|
+
LISTTYPE_UNORDERED: string;
|
|
88
|
+
LISTTYPE_CHECKED: string;
|
|
89
|
+
LISTTYPE_UNCHECKED: string;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
export declare const CODE_BLOCK_ATTRIBUTE: {
|
|
93
|
+
DATA_LANGUAGE: string;
|
|
94
|
+
LANGUAGE_PLAIN: string;
|
|
95
|
+
LANGUAGE_GOLANG: string;
|
|
96
|
+
LANGUAGE_JAVA: string;
|
|
97
|
+
LANGUAGE_JAVASCRIPT: string;
|
|
98
|
+
LANGUAGE_HTML_XML: string;
|
|
99
|
+
};
|
|
100
|
+
export declare const EMBED_BLOCK_ATTRIBUTE: {
|
|
101
|
+
HR: {
|
|
102
|
+
TYPE: string;
|
|
103
|
+
CLASS: string;
|
|
104
|
+
};
|
|
105
|
+
MERMAID: {
|
|
106
|
+
TYPE: string;
|
|
107
|
+
EMPTY_TIPS: string;
|
|
108
|
+
EMPTY_REPLACE: string;
|
|
109
|
+
ARIA_EXPANDED: string;
|
|
110
|
+
IMAGE_CLASS: string;
|
|
111
|
+
};
|
|
112
|
+
PLANTUML: {
|
|
113
|
+
TYPE: string;
|
|
114
|
+
EMPTY_TIPS: string;
|
|
115
|
+
EMPTY_REPLACE: string;
|
|
116
|
+
ARIA_EXPANDED: string;
|
|
117
|
+
IMAGE_CLASS: string;
|
|
118
|
+
};
|
|
119
|
+
TOC: {
|
|
120
|
+
TYPE: string;
|
|
121
|
+
CONTAINER_CLASS: string;
|
|
122
|
+
EMPTY_REPLACE: string;
|
|
123
|
+
EMPTY_CLASS: string;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
export declare class TocNode {
|
|
127
|
+
children: TocNode[];
|
|
128
|
+
title: string;
|
|
129
|
+
level: number;
|
|
130
|
+
block: string;
|
|
131
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TestHeadingStyleData, TestTextStyleData } from '../data';
|
|
2
|
+
export declare class ShortcutCase {
|
|
3
|
+
testHeadingStyleShortcut: (data: TestHeadingStyleData) => () => void;
|
|
4
|
+
testShortcutMethod: (data: TestTextStyleData) => () => void;
|
|
5
|
+
testQuoteBlockStyleShortcut: () => () => void;
|
|
6
|
+
testEmberStyleBrShortcut: () => () => void;
|
|
7
|
+
testEmberStyleMermaidPlantumlShortcut: (input: string, embedType: string, emptyReplace: string) => () => void;
|
|
8
|
+
testListBlockStyleShortcut: (input: string, expected: string, start: number, level: number) => () => void;
|
|
9
|
+
testCodeBlockShortcut: (input: string, expected: string) => () => void;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import 'cypress-real-events';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import 'cypress-real-events';
|
|
2
|
+
export declare class ListCase {
|
|
3
|
+
OrderListCreate: () => () => void;
|
|
4
|
+
OrderListAddLevel: () => () => void;
|
|
5
|
+
OrderListFirstNodeAddLevel: () => () => void;
|
|
6
|
+
OrderListSoluction4: () => () => void;
|
|
7
|
+
OrderListPalceholder: () => () => void;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import 'cypress-real-events';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import 'cypress-real-events';
|
|
@@ -5,6 +5,7 @@ export interface StandardEmbedBlockProperties<T = PresetCommandId> {
|
|
|
5
5
|
extCommands?: CommandItem[];
|
|
6
6
|
handleExecuteCommand?: (editor: OnesEditor, block: BlockElement, item: CommandItem) => boolean;
|
|
7
7
|
}
|
|
8
|
+
export declare function addCommentToBlock(editor: OnesEditor, block: BlockElement): boolean;
|
|
8
9
|
export declare class StandardEmbedBlockCommands<T = PresetCommandId> implements BlockCommands {
|
|
9
10
|
protected editor: OnesEditor;
|
|
10
11
|
protected properties?: StandardEmbedBlockProperties<T> | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function getFileIcon(fileName: string, fileType: string): string;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { BlockContentElement } from '../../../../../@ones-editor/core';
|
|
2
|
+
import { FileEmbedData } from '../../types';
|
|
3
|
+
export declare function renderFileCard(content: BlockContentElement, data: FileEmbedData): {
|
|
4
|
+
card: HTMLDivElement;
|
|
5
|
+
downloadButton: HTMLButtonElement;
|
|
6
|
+
};
|