@wangeditor-next/plugin-formula 2.0.8 → 6.1.1
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/dist/basic-modules/src/modules/header/parse-elem-html.d.ts +2 -2
- package/dist/core/src/config/interface.d.ts +30 -2
- package/dist/core/src/editor/dom-editor.d.ts +1 -0
- package/dist/core/src/editor/interface.d.ts +16 -3
- package/dist/core/src/index.d.ts +4 -2
- package/dist/core/src/render/helper.d.ts +1 -2
- package/dist/core/src/to-html/index.d.ts +12 -0
- package/dist/editor/src/Boot.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/list-module/src/locale/en.d.ts +3 -0
- package/dist/list-module/src/locale/zh-CN.d.ts +3 -0
- package/dist/list-module/src/module/custom-types.d.ts +13 -0
- package/dist/list-module/src/module/helpers.d.ts +14 -4
- package/dist/list-module/src/module/html-transform.d.ts +10 -0
- package/dist/list-module/src/module/menu/BaseMenu.d.ts +2 -2
- package/dist/list-module/src/module/outline-actions.d.ts +9 -0
- package/dist/list-module/src/module/parse-elem-html.d.ts +1 -2
- package/dist/list-module/src/module/plugin.d.ts +1 -1
- package/dist/list-module/src/utils/maps.d.ts +2 -1
- package/dist/table-module/src/locale/en.d.ts +13 -0
- package/dist/table-module/src/locale/zh-CN.d.ts +13 -0
- package/dist/table-module/src/module/cell-selection.d.ts +11 -0
- package/dist/table-module/src/module/column-resize.d.ts +3 -3
- package/dist/table-module/src/module/custom-types.d.ts +1 -0
- package/dist/table-module/src/module/helpers.d.ts +5 -0
- package/dist/table-module/src/module/menu/CellProperty.d.ts +5 -3
- package/dist/table-module/src/module/menu/TableProperty.d.ts +21 -7
- package/dist/table-module/src/module/render-elem/selection-overlay.d.ts +21 -0
- package/dist/table-module/src/module/row-resize.d.ts +2 -2
- package/dist/table-module/src/module/weak-maps.d.ts +3 -2
- package/dist/video-module/src/constants/svg.d.ts +3 -0
- package/dist/video-module/src/locale/en.d.ts +3 -0
- package/dist/video-module/src/locale/zh-CN.d.ts +3 -0
- package/dist/video-module/src/module/alignment.d.ts +10 -0
- package/dist/video-module/src/module/custom-types.d.ts +2 -1
- package/dist/video-module/src/module/menu/VideoAlignMenu.d.ts +18 -0
- package/dist/video-module/src/module/menu/index.d.ts +13 -0
- package/package.json +4 -4
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IDomEditor } from '@wangeditor-next/core';
|
|
2
|
+
import { Path, Range } from 'slate';
|
|
3
|
+
/** Builds a directional Slate range that includes both boundary cells completely. */
|
|
4
|
+
export declare function getCellDragSelectionRange(editor: IDomEditor, anchorPath: Path, targetPath: Path): Range;
|
|
5
|
+
/** Records the starting cell without disturbing native text selection inside that cell. */
|
|
6
|
+
export declare function handleCellDragSelectionMouseDown(editor: IDomEditor, event: MouseEvent): void;
|
|
7
|
+
/**
|
|
8
|
+
* Takes over only after the pointer crosses into another cell. This avoids Chrome collapsing the
|
|
9
|
+
* native range for wrapped cells while preserving ordinary text selection within one cell.
|
|
10
|
+
*/
|
|
11
|
+
export declare function handleCellDragSelectionMouseMove(editor: IDomEditor, event: MouseEvent): void;
|
|
@@ -4,8 +4,8 @@ import { Element as SlateElement } from 'slate';
|
|
|
4
4
|
* 用于计算拖动 cell 时,cell 宽度变化的比例
|
|
5
5
|
*/
|
|
6
6
|
export declare function getColumnWidthRatios(columnWidths: number[]): number[];
|
|
7
|
-
export declare function
|
|
8
|
-
export declare function
|
|
7
|
+
export declare function unObserveTableResize(elm?: Node): void;
|
|
8
|
+
export declare function observerTableResize(editor: IDomEditor, elm: Node | undefined, elemNode: SlateElement): void;
|
|
9
9
|
/**
|
|
10
10
|
* 鼠标移动时,判断在哪个 Cell border 上
|
|
11
11
|
* Class 先 visible 后 highlight @跟随飞书
|
|
@@ -16,5 +16,5 @@ export declare function handleCellBorderVisible(editor: IDomEditor, elemNode: Sl
|
|
|
16
16
|
* 设置 class highlight
|
|
17
17
|
* 将 render-cell.tsx 拖动功能迁移至 div.column-resize
|
|
18
18
|
*/
|
|
19
|
-
export declare function handleCellBorderHighlight(editor: IDomEditor, e: MouseEvent): void;
|
|
19
|
+
export declare function handleCellBorderHighlight(editor: IDomEditor, elemNode: SlateElement, e: MouseEvent): void;
|
|
20
20
|
export declare function handleCellBorderMouseDown(editor: IDomEditor, elemNode: SlateElement): void;
|
|
@@ -3,7 +3,12 @@
|
|
|
3
3
|
* @author wangfupeng
|
|
4
4
|
*/
|
|
5
5
|
import { IDomEditor } from '@wangeditor-next/core';
|
|
6
|
+
import { Element as SlateElement } from 'slate';
|
|
6
7
|
import { TableCellElement, TableElement } from './custom-types';
|
|
8
|
+
/**
|
|
9
|
+
* Update a rendered table by its own path instead of relying on the current selection.
|
|
10
|
+
*/
|
|
11
|
+
export declare function setTableNodeProps(editor: IDomEditor, tableNode: SlateElement, props: Partial<TableElement>): void;
|
|
7
12
|
/**
|
|
8
13
|
* 获取第一行所有 cells
|
|
9
14
|
* @param tableNode table node
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import { IButtonMenu, IDomEditor } from '@wangeditor-next/core';
|
|
2
|
-
import
|
|
2
|
+
import { NodeEntry } from 'slate';
|
|
3
|
+
import TableProperty, { FieldName } from './TableProperty';
|
|
3
4
|
declare class CellProperty extends TableProperty implements IButtonMenu {
|
|
4
5
|
readonly title: string;
|
|
5
6
|
readonly iconSvg = "<svg viewBox=\"0 0 20 20\"><path d=\"m11.105 18-.17 1H2.5A1.5 1.5 0 0 1 1 17.5v-15A1.5 1.5 0 0 1 2.5 1h15A1.5 1.5 0 0 1 19 2.5v9.975l-.85-.124-.15-.302V8h-5v4h.021l-.172.351-1.916.28-.151.027c-.287.063-.54.182-.755.341L8 13v5h3.105zM2 12h5V8H2v4zm10-4H8v4h4V8zM2 2v5h5V2H2zm0 16h5v-5H2v5zM13 7h5V2h-5v5zM8 2v5h4V2H8z\" opacity=\".6\"/><path d=\"m15.5 11.5 1.323 2.68 2.957.43-2.14 2.085.505 2.946L15.5 18.25l-2.645 1.39.505-2.945-2.14-2.086 2.957-.43L15.5 11.5zM13 6a1 1 0 0 1 1 1v3.172a2.047 2.047 0 0 0-.293.443l-.858 1.736-1.916.28-.151.027A1.976 1.976 0 0 0 9.315 14H7a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h6zm-1 2H8v4h4V8z\"/></svg>";
|
|
6
7
|
readonly tag = "button";
|
|
7
8
|
readonly showModal = true;
|
|
8
|
-
readonly modalWidth =
|
|
9
|
+
readonly modalWidth = 360;
|
|
9
10
|
readonly menu = "cell";
|
|
10
|
-
|
|
11
|
+
readonly propertyFields: FieldName[];
|
|
12
|
+
getModalContentNode(editor: IDomEditor): NodeEntry;
|
|
11
13
|
}
|
|
12
14
|
export default CellProperty;
|
|
@@ -3,27 +3,40 @@
|
|
|
3
3
|
* @author hsuna
|
|
4
4
|
*/
|
|
5
5
|
import { IButtonMenu, IDomEditor } from '@wangeditor-next/core';
|
|
6
|
+
import { NodeEntry } from 'slate';
|
|
7
|
+
export type FieldName = 'borderStyle' | 'borderColor' | 'borderWidth' | 'backgroundColor' | 'textAlign' | 'verticalAlign';
|
|
8
|
+
type SelectOption = {
|
|
9
|
+
value: string;
|
|
10
|
+
label: string;
|
|
11
|
+
};
|
|
12
|
+
type SegmentOption = SelectOption & {
|
|
13
|
+
svg?: string;
|
|
14
|
+
};
|
|
6
15
|
declare class TableProperty implements IButtonMenu {
|
|
7
16
|
readonly title: string;
|
|
8
17
|
iconSvg: string;
|
|
9
18
|
readonly tag = "button";
|
|
10
19
|
readonly showModal = true;
|
|
11
|
-
readonly modalWidth
|
|
20
|
+
readonly modalWidth: number;
|
|
12
21
|
readonly menu: string;
|
|
22
|
+
readonly propertyFields: FieldName[];
|
|
13
23
|
readonly borderStyle: {
|
|
14
24
|
value: string;
|
|
15
25
|
label: string;
|
|
16
26
|
}[];
|
|
17
|
-
readonly textAlignOptions:
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
27
|
+
readonly textAlignOptions: SegmentOption[];
|
|
28
|
+
readonly verticalAlignOptions: SegmentOption[];
|
|
29
|
+
private renderRow;
|
|
30
|
+
private createFieldControl;
|
|
31
|
+
private renderSelect;
|
|
32
|
+
private renderNumber;
|
|
33
|
+
private renderColor;
|
|
34
|
+
private renderSegment;
|
|
22
35
|
getValue(_editor: IDomEditor): string | boolean;
|
|
23
36
|
isActive(_editor: IDomEditor): boolean;
|
|
24
37
|
isDisabled(editor: IDomEditor): boolean;
|
|
25
38
|
exec(_editor: IDomEditor, _value: string | boolean): void;
|
|
26
|
-
getModalContentNode(editor: IDomEditor):
|
|
39
|
+
getModalContentNode(editor: IDomEditor): NodeEntry;
|
|
27
40
|
getModalPositionNode(_editor: IDomEditor): null;
|
|
28
41
|
getModalContentElem(editor: IDomEditor): Element | null;
|
|
29
42
|
getPanelContentElem(editor: any, { mark, selectedColor, callback }: {
|
|
@@ -31,5 +44,6 @@ declare class TableProperty implements IButtonMenu {
|
|
|
31
44
|
selectedColor: any;
|
|
32
45
|
callback: any;
|
|
33
46
|
}): import("dom7").Dom7Array;
|
|
47
|
+
updateColorPanelActive($panel: any, selectedColor: string): void;
|
|
34
48
|
}
|
|
35
49
|
export default TableProperty;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { VNode } from 'snabbdom';
|
|
2
|
+
export type SelectionRect = {
|
|
3
|
+
top: number;
|
|
4
|
+
right: number;
|
|
5
|
+
bottom: number;
|
|
6
|
+
left: number;
|
|
7
|
+
};
|
|
8
|
+
export type SelectionPerimeterSide = 'top' | 'right' | 'bottom' | 'left';
|
|
9
|
+
export type SelectionPerimeterSegment = {
|
|
10
|
+
side: SelectionPerimeterSide;
|
|
11
|
+
offset: number;
|
|
12
|
+
start: number;
|
|
13
|
+
end: number;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* Returns the physical perimeter of a set of non-overlapping cell rectangles. Opposing edges
|
|
17
|
+
* cancel only where they overlap, so partially exposed sides of merged cells remain precise.
|
|
18
|
+
*/
|
|
19
|
+
export declare function getSelectionPerimeterSegments(rects: SelectionRect[]): SelectionPerimeterSegment[];
|
|
20
|
+
export declare function drawSelectionOverlay(elm: Node | undefined): void;
|
|
21
|
+
export declare function renderSelectionOverlay(): VNode;
|
|
@@ -11,5 +11,5 @@ export declare function handleRowBorderVisible(editor: IDomEditor, elemNode: Sla
|
|
|
11
11
|
/**
|
|
12
12
|
* 设置行拖拽高亮
|
|
13
13
|
*/
|
|
14
|
-
export declare function handleRowBorderHighlight(editor: IDomEditor, e: MouseEvent): void;
|
|
15
|
-
export declare function handleRowBorderMouseDown(editor: IDomEditor,
|
|
14
|
+
export declare function handleRowBorderHighlight(editor: IDomEditor, elemNode: SlateElement, e: MouseEvent): void;
|
|
15
|
+
export declare function handleRowBorderMouseDown(editor: IDomEditor, elemNode: SlateElement): void;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { BaseEditor, BaseElement } from 'slate';
|
|
1
2
|
import { NodeEntryWithContext } from '../utils';
|
|
2
3
|
/** Weak reference between the `Editor` and the selected elements */
|
|
3
|
-
export declare const EDITOR_TO_SELECTION: WeakMap<
|
|
4
|
+
export declare const EDITOR_TO_SELECTION: WeakMap<BaseEditor, NodeEntryWithContext[][]>;
|
|
4
5
|
/** Weak reference between the `Editor` and a set of the selected elements */
|
|
5
|
-
export declare const EDITOR_TO_SELECTION_SET: WeakMap<
|
|
6
|
+
export declare const EDITOR_TO_SELECTION_SET: WeakMap<BaseEditor, WeakSet<BaseElement>>;
|
|
@@ -10,3 +10,6 @@
|
|
|
10
10
|
export declare const VIDEO_SVG = "<svg viewBox=\"0 0 1024 1024\"><path d=\"M981.184 160.096C837.568 139.456 678.848 128 512 128S186.432 139.456 42.816 160.096C15.296 267.808 0 386.848 0 512s15.264 244.16 42.816 351.904C186.464 884.544 345.152 896 512 896s325.568-11.456 469.184-32.096C1008.704 756.192 1024 637.152 1024 512s-15.264-244.16-42.816-351.904zM384 704V320l320 192-320 192z\"></path></svg>";
|
|
11
11
|
export declare const UPLOAD_VIDEO_SVG = "<svg viewBox=\"0 0 1056 1024\"><path d=\"M805.902261 521.819882a251.441452 251.441452 0 0 0-251.011972 246.600033 251.051015 251.051015 0 1 0 502.023944 8.823877 253.237463 253.237463 0 0 0-251.011972-255.42391z m59.463561 240.001647v129.898403h-116.701631v-129.898403h-44.041298l101.279368-103.504859 101.279368 103.504859z\" p-id=\"6802\"></path><path d=\"M788.254507 0.000781H99.094092A98.663439 98.663439 0 0 0 0.001171 99.093701v590.067495a98.663439 98.663439 0 0 0 99.092921 99.092921h411.7549a266.434235 266.434235 0 0 1-2.186448-41.815807 275.843767 275.843767 0 0 1 275.180024-270.729042 270.650955 270.650955 0 0 1 103.504859 19.834201V99.093701A101.51363 101.51363 0 0 0 788.254507 0.000781zM295.054441 640.747004V147.507894l394.146189 246.600033z\"></path></svg>";
|
|
12
12
|
export declare const PENCIL_SVG = "<svg viewBox=\"0 0 1024 1024\"><path d=\"M864 0a160 160 0 0 1 128 256l-64 64-224-224 64-64c26.752-20.096 59.968-32 96-32zM64 736l-64 288 288-64 592-592-224-224L64 736z m651.584-372.416l-448 448-55.168-55.168 448-448 55.168 55.168z\"></path></svg>";
|
|
13
|
+
export declare const VIDEO_ALIGN_LEFT_SVG = "<svg viewBox=\"0 0 1024 1024\"><path d=\"M768 793.6v102.4H51.2v-102.4h716.8z m204.8-230.4v102.4H51.2v-102.4h921.6z m-204.8-230.4v102.4H51.2v-102.4h716.8zM972.8 102.4v102.4H51.2V102.4h921.6z\"></path></svg>";
|
|
14
|
+
export declare const VIDEO_ALIGN_CENTER_SVG = "<svg viewBox=\"0 0 1024 1024\"><path d=\"M870.4 793.6v102.4H153.6v-102.4h716.8z m102.4-230.4v102.4H51.2v-102.4h921.6z m-102.4-230.4v102.4H153.6v-102.4h716.8zM972.8 102.4v102.4H51.2V102.4h921.6z\"></path></svg>";
|
|
15
|
+
export declare const VIDEO_ALIGN_RIGHT_SVG = "<svg viewBox=\"0 0 1024 1024\"><path d=\"M972.8 793.6v102.4H256v-102.4h716.8z m0-230.4v102.4H51.2v-102.4h921.6z m0-230.4v102.4H256v-102.4h716.8zM972.8 102.4v102.4H51.2V102.4h921.6z\"></path></svg>";
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @description video alignment helpers
|
|
3
|
+
*/
|
|
4
|
+
import { Element } from 'slate';
|
|
5
|
+
import { VideoAlign } from './custom-types';
|
|
6
|
+
export declare const DEFAULT_VIDEO_ALIGN: VideoAlign;
|
|
7
|
+
export declare function normalizeVideoAlign(value: unknown): VideoAlign;
|
|
8
|
+
export declare function getVideoAlign(elemNode: Element): VideoAlign;
|
|
9
|
+
export declare function getVideoAlignClass(align: VideoAlign): string;
|
|
10
|
+
export declare function getVideoJustifyContent(align: VideoAlign): string;
|
|
@@ -9,12 +9,13 @@ export type videoStyle = {
|
|
|
9
9
|
width?: string;
|
|
10
10
|
height?: string;
|
|
11
11
|
};
|
|
12
|
+
export type VideoAlign = 'left' | 'center' | 'right';
|
|
12
13
|
export type VideoElement = {
|
|
13
14
|
type: 'video';
|
|
14
15
|
key?: string;
|
|
15
16
|
src: string;
|
|
16
17
|
poster?: string;
|
|
17
|
-
|
|
18
|
+
align?: VideoAlign;
|
|
18
19
|
width?: string;
|
|
19
20
|
height?: string;
|
|
20
21
|
style?: videoStyle;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @description align video menu
|
|
3
|
+
*/
|
|
4
|
+
import { IButtonMenu, IDomEditor } from '@wangeditor-next/core';
|
|
5
|
+
import { VideoAlign } from '../custom-types';
|
|
6
|
+
declare class VideoAlignMenu implements IButtonMenu {
|
|
7
|
+
readonly align: VideoAlign;
|
|
8
|
+
readonly iconSvg: string;
|
|
9
|
+
readonly tag = "button";
|
|
10
|
+
readonly title: string;
|
|
11
|
+
constructor(align: VideoAlign, titleKey: string, iconSvg: string);
|
|
12
|
+
private getSelectedVideo;
|
|
13
|
+
getValue(editor: IDomEditor): string | boolean;
|
|
14
|
+
isActive(editor: IDomEditor): boolean;
|
|
15
|
+
isDisabled(editor: IDomEditor): boolean;
|
|
16
|
+
exec(editor: IDomEditor, _value: string | boolean): void;
|
|
17
|
+
}
|
|
18
|
+
export default VideoAlignMenu;
|
|
@@ -6,6 +6,7 @@ import EditorVideoSizeMenu from './EditVideoSizeMenu';
|
|
|
6
6
|
import EditorVideoSrcMenu from './EditVideoSrcMenu';
|
|
7
7
|
import InsertVideoMenu from './InsertVideoMenu';
|
|
8
8
|
import UploadVideoMenu from './UploadVideoMenu';
|
|
9
|
+
import VideoAlignMenu from './VideoAlignMenu';
|
|
9
10
|
export declare const insertVideoMenuConf: {
|
|
10
11
|
key: string;
|
|
11
12
|
factory(): InsertVideoMenu;
|
|
@@ -28,3 +29,15 @@ export declare const editorVideoSrcMenuConf: {
|
|
|
28
29
|
key: string;
|
|
29
30
|
factory(): EditorVideoSrcMenu;
|
|
30
31
|
};
|
|
32
|
+
export declare const videoAlignLeftMenuConf: {
|
|
33
|
+
key: string;
|
|
34
|
+
factory(): VideoAlignMenu;
|
|
35
|
+
};
|
|
36
|
+
export declare const videoAlignCenterMenuConf: {
|
|
37
|
+
key: string;
|
|
38
|
+
factory(): VideoAlignMenu;
|
|
39
|
+
};
|
|
40
|
+
export declare const videoAlignRightMenuConf: {
|
|
41
|
+
key: string;
|
|
42
|
+
factory(): VideoAlignMenu;
|
|
43
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wangeditor-next/plugin-formula",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.1.1",
|
|
4
4
|
"description": "wangEditor next formula 公式",
|
|
5
5
|
"author": "cycleccc <2991205548@qq.com>",
|
|
6
6
|
"type": "module",
|
|
@@ -31,16 +31,16 @@
|
|
|
31
31
|
"url": "git+https://github.com/wangeditor-next/wangEditor-next.git"
|
|
32
32
|
},
|
|
33
33
|
"bugs": {
|
|
34
|
-
"url": "https://github.com/wangeditor-next/
|
|
34
|
+
"url": "https://github.com/wangeditor-next/wangEditor-next/issues"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"katex": "^0.16.0",
|
|
38
38
|
"@wangeditor-next-shared/rollup-config": "^0.0.2"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@wangeditor-next/editor": ">=5.7.8",
|
|
42
41
|
"katex": "^0.16.0",
|
|
43
|
-
"snabbdom": "^3.6.0"
|
|
42
|
+
"snabbdom": "^3.6.0",
|
|
43
|
+
"@wangeditor-next/editor": "^6.1.1"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"dom7": "^4.0.0",
|