@ones-editor/editor 1.1.18 → 1.1.19-beta.2
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-menu/src/block-menu/items/insert-block-items/index.d.ts +1 -1
- package/@ones-editor/code-block/src/code-block/languages.d.ts +1 -1
- package/@ones-editor/code-block/src/locale/en-us.d.ts +1 -0
- package/@ones-editor/code-block/src/locale/ja-jp.d.ts +1 -0
- package/@ones-editor/code-block/src/locale/zh-cn.d.ts +1 -0
- package/@ones-editor/comments/src/comment-quick-reply/index.d.ts +1 -0
- package/@ones-editor/comments/src/comments/comments.d.ts +1 -1
- package/@ones-editor/comments/src/comments-list/comments-list.d.ts +1 -1
- package/@ones-editor/comments/src/comments-list/group-list.d.ts +3 -1
- package/@ones-editor/comments/src/comments-list/mini-comment/mini-comments-list.d.ts +1 -1
- package/@ones-editor/comments/src/comments-render/index.d.ts +1 -0
- package/@ones-editor/context-menu/src/menu/index.d.ts +1 -0
- package/@ones-editor/core/src/core/blocks/complex-blocks/complex-block-helper.d.ts +2 -1
- package/@ones-editor/core/src/core/composition/editor-input.d.ts +2 -0
- package/@ones-editor/core/src/core/containers/container.d.ts +1 -1
- package/@ones-editor/core/src/core/doc/rich-text/text-style.d.ts +1 -0
- package/@ones-editor/core/src/core/editor/actions/update-block-text.d.ts +3 -3
- package/@ones-editor/core/src/core/editor/actions/update-box-data.d.ts +2 -2
- package/@ones-editor/core/src/core/editor/editor-dom/editor-dom.d.ts +1 -0
- package/@ones-editor/core/src/core/editor-doc/editor-doc.d.ts +1 -0
- package/@ones-editor/core/src/core/input-handler/input-handler.d.ts +3 -1
- package/@ones-editor/core/src/core/types.d.ts +7 -3
- package/@ones-editor/core/src/core/undo-manager/actions/action.d.ts +2 -2
- package/@ones-editor/core/src/utils/dom.d.ts +4 -0
- package/@ones-editor/core/src/utils/file.d.ts +2 -1
- package/@ones-editor/input-handlers/src/enforce-with-document-title/types.d.ts +2 -0
- package/@ones-editor/list-block/src/index.d.ts +2 -1
- package/@ones-editor/list-block/src/local-events/paste-handler.d.ts +6 -0
- package/@ones-editor/sharedb-doc/src/doc/auth-connection.d.ts +1 -0
- package/@ones-editor/sharedb-doc/src/types.d.ts +1 -0
- package/@ones-editor/status/package.json +7 -0
- package/@ones-editor/status/src/dom/input.d.ts +1 -0
- package/@ones-editor/status/src/dom/overflow-tooltip-tag.d.ts +10 -0
- package/@ones-editor/status/src/dom/status-palette.d.ts +6 -0
- package/@ones-editor/status/src/index.d.ts +4 -0
- package/@ones-editor/status/src/locale/en-us.d.ts +25 -0
- package/@ones-editor/status/src/locale/index.d.ts +1 -0
- package/@ones-editor/status/src/locale/ja-jp.d.ts +25 -0
- package/@ones-editor/status/src/locale/zh-cn.d.ts +25 -0
- package/@ones-editor/status/src/status-box-command.d.ts +7 -0
- package/@ones-editor/status/src/status-box-data.d.ts +5 -0
- package/@ones-editor/status/src/status-box-editor.d.ts +21 -0
- package/@ones-editor/status/src/status-box.d.ts +4 -0
- package/@ones-editor/status/src/types.d.ts +8 -0
- package/@ones-editor/table-block/package.json +1 -0
- package/@ones-editor/table-block/src/table-block/table-grid.d.ts +3 -0
- package/@ones-editor/templates/src/index.d.ts +2 -2
- package/@ones-editor/templates/src/templates/select-template.d.ts +4 -0
- package/@ones-editor/templates/src/templates/types.d.ts +1 -0
- package/@ones-editor/tsconfig.tsbuildinfo +1 -1
- package/@ones-editor/ui/src/index.d.ts +2 -2
- package/@ones-editor/ui/src/link-popup/index.d.ts +4 -1
- package/@ones-editor/ui/src/quick-menu/quick-menu-items.d.ts +2 -1
- package/@ones-editor/ui/src/quick-menu/types.d.ts +1 -1
- package/@ones-editor/ui-base/src/command-bar/manual-menu.d.ts +1 -1
- package/@ones-editor/ui-base/src/command-bar/types.d.ts +1 -0
- package/@ones-editor/ui-base/src/icons/index.d.ts +2 -1
- package/@ones-editor/ui-base/src/input/create-input.d.ts +3 -2
- package/@ones-editor/ui-base/src/popup/popup.d.ts +1 -0
- package/@ones-editor/versions/src/types.d.ts +3 -1
- package/@ones-editor/versions/src/version-dialog/size-limit-textarea.d.ts +2 -1
- package/@ones-editor/versions/src/version-dialog/version-list.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +225 -214
- package/dist/types.d.ts +7 -0
- package/package.json +2 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BlockElement, OnesEditor } from '../../../../../../@ones-editor/core';
|
|
2
2
|
import type { GetAllQuickMenuItemsOptions } from '../../../../../../@ones-editor/ui';
|
|
3
3
|
import type { BlockMenuItem } from '../types';
|
|
4
|
-
export declare function getAllInsertBlockItems(editor: OnesEditor, source: 'insert-block' | 'insert-block-before', options
|
|
4
|
+
export declare function getAllInsertBlockItems(editor: OnesEditor, source: 'insert-block' | 'insert-block-before', options: GetAllQuickMenuItemsOptions): BlockMenuItem[];
|
|
5
5
|
export declare function executeInsertBlockCommand(editor: OnesEditor, block: BlockElement, item: BlockMenuItem, insertAbove?: boolean): Promise<BlockElement | null> | undefined;
|
|
@@ -67,7 +67,7 @@ import 'prismjs/components/prism-vhdl';
|
|
|
67
67
|
import 'prismjs/components/prism-visual-basic';
|
|
68
68
|
import 'prismjs/components/prism-wasm';
|
|
69
69
|
import 'prismjs/components/prism-yaml';
|
|
70
|
-
declare const SUPPORTED_LANGUAGES: {
|
|
70
|
+
declare const SUPPORTED_LANGUAGES: () => {
|
|
71
71
|
abap: {
|
|
72
72
|
name: string;
|
|
73
73
|
aliases: string[];
|
|
@@ -13,7 +13,7 @@ export default class OnesEditorComments {
|
|
|
13
13
|
private showComment;
|
|
14
14
|
showCommentList: (groupId?: string) => void;
|
|
15
15
|
setFirstEditingCommentActive(): void;
|
|
16
|
-
isEditing(): boolean;
|
|
16
|
+
isEditing(includeEmpty?: boolean): boolean;
|
|
17
17
|
mount(containers: CommentRoot): void;
|
|
18
18
|
private handleCommentListClose;
|
|
19
19
|
private handleOnSelectComment;
|
|
@@ -18,7 +18,7 @@ export default class CommentsList extends TypedEmitter<CommentsListEvents> imple
|
|
|
18
18
|
onDeleteComment(commentId: string, local: boolean): void;
|
|
19
19
|
onUpdateComment(commentId: string, local: boolean): void;
|
|
20
20
|
createList(): CommentGroupList;
|
|
21
|
-
isEditing(): boolean;
|
|
21
|
+
isEditing(includeEmpty?: boolean): boolean;
|
|
22
22
|
setFirstEditingCommentActive(): void;
|
|
23
23
|
handleSelectionOnComment: () => void;
|
|
24
24
|
updateCommentCount: () => void;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="lodash" />
|
|
1
2
|
import { OnesEditor, OnesEditorComment } from '../../../../@ones-editor/core';
|
|
2
3
|
import { CommentWithChildren, OnesEditorCommentsProvider } from '../types';
|
|
3
4
|
import { CommentGroupItem } from './group-item';
|
|
@@ -13,6 +14,7 @@ export default class CommentGroupList extends ListBase<CommentWithChildren, Comm
|
|
|
13
14
|
groupItemHandlers: CommentGroupItemHandlers;
|
|
14
15
|
constructor(editor: OnesEditor, commentsProvider: OnesEditorCommentsProvider, parent: HTMLElement);
|
|
15
16
|
destroy(): void;
|
|
17
|
+
dispatchScroll: import("lodash").DebouncedFunc<() => void>;
|
|
16
18
|
updateItemsLayout(): void;
|
|
17
19
|
private bindEvents;
|
|
18
20
|
private unbindEvents;
|
|
@@ -22,7 +24,7 @@ export default class CommentGroupList extends ListBase<CommentWithChildren, Comm
|
|
|
22
24
|
active: boolean;
|
|
23
25
|
}): CommentGroupItem | null;
|
|
24
26
|
private findFirstEditingComment;
|
|
25
|
-
isEditing(): boolean;
|
|
27
|
+
isEditing(includeEmpty?: boolean): boolean;
|
|
26
28
|
closeEditing: (groupId: string) => void;
|
|
27
29
|
setFirstEditingCommentActive: () => void;
|
|
28
30
|
setActiveItem(index: number, direction?: 'prev' | 'next'): void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OnesEditor } from '../../../../../@ones-editor/core';
|
|
2
2
|
import { TypedEmitter } from 'tiny-typed-emitter';
|
|
3
|
-
import { OnesEditorCommentsEvents, OnesEditorCommentsProvider } from '
|
|
3
|
+
import { OnesEditorCommentsEvents, OnesEditorCommentsProvider } from '../../types';
|
|
4
4
|
import { MiniGroupList } from './group-list';
|
|
5
5
|
interface MiniCommentsListEvents {
|
|
6
6
|
onMiniCommentClose: () => void;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { BlockElement, BlockPath, DocBlock, DocBlockTextAttributes, OnesEditor, OnesEditorBlockRenderer, OnesEditorBlockRenderResult } from '../../../../@ones-editor/core';
|
|
2
2
|
export declare class OnesEditorCommentsRender implements OnesEditorBlockRenderer {
|
|
3
3
|
renderText(editor: OnesEditor, path: BlockPath, attributes: DocBlockTextAttributes): OnesEditorBlockRenderResult;
|
|
4
|
+
renderBox(editor: OnesEditor, path: BlockPath, attributes: DocBlockTextAttributes): OnesEditorBlockRenderResult;
|
|
4
5
|
renderBlock(editor: OnesEditor, path: BlockPath, blockData: DocBlock): OnesEditorBlockRenderResult;
|
|
5
6
|
updateBlock(editor: OnesEditor, path: BlockPath, blockElement: BlockElement, blockData: DocBlock): void;
|
|
6
7
|
}
|
|
@@ -12,6 +12,7 @@ declare class OnesEditorContextMenu implements OnesEditorCustom {
|
|
|
12
12
|
private isInEditor;
|
|
13
13
|
private handleContextMenuShown;
|
|
14
14
|
private handleContextMenuClick;
|
|
15
|
+
private handleContextMenuClose;
|
|
15
16
|
private handleImageEmbedAction;
|
|
16
17
|
}
|
|
17
18
|
export default OnesEditorContextMenu;
|
|
@@ -2,8 +2,9 @@ import { OnesEditor, BlockElement, BlockPosition, ContainerElement, ComplexBlock
|
|
|
2
2
|
export declare function complexBlockGetAllChildContainers(editor: OnesEditor, block: BlockElement, options?: GetChildContainerOptions): ContainerElement[];
|
|
3
3
|
export declare function complexBlockGetSelectedContainers(editor: OnesEditor, block: BlockElement, start: BlockPosition, end: BlockPosition): ContainerElement[];
|
|
4
4
|
export declare function isFirstChildBlockInComplexBlock(editor: OnesEditor, childBlock: BlockElement): boolean;
|
|
5
|
-
export declare function
|
|
5
|
+
export declare function complexBlockGetFirstSimpleChild(editor: OnesEditor, complexBlock: BlockElement, options?: GetChildContainerOptions): BlockElement | null;
|
|
6
6
|
export declare function complexBlockGetLastSimpleChild(editor: OnesEditor, complexBlock: BlockElement, options?: GetChildContainerOptions): BlockElement | null;
|
|
7
|
+
export declare function complexBlockGetDeepFirstChild(editor: OnesEditor, container: ContainerElement): BlockElement | null;
|
|
7
8
|
export declare function findPrevSimpleBlockBeforeChildContainer(editor: OnesEditor, childContainer: ContainerElement, options?: GetChildContainerOptions): BlockElement | null;
|
|
8
9
|
export declare function complexBlockGetTopChildContainers(editor: OnesEditor, complexBlock: BlockElement): ContainerElement[];
|
|
9
10
|
export declare function complexBlockGetBottomChildContainers(editor: OnesEditor, complexBlock: BlockElement): ContainerElement[];
|
|
@@ -27,9 +27,11 @@ export declare class EditorInput implements OnesEditorInput {
|
|
|
27
27
|
callbacks: EditorInputCallbacks;
|
|
28
28
|
inputElement: HTMLInputElement;
|
|
29
29
|
constructor(editor: OnesEditor, callbacks: EditorInputCallbacks);
|
|
30
|
+
private isInCommandbar;
|
|
30
31
|
destroy(): void;
|
|
31
32
|
getInput(): HTMLInputElement;
|
|
32
33
|
focus(): void;
|
|
34
|
+
isInDisableScrollMask(target: HTMLElement): boolean;
|
|
33
35
|
handleWindowBlur: () => void;
|
|
34
36
|
handleDocumentClick: (event: MouseEvent) => void;
|
|
35
37
|
handleDocumentSelectionChange: () => void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DocBlock, OnesEditorDoc } from '../doc/doc';
|
|
2
2
|
import { ContainerElement } from '../types';
|
|
3
|
-
export declare function isContainer(elem: Element):
|
|
3
|
+
export declare function isContainer(elem: Element): elem is ContainerElement;
|
|
4
4
|
export declare function isRootContainer(container: ContainerElement): boolean;
|
|
5
5
|
export declare function isChildContainer(container: ContainerElement): boolean;
|
|
6
6
|
export declare function getContainerId(container: ContainerElement): string;
|
|
@@ -5,6 +5,7 @@ export declare const TEXT_STYLE_BACKGROUND_COLOR_PREFIX = "style-bg-color-";
|
|
|
5
5
|
export declare function addAttribute(text: DocBlockText, key: string, value: DocTextAttributeType): DocBlockText;
|
|
6
6
|
export declare function removeAttribute(text: DocBlockText, key: string, value: unknown, options?: {
|
|
7
7
|
ignoreValue: boolean;
|
|
8
|
+
handleBox?: boolean;
|
|
8
9
|
}): DocBlockText;
|
|
9
10
|
export declare function rangeAddAttribute(offset: number, length: number, text: DocBlockText, key: string, value: DocTextAttributeType): DocBlockText;
|
|
10
11
|
export declare function rangeRemoveAttribute(offset: number, length: number, text: DocBlockText, key: string, value: unknown, options?: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnesEditor, BlockElement } from '../../types';
|
|
1
|
+
import { OnesEditor, BlockElement, InsertTextOptions } from '../../types';
|
|
2
2
|
import { DocBlockText, DocBlockTextActions } from '../../doc';
|
|
3
|
-
export declare function editorUpdateBlockText(editor: OnesEditor, block: BlockElement, ops: DocBlockTextActions): DocBlockText;
|
|
4
|
-
export declare function editorSetBlockText(editor: OnesEditor, block: BlockElement, newText: DocBlockText): void;
|
|
3
|
+
export declare function editorUpdateBlockText(editor: OnesEditor, block: BlockElement, ops: DocBlockTextActions, options?: InsertTextOptions): DocBlockText;
|
|
4
|
+
export declare function editorSetBlockText(editor: OnesEditor, block: BlockElement, newText: DocBlockText, options?: InsertTextOptions): void;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { OnesEditor } from '../../types';
|
|
1
|
+
import { InsertTextOptions, OnesEditor } from '../../types';
|
|
2
2
|
import { DocBox } from '../../doc';
|
|
3
|
-
export declare function editorUpdateBoxData(editor: OnesEditor, boxData: DocBox): void;
|
|
3
|
+
export declare function editorUpdateBoxData(editor: OnesEditor, boxData: DocBox, options?: InsertTextOptions): void;
|
|
@@ -6,5 +6,6 @@ export declare function editorGetVisibleRect(editor: OnesEditor): DOMRect;
|
|
|
6
6
|
export declare function isBlockPositionVisible(editor: OnesEditor, pos: SimpleBlockPosition): boolean;
|
|
7
7
|
export declare function scrollIntoView(editor: OnesEditor, target: HTMLElement, options?: {
|
|
8
8
|
animation?: boolean;
|
|
9
|
+
verticalOffset?: number;
|
|
9
10
|
}): void;
|
|
10
11
|
export declare function editorScrollIntoView(editor: OnesEditor): void;
|
|
@@ -34,6 +34,7 @@ export default class EditorDoc extends EventCallbacks<OnesEditorDocCallbacks> im
|
|
|
34
34
|
onCustomMessage(msg: unknown): void;
|
|
35
35
|
onStatusChanged(status: OnesEditorDocStatus): void;
|
|
36
36
|
onError(error: Error): void;
|
|
37
|
+
onAuthRecover(): void;
|
|
37
38
|
uploadResource(file: File, options?: UploadResourceOptions): Promise<UploadResourceResult>;
|
|
38
39
|
addResources(resourceIds: string[]): Promise<string[]>;
|
|
39
40
|
buildResourceUrl(resourceId: string, options?: BuildResourceUrlOptions): string;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="lodash" />
|
|
1
2
|
import { EditorInputCallbacks } from '../composition/editor-input';
|
|
2
3
|
import { OnesEditor, OnesEditorInputHandler, OnesEditorUndoAction, RemoteChangeType, PasteOptions } from '../types';
|
|
3
4
|
import { DocObject } from '../doc';
|
|
@@ -18,7 +19,8 @@ export declare class EditorInputHandlers implements EditorInputCallbacks {
|
|
|
18
19
|
onPaste(event: ClipboardEvent): void;
|
|
19
20
|
onPasteText: (text: string, options?: PasteOptions) => Promise<void>;
|
|
20
21
|
onFocus(): void;
|
|
21
|
-
onBlur()
|
|
22
|
+
onBlur: import("lodash").DebouncedFunc<() => void>;
|
|
23
|
+
removeActiveForBlur: import("lodash").DebouncedFunc<() => void>;
|
|
22
24
|
addHandler(handler: OnesEditorInputHandler): void;
|
|
23
25
|
removeHandler(handler: OnesEditorInputHandler): void;
|
|
24
26
|
handleBeforeInsertText(containerId: string, blockIndex: number, offset: number, text: string): boolean;
|
|
@@ -144,6 +144,7 @@ export interface CommandItem {
|
|
|
144
144
|
ellipsisTooltip?: string;
|
|
145
145
|
disableTooltip?: boolean;
|
|
146
146
|
disableReason?: string;
|
|
147
|
+
hideGroupItem?: boolean;
|
|
147
148
|
setCloseable?: (closeable: Closeable) => void;
|
|
148
149
|
beforePopup?: (parent: unknown) => void;
|
|
149
150
|
}
|
|
@@ -398,6 +399,7 @@ export interface OnesEditorOptionalOptions {
|
|
|
398
399
|
colors?: string[];
|
|
399
400
|
scrollContainer?: HTMLElement;
|
|
400
401
|
enableComments?: boolean;
|
|
402
|
+
enableContextMenu?: boolean;
|
|
401
403
|
settingsProvider?: OnesEditorSettingsProvider;
|
|
402
404
|
}
|
|
403
405
|
export interface OnesEditorOptions {
|
|
@@ -406,6 +408,7 @@ export interface OnesEditorOptions {
|
|
|
406
408
|
[index: string]: unknown;
|
|
407
409
|
};
|
|
408
410
|
enableComments?: boolean;
|
|
411
|
+
enableContextMenu?: boolean;
|
|
409
412
|
scrollContainer?: HTMLElement;
|
|
410
413
|
}
|
|
411
414
|
export interface OnesEditorComponents {
|
|
@@ -447,6 +450,7 @@ export type OnesEditorCustomCreator = (editor: OnesEditor) => OnesEditorCustom;
|
|
|
447
450
|
export interface CloneBlockResultInfo {
|
|
448
451
|
containerIdMap: Map<string, string>;
|
|
449
452
|
blockIdMap: Map<string, string>;
|
|
453
|
+
boxIdMap: Map<string, string>;
|
|
450
454
|
}
|
|
451
455
|
export interface OnesEditorDomEvents extends OnesEditorCustom {
|
|
452
456
|
addEventListener: <T = Event>(element: Element | Document | Window, eventName: string, eventHandler: (editor: OnesEditor, event: T) => void) => void;
|
|
@@ -521,7 +525,7 @@ export interface OnesEditor extends TypedEmitter<OnesEditorEvents> {
|
|
|
521
525
|
getSelectedText: () => string;
|
|
522
526
|
clearSelectedContents: () => void;
|
|
523
527
|
insertBlock: (containerId: string, blockIndex: number, blockData: DocBlock, newRange?: OnesEditorDocRange, options?: InsertBlockOptions) => BlockElement;
|
|
524
|
-
insertEmbed: (containerId: string, blockIndex: number, embedType: string, embedData: DocEmbedData, newRange?: OnesEditorDocRange) => BlockElement;
|
|
528
|
+
insertEmbed: (containerId: string, blockIndex: number, embedType: string, embedData: DocEmbedData, newRange?: OnesEditorDocRange, attributes?: DocBlockAttributes) => BlockElement;
|
|
525
529
|
deleteBlock: (block: BlockElement, newRange?: OnesEditorDocRange) => void;
|
|
526
530
|
getTextPosition: () => BlockTextPosition;
|
|
527
531
|
getBlockString: (block: BlockElement, options?: {
|
|
@@ -541,14 +545,14 @@ export interface OnesEditor extends TypedEmitter<OnesEditorEvents> {
|
|
|
541
545
|
insertTextBlock: (text?: string | DocBlockText, containerId?: string, blockIndex?: number, options?: {
|
|
542
546
|
newRange?: OnesEditorDocRange;
|
|
543
547
|
insertBlockOptions?: InsertBlockOptions;
|
|
544
|
-
}) => BlockElement;
|
|
548
|
+
}, attributes?: DocBlockAttributes) => BlockElement;
|
|
545
549
|
insertDoc: (block: BlockElement, offset: number, doc: DocObject, cloneDocResult?: CloneBlockResultInfo) => void;
|
|
546
550
|
insertDocAt: (container: ContainerElement, blockIndex: number, doc: DocObject, cloneDocResult?: CloneBlockResultInfo) => BlockElement[];
|
|
547
551
|
pasteDoc: (doc: DocObject) => Promise<void>;
|
|
548
552
|
deleteChildContainers: (containerIds: string[]) => void;
|
|
549
553
|
updateBlockData: (block: BlockElement, data: DocBlockAttributes, newRange?: SelectionRange) => DocBlock;
|
|
550
554
|
updateEmbedData: (block: BlockElement, data: DocEmbedData, newRange?: SelectionRange) => DocBlock;
|
|
551
|
-
updateBoxData: (boxData: DocBox) => void;
|
|
555
|
+
updateBoxData: (boxData: DocBox, options?: InsertTextOptions) => void;
|
|
552
556
|
updateCompositionText: (text: string, end: boolean) => void;
|
|
553
557
|
getColor: (index: number, type?: string) => string;
|
|
554
558
|
}
|
|
@@ -10,7 +10,7 @@ export default class Action implements OnesEditorUndoAction {
|
|
|
10
10
|
combinable(other: OnesEditorUndoAction): boolean;
|
|
11
11
|
combine(other: OnesEditorUndoAction): void;
|
|
12
12
|
setAfterRange(range: OnesEditorDocRange): void;
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
hasDocContainerId(editor: OnesEditor, id: string): boolean;
|
|
14
|
+
findDocBlockById(editor: OnesEditor, id: string): DocBlock | undefined;
|
|
15
15
|
checkBlockData(editor: OnesEditor, blockData: DocBlock): boolean;
|
|
16
16
|
}
|
|
@@ -33,4 +33,8 @@ export declare function findTarget(event: Event, cssSelector: string): Element |
|
|
|
33
33
|
export declare function findEventTargetBlock(event: Event): Element | null;
|
|
34
34
|
export declare function isElementVisible(element: Element | null): boolean;
|
|
35
35
|
export declare function getElementScale(element: Element): number;
|
|
36
|
+
export declare function bindKeyDownEvent(input: HTMLInputElement | HTMLTextAreaElement, callback: (event: KeyboardEvent, composing: boolean) => void): () => void;
|
|
37
|
+
export declare function getElementFromPoint(x: number, y: number, options?: {
|
|
38
|
+
noFilter: boolean;
|
|
39
|
+
}): Element;
|
|
36
40
|
export {};
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
interface SelectFileOptions {
|
|
2
2
|
multiple?: boolean;
|
|
3
|
+
container?: HTMLElement;
|
|
3
4
|
}
|
|
4
5
|
export declare function selectFile<T extends SelectFileOptions = SelectFileOptions>(accept: string, options?: T): Promise<T extends {
|
|
5
6
|
multiple: true;
|
|
6
|
-
} ? File[] : File>;
|
|
7
|
+
} ? (File[] | null) : (File | null)>;
|
|
7
8
|
export declare function isDraggingFiles(v: unknown): v is File[];
|
|
8
9
|
export declare function getFileExt(file: string): string;
|
|
9
10
|
export declare function requestDownload(downloadUrl: string, fileName?: string): void;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { OnesEditor } from '../../../../@ones-editor/core';
|
|
1
2
|
export interface EnforceWithDocumentTitleHandlerOptions {
|
|
2
3
|
hideTitle?: boolean;
|
|
3
4
|
headingLevel?: number;
|
|
@@ -5,4 +6,5 @@ export interface EnforceWithDocumentTitleHandlerOptions {
|
|
|
5
6
|
contentPlaceholder?: string | Element;
|
|
6
7
|
readonlyTitlePlaceholder?: string;
|
|
7
8
|
addPlaceholderToAllCurrentEmptyBlock?: boolean;
|
|
9
|
+
applyContentPlaceholder?: (editor: OnesEditor) => boolean;
|
|
8
10
|
}
|
|
@@ -6,8 +6,9 @@ import ListBlockShortcuts from './keyboard/shortcut';
|
|
|
6
6
|
import { resetListStart } from './start/reset-list-start';
|
|
7
7
|
import './lang';
|
|
8
8
|
import './style.scss';
|
|
9
|
+
import { ListPasteHandler } from './local-events/paste-handler';
|
|
9
10
|
export { type ListOptions, type DocListBlock } from './types';
|
|
10
11
|
declare const ListBlock: TextKindBlock;
|
|
11
12
|
export * from './utils';
|
|
12
13
|
export * from './keyboard/to-text-block';
|
|
13
|
-
export { ListBlock, OnesEditorListMindmap, Mindmap, resetListStart, toMindmap, isMindmapRootBlock, ListBlockShortcuts, isViewingAsMindmap, getLastMindmapNode, };
|
|
14
|
+
export { ListBlock, OnesEditorListMindmap, Mindmap, resetListStart, toMindmap, isMindmapRootBlock, ListBlockShortcuts, isViewingAsMindmap, getLastMindmapNode, ListPasteHandler, };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { DocObject, OnesEditor, OnesEditorInputHandler } from '../../../../@ones-editor/core';
|
|
2
|
+
export declare class ListPasteHandler implements OnesEditorInputHandler {
|
|
3
|
+
private fixStartByList;
|
|
4
|
+
handleBeforePasteDoc(editor: OnesEditor, doc: DocObject): Promise<boolean>;
|
|
5
|
+
handleAfterPaste(editor: OnesEditor): Promise<boolean>;
|
|
6
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function createStatusInput(parent: HTMLElement, defaultValue: string, onChange: ((e: Event) => void), onKeyDown: (e: KeyboardEvent, composing: boolean) => void): void;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { OnesEditor } from '../../../../@ones-editor/core';
|
|
2
|
+
export declare class OverflowTooltipTag {
|
|
3
|
+
private editor;
|
|
4
|
+
constructor(editor: OnesEditor);
|
|
5
|
+
private check;
|
|
6
|
+
private onMouseOver;
|
|
7
|
+
destroy(): void;
|
|
8
|
+
static create(classes: string[], title: string): HTMLAnchorElement;
|
|
9
|
+
static replaceTitleSpace(title: string): string;
|
|
10
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
status: {
|
|
3
|
+
empty: string;
|
|
4
|
+
command: {
|
|
5
|
+
name: string;
|
|
6
|
+
};
|
|
7
|
+
color: {
|
|
8
|
+
red: string;
|
|
9
|
+
yellow: string;
|
|
10
|
+
green: string;
|
|
11
|
+
blue: string;
|
|
12
|
+
purple: string;
|
|
13
|
+
grey: string;
|
|
14
|
+
};
|
|
15
|
+
colorDefaultTitle: {
|
|
16
|
+
red: string;
|
|
17
|
+
yellow: string;
|
|
18
|
+
green: string;
|
|
19
|
+
blue: string;
|
|
20
|
+
purple: string;
|
|
21
|
+
grey: string;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
status: {
|
|
3
|
+
empty: string;
|
|
4
|
+
command: {
|
|
5
|
+
name: string;
|
|
6
|
+
};
|
|
7
|
+
color: {
|
|
8
|
+
red: string;
|
|
9
|
+
yellow: string;
|
|
10
|
+
green: string;
|
|
11
|
+
blue: string;
|
|
12
|
+
purple: string;
|
|
13
|
+
grey: string;
|
|
14
|
+
};
|
|
15
|
+
colorDefaultTitle: {
|
|
16
|
+
red: string;
|
|
17
|
+
yellow: string;
|
|
18
|
+
green: string;
|
|
19
|
+
blue: string;
|
|
20
|
+
purple: string;
|
|
21
|
+
grey: string;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
export default _default;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
status: {
|
|
3
|
+
empty: string;
|
|
4
|
+
command: {
|
|
5
|
+
name: string;
|
|
6
|
+
};
|
|
7
|
+
color: {
|
|
8
|
+
red: string;
|
|
9
|
+
yellow: string;
|
|
10
|
+
green: string;
|
|
11
|
+
blue: string;
|
|
12
|
+
purple: string;
|
|
13
|
+
grey: string;
|
|
14
|
+
};
|
|
15
|
+
colorDefaultTitle: {
|
|
16
|
+
red: string;
|
|
17
|
+
yellow: string;
|
|
18
|
+
green: string;
|
|
19
|
+
blue: string;
|
|
20
|
+
purple: string;
|
|
21
|
+
grey: string;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { CommandItem, OnesEditor } from '../../../@ones-editor/core';
|
|
2
|
+
export declare class StatusBoxCommand {
|
|
3
|
+
static id: string;
|
|
4
|
+
static get commands(): CommandItem[];
|
|
5
|
+
static insertStatus(editor: OnesEditor, containerId: string, blockIndex: number): void;
|
|
6
|
+
static insertEmptyBlockStatus(editor: OnesEditor, containerId: string, blockIndex: number): import("@ones-editor/core").BlockElement;
|
|
7
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { DocBlockTextOp } from '../../../@ones-editor/core';
|
|
2
|
+
import { StatusBoxData, StatusColor } from './types';
|
|
3
|
+
export declare function recordLastStatusBoxData(box: StatusBoxData): void;
|
|
4
|
+
export declare function getLastStatusBoxTitle(color: StatusColor): string;
|
|
5
|
+
export declare function createEmptyStatusBox(): DocBlockTextOp;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { BoxElement, OnesEditor } from '../../../@ones-editor/core';
|
|
2
|
+
import { Popup } from '../../../@ones-editor/ui-base';
|
|
3
|
+
import { StatusColor } from './types';
|
|
4
|
+
import { StatusPalette } from './dom/status-palette';
|
|
5
|
+
export declare class StatusBoxEditor {
|
|
6
|
+
private editor;
|
|
7
|
+
linkPopup: Popup | null;
|
|
8
|
+
boxElement?: BoxElement;
|
|
9
|
+
statusPalette: StatusPalette;
|
|
10
|
+
isEditing: boolean;
|
|
11
|
+
constructor(editor: OnesEditor);
|
|
12
|
+
editorStatus: (boxElement: BoxElement) => void;
|
|
13
|
+
focus(): void;
|
|
14
|
+
handleShow: () => void;
|
|
15
|
+
handClose: () => void;
|
|
16
|
+
handleKeyDown: (e: KeyboardEvent, composing: boolean) => void;
|
|
17
|
+
createPopupContent(title: string, color: StatusColor, subtle: boolean): HTMLDivElement;
|
|
18
|
+
onColorChange: (e: Event) => void;
|
|
19
|
+
onTitleChange: (e: Event) => void;
|
|
20
|
+
destroy(): void;
|
|
21
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { DocBox } from '../../../@ones-editor/core';
|
|
2
|
+
export declare const STATUS_COLORS: readonly ["Blue", "Grey", "Yellow", "Red", "Green", "Purple"];
|
|
3
|
+
export type StatusColor = typeof STATUS_COLORS[number];
|
|
4
|
+
export interface StatusBoxData extends DocBox {
|
|
5
|
+
title: string;
|
|
6
|
+
subtle: boolean;
|
|
7
|
+
color: StatusColor;
|
|
8
|
+
}
|
|
@@ -48,6 +48,9 @@ export declare class TableGrid {
|
|
|
48
48
|
map<T>(fn: (cell: TableCell) => T): T[][];
|
|
49
49
|
getBottomCell(cellData: TableCell): TableCell | null;
|
|
50
50
|
getTopCell(cellData: TableCell): TableCell | null;
|
|
51
|
+
getLeftCell(cellData: TableCell): TableCell | null;
|
|
52
|
+
getRightCell(cellData: TableCell): TableCell | null;
|
|
53
|
+
get uniqueCells(): TableCell[];
|
|
51
54
|
get cells(): TableCell[];
|
|
52
55
|
getVirtualCellContainersGrid(): string[][];
|
|
53
56
|
static virtualCellContainersGridToChildren(virtualCellContainersGrid: string[][]): string[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import './locale';
|
|
2
|
-
import { autoShowHideTemplates } from './templates/select-template';
|
|
2
|
+
import { autoShowHideTemplates, hideTemplates, showTemplates } from './templates/select-template';
|
|
3
3
|
export * from './templates/types';
|
|
4
|
-
export { autoShowHideTemplates };
|
|
4
|
+
export { autoShowHideTemplates, hideTemplates, showTemplates };
|
|
@@ -1,7 +1,11 @@
|
|
|
1
|
+
/// <reference types="lodash" />
|
|
1
2
|
import { OnesEditor } from '../../../../@ones-editor/core';
|
|
2
3
|
import './select-templates.scss';
|
|
3
4
|
interface ShowTemplatesOptions {
|
|
4
5
|
reset?: boolean;
|
|
5
6
|
}
|
|
7
|
+
declare function showTemplatesCore(editor: OnesEditor, options?: ShowTemplatesOptions): void;
|
|
8
|
+
export declare const showTemplates: import("lodash").DebouncedFunc<typeof showTemplatesCore>;
|
|
9
|
+
export declare function hideTemplates(editor: OnesEditor): void;
|
|
6
10
|
export declare function autoShowHideTemplates(editor: OnesEditor, options?: ShowTemplatesOptions): void;
|
|
7
11
|
export {};
|
|
@@ -11,4 +11,5 @@ export interface TemplateOptions {
|
|
|
11
11
|
onChooseTemplate?: (editor: OnesEditor) => void;
|
|
12
12
|
onApplyTemplate?: (editor: OnesEditor, template: DocTemplate) => Promise<void>;
|
|
13
13
|
onTemplateChooserStatusChanged?: (editor: OnesEditor, cardContainer: HTMLElement | null, status: 'visible' | 'hide') => void;
|
|
14
|
+
onBeforeTemplateShow?: (editor: OnesEditor) => boolean;
|
|
14
15
|
}
|