@wangeditor-next/plugin-formula 1.0.14 → 1.0.16

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 CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  ## 介绍
6
6
 
7
- [wangEditor-next](https://cycleccc.github.io/docs/) 公式插件,使用 [LateX](https://baike.baidu.com/item/LaTeX/1212106) 语法。
7
+ [wangEditor-next](https://wangeditor-next.github.io/docs/) 公式插件,使用 [LateX](https://baike.baidu.com/item/LaTeX/1212106) 语法。
8
8
 
9
9
  ![](./_img/demo.png)
10
10
 
@@ -2,10 +2,10 @@
2
2
  * @description SelectList class
3
3
  * @author wangfupeng
4
4
  */
5
+ import { IDomEditor } from '../../editor/interface';
5
6
  import { Dom7Array } from '../../utils/dom';
6
7
  import { IOption } from '../interface';
7
8
  import PanelAndModal from './BaseClass';
8
- import { IDomEditor } from '../../editor/interface';
9
9
  declare class SelectList extends PanelAndModal {
10
10
  type: string;
11
11
  readonly $elem: Dom7Array;
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@wangeditor-next/plugin-formula",
3
- "version": "1.0.14",
3
+ "version": "1.0.16",
4
4
  "description": "wangEditor next formula 公式",
5
5
  "author": "cycleccc <2991205548@qq.com>",
6
6
  "type": "module",
7
- "homepage": "https://github.com/cycleccc/wangEditor-next#readme",
7
+ "homepage": "https://github.com/wangeditor-next/wangEditor-next#readme",
8
8
  "license": "MIT",
9
9
  "types": "dist/plugin-formula/src/index.d.ts",
10
10
  "main": "dist/index.js",
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "repository": {
30
30
  "type": "git",
31
- "url": "git+https://github.com/cycleccc/wangEditor-next.git"
31
+ "url": "git+https://github.com/wangeditor-next/wangEditor-next.git"
32
32
  },
33
33
  "scripts": {
34
34
  "dev": "cross-env NODE_ENV=development rollup -c rollup.config.js",
@@ -38,13 +38,13 @@
38
38
  "size-stats": "cross-env NODE_ENV=production:size_stats rollup -c rollup.config.js"
39
39
  },
40
40
  "bugs": {
41
- "url": "https://github.com/cycleccc/wangEditor/issues"
41
+ "url": "https://github.com/wangeditor-next/wangeditor-next/issues"
42
42
  },
43
43
  "devDependencies": {
44
44
  "katex": "^0.16.0"
45
45
  },
46
46
  "peerDependencies": {
47
- "@wangeditor-next/editor": "5.6.29",
47
+ "@wangeditor-next/editor": "5.6.31",
48
48
  "katex": "^0.16.0",
49
49
  "snabbdom": "^3.1.0"
50
50
  },
@@ -1,8 +0,0 @@
1
- /**
2
- * @description Processing blob url
3
- * @author CodePencil
4
- */
5
- /** 提取 blob URL */
6
- export declare function extractBlobUrlFromImg(html: string): string | null;
7
- /** 将 blob URL 转换为 base64 */
8
- export declare function convertBlobUrlToBase64(blobUrl: string): Promise<string | null>;