@wangeditor-next/plugin-formula 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/dist/core/src/editor/dom-editor.d.ts +1 -0
- 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/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
|
@@ -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": "3.0.0",
|
|
4
4
|
"description": "wangEditor next formula 公式",
|
|
5
5
|
"author": "cycleccc <2991205548@qq.com>",
|
|
6
6
|
"type": "module",
|
|
@@ -31,14 +31,14 @@
|
|
|
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": "
|
|
41
|
+
"@wangeditor-next/editor": ">=6.0.0",
|
|
42
42
|
"katex": "^0.16.0",
|
|
43
43
|
"snabbdom": "^3.6.0"
|
|
44
44
|
},
|