@block-kit/plugin 1.0.8 → 1.0.9
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/es/bullet-list/index.js +1 -1
- package/dist/es/divider/index.js +1 -1
- package/dist/es/emoji/index.js +1 -1
- package/dist/es/image/index.js +1 -1
- package/dist/es/indent/index.js +1 -1
- package/dist/es/index.js +1 -1
- package/dist/es/inline-code/index.js +1 -1
- package/dist/es/link/index.d.ts +3 -2
- package/dist/es/link/index.js +32 -11
- package/dist/es/link/utils/constant.d.ts +1 -0
- package/dist/es/link/utils/constant.js +3 -0
- package/dist/es/mention/modules/suggest.js +1 -1
- package/dist/es/order-list/index.js +1 -1
- package/dist/es/quote/index.js +1 -1
- package/dist/es/shared/modules/selection.js +1 -1
- package/dist/es/shortcut/index.js +1 -1
- package/dist/lib/bullet-list/index.js +1 -1
- package/dist/lib/divider/index.js +1 -1
- package/dist/lib/emoji/index.js +1 -1
- package/dist/lib/image/index.js +1 -1
- package/dist/lib/indent/index.js +1 -1
- package/dist/lib/index.js +1 -1
- package/dist/lib/inline-code/index.js +1 -1
- package/dist/lib/link/index.d.ts +3 -2
- package/dist/lib/link/index.js +31 -10
- package/dist/lib/link/utils/constant.d.ts +1 -0
- package/dist/lib/link/utils/constant.js +7 -0
- package/dist/lib/mention/modules/suggest.js +1 -1
- package/dist/lib/order-list/index.js +1 -1
- package/dist/lib/quote/index.js +1 -1
- package/dist/lib/shared/modules/selection.js +1 -1
- package/dist/lib/shortcut/index.js +1 -1
- package/package.json +5 -5
- /package/dist/es/{tslib.es6-46499da4.js → tslib.es6-d7b0be1e.js} +0 -0
- /package/dist/lib/{tslib.es6-d0928055.js → tslib.es6-6418d6c4.js} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as __decorate } from '../tslib.es6-
|
|
1
|
+
import { _ as __decorate } from '../tslib.es6-d7b0be1e.js';
|
|
2
2
|
import { jsx } from 'react/jsx-runtime';
|
|
3
3
|
import { EDITOR_EVENT, RawPoint, Point } from '@block-kit/core';
|
|
4
4
|
import { Delta } from '@block-kit/delta';
|
package/dist/es/divider/index.js
CHANGED
package/dist/es/emoji/index.js
CHANGED
package/dist/es/image/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as __decorate, a as __awaiter } from '../tslib.es6-
|
|
1
|
+
import { _ as __decorate, a as __awaiter } from '../tslib.es6-d7b0be1e.js';
|
|
2
2
|
import { jsx } from 'react/jsx-runtime';
|
|
3
3
|
import { Point, Range, RawRange, APPLY_SOURCE } from '@block-kit/core';
|
|
4
4
|
import { Delta } from '@block-kit/delta';
|
package/dist/es/indent/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as __decorate } from '../tslib.es6-
|
|
1
|
+
import { _ as __decorate } from '../tslib.es6-d7b0be1e.js';
|
|
2
2
|
import { EDITOR_EVENT, RawPoint, Point } from '@block-kit/core';
|
|
3
3
|
import { Delta } from '@block-kit/delta';
|
|
4
4
|
import { EditorPlugin } from '@block-kit/react';
|
package/dist/es/index.js
CHANGED
|
@@ -49,6 +49,6 @@ export { UNDERLINE_KEY } from './underline/types/index.js';
|
|
|
49
49
|
export { FloatToolbar } from './toolbar/context/float.js';
|
|
50
50
|
export { Toolbar } from './toolbar/context/basic.js';
|
|
51
51
|
|
|
52
|
-
const BLOCK_KIT_VERSION = "1.0.
|
|
52
|
+
const BLOCK_KIT_VERSION = "1.0.9" ;
|
|
53
53
|
|
|
54
54
|
export { BLOCK_KIT_VERSION };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as __decorate } from '../tslib.es6-
|
|
1
|
+
import { _ as __decorate } from '../tslib.es6-d7b0be1e.js';
|
|
2
2
|
import { Priority } from '@block-kit/core';
|
|
3
3
|
import { EditorPlugin } from '@block-kit/react';
|
|
4
4
|
import { INLINE_CODE_KEY } from './types/index.js';
|
package/dist/es/link/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { Editor } from "@block-kit/core";
|
|
2
|
+
import type { Editor, PasteContext } from "@block-kit/core";
|
|
3
3
|
import type { CMDPayload } from "@block-kit/core";
|
|
4
4
|
import type { AttributeMap } from "@block-kit/delta";
|
|
5
5
|
import type { ReactLeafContext, ReactWrapLeafContext } from "@block-kit/react";
|
|
@@ -11,7 +11,8 @@ export declare class LinkPlugin extends EditorPlugin {
|
|
|
11
11
|
constructor(editor: Editor);
|
|
12
12
|
destroy(): void;
|
|
13
13
|
match(attrs: AttributeMap): boolean;
|
|
14
|
+
onExec(payload: CMDPayload): undefined;
|
|
15
|
+
willApplyPasteDelta(context: PasteContext): PasteContext;
|
|
14
16
|
wrapLeaf(context: ReactWrapLeafContext): React.ReactNode;
|
|
15
17
|
renderLeaf(context: ReactLeafContext): React.ReactNode;
|
|
16
|
-
onExec(payload: CMDPayload): undefined;
|
|
17
18
|
}
|
package/dist/es/link/index.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import { _ as __decorate } from '../tslib.es6-
|
|
1
|
+
import { _ as __decorate } from '../tslib.es6-d7b0be1e.js';
|
|
2
2
|
import { jsx } from 'react/jsx-runtime';
|
|
3
|
+
import { Delta, getOpLength } from '@block-kit/delta';
|
|
3
4
|
import { InjectWrapKeys, EditorPlugin } from '@block-kit/react';
|
|
4
5
|
import { Bind } from '@block-kit/utils';
|
|
5
|
-
import { LINK_KEY, LINK_TEMP_KEY } from './types/index.js';
|
|
6
|
+
import { LINK_KEY, LINK_TEMP_KEY, LINK_BLANK_KEY } from './types/index.js';
|
|
7
|
+
import { LINK_REG } from './utils/constant.js';
|
|
6
8
|
import { A } from './view/a.js';
|
|
7
9
|
|
|
8
10
|
class LinkPlugin extends EditorPlugin {
|
|
@@ -20,6 +22,31 @@ class LinkPlugin extends EditorPlugin {
|
|
|
20
22
|
match(attrs) {
|
|
21
23
|
return !!attrs[LINK_KEY] || !!attrs[LINK_TEMP_KEY];
|
|
22
24
|
}
|
|
25
|
+
onExec(payload) {
|
|
26
|
+
const range = this.editor.selection.get() || payload.range;
|
|
27
|
+
const attrs = payload.attrs;
|
|
28
|
+
if (!range || attrs) {
|
|
29
|
+
return void 0;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
willApplyPasteDelta(context) {
|
|
33
|
+
const delta = context.delta;
|
|
34
|
+
const changes = new Delta();
|
|
35
|
+
for (const op of delta.ops) {
|
|
36
|
+
const len = getOpLength(op);
|
|
37
|
+
// 粘贴文本内容自动应用为超链接状态
|
|
38
|
+
let res = null;
|
|
39
|
+
if (op.insert && (res = LINK_REG.exec(op.insert))) {
|
|
40
|
+
const link = res[0];
|
|
41
|
+
changes.retain(link.length, { [LINK_KEY]: link, [LINK_BLANK_KEY]: "true" });
|
|
42
|
+
changes.retain(len - link.length);
|
|
43
|
+
continue;
|
|
44
|
+
}
|
|
45
|
+
changes.retain(len);
|
|
46
|
+
}
|
|
47
|
+
context.delta = delta.compose(changes);
|
|
48
|
+
return context;
|
|
49
|
+
}
|
|
23
50
|
wrapLeaf(context) {
|
|
24
51
|
const state = context.leafState;
|
|
25
52
|
const attrs = state.op.attributes || {};
|
|
@@ -35,18 +62,12 @@ class LinkPlugin extends EditorPlugin {
|
|
|
35
62
|
}
|
|
36
63
|
return context.children;
|
|
37
64
|
}
|
|
38
|
-
onExec(payload) {
|
|
39
|
-
const range = this.editor.selection.get() || payload.range;
|
|
40
|
-
const attrs = payload.attrs;
|
|
41
|
-
if (!range || attrs)
|
|
42
|
-
return void 0;
|
|
43
|
-
}
|
|
44
65
|
}
|
|
45
|
-
__decorate([
|
|
46
|
-
InjectWrapKeys(LINK_KEY)
|
|
47
|
-
], LinkPlugin.prototype, "wrapLeaf", null);
|
|
48
66
|
__decorate([
|
|
49
67
|
Bind
|
|
50
68
|
], LinkPlugin.prototype, "onExec", null);
|
|
69
|
+
__decorate([
|
|
70
|
+
InjectWrapKeys(LINK_KEY)
|
|
71
|
+
], LinkPlugin.prototype, "wrapLeaf", null);
|
|
51
72
|
|
|
52
73
|
export { LinkPlugin };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const LINK_REG: RegExp;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as __decorate } from '../../tslib.es6-
|
|
1
|
+
import { _ as __decorate } from '../../tslib.es6-d7b0be1e.js';
|
|
2
2
|
import { jsx } from 'react/jsx-runtime';
|
|
3
3
|
import { Point, EDITOR_EVENT, relativeTo, Range } from '@block-kit/core';
|
|
4
4
|
import { deltaToText, Delta } from '@block-kit/delta';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as __decorate } from '../tslib.es6-
|
|
1
|
+
import { _ as __decorate } from '../tslib.es6-d7b0be1e.js';
|
|
2
2
|
import { jsx } from 'react/jsx-runtime';
|
|
3
3
|
import { EDITOR_EVENT, RawPoint, Point } from '@block-kit/core';
|
|
4
4
|
import { Delta } from '@block-kit/delta';
|
package/dist/es/quote/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as __decorate } from '../tslib.es6-
|
|
1
|
+
import { _ as __decorate } from '../tslib.es6-d7b0be1e.js';
|
|
2
2
|
import { jsx } from 'react/jsx-runtime';
|
|
3
3
|
import { EDITOR_EVENT, RawPoint, Point } from '@block-kit/core';
|
|
4
4
|
import { Delta } from '@block-kit/delta';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as __decorate } from '../tslib.es6-
|
|
1
|
+
import { _ as __decorate } from '../tslib.es6-d7b0be1e.js';
|
|
2
2
|
import { CorePlugin, EDITOR_EVENT } from '@block-kit/core';
|
|
3
3
|
import { Bind } from '@block-kit/utils';
|
|
4
4
|
import { PLUGIN_EVENTS } from '../shared/utils/event.js';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var tslib_es6 = require('../tslib.es6-
|
|
5
|
+
var tslib_es6 = require('../tslib.es6-6418d6c4.js');
|
|
6
6
|
var jsxRuntime = require('react/jsx-runtime');
|
|
7
7
|
var core = require('@block-kit/core');
|
|
8
8
|
var delta = require('@block-kit/delta');
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var tslib_es6 = require('../tslib.es6-
|
|
5
|
+
var tslib_es6 = require('../tslib.es6-6418d6c4.js');
|
|
6
6
|
var jsxRuntime = require('react/jsx-runtime');
|
|
7
7
|
var core = require('@block-kit/core');
|
|
8
8
|
var delta = require('@block-kit/delta');
|
package/dist/lib/emoji/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var tslib_es6 = require('../tslib.es6-
|
|
5
|
+
var tslib_es6 = require('../tslib.es6-6418d6c4.js');
|
|
6
6
|
var jsxRuntime = require('react/jsx-runtime');
|
|
7
7
|
var core = require('@block-kit/core');
|
|
8
8
|
var delta = require('@block-kit/delta');
|
package/dist/lib/image/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var tslib_es6 = require('../tslib.es6-
|
|
5
|
+
var tslib_es6 = require('../tslib.es6-6418d6c4.js');
|
|
6
6
|
var jsxRuntime = require('react/jsx-runtime');
|
|
7
7
|
var core = require('@block-kit/core');
|
|
8
8
|
var delta = require('@block-kit/delta');
|
package/dist/lib/indent/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var tslib_es6 = require('../tslib.es6-
|
|
5
|
+
var tslib_es6 = require('../tslib.es6-6418d6c4.js');
|
|
6
6
|
var core = require('@block-kit/core');
|
|
7
7
|
var delta = require('@block-kit/delta');
|
|
8
8
|
var react = require('@block-kit/react');
|
package/dist/lib/index.js
CHANGED
|
@@ -53,7 +53,7 @@ var underline_types_index = require('./underline/types/index.js');
|
|
|
53
53
|
var toolbar_context_float = require('./toolbar/context/float.js');
|
|
54
54
|
var toolbar_context_basic = require('./toolbar/context/basic.js');
|
|
55
55
|
|
|
56
|
-
const BLOCK_KIT_VERSION = "1.0.
|
|
56
|
+
const BLOCK_KIT_VERSION = "1.0.9" ;
|
|
57
57
|
|
|
58
58
|
exports.AlignPlugin = align_index.AlignPlugin;
|
|
59
59
|
exports.ALIGN_KEY = align_types_index.ALIGN_KEY;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var tslib_es6 = require('../tslib.es6-
|
|
5
|
+
var tslib_es6 = require('../tslib.es6-6418d6c4.js');
|
|
6
6
|
var core = require('@block-kit/core');
|
|
7
7
|
var react = require('@block-kit/react');
|
|
8
8
|
var inlineCode_types_index = require('./types/index.js');
|
package/dist/lib/link/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { Editor } from "@block-kit/core";
|
|
2
|
+
import type { Editor, PasteContext } from "@block-kit/core";
|
|
3
3
|
import type { CMDPayload } from "@block-kit/core";
|
|
4
4
|
import type { AttributeMap } from "@block-kit/delta";
|
|
5
5
|
import type { ReactLeafContext, ReactWrapLeafContext } from "@block-kit/react";
|
|
@@ -11,7 +11,8 @@ export declare class LinkPlugin extends EditorPlugin {
|
|
|
11
11
|
constructor(editor: Editor);
|
|
12
12
|
destroy(): void;
|
|
13
13
|
match(attrs: AttributeMap): boolean;
|
|
14
|
+
onExec(payload: CMDPayload): undefined;
|
|
15
|
+
willApplyPasteDelta(context: PasteContext): PasteContext;
|
|
14
16
|
wrapLeaf(context: ReactWrapLeafContext): React.ReactNode;
|
|
15
17
|
renderLeaf(context: ReactLeafContext): React.ReactNode;
|
|
16
|
-
onExec(payload: CMDPayload): undefined;
|
|
17
18
|
}
|
package/dist/lib/link/index.js
CHANGED
|
@@ -2,11 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var tslib_es6 = require('../tslib.es6-
|
|
5
|
+
var tslib_es6 = require('../tslib.es6-6418d6c4.js');
|
|
6
6
|
var jsxRuntime = require('react/jsx-runtime');
|
|
7
|
+
var delta = require('@block-kit/delta');
|
|
7
8
|
var react = require('@block-kit/react');
|
|
8
9
|
var utils = require('@block-kit/utils');
|
|
9
10
|
var link_types_index = require('./types/index.js');
|
|
11
|
+
var link_utils_constant = require('./utils/constant.js');
|
|
10
12
|
var link_view_a = require('./view/a.js');
|
|
11
13
|
|
|
12
14
|
class LinkPlugin extends react.EditorPlugin {
|
|
@@ -24,6 +26,31 @@ class LinkPlugin extends react.EditorPlugin {
|
|
|
24
26
|
match(attrs) {
|
|
25
27
|
return !!attrs[link_types_index.LINK_KEY] || !!attrs[link_types_index.LINK_TEMP_KEY];
|
|
26
28
|
}
|
|
29
|
+
onExec(payload) {
|
|
30
|
+
const range = this.editor.selection.get() || payload.range;
|
|
31
|
+
const attrs = payload.attrs;
|
|
32
|
+
if (!range || attrs) {
|
|
33
|
+
return void 0;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
willApplyPasteDelta(context) {
|
|
37
|
+
const delta$1 = context.delta;
|
|
38
|
+
const changes = new delta.Delta();
|
|
39
|
+
for (const op of delta$1.ops) {
|
|
40
|
+
const len = delta.getOpLength(op);
|
|
41
|
+
// 粘贴文本内容自动应用为超链接状态
|
|
42
|
+
let res = null;
|
|
43
|
+
if (op.insert && (res = link_utils_constant.LINK_REG.exec(op.insert))) {
|
|
44
|
+
const link = res[0];
|
|
45
|
+
changes.retain(link.length, { [link_types_index.LINK_KEY]: link, [link_types_index.LINK_BLANK_KEY]: "true" });
|
|
46
|
+
changes.retain(len - link.length);
|
|
47
|
+
continue;
|
|
48
|
+
}
|
|
49
|
+
changes.retain(len);
|
|
50
|
+
}
|
|
51
|
+
context.delta = delta$1.compose(changes);
|
|
52
|
+
return context;
|
|
53
|
+
}
|
|
27
54
|
wrapLeaf(context) {
|
|
28
55
|
const state = context.leafState;
|
|
29
56
|
const attrs = state.op.attributes || {};
|
|
@@ -39,18 +66,12 @@ class LinkPlugin extends react.EditorPlugin {
|
|
|
39
66
|
}
|
|
40
67
|
return context.children;
|
|
41
68
|
}
|
|
42
|
-
onExec(payload) {
|
|
43
|
-
const range = this.editor.selection.get() || payload.range;
|
|
44
|
-
const attrs = payload.attrs;
|
|
45
|
-
if (!range || attrs)
|
|
46
|
-
return void 0;
|
|
47
|
-
}
|
|
48
69
|
}
|
|
49
|
-
tslib_es6.__decorate([
|
|
50
|
-
react.InjectWrapKeys(link_types_index.LINK_KEY)
|
|
51
|
-
], LinkPlugin.prototype, "wrapLeaf", null);
|
|
52
70
|
tslib_es6.__decorate([
|
|
53
71
|
utils.Bind
|
|
54
72
|
], LinkPlugin.prototype, "onExec", null);
|
|
73
|
+
tslib_es6.__decorate([
|
|
74
|
+
react.InjectWrapKeys(link_types_index.LINK_KEY)
|
|
75
|
+
], LinkPlugin.prototype, "wrapLeaf", null);
|
|
55
76
|
|
|
56
77
|
exports.LinkPlugin = LinkPlugin;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const LINK_REG: RegExp;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var tslib_es6 = require('../../tslib.es6-
|
|
5
|
+
var tslib_es6 = require('../../tslib.es6-6418d6c4.js');
|
|
6
6
|
var jsxRuntime = require('react/jsx-runtime');
|
|
7
7
|
var core = require('@block-kit/core');
|
|
8
8
|
var delta = require('@block-kit/delta');
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var tslib_es6 = require('../tslib.es6-
|
|
5
|
+
var tslib_es6 = require('../tslib.es6-6418d6c4.js');
|
|
6
6
|
var jsxRuntime = require('react/jsx-runtime');
|
|
7
7
|
var core = require('@block-kit/core');
|
|
8
8
|
var delta = require('@block-kit/delta');
|
package/dist/lib/quote/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var tslib_es6 = require('../tslib.es6-
|
|
5
|
+
var tslib_es6 = require('../tslib.es6-6418d6c4.js');
|
|
6
6
|
var jsxRuntime = require('react/jsx-runtime');
|
|
7
7
|
var core = require('@block-kit/core');
|
|
8
8
|
var delta = require('@block-kit/delta');
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var tslib_es6 = require('../../tslib.es6-
|
|
5
|
+
var tslib_es6 = require('../../tslib.es6-6418d6c4.js');
|
|
6
6
|
var core = require('@block-kit/core');
|
|
7
7
|
var utils = require('@block-kit/utils');
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var tslib_es6 = require('../tslib.es6-
|
|
5
|
+
var tslib_es6 = require('../tslib.es6-6418d6c4.js');
|
|
6
6
|
var core = require('@block-kit/core');
|
|
7
7
|
var utils = require('@block-kit/utils');
|
|
8
8
|
var shared_utils_event = require('../shared/utils/event.js');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@block-kit/plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/lib/index.js",
|
|
6
6
|
"types": "./dist/es/index.d.ts",
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@arco-design/web-react": "2.64.0",
|
|
42
|
-
"@block-kit/core": "1.0.
|
|
43
|
-
"@block-kit/delta": "1.0.
|
|
44
|
-
"@block-kit/react": "1.0.
|
|
45
|
-
"@block-kit/utils": "1.0.
|
|
42
|
+
"@block-kit/core": "1.0.9",
|
|
43
|
+
"@block-kit/delta": "1.0.9",
|
|
44
|
+
"@block-kit/react": "1.0.9",
|
|
45
|
+
"@block-kit/utils": "1.0.9",
|
|
46
46
|
"@emoji-mart/data": "1.2.1",
|
|
47
47
|
"@emoji-mart/react": "1.1.1",
|
|
48
48
|
"emoji-mart": "5.6.0"
|
|
File without changes
|
|
File without changes
|