@wangeditor-next/plugin-link-card 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/) 链接卡片 插件。
7
+ [wangEditor-next](https://wangeditor-next.github.io/docs/) 链接卡片 插件。
8
8
 
9
9
  ![链接卡片演示 (Link Card Demo)](./_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-link-card",
3
- "version": "1.0.14",
3
+ "version": "1.0.16",
4
4
  "description": "wangEditor link card plugin",
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-link-card/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,10 +38,10 @@
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
  "peerDependencies": {
44
- "@wangeditor-next/editor": "5.6.29",
44
+ "@wangeditor-next/editor": "5.6.31",
45
45
  "dom7": "^3.0.0 || ^4.0.0",
46
46
  "slate": "^0.72.0",
47
47
  "snabbdom": "^3.1.0"
@@ -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>;