prosekit 0.0.3 → 0.0.5
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/basic/internal/example.css +38 -0
- package/dist/prosekit-lit-components-command-empty.d.ts +1 -0
- package/dist/prosekit-lit-components-command-empty.js +2 -0
- package/dist/prosekit-lit-components-command-item.d.ts +1 -0
- package/dist/prosekit-lit-components-command-item.js +2 -0
- package/dist/prosekit-lit-components-command-list.d.ts +1 -0
- package/dist/prosekit-lit-components-command-list.js +2 -0
- package/dist/prosekit-lit-components-command-popover.d.ts +1 -0
- package/dist/prosekit-lit-components-command-popover.js +2 -0
- package/dist/prosekit-react-components-command-empty.d.ts +1 -0
- package/dist/prosekit-react-components-command-empty.js +2 -0
- package/dist/prosekit-react-components-command-item.d.ts +1 -0
- package/dist/prosekit-react-components-command-item.js +2 -0
- package/dist/prosekit-react-components-command-list.d.ts +1 -0
- package/dist/prosekit-react-components-command-list.js +2 -0
- package/dist/prosekit-react-components-command-popover.d.ts +1 -0
- package/dist/prosekit-react-components-command-popover.js +2 -0
- package/dist/prosekit-vue-components-command-empty.d.ts +1 -0
- package/dist/prosekit-vue-components-command-empty.js +2 -0
- package/dist/prosekit-vue-components-command-item.d.ts +1 -0
- package/dist/prosekit-vue-components-command-item.js +2 -0
- package/dist/prosekit-vue-components-command-list.d.ts +1 -0
- package/dist/prosekit-vue-components-command-list.js +2 -0
- package/dist/prosekit-vue-components-command-popover.d.ts +1 -0
- package/dist/prosekit-vue-components-command-popover.js +2 -0
- package/dist/prosekit.d.ts +12 -12
- package/package.json +86 -83
- package/dist/prosekit-lit-elements-menu-item.d.ts +0 -1
- package/dist/prosekit-lit-elements-menu-item.js +0 -2
- package/dist/prosekit-lit-elements-menu.d.ts +0 -1
- package/dist/prosekit-lit-elements-menu.js +0 -2
- package/dist/prosekit-lit-elements-popover-suggestion.d.ts +0 -1
- package/dist/prosekit-lit-elements-popover-suggestion.js +0 -2
- package/dist/prosekit-lit-elements-popover.d.ts +0 -1
- package/dist/prosekit-lit-elements-popover.js +0 -2
- package/dist/prosekit-react-components-menu-item.d.ts +0 -1
- package/dist/prosekit-react-components-menu-item.js +0 -2
- package/dist/prosekit-react-components-menu.d.ts +0 -1
- package/dist/prosekit-react-components-menu.js +0 -2
- package/dist/prosekit-react-components-popover-suggestion.d.ts +0 -1
- package/dist/prosekit-react-components-popover-suggestion.js +0 -2
- package/dist/prosekit-react-components-popover.d.ts +0 -1
- package/dist/prosekit-react-components-popover.js +0 -2
- package/dist/prosekit-vue-components-menu-item.d.ts +0 -1
- package/dist/prosekit-vue-components-menu-item.js +0 -2
- package/dist/prosekit-vue-components-menu.d.ts +0 -1
- package/dist/prosekit-vue-components-menu.js +0 -2
- package/dist/prosekit-vue-components-popover-suggestion.d.ts +0 -1
- package/dist/prosekit-vue-components-popover-suggestion.js +0 -2
- package/dist/prosekit-vue-components-popover.d.ts +0 -1
- package/dist/prosekit-vue-components-popover.js +0 -2
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/* ../basic/src/internal/example.css */
|
|
2
|
+
.example-editor {
|
|
3
|
+
@apply box-border h-[250px] w-full overflow-auto rounded px-4 py-4 outline outline-2;
|
|
4
|
+
font-family:
|
|
5
|
+
ui-sans-serif,
|
|
6
|
+
system-ui,
|
|
7
|
+
-apple-system,
|
|
8
|
+
BlinkMacSystemFont,
|
|
9
|
+
"Segoe UI",
|
|
10
|
+
Roboto,
|
|
11
|
+
"Helvetica Neue",
|
|
12
|
+
Arial,
|
|
13
|
+
"Noto Sans",
|
|
14
|
+
sans-serif,
|
|
15
|
+
"Apple Color Emoji",
|
|
16
|
+
"Segoe UI Emoji",
|
|
17
|
+
"Segoe UI Symbol",
|
|
18
|
+
"Noto Color Emoji";
|
|
19
|
+
}
|
|
20
|
+
.example-slash-menu {
|
|
21
|
+
@apply relative rounded border border-solid border-gray-500 bg-white;
|
|
22
|
+
user-select: none;
|
|
23
|
+
white-space: nowrap;
|
|
24
|
+
overflow: auto;
|
|
25
|
+
}
|
|
26
|
+
.example-slash-menu-item {
|
|
27
|
+
position: relative;
|
|
28
|
+
padding: 8px;
|
|
29
|
+
min-width: 64px;
|
|
30
|
+
user-select: none;
|
|
31
|
+
white-space: nowrap;
|
|
32
|
+
cursor: pointer;
|
|
33
|
+
}
|
|
34
|
+
.example-slash-menu-item[data-selected] {
|
|
35
|
+
@apply bg-gray-300;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/* src/basic/internal/example.css */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@prosekit/lit/components/command-empty';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@prosekit/lit/components/command-item';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@prosekit/lit/components/command-list';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@prosekit/lit/components/command-popover';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@prosekit/react/components/command-empty';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@prosekit/react/components/command-item';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@prosekit/react/components/command-list';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@prosekit/react/components/command-popover';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@prosekit/vue/components/command-empty';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@prosekit/vue/components/command-item';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@prosekit/vue/components/command-list';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@prosekit/vue/components/command-popover';
|
package/dist/prosekit.d.ts
CHANGED
|
@@ -10,10 +10,10 @@ import '@prosekit/extensions/list';
|
|
|
10
10
|
import '@prosekit/extensions/placeholder';
|
|
11
11
|
import '@prosekit/extensions/suggestion';
|
|
12
12
|
import '@prosekit/lit';
|
|
13
|
-
import '@prosekit/lit/
|
|
14
|
-
import '@prosekit/lit/
|
|
15
|
-
import '@prosekit/lit/
|
|
16
|
-
import '@prosekit/lit/
|
|
13
|
+
import '@prosekit/lit/components/command-empty';
|
|
14
|
+
import '@prosekit/lit/components/command-item';
|
|
15
|
+
import '@prosekit/lit/components/command-list';
|
|
16
|
+
import '@prosekit/lit/components/command-popover';
|
|
17
17
|
import '@prosekit/pm';
|
|
18
18
|
import '@prosekit/pm/commands';
|
|
19
19
|
import '@prosekit/pm/inputrules';
|
|
@@ -23,12 +23,12 @@ import '@prosekit/pm/state';
|
|
|
23
23
|
import '@prosekit/pm/transform';
|
|
24
24
|
import '@prosekit/pm/view';
|
|
25
25
|
import '@prosekit/react';
|
|
26
|
-
import '@prosekit/react/components/
|
|
27
|
-
import '@prosekit/react/components/
|
|
28
|
-
import '@prosekit/react/components/
|
|
29
|
-
import '@prosekit/react/components/popover
|
|
26
|
+
import '@prosekit/react/components/command-empty';
|
|
27
|
+
import '@prosekit/react/components/command-item';
|
|
28
|
+
import '@prosekit/react/components/command-list';
|
|
29
|
+
import '@prosekit/react/components/command-popover';
|
|
30
30
|
import '@prosekit/vue';
|
|
31
|
-
import '@prosekit/vue/components/
|
|
32
|
-
import '@prosekit/vue/components/
|
|
33
|
-
import '@prosekit/vue/components/
|
|
34
|
-
import '@prosekit/vue/components/popover
|
|
31
|
+
import '@prosekit/vue/components/command-empty';
|
|
32
|
+
import '@prosekit/vue/components/command-item';
|
|
33
|
+
import '@prosekit/vue/components/command-list';
|
|
34
|
+
import '@prosekit/vue/components/command-popover';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prosekit",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.5",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "ocavue",
|
|
@@ -35,6 +35,9 @@
|
|
|
35
35
|
"import": "./dist/prosekit-basic.js",
|
|
36
36
|
"default": "./dist/prosekit-basic.js"
|
|
37
37
|
},
|
|
38
|
+
"./basic/internal/example.css": {
|
|
39
|
+
"default": "./dist/basic/internal/example.css"
|
|
40
|
+
},
|
|
38
41
|
"./basic/style.css": {
|
|
39
42
|
"default": "./dist/basic/style.css"
|
|
40
43
|
},
|
|
@@ -102,25 +105,25 @@
|
|
|
102
105
|
"import": "./dist/prosekit-lit.js",
|
|
103
106
|
"default": "./dist/prosekit-lit.js"
|
|
104
107
|
},
|
|
105
|
-
"./lit/
|
|
106
|
-
"types": "./dist/prosekit-lit-
|
|
107
|
-
"import": "./dist/prosekit-lit-
|
|
108
|
-
"default": "./dist/prosekit-lit-
|
|
108
|
+
"./lit/components/command-empty": {
|
|
109
|
+
"types": "./dist/prosekit-lit-components-command-empty.d.ts",
|
|
110
|
+
"import": "./dist/prosekit-lit-components-command-empty.js",
|
|
111
|
+
"default": "./dist/prosekit-lit-components-command-empty.js"
|
|
109
112
|
},
|
|
110
|
-
"./lit/
|
|
111
|
-
"types": "./dist/prosekit-lit-
|
|
112
|
-
"import": "./dist/prosekit-lit-
|
|
113
|
-
"default": "./dist/prosekit-lit-
|
|
113
|
+
"./lit/components/command-item": {
|
|
114
|
+
"types": "./dist/prosekit-lit-components-command-item.d.ts",
|
|
115
|
+
"import": "./dist/prosekit-lit-components-command-item.js",
|
|
116
|
+
"default": "./dist/prosekit-lit-components-command-item.js"
|
|
114
117
|
},
|
|
115
|
-
"./lit/
|
|
116
|
-
"types": "./dist/prosekit-lit-
|
|
117
|
-
"import": "./dist/prosekit-lit-
|
|
118
|
-
"default": "./dist/prosekit-lit-
|
|
118
|
+
"./lit/components/command-list": {
|
|
119
|
+
"types": "./dist/prosekit-lit-components-command-list.d.ts",
|
|
120
|
+
"import": "./dist/prosekit-lit-components-command-list.js",
|
|
121
|
+
"default": "./dist/prosekit-lit-components-command-list.js"
|
|
119
122
|
},
|
|
120
|
-
"./lit/
|
|
121
|
-
"types": "./dist/prosekit-lit-
|
|
122
|
-
"import": "./dist/prosekit-lit-
|
|
123
|
-
"default": "./dist/prosekit-lit-
|
|
123
|
+
"./lit/components/command-popover": {
|
|
124
|
+
"types": "./dist/prosekit-lit-components-command-popover.d.ts",
|
|
125
|
+
"import": "./dist/prosekit-lit-components-command-popover.js",
|
|
126
|
+
"default": "./dist/prosekit-lit-components-command-popover.js"
|
|
124
127
|
},
|
|
125
128
|
"./pm": {
|
|
126
129
|
"types": "./dist/prosekit-pm.d.ts",
|
|
@@ -170,63 +173,63 @@
|
|
|
170
173
|
"import": "./dist/prosekit-react.js",
|
|
171
174
|
"default": "./dist/prosekit-react.js"
|
|
172
175
|
},
|
|
173
|
-
"./react/components/
|
|
174
|
-
"types": "./dist/prosekit-react-components-
|
|
175
|
-
"import": "./dist/prosekit-react-components-
|
|
176
|
-
"default": "./dist/prosekit-react-components-
|
|
176
|
+
"./react/components/command-empty": {
|
|
177
|
+
"types": "./dist/prosekit-react-components-command-empty.d.ts",
|
|
178
|
+
"import": "./dist/prosekit-react-components-command-empty.js",
|
|
179
|
+
"default": "./dist/prosekit-react-components-command-empty.js"
|
|
177
180
|
},
|
|
178
|
-
"./react/components/
|
|
179
|
-
"types": "./dist/prosekit-react-components-
|
|
180
|
-
"import": "./dist/prosekit-react-components-
|
|
181
|
-
"default": "./dist/prosekit-react-components-
|
|
181
|
+
"./react/components/command-item": {
|
|
182
|
+
"types": "./dist/prosekit-react-components-command-item.d.ts",
|
|
183
|
+
"import": "./dist/prosekit-react-components-command-item.js",
|
|
184
|
+
"default": "./dist/prosekit-react-components-command-item.js"
|
|
182
185
|
},
|
|
183
|
-
"./react/components/
|
|
184
|
-
"types": "./dist/prosekit-react-components-
|
|
185
|
-
"import": "./dist/prosekit-react-components-
|
|
186
|
-
"default": "./dist/prosekit-react-components-
|
|
186
|
+
"./react/components/command-list": {
|
|
187
|
+
"types": "./dist/prosekit-react-components-command-list.d.ts",
|
|
188
|
+
"import": "./dist/prosekit-react-components-command-list.js",
|
|
189
|
+
"default": "./dist/prosekit-react-components-command-list.js"
|
|
187
190
|
},
|
|
188
|
-
"./react/components/popover
|
|
189
|
-
"types": "./dist/prosekit-react-components-popover
|
|
190
|
-
"import": "./dist/prosekit-react-components-popover
|
|
191
|
-
"default": "./dist/prosekit-react-components-popover
|
|
191
|
+
"./react/components/command-popover": {
|
|
192
|
+
"types": "./dist/prosekit-react-components-command-popover.d.ts",
|
|
193
|
+
"import": "./dist/prosekit-react-components-command-popover.js",
|
|
194
|
+
"default": "./dist/prosekit-react-components-command-popover.js"
|
|
192
195
|
},
|
|
193
196
|
"./vue": {
|
|
194
197
|
"types": "./dist/prosekit-vue.d.ts",
|
|
195
198
|
"import": "./dist/prosekit-vue.js",
|
|
196
199
|
"default": "./dist/prosekit-vue.js"
|
|
197
200
|
},
|
|
198
|
-
"./vue/components/
|
|
199
|
-
"types": "./dist/prosekit-vue-components-
|
|
200
|
-
"import": "./dist/prosekit-vue-components-
|
|
201
|
-
"default": "./dist/prosekit-vue-components-
|
|
202
|
-
},
|
|
203
|
-
"./vue/components/
|
|
204
|
-
"types": "./dist/prosekit-vue-components-
|
|
205
|
-
"import": "./dist/prosekit-vue-components-
|
|
206
|
-
"default": "./dist/prosekit-vue-components-
|
|
207
|
-
},
|
|
208
|
-
"./vue/components/
|
|
209
|
-
"types": "./dist/prosekit-vue-components-
|
|
210
|
-
"import": "./dist/prosekit-vue-components-
|
|
211
|
-
"default": "./dist/prosekit-vue-components-
|
|
212
|
-
},
|
|
213
|
-
"./vue/components/popover
|
|
214
|
-
"types": "./dist/prosekit-vue-components-popover
|
|
215
|
-
"import": "./dist/prosekit-vue-components-popover
|
|
216
|
-
"default": "./dist/prosekit-vue-components-popover
|
|
201
|
+
"./vue/components/command-empty": {
|
|
202
|
+
"types": "./dist/prosekit-vue-components-command-empty.d.ts",
|
|
203
|
+
"import": "./dist/prosekit-vue-components-command-empty.js",
|
|
204
|
+
"default": "./dist/prosekit-vue-components-command-empty.js"
|
|
205
|
+
},
|
|
206
|
+
"./vue/components/command-item": {
|
|
207
|
+
"types": "./dist/prosekit-vue-components-command-item.d.ts",
|
|
208
|
+
"import": "./dist/prosekit-vue-components-command-item.js",
|
|
209
|
+
"default": "./dist/prosekit-vue-components-command-item.js"
|
|
210
|
+
},
|
|
211
|
+
"./vue/components/command-list": {
|
|
212
|
+
"types": "./dist/prosekit-vue-components-command-list.d.ts",
|
|
213
|
+
"import": "./dist/prosekit-vue-components-command-list.js",
|
|
214
|
+
"default": "./dist/prosekit-vue-components-command-list.js"
|
|
215
|
+
},
|
|
216
|
+
"./vue/components/command-popover": {
|
|
217
|
+
"types": "./dist/prosekit-vue-components-command-popover.d.ts",
|
|
218
|
+
"import": "./dist/prosekit-vue-components-command-popover.js",
|
|
219
|
+
"default": "./dist/prosekit-vue-components-command-popover.js"
|
|
217
220
|
}
|
|
218
221
|
},
|
|
219
222
|
"files": [
|
|
220
223
|
"dist"
|
|
221
224
|
],
|
|
222
225
|
"dependencies": {
|
|
223
|
-
"@prosekit/basic": "
|
|
224
|
-
"@prosekit/core": "
|
|
225
|
-
"@prosekit/extensions": "
|
|
226
|
-
"@prosekit/lit": "
|
|
227
|
-
"@prosekit/pm": "
|
|
228
|
-
"@prosekit/react": "
|
|
229
|
-
"@prosekit/vue": "
|
|
226
|
+
"@prosekit/basic": "0.0.4",
|
|
227
|
+
"@prosekit/core": "0.0.3",
|
|
228
|
+
"@prosekit/extensions": "0.0.3",
|
|
229
|
+
"@prosekit/lit": "0.0.4",
|
|
230
|
+
"@prosekit/pm": "0.0.3",
|
|
231
|
+
"@prosekit/react": "0.0.4",
|
|
232
|
+
"@prosekit/vue": "0.0.4"
|
|
230
233
|
},
|
|
231
234
|
"peerDependencies": {
|
|
232
235
|
"react": ">= 17.0.0",
|
|
@@ -300,17 +303,17 @@
|
|
|
300
303
|
"lit": [
|
|
301
304
|
"./dist/prosekit-lit.d.ts"
|
|
302
305
|
],
|
|
303
|
-
"lit/
|
|
304
|
-
"./dist/prosekit-lit-
|
|
306
|
+
"lit/components/command-empty": [
|
|
307
|
+
"./dist/prosekit-lit-components-command-empty.d.ts"
|
|
305
308
|
],
|
|
306
|
-
"lit/
|
|
307
|
-
"./dist/prosekit-lit-
|
|
309
|
+
"lit/components/command-item": [
|
|
310
|
+
"./dist/prosekit-lit-components-command-item.d.ts"
|
|
308
311
|
],
|
|
309
|
-
"lit/
|
|
310
|
-
"./dist/prosekit-lit-
|
|
312
|
+
"lit/components/command-list": [
|
|
313
|
+
"./dist/prosekit-lit-components-command-list.d.ts"
|
|
311
314
|
],
|
|
312
|
-
"lit/
|
|
313
|
-
"./dist/prosekit-lit-
|
|
315
|
+
"lit/components/command-popover": [
|
|
316
|
+
"./dist/prosekit-lit-components-command-popover.d.ts"
|
|
314
317
|
],
|
|
315
318
|
"pm": [
|
|
316
319
|
"./dist/prosekit-pm.d.ts"
|
|
@@ -339,32 +342,32 @@
|
|
|
339
342
|
"react": [
|
|
340
343
|
"./dist/prosekit-react.d.ts"
|
|
341
344
|
],
|
|
342
|
-
"react/components/
|
|
343
|
-
"./dist/prosekit-react-components-
|
|
345
|
+
"react/components/command-empty": [
|
|
346
|
+
"./dist/prosekit-react-components-command-empty.d.ts"
|
|
344
347
|
],
|
|
345
|
-
"react/components/
|
|
346
|
-
"./dist/prosekit-react-components-
|
|
348
|
+
"react/components/command-item": [
|
|
349
|
+
"./dist/prosekit-react-components-command-item.d.ts"
|
|
347
350
|
],
|
|
348
|
-
"react/components/
|
|
349
|
-
"./dist/prosekit-react-components-
|
|
351
|
+
"react/components/command-list": [
|
|
352
|
+
"./dist/prosekit-react-components-command-list.d.ts"
|
|
350
353
|
],
|
|
351
|
-
"react/components/popover
|
|
352
|
-
"./dist/prosekit-react-components-popover
|
|
354
|
+
"react/components/command-popover": [
|
|
355
|
+
"./dist/prosekit-react-components-command-popover.d.ts"
|
|
353
356
|
],
|
|
354
357
|
"vue": [
|
|
355
358
|
"./dist/prosekit-vue.d.ts"
|
|
356
359
|
],
|
|
357
|
-
"vue/components/
|
|
358
|
-
"./dist/prosekit-vue-components-
|
|
360
|
+
"vue/components/command-empty": [
|
|
361
|
+
"./dist/prosekit-vue-components-command-empty.d.ts"
|
|
359
362
|
],
|
|
360
|
-
"vue/components/
|
|
361
|
-
"./dist/prosekit-vue-components-
|
|
363
|
+
"vue/components/command-item": [
|
|
364
|
+
"./dist/prosekit-vue-components-command-item.d.ts"
|
|
362
365
|
],
|
|
363
|
-
"vue/components/
|
|
364
|
-
"./dist/prosekit-vue-components-
|
|
366
|
+
"vue/components/command-list": [
|
|
367
|
+
"./dist/prosekit-vue-components-command-list.d.ts"
|
|
365
368
|
],
|
|
366
|
-
"vue/components/popover
|
|
367
|
-
"./dist/prosekit-vue-components-popover
|
|
369
|
+
"vue/components/command-popover": [
|
|
370
|
+
"./dist/prosekit-vue-components-command-popover.d.ts"
|
|
368
371
|
]
|
|
369
372
|
}
|
|
370
373
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@prosekit/lit/elements/menu-item';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@prosekit/lit/elements/menu';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@prosekit/lit/elements/popover-suggestion';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@prosekit/lit/elements/popover';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@prosekit/react/components/menu-item';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@prosekit/react/components/menu';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@prosekit/react/components/popover-suggestion';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@prosekit/react/components/popover';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@prosekit/vue/components/menu-item';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@prosekit/vue/components/menu';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@prosekit/vue/components/popover-suggestion';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@prosekit/vue/components/popover';
|