@ones-editor/editor 1.1.12-beta.2 → 1.1.13
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/code-block/src/code-block/languages.d.ts +1 -1
- package/@ones-editor/code-block/src/locale/en-us.d.ts +0 -1
- package/@ones-editor/code-block/src/locale/ja-jp.d.ts +0 -1
- package/@ones-editor/code-block/src/locale/zh-cn.d.ts +0 -1
- package/@ones-editor/comments/src/comments-render/index.d.ts +0 -1
- package/@ones-editor/core/src/core/doc/rich-text/text-style.d.ts +0 -1
- 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/types.d.ts +1 -2
- package/@ones-editor/paste-special/src/paste-special-button.d.ts +1 -0
- package/@ones-editor/tsconfig.tsbuildinfo +1 -1
- package/@ones-editor/ui-base/src/icons/index.d.ts +1 -2
- package/@ones-editor/ui-base/src/input/create-input.d.ts +1 -2
- package/dist/index.js +199 -210
- package/package.json +1 -1
- package/@ones-editor/status/package.json +0 -7
- package/@ones-editor/status/src/dom/input.d.ts +0 -1
- package/@ones-editor/status/src/dom/overflow-tooltip-tag.d.ts +0 -10
- package/@ones-editor/status/src/dom/status-palette.d.ts +0 -6
- package/@ones-editor/status/src/index.d.ts +0 -4
- package/@ones-editor/status/src/locale/en-us.d.ts +0 -25
- package/@ones-editor/status/src/locale/index.d.ts +0 -1
- package/@ones-editor/status/src/locale/ja-jp.d.ts +0 -25
- package/@ones-editor/status/src/locale/zh-cn.d.ts +0 -25
- package/@ones-editor/status/src/status-box-command.d.ts +0 -7
- package/@ones-editor/status/src/status-box-data.d.ts +0 -5
- package/@ones-editor/status/src/status-box-editor.d.ts +0 -21
- package/@ones-editor/status/src/status-box.d.ts +0 -4
- package/@ones-editor/status/src/types.d.ts +0 -8
|
@@ -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[];
|
|
@@ -1,7 +1,6 @@
|
|
|
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;
|
|
5
4
|
renderBlock(editor: OnesEditor, path: BlockPath, blockData: DocBlock): OnesEditorBlockRenderResult;
|
|
6
5
|
updateBlock(editor: OnesEditor, path: BlockPath, blockElement: BlockElement, blockData: DocBlock): void;
|
|
7
6
|
}
|
|
@@ -5,7 +5,6 @@ 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;
|
|
9
8
|
}): DocBlockText;
|
|
10
9
|
export declare function rangeAddAttribute(offset: number, length: number, text: DocBlockText, key: string, value: DocTextAttributeType): DocBlockText;
|
|
11
10
|
export declare function rangeRemoveAttribute(offset: number, length: number, text: DocBlockText, key: string, value: unknown, options?: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnesEditor, BlockElement
|
|
1
|
+
import { OnesEditor, BlockElement } from '../../types';
|
|
2
2
|
import { DocBlockText, DocBlockTextActions } from '../../doc';
|
|
3
|
-
export declare function editorUpdateBlockText(editor: OnesEditor, block: BlockElement, ops: DocBlockTextActions
|
|
4
|
-
export declare function editorSetBlockText(editor: OnesEditor, block: BlockElement, newText: DocBlockText
|
|
3
|
+
export declare function editorUpdateBlockText(editor: OnesEditor, block: BlockElement, ops: DocBlockTextActions): DocBlockText;
|
|
4
|
+
export declare function editorSetBlockText(editor: OnesEditor, block: BlockElement, newText: DocBlockText): void;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnesEditor } from '../../types';
|
|
2
2
|
import { DocBox } from '../../doc';
|
|
3
|
-
export declare function editorUpdateBoxData(editor: OnesEditor, boxData: DocBox
|
|
3
|
+
export declare function editorUpdateBoxData(editor: OnesEditor, boxData: DocBox): void;
|
|
@@ -447,7 +447,6 @@ export type OnesEditorCustomCreator = (editor: OnesEditor) => OnesEditorCustom;
|
|
|
447
447
|
export interface CloneBlockResultInfo {
|
|
448
448
|
containerIdMap: Map<string, string>;
|
|
449
449
|
blockIdMap: Map<string, string>;
|
|
450
|
-
boxIdMap: Map<string, string>;
|
|
451
450
|
}
|
|
452
451
|
export interface OnesEditorDomEvents extends OnesEditorCustom {
|
|
453
452
|
addEventListener: <T = Event>(element: Element | Document | Window, eventName: string, eventHandler: (editor: OnesEditor, event: T) => void) => void;
|
|
@@ -549,7 +548,7 @@ export interface OnesEditor extends TypedEmitter<OnesEditorEvents> {
|
|
|
549
548
|
deleteChildContainers: (containerIds: string[]) => void;
|
|
550
549
|
updateBlockData: (block: BlockElement, data: DocBlockAttributes, newRange?: SelectionRange) => DocBlock;
|
|
551
550
|
updateEmbedData: (block: BlockElement, data: DocEmbedData, newRange?: SelectionRange) => DocBlock;
|
|
552
|
-
updateBoxData: (boxData: DocBox
|
|
551
|
+
updateBoxData: (boxData: DocBox) => void;
|
|
553
552
|
updateCompositionText: (text: string, end: boolean) => void;
|
|
554
553
|
getColor: (index: number, type?: string) => string;
|
|
555
554
|
}
|
|
@@ -14,6 +14,7 @@ export default class PasteSpecialButton {
|
|
|
14
14
|
private cleaningDoc;
|
|
15
15
|
handlePasteSpecial: (bar: AbstractCommandBar, item: CommandItem) => void;
|
|
16
16
|
handleClose: () => void;
|
|
17
|
+
handleSelectionChange: () => void;
|
|
17
18
|
hide(): void;
|
|
18
19
|
clearCheckedState(): void;
|
|
19
20
|
destroy(): void;
|