@wangeditor-next/plugin-float-image 2.0.6 → 2.0.8

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.
@@ -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 { Node, Ancestor } from 'slate';
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,7 +2,7 @@
2
2
  * @description slate node to vnode
3
3
  * @author wangfupeng
4
4
  */
5
- import { Node, Ancestor } from 'slate';
5
+ import { Ancestor, Node } from 'slate';
6
6
  import { VNode } from 'snabbdom';
7
7
  import { IDomEditor } from '../editor/interface';
8
8
  /**
@@ -2,8 +2,8 @@
2
2
  * @description 生成 text vnode
3
3
  * @author wangfupeng
4
4
  */
5
- import { Text as SlateText, Ancestor } from 'slate';
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, isLast: boolean | undefined, textNode: SlateText, parent: Ancestor, editor: IDomEditor): VNode;
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 { handleCompositionStart, handleCompositionEnd, handleCompositionUpdate } from './composition';
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 handleOnPaste from './paste';
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;
@@ -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(_editor: IDomEditor): string | boolean;
11
- isActive(_editor: IDomEditor): boolean;
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
  }
@@ -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.6",
3
+ "version": "2.0.8",
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.6",
37
+ "@wangeditor-next/editor": ">=5.7.8",
38
38
  "dom7": "^3.0.0 || ^4.0.0",
39
39
  "slate": "^0.124.0",
40
40
  "snabbdom": "^3.6.0"