@wangeditor-next/yjs-for-react 0.1.40 → 0.1.42
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.
|
@@ -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/yjs-for-react",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.42",
|
|
4
4
|
"description": "React specific components/utils for wangeditor-next-yjs.",
|
|
5
5
|
"author": "cycleccc <2991205548@qq.com>",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"homepage": "https://github.com/
|
|
7
|
+
"homepage": "https://github.com/wangeditor-next/wangeditor-next#readme",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
10
10
|
"main": "dist/index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"repository": {
|
|
35
35
|
"type": "git",
|
|
36
|
-
"url": "git+https://github.com/
|
|
36
|
+
"url": "git+https://github.com/wangeditor-next/wangEditor-next.git"
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
39
39
|
"test": "jest",
|
|
@@ -49,15 +49,15 @@
|
|
|
49
49
|
"@types/use-sync-external-store": "^0.0.6"
|
|
50
50
|
},
|
|
51
51
|
"bugs": {
|
|
52
|
-
"url": "https://github.com/
|
|
52
|
+
"url": "https://github.com/wangeditor-next/wangeditor-next/issues"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"use-sync-external-store": "^1.2.0",
|
|
56
56
|
"y-protocols": "^1.0.5"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@wangeditor-next/editor": "5.6.
|
|
60
|
-
"@wangeditor-next/yjs": "^0.1.
|
|
59
|
+
"@wangeditor-next/editor": "5.6.31",
|
|
60
|
+
"@wangeditor-next/yjs": "^0.1.30",
|
|
61
61
|
"react": ">=16.8.0",
|
|
62
62
|
"slate": "^0.72.0",
|
|
63
63
|
"yjs": "^13.5.29"
|
|
@@ -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>;
|