@prosekit/vue 0.3.24 → 0.3.25
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.
@@ -5,6 +5,9 @@ import { AutocompleteListProps } from '@prosekit/web/autocomplete';
|
|
5
5
|
import { AutocompletePopoverProps } from '@prosekit/web/autocomplete';
|
6
6
|
import { BaseNodeViewOptions } from '@prosekit/core';
|
7
7
|
import { BlockDragHandleProps } from '@prosekit/web/block-handle';
|
8
|
+
import { BlockHandleAddProps } from '@prosekit/web/block-handle';
|
9
|
+
import { BlockHandleDraggableProps } from '@prosekit/web/block-handle';
|
10
|
+
import { BlockHandlePopoverProps } from '@prosekit/web/block-handle';
|
8
11
|
import { BlockPopoverProps } from '@prosekit/web/block-handle';
|
9
12
|
import { ComponentOptionsMixin } from 'vue';
|
10
13
|
import { ComputedRef } from 'vue';
|
@@ -64,6 +67,18 @@ declare const BlockDragHandle: DefineSetupFnComponent<Partial<BlockDragHandlePro
|
|
64
67
|
export { BlockDragHandle }
|
65
68
|
export { BlockDragHandle as BlockDragHandle_alias_1 }
|
66
69
|
|
70
|
+
declare const BlockHandleAdd: DefineSetupFnComponent<Partial<BlockHandleAddProps> & HTMLAttributes>;
|
71
|
+
export { BlockHandleAdd }
|
72
|
+
export { BlockHandleAdd as BlockHandleAdd_alias_1 }
|
73
|
+
|
74
|
+
declare const BlockHandleDraggable: DefineSetupFnComponent<Partial<BlockHandleDraggableProps> & HTMLAttributes>;
|
75
|
+
export { BlockHandleDraggable }
|
76
|
+
export { BlockHandleDraggable as BlockHandleDraggable_alias_1 }
|
77
|
+
|
78
|
+
declare const BlockHandlePopover: DefineSetupFnComponent<Partial<BlockHandlePopoverProps> & HTMLAttributes>;
|
79
|
+
export { BlockHandlePopover }
|
80
|
+
export { BlockHandlePopover as BlockHandlePopover_alias_1 }
|
81
|
+
|
67
82
|
declare const BlockPopover: DefineSetupFnComponent<Partial<BlockPopoverProps> & HTMLAttributes>;
|
68
83
|
export { BlockPopover }
|
69
84
|
export { BlockPopover as BlockPopover_alias_1 }
|
@@ -1,2 +1,5 @@
|
|
1
1
|
export { BlockDragHandle_alias_1 as BlockDragHandle } from './_tsup-dts-rollup';
|
2
|
+
export { BlockHandleAdd_alias_1 as BlockHandleAdd } from './_tsup-dts-rollup';
|
3
|
+
export { BlockHandleDraggable_alias_1 as BlockHandleDraggable } from './_tsup-dts-rollup';
|
4
|
+
export { BlockHandlePopover_alias_1 as BlockHandlePopover } from './_tsup-dts-rollup';
|
2
5
|
export { BlockPopover_alias_1 as BlockPopover } from './_tsup-dts-rollup';
|
@@ -7,10 +7,25 @@ import "./chunk-YWS6VK6K.js";
|
|
7
7
|
import { defaultBlockDragHandleProps } from "@prosekit/web/block-handle";
|
8
8
|
var BlockDragHandle = createComponent("prosekit-block-drag-handle", "BlockDragHandle", defaultBlockDragHandleProps);
|
9
9
|
|
10
|
+
// src/components/block-handle/block-handle-add.gen.ts
|
11
|
+
import { defaultBlockHandleAddProps } from "@prosekit/web/block-handle";
|
12
|
+
var BlockHandleAdd = createComponent("prosekit-block-handle-add", "BlockHandleAdd", defaultBlockHandleAddProps);
|
13
|
+
|
14
|
+
// src/components/block-handle/block-handle-draggable.gen.ts
|
15
|
+
import { defaultBlockHandleDraggableProps } from "@prosekit/web/block-handle";
|
16
|
+
var BlockHandleDraggable = createComponent("prosekit-block-handle-draggable", "BlockHandleDraggable", defaultBlockHandleDraggableProps);
|
17
|
+
|
18
|
+
// src/components/block-handle/block-handle-popover.gen.ts
|
19
|
+
import { defaultBlockHandlePopoverProps } from "@prosekit/web/block-handle";
|
20
|
+
var BlockHandlePopover = createComponent("prosekit-block-handle-popover", "BlockHandlePopover", defaultBlockHandlePopoverProps);
|
21
|
+
|
10
22
|
// src/components/block-handle/block-popover.gen.ts
|
11
23
|
import { defaultBlockPopoverProps } from "@prosekit/web/block-handle";
|
12
24
|
var BlockPopover = createComponent("prosekit-block-popover", "BlockPopover", defaultBlockPopoverProps);
|
13
25
|
export {
|
14
26
|
BlockDragHandle,
|
27
|
+
BlockHandleAdd,
|
28
|
+
BlockHandleDraggable,
|
29
|
+
BlockHandlePopover,
|
15
30
|
BlockPopover
|
16
31
|
};
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@prosekit/vue",
|
3
3
|
"type": "module",
|
4
|
-
"version": "0.3.
|
4
|
+
"version": "0.3.25",
|
5
5
|
"private": false,
|
6
6
|
"author": {
|
7
7
|
"name": "ocavue",
|
@@ -71,9 +71,9 @@
|
|
71
71
|
],
|
72
72
|
"dependencies": {
|
73
73
|
"@prosemirror-adapter/vue": "^0.2.6",
|
74
|
-
"@prosekit/
|
75
|
-
"@prosekit/
|
76
|
-
"@prosekit/
|
74
|
+
"@prosekit/core": "^0.7.10",
|
75
|
+
"@prosekit/web": "^0.3.14",
|
76
|
+
"@prosekit/pm": "^0.1.8"
|
77
77
|
},
|
78
78
|
"peerDependencies": {
|
79
79
|
"vue": ">= 3.0.0"
|