@ctzhian/tiptap 3.0.0 → 3.0.1
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/extensions.d.ts +2 -0
- package/dist/extensions.js +2 -0
- package/dist/index.d.ts +0 -2
- package/dist/index.js +0 -2
- package/dist/ssr.d.ts +2 -0
- package/dist/ssr.js +1 -0
- package/package.json +18 -1
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,5 @@ export { default as EditorDiff } from './app/editor/EditorDiff';
|
|
|
4
4
|
export { default as EditorMarkdown, type MarkdownEditorRef } from './app/editor/EditorMarkdown';
|
|
5
5
|
export { default as EditorThemeProvider } from './app/editor/EditorThemeProvider';
|
|
6
6
|
export { default as EditorToolbar } from './features/toolbar';
|
|
7
|
-
export { getExtensions } from './editor-core/extensions';
|
|
8
7
|
export { default as useTiptap } from './hooks';
|
|
9
|
-
export { useFn } from './hooks/fn';
|
|
10
8
|
export * from './types';
|
package/dist/index.js
CHANGED
|
@@ -4,7 +4,5 @@ export { default as EditorDiff } from "./app/editor/EditorDiff";
|
|
|
4
4
|
export { default as EditorMarkdown } from "./app/editor/EditorMarkdown";
|
|
5
5
|
export { default as EditorThemeProvider } from "./app/editor/EditorThemeProvider";
|
|
6
6
|
export { default as EditorToolbar } from "./features/toolbar";
|
|
7
|
-
export { getExtensions } from "./editor-core/extensions";
|
|
8
7
|
export { default as useTiptap } from "./hooks";
|
|
9
|
-
export { useFn } from "./hooks/fn";
|
|
10
8
|
export * from "./types";
|
package/dist/ssr.d.ts
ADDED
package/dist/ssr.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { useFn } from "./hooks/fn";
|
package/package.json
CHANGED
|
@@ -1,10 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ctzhian/tiptap",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "基于 Tiptap 二次开发的编辑器组件",
|
|
5
|
+
"type": "module",
|
|
5
6
|
"main": "dist/index.js",
|
|
6
7
|
"module": "dist/index.js",
|
|
7
8
|
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./extensions": {
|
|
15
|
+
"types": "./dist/extensions.d.ts",
|
|
16
|
+
"import": "./dist/extensions.js"
|
|
17
|
+
},
|
|
18
|
+
"./ssr": {
|
|
19
|
+
"types": "./dist/ssr.d.ts",
|
|
20
|
+
"import": "./dist/ssr.js"
|
|
21
|
+
},
|
|
22
|
+
"./index.css": "./dist/index.css",
|
|
23
|
+
"./package.json": "./package.json"
|
|
24
|
+
},
|
|
8
25
|
"authors": [
|
|
9
26
|
"ky.kyy@qq.com"
|
|
10
27
|
],
|