@wangeditor-next/plugin-float-image 2.0.6 → 2.0.7
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/core/src/config/interface.d.ts +3 -0
- package/dist/core/src/create/bind-node-relation.d.ts +1 -1
- package/dist/core/src/create/create-toolbar.d.ts +1 -1
- package/dist/core/src/menus/bar-item/Select.d.ts +1 -1
- package/dist/core/src/menus/bar-item/index.d.ts +2 -2
- package/dist/core/src/menus/panel-and-modal/DropPanel.d.ts +0 -2
- package/dist/core/src/menus/panel-and-modal/Modal.d.ts +1 -1
- package/dist/core/src/render/node2Vnode.d.ts +1 -1
- package/dist/core/src/render/text/genVnode.d.ts +2 -2
- package/dist/core/src/text-area/event-handlers/index.d.ts +6 -6
- package/dist/table-module/src/module/menu/index.d.ts +11 -0
- package/package.json +2 -2
|
@@ -18,6 +18,7 @@ interface IHoverbarConf {
|
|
|
18
18
|
export type AlertType = 'success' | 'info' | 'warning' | 'error';
|
|
19
19
|
export type TextStyleMode = 'inline' | 'class';
|
|
20
20
|
export type ClassStylePolicy = 'preserve-data' | 'fallback-inline' | 'strict';
|
|
21
|
+
export type TableWidthExportMode = 'adaptive' | 'explicit';
|
|
21
22
|
export type StyleClassTokenType = 'color' | 'bgColor' | 'fontSize' | 'fontFamily' | 'textAlign' | 'lineHeight' | 'indent';
|
|
22
23
|
export interface IClassStyleUnsupportedPayload {
|
|
23
24
|
type: string;
|
|
@@ -88,12 +89,14 @@ interface IEmotionConfig {
|
|
|
88
89
|
}
|
|
89
90
|
interface IInsertTableConfig {
|
|
90
91
|
minWidth: number;
|
|
92
|
+
minRowHeight: number;
|
|
91
93
|
tableHeader: {
|
|
92
94
|
selected: boolean;
|
|
93
95
|
};
|
|
94
96
|
tableFullWidth: {
|
|
95
97
|
selected: boolean;
|
|
96
98
|
};
|
|
99
|
+
widthExportMode: TableWidthExportMode;
|
|
97
100
|
}
|
|
98
101
|
interface IInsertTableColConfig {
|
|
99
102
|
insertPosition: 'before' | 'after';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @description 绑定 node 的关系
|
|
3
3
|
* @author wangfupeng
|
|
4
4
|
*/
|
|
5
|
-
import {
|
|
5
|
+
import { Ancestor, Node } from 'slate';
|
|
6
6
|
import { IDomEditor } from '../editor/interface';
|
|
7
7
|
/**
|
|
8
8
|
* createEditor 未传递 selector 时,绑定 node 的关系( NODE_TO_PARENT, NODE_TO_INDEX 等 )
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
* @description create toolbar
|
|
3
3
|
* @author wangfupeng
|
|
4
4
|
*/
|
|
5
|
+
import { IToolbarConfig } from '../config/interface';
|
|
5
6
|
import { IDomEditor } from '../editor/interface';
|
|
6
7
|
import Toolbar from '../menus/bar/Toolbar';
|
|
7
|
-
import { IToolbarConfig } from '../config/interface';
|
|
8
8
|
import { DOMElement } from '../utils/dom';
|
|
9
9
|
interface ICreateOption {
|
|
10
10
|
selector: string | DOMElement;
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
* @author wangfupeng
|
|
4
4
|
*/
|
|
5
5
|
import { Dom7Array } from '../../utils/dom';
|
|
6
|
-
import { IBarItem } from './index';
|
|
7
6
|
import { ISelectMenu } from '../interface';
|
|
7
|
+
import { IBarItem } from './index';
|
|
8
8
|
declare class BarItemSelect implements IBarItem {
|
|
9
9
|
readonly $elem: Dom7Array;
|
|
10
10
|
private readonly $button;
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
* @description bar item
|
|
3
3
|
* @author wangfupeng
|
|
4
4
|
*/
|
|
5
|
-
import { Dom7Array } from '../../utils/dom';
|
|
6
|
-
import { IButtonMenu, ISelectMenu, IDropPanelMenu, IModalMenu, IMenuGroup } from '../interface';
|
|
7
5
|
import { IDomEditor } from '../../editor/interface';
|
|
6
|
+
import { Dom7Array } from '../../utils/dom';
|
|
7
|
+
import { IButtonMenu, IDropPanelMenu, IMenuGroup, IModalMenu, ISelectMenu } from '../interface';
|
|
8
8
|
import GroupButton from './GroupButton';
|
|
9
9
|
type MenuType = IButtonMenu | ISelectMenu | IDropPanelMenu | IModalMenu;
|
|
10
10
|
export interface IBarItem {
|
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
* @description dropPanel class
|
|
3
3
|
* @author wangfupeng
|
|
4
4
|
*/
|
|
5
|
-
import { IDomEditor } from '../../editor/interface';
|
|
6
5
|
import { Dom7Array } from '../../utils/dom';
|
|
7
6
|
import PanelAndModal from './BaseClass';
|
|
8
7
|
declare class DropPanel extends PanelAndModal {
|
|
9
8
|
type: string;
|
|
10
9
|
readonly $elem: Dom7Array;
|
|
11
|
-
constructor(editor: IDomEditor);
|
|
12
10
|
genSelfElem(): Dom7Array | null;
|
|
13
11
|
}
|
|
14
12
|
export default DropPanel;
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
* @description modal class
|
|
3
3
|
* @author wangfupeng
|
|
4
4
|
*/
|
|
5
|
+
import { IDomEditor } from '../../editor/interface';
|
|
5
6
|
import { Dom7Array, DOMElement } from '../../utils/dom';
|
|
6
7
|
import { IPositionStyle } from '../interface';
|
|
7
8
|
import PanelAndModal from './BaseClass';
|
|
8
|
-
import { IDomEditor } from '../../editor/interface';
|
|
9
9
|
declare class Modal extends PanelAndModal {
|
|
10
10
|
type: string;
|
|
11
11
|
readonly $elem: Dom7Array;
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* @description 生成 text vnode
|
|
3
3
|
* @author wangfupeng
|
|
4
4
|
*/
|
|
5
|
-
import { Text as SlateText
|
|
5
|
+
import { Ancestor, Text as SlateText } from 'slate';
|
|
6
6
|
import { VNode } from 'snabbdom';
|
|
7
7
|
import { IDomEditor } from '../../editor/interface';
|
|
8
|
-
declare function genTextVnode(leafNode: SlateText,
|
|
8
|
+
declare function genTextVnode(leafNode: SlateText, textNode: SlateText, parent: Ancestor, editor: IDomEditor, isLast?: boolean): VNode;
|
|
9
9
|
export default genTextVnode;
|
|
@@ -4,16 +4,16 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import handleBeforeInput from './beforeInput';
|
|
6
6
|
import handleOnBlur from './blur';
|
|
7
|
-
import handleOnFocus from './focus';
|
|
8
7
|
import handleOnClick from './click';
|
|
9
|
-
import {
|
|
10
|
-
import handleOnKeydown from './keydown';
|
|
11
|
-
import handleKeypress from './keypress';
|
|
8
|
+
import { handleCompositionEnd, handleCompositionStart, handleCompositionUpdate } from './composition';
|
|
12
9
|
import handleOnCopy from './copy';
|
|
13
10
|
import handleOnCut from './cut';
|
|
14
|
-
import
|
|
15
|
-
import { handleOnDragover, handleOnDragstart, handleOnDragend } from './drag';
|
|
11
|
+
import { handleOnDragend, handleOnDragover, handleOnDragstart } from './drag';
|
|
16
12
|
import handleOnDrop from './drop';
|
|
13
|
+
import handleOnFocus from './focus';
|
|
14
|
+
import handleOnKeydown from './keydown';
|
|
15
|
+
import handleKeypress from './keypress';
|
|
16
|
+
import handleOnPaste from './paste';
|
|
17
17
|
declare const eventConf: {
|
|
18
18
|
beforeinput: typeof handleBeforeInput;
|
|
19
19
|
blur: typeof handleOnBlur;
|
|
@@ -16,6 +16,17 @@ import TableHander from './TableHeader';
|
|
|
16
16
|
import TableProperty from './TableProperty';
|
|
17
17
|
export declare const insertTableMenuConf: {
|
|
18
18
|
key: string;
|
|
19
|
+
config: {
|
|
20
|
+
minWidth: number;
|
|
21
|
+
minRowHeight: number;
|
|
22
|
+
tableHeader: {
|
|
23
|
+
selected: boolean;
|
|
24
|
+
};
|
|
25
|
+
tableFullWidth: {
|
|
26
|
+
selected: boolean;
|
|
27
|
+
};
|
|
28
|
+
widthExportMode: string;
|
|
29
|
+
};
|
|
19
30
|
factory(): InsertTable;
|
|
20
31
|
};
|
|
21
32
|
export declare const deleteTableMenuConf: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wangeditor-next/plugin-float-image",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"description": "wangEditor float image plugin",
|
|
5
5
|
"author": "cycleccc <2991205548@qq.com>",
|
|
6
6
|
"type": "module",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"url": "https://github.com/wangeditor-next/wangeditor-next/issues"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
|
-
"@wangeditor-next/editor": "5.7.
|
|
37
|
+
"@wangeditor-next/editor": "5.7.7",
|
|
38
38
|
"dom7": "^3.0.0 || ^4.0.0",
|
|
39
39
|
"slate": "^0.124.0",
|
|
40
40
|
"snabbdom": "^3.6.0"
|