@wangeditor-next/plugin-float-image 2.0.7 → 3.0.0
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/README.md +6 -6
- package/dist/core/src/editor/dom-editor.d.ts +1 -0
- 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 +3 -2
- package/dist/table-module/src/module/menu/FullWidth.d.ts +2 -2
- package/dist/table-module/src/module/menu/TableProperty.d.ts +19 -6
- package/dist/table-module/src/module/row-resize.d.ts +2 -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 +3 -3
package/README.md
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
|
|
5
5
|
<br/>
|
|
6
6
|
<br/>
|
|
7
|
-
<a href="https://
|
|
8
|
-
<img src="https://img.shields.io/
|
|
7
|
+
<a href="https://www.npmjs.com/package/@wangeditor-next/plugin-float-image">
|
|
8
|
+
<img src="https://img.shields.io/npm/v/%40wangeditor-next%2Fplugin-float-image" alt=""/>
|
|
9
9
|
</a>
|
|
10
|
-
<a href="https://www.npmjs.com/package
|
|
11
|
-
<img src="https://img.shields.io/
|
|
10
|
+
<a href="https://www.npmjs.com/package/@wangeditor-next/plugin-float-image">
|
|
11
|
+
<img src="https://img.shields.io/npm/dm/%40wangeditor-next%2Fplugin-float-image" alt=""/>
|
|
12
12
|
</a>
|
|
13
13
|
|
|
14
14
|
## 介绍
|
|
@@ -35,7 +35,7 @@ npm i @wangeditor-next/plugin-float-image
|
|
|
35
35
|
|
|
36
36
|
```js
|
|
37
37
|
import { Boot } from '@wangeditor-next/editor'
|
|
38
|
-
import floatImageModule from 'wangeditor-plugin-float-image'
|
|
38
|
+
import floatImageModule from '@wangeditor-next/plugin-float-image'
|
|
39
39
|
|
|
40
40
|
// 注册。要在创建编辑器之前注册,且只能注册一次,不可重复注册。
|
|
41
41
|
Boot.registerModule(floatImageModule)
|
|
@@ -91,4 +91,4 @@ const editorConfig: Partial<IEditorConfig> = {
|
|
|
91
91
|
|
|
92
92
|
## 许可证
|
|
93
93
|
|
|
94
|
-
[MIT](https://github.com/
|
|
94
|
+
[MIT](https://github.com/wangeditor-next/wangEditor-next/blob/master/LICENSE)
|
|
@@ -109,6 +109,7 @@ export declare const DomEditor: {
|
|
|
109
109
|
getNodeType(node: Node): string;
|
|
110
110
|
checkNodeType(node: Node, type: string): boolean;
|
|
111
111
|
getNodesStr(nodes: Node[]): string;
|
|
112
|
+
getSelectedVoidNode(editor: IDomEditor): Element | null;
|
|
112
113
|
getSelectedElems(editor: IDomEditor): Element[];
|
|
113
114
|
getSelectedNodeByType(editor: IDomEditor, type: string): Node | null;
|
|
114
115
|
getSelectedTextNode(editor: IDomEditor): Node | null;
|
|
@@ -6,9 +6,17 @@ declare const _default: {
|
|
|
6
6
|
tableModule: {
|
|
7
7
|
modal: {
|
|
8
8
|
border: string;
|
|
9
|
+
borderColor: string;
|
|
10
|
+
borderStyle: string;
|
|
9
11
|
borderWidth: string;
|
|
12
|
+
borderWidthDefault: string;
|
|
10
13
|
bgColor: string;
|
|
11
14
|
align: string;
|
|
15
|
+
verticalAlign: string;
|
|
16
|
+
width: string;
|
|
17
|
+
widthAuto: string;
|
|
18
|
+
widthFull: string;
|
|
19
|
+
mixed: string;
|
|
12
20
|
ok: string;
|
|
13
21
|
};
|
|
14
22
|
color: {
|
|
@@ -26,6 +34,11 @@ declare const _default: {
|
|
|
26
34
|
inset: string;
|
|
27
35
|
outset: string;
|
|
28
36
|
};
|
|
37
|
+
verticalAlign: {
|
|
38
|
+
top: string;
|
|
39
|
+
middle: string;
|
|
40
|
+
bottom: string;
|
|
41
|
+
};
|
|
29
42
|
deleteCol: string;
|
|
30
43
|
deleteRow: string;
|
|
31
44
|
deleteTable: string;
|
|
@@ -6,9 +6,17 @@ declare const _default: {
|
|
|
6
6
|
tableModule: {
|
|
7
7
|
modal: {
|
|
8
8
|
border: string;
|
|
9
|
+
borderColor: string;
|
|
10
|
+
borderStyle: string;
|
|
9
11
|
borderWidth: string;
|
|
12
|
+
borderWidthDefault: string;
|
|
10
13
|
bgColor: string;
|
|
11
14
|
align: string;
|
|
15
|
+
verticalAlign: string;
|
|
16
|
+
width: string;
|
|
17
|
+
widthAuto: string;
|
|
18
|
+
widthFull: string;
|
|
19
|
+
mixed: string;
|
|
12
20
|
ok: string;
|
|
13
21
|
};
|
|
14
22
|
color: {
|
|
@@ -26,6 +34,11 @@ declare const _default: {
|
|
|
26
34
|
inset: string;
|
|
27
35
|
outset: string;
|
|
28
36
|
};
|
|
37
|
+
verticalAlign: {
|
|
38
|
+
top: string;
|
|
39
|
+
middle: string;
|
|
40
|
+
bottom: string;
|
|
41
|
+
};
|
|
29
42
|
deleteCol: string;
|
|
30
43
|
deleteRow: string;
|
|
31
44
|
deleteTable: string;
|
|
@@ -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,13 @@
|
|
|
1
1
|
import { IButtonMenu, IDomEditor } from '@wangeditor-next/core';
|
|
2
|
-
import TableProperty from './TableProperty';
|
|
2
|
+
import TableProperty, { FieldName } from './TableProperty';
|
|
3
3
|
declare class CellProperty extends TableProperty implements IButtonMenu {
|
|
4
4
|
readonly title: string;
|
|
5
5
|
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
6
|
readonly tag = "button";
|
|
7
7
|
readonly showModal = true;
|
|
8
|
-
readonly modalWidth =
|
|
8
|
+
readonly modalWidth = 360;
|
|
9
9
|
readonly menu = "cell";
|
|
10
|
+
readonly propertyFields: FieldName[];
|
|
10
11
|
getModalContentNode(editor: IDomEditor): import("slate").NodeEntry<import("../../utils").WithType<import("packages/custom-types").CustomElement>>;
|
|
11
12
|
}
|
|
12
13
|
export default CellProperty;
|
|
@@ -7,8 +7,8 @@ declare class TableFullWidth implements IButtonMenu {
|
|
|
7
7
|
readonly title: string;
|
|
8
8
|
readonly iconSvg = "<svg viewBox=\"0 0 1228 1024\"><path d=\"M862.514337 563.200461H404.581995v121.753478a13.311987 13.311987 0 0 1-6.655993 11.468789 10.23999 10.23999 0 0 1-12.083188-1.433599l-204.799795-179.199821a13.721586 13.721586 0 0 1 0-20.479979l204.799795-179.302221a10.23999 10.23999 0 0 1 12.185588-1.535998 13.209587 13.209587 0 0 1 6.553593 11.673588v115.097485h457.932342V319.693504a11.571188 11.571188 0 0 1 18.841582-10.239989l204.799795 179.19982a13.721586 13.721586 0 0 1 0 20.47998l-204.799795 179.199821a10.23999 10.23999 0 0 1-12.185588 1.535998 13.311987 13.311987 0 0 1-6.655994-11.571188V563.200461zM136.499064 14.951409v993.893406a15.257585 15.257585 0 0 1-15.155185 15.052785H15.155185A15.155185 15.155185 0 0 1 0 1008.844815V14.951409a15.257585 15.257585 0 0 1 15.155185-15.052785h106.086294a15.155185 15.155185 0 0 1 15.257585 15.155185zM1228.798771 14.951409v993.893406a15.257585 15.257585 0 0 1-15.155185 15.052785h-106.188693a15.155185 15.155185 0 0 1-15.155185-15.052785V14.951409a15.257585 15.257585 0 0 1 15.155185-15.052785h106.086293A15.155185 15.155185 0 0 1 1228.798771 15.053809z\"></path></svg>";
|
|
9
9
|
readonly tag = "button";
|
|
10
|
-
getValue(
|
|
11
|
-
isActive(
|
|
10
|
+
getValue(editor: IDomEditor): string | boolean;
|
|
11
|
+
isActive(editor: IDomEditor): boolean;
|
|
12
12
|
isDisabled(editor: IDomEditor): boolean;
|
|
13
13
|
exec(editor: IDomEditor, _value: string | boolean): void;
|
|
14
14
|
}
|
|
@@ -3,22 +3,34 @@
|
|
|
3
3
|
* @author hsuna
|
|
4
4
|
*/
|
|
5
5
|
import { IButtonMenu, IDomEditor } from '@wangeditor-next/core';
|
|
6
|
+
export type FieldName = 'borderStyle' | 'borderColor' | 'borderWidth' | 'backgroundColor' | 'textAlign' | 'verticalAlign';
|
|
7
|
+
type SelectOption = {
|
|
8
|
+
value: string;
|
|
9
|
+
label: string;
|
|
10
|
+
};
|
|
11
|
+
type SegmentOption = SelectOption & {
|
|
12
|
+
svg?: string;
|
|
13
|
+
};
|
|
6
14
|
declare class TableProperty implements IButtonMenu {
|
|
7
15
|
readonly title: string;
|
|
8
16
|
iconSvg: string;
|
|
9
17
|
readonly tag = "button";
|
|
10
18
|
readonly showModal = true;
|
|
11
|
-
readonly modalWidth
|
|
19
|
+
readonly modalWidth: number;
|
|
12
20
|
readonly menu: string;
|
|
21
|
+
readonly propertyFields: FieldName[];
|
|
13
22
|
readonly borderStyle: {
|
|
14
23
|
value: string;
|
|
15
24
|
label: string;
|
|
16
25
|
}[];
|
|
17
|
-
readonly textAlignOptions:
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
26
|
+
readonly textAlignOptions: SegmentOption[];
|
|
27
|
+
readonly verticalAlignOptions: SegmentOption[];
|
|
28
|
+
private renderRow;
|
|
29
|
+
private createFieldControl;
|
|
30
|
+
private renderSelect;
|
|
31
|
+
private renderNumber;
|
|
32
|
+
private renderColor;
|
|
33
|
+
private renderSegment;
|
|
22
34
|
getValue(_editor: IDomEditor): string | boolean;
|
|
23
35
|
isActive(_editor: IDomEditor): boolean;
|
|
24
36
|
isDisabled(editor: IDomEditor): boolean;
|
|
@@ -31,5 +43,6 @@ declare class TableProperty implements IButtonMenu {
|
|
|
31
43
|
selectedColor: any;
|
|
32
44
|
callback: any;
|
|
33
45
|
}): import("dom7").Dom7Array;
|
|
46
|
+
updateColorPanelActive($panel: any, selectedColor: string): void;
|
|
34
47
|
}
|
|
35
48
|
export default TableProperty;
|
|
@@ -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;
|
|
@@ -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-float-image",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "wangEditor float image plugin",
|
|
5
5
|
"author": "cycleccc <2991205548@qq.com>",
|
|
6
6
|
"type": "module",
|
|
@@ -31,10 +31,10 @@
|
|
|
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
|
"peerDependencies": {
|
|
37
|
-
"@wangeditor-next/editor": "
|
|
37
|
+
"@wangeditor-next/editor": ">=6.0.0",
|
|
38
38
|
"dom7": "^3.0.0 || ^4.0.0",
|
|
39
39
|
"slate": "^0.124.0",
|
|
40
40
|
"snabbdom": "^3.6.0"
|