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.
Files changed (51) hide show
  1. package/dist/basic/internal/example.css +38 -0
  2. package/dist/prosekit-lit-components-command-empty.d.ts +1 -0
  3. package/dist/prosekit-lit-components-command-empty.js +2 -0
  4. package/dist/prosekit-lit-components-command-item.d.ts +1 -0
  5. package/dist/prosekit-lit-components-command-item.js +2 -0
  6. package/dist/prosekit-lit-components-command-list.d.ts +1 -0
  7. package/dist/prosekit-lit-components-command-list.js +2 -0
  8. package/dist/prosekit-lit-components-command-popover.d.ts +1 -0
  9. package/dist/prosekit-lit-components-command-popover.js +2 -0
  10. package/dist/prosekit-react-components-command-empty.d.ts +1 -0
  11. package/dist/prosekit-react-components-command-empty.js +2 -0
  12. package/dist/prosekit-react-components-command-item.d.ts +1 -0
  13. package/dist/prosekit-react-components-command-item.js +2 -0
  14. package/dist/prosekit-react-components-command-list.d.ts +1 -0
  15. package/dist/prosekit-react-components-command-list.js +2 -0
  16. package/dist/prosekit-react-components-command-popover.d.ts +1 -0
  17. package/dist/prosekit-react-components-command-popover.js +2 -0
  18. package/dist/prosekit-vue-components-command-empty.d.ts +1 -0
  19. package/dist/prosekit-vue-components-command-empty.js +2 -0
  20. package/dist/prosekit-vue-components-command-item.d.ts +1 -0
  21. package/dist/prosekit-vue-components-command-item.js +2 -0
  22. package/dist/prosekit-vue-components-command-list.d.ts +1 -0
  23. package/dist/prosekit-vue-components-command-list.js +2 -0
  24. package/dist/prosekit-vue-components-command-popover.d.ts +1 -0
  25. package/dist/prosekit-vue-components-command-popover.js +2 -0
  26. package/dist/prosekit.d.ts +12 -12
  27. package/package.json +86 -83
  28. package/dist/prosekit-lit-elements-menu-item.d.ts +0 -1
  29. package/dist/prosekit-lit-elements-menu-item.js +0 -2
  30. package/dist/prosekit-lit-elements-menu.d.ts +0 -1
  31. package/dist/prosekit-lit-elements-menu.js +0 -2
  32. package/dist/prosekit-lit-elements-popover-suggestion.d.ts +0 -1
  33. package/dist/prosekit-lit-elements-popover-suggestion.js +0 -2
  34. package/dist/prosekit-lit-elements-popover.d.ts +0 -1
  35. package/dist/prosekit-lit-elements-popover.js +0 -2
  36. package/dist/prosekit-react-components-menu-item.d.ts +0 -1
  37. package/dist/prosekit-react-components-menu-item.js +0 -2
  38. package/dist/prosekit-react-components-menu.d.ts +0 -1
  39. package/dist/prosekit-react-components-menu.js +0 -2
  40. package/dist/prosekit-react-components-popover-suggestion.d.ts +0 -1
  41. package/dist/prosekit-react-components-popover-suggestion.js +0 -2
  42. package/dist/prosekit-react-components-popover.d.ts +0 -1
  43. package/dist/prosekit-react-components-popover.js +0 -2
  44. package/dist/prosekit-vue-components-menu-item.d.ts +0 -1
  45. package/dist/prosekit-vue-components-menu-item.js +0 -2
  46. package/dist/prosekit-vue-components-menu.d.ts +0 -1
  47. package/dist/prosekit-vue-components-menu.js +0 -2
  48. package/dist/prosekit-vue-components-popover-suggestion.d.ts +0 -1
  49. package/dist/prosekit-vue-components-popover-suggestion.js +0 -2
  50. package/dist/prosekit-vue-components-popover.d.ts +0 -1
  51. 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,2 @@
1
+ // src/lit/components/command-empty.gen.ts
2
+ export * from "@prosekit/lit/components/command-empty";
@@ -0,0 +1 @@
1
+ export * from '@prosekit/lit/components/command-item';
@@ -0,0 +1,2 @@
1
+ // src/lit/components/command-item.gen.ts
2
+ export * from "@prosekit/lit/components/command-item";
@@ -0,0 +1 @@
1
+ export * from '@prosekit/lit/components/command-list';
@@ -0,0 +1,2 @@
1
+ // src/lit/components/command-list.gen.ts
2
+ export * from "@prosekit/lit/components/command-list";
@@ -0,0 +1 @@
1
+ export * from '@prosekit/lit/components/command-popover';
@@ -0,0 +1,2 @@
1
+ // src/lit/components/command-popover.gen.ts
2
+ export * from "@prosekit/lit/components/command-popover";
@@ -0,0 +1 @@
1
+ export * from '@prosekit/react/components/command-empty';
@@ -0,0 +1,2 @@
1
+ // src/react/components/command-empty.gen.ts
2
+ export * from "@prosekit/react/components/command-empty";
@@ -0,0 +1 @@
1
+ export * from '@prosekit/react/components/command-item';
@@ -0,0 +1,2 @@
1
+ // src/react/components/command-item.gen.ts
2
+ export * from "@prosekit/react/components/command-item";
@@ -0,0 +1 @@
1
+ export * from '@prosekit/react/components/command-list';
@@ -0,0 +1,2 @@
1
+ // src/react/components/command-list.gen.ts
2
+ export * from "@prosekit/react/components/command-list";
@@ -0,0 +1 @@
1
+ export * from '@prosekit/react/components/command-popover';
@@ -0,0 +1,2 @@
1
+ // src/react/components/command-popover.gen.ts
2
+ export * from "@prosekit/react/components/command-popover";
@@ -0,0 +1 @@
1
+ export * from '@prosekit/vue/components/command-empty';
@@ -0,0 +1,2 @@
1
+ // src/vue/components/command-empty.gen.ts
2
+ export * from "@prosekit/vue/components/command-empty";
@@ -0,0 +1 @@
1
+ export * from '@prosekit/vue/components/command-item';
@@ -0,0 +1,2 @@
1
+ // src/vue/components/command-item.gen.ts
2
+ export * from "@prosekit/vue/components/command-item";
@@ -0,0 +1 @@
1
+ export * from '@prosekit/vue/components/command-list';
@@ -0,0 +1,2 @@
1
+ // src/vue/components/command-list.gen.ts
2
+ export * from "@prosekit/vue/components/command-list";
@@ -0,0 +1 @@
1
+ export * from '@prosekit/vue/components/command-popover';
@@ -0,0 +1,2 @@
1
+ // src/vue/components/command-popover.gen.ts
2
+ export * from "@prosekit/vue/components/command-popover";
@@ -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/elements/menu';
14
- import '@prosekit/lit/elements/menu-item';
15
- import '@prosekit/lit/elements/popover';
16
- import '@prosekit/lit/elements/popover-suggestion';
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/menu';
27
- import '@prosekit/react/components/menu-item';
28
- import '@prosekit/react/components/popover';
29
- import '@prosekit/react/components/popover-suggestion';
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/menu';
32
- import '@prosekit/vue/components/menu-item';
33
- import '@prosekit/vue/components/popover';
34
- import '@prosekit/vue/components/popover-suggestion';
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.3",
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/elements/menu": {
106
- "types": "./dist/prosekit-lit-elements-menu.d.ts",
107
- "import": "./dist/prosekit-lit-elements-menu.js",
108
- "default": "./dist/prosekit-lit-elements-menu.js"
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/elements/menu-item": {
111
- "types": "./dist/prosekit-lit-elements-menu-item.d.ts",
112
- "import": "./dist/prosekit-lit-elements-menu-item.js",
113
- "default": "./dist/prosekit-lit-elements-menu-item.js"
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/elements/popover": {
116
- "types": "./dist/prosekit-lit-elements-popover.d.ts",
117
- "import": "./dist/prosekit-lit-elements-popover.js",
118
- "default": "./dist/prosekit-lit-elements-popover.js"
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/elements/popover-suggestion": {
121
- "types": "./dist/prosekit-lit-elements-popover-suggestion.d.ts",
122
- "import": "./dist/prosekit-lit-elements-popover-suggestion.js",
123
- "default": "./dist/prosekit-lit-elements-popover-suggestion.js"
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/menu": {
174
- "types": "./dist/prosekit-react-components-menu.d.ts",
175
- "import": "./dist/prosekit-react-components-menu.js",
176
- "default": "./dist/prosekit-react-components-menu.js"
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/menu-item": {
179
- "types": "./dist/prosekit-react-components-menu-item.d.ts",
180
- "import": "./dist/prosekit-react-components-menu-item.js",
181
- "default": "./dist/prosekit-react-components-menu-item.js"
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/popover": {
184
- "types": "./dist/prosekit-react-components-popover.d.ts",
185
- "import": "./dist/prosekit-react-components-popover.js",
186
- "default": "./dist/prosekit-react-components-popover.js"
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-suggestion": {
189
- "types": "./dist/prosekit-react-components-popover-suggestion.d.ts",
190
- "import": "./dist/prosekit-react-components-popover-suggestion.js",
191
- "default": "./dist/prosekit-react-components-popover-suggestion.js"
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/menu": {
199
- "types": "./dist/prosekit-vue-components-menu.d.ts",
200
- "import": "./dist/prosekit-vue-components-menu.js",
201
- "default": "./dist/prosekit-vue-components-menu.js"
202
- },
203
- "./vue/components/menu-item": {
204
- "types": "./dist/prosekit-vue-components-menu-item.d.ts",
205
- "import": "./dist/prosekit-vue-components-menu-item.js",
206
- "default": "./dist/prosekit-vue-components-menu-item.js"
207
- },
208
- "./vue/components/popover": {
209
- "types": "./dist/prosekit-vue-components-popover.d.ts",
210
- "import": "./dist/prosekit-vue-components-popover.js",
211
- "default": "./dist/prosekit-vue-components-popover.js"
212
- },
213
- "./vue/components/popover-suggestion": {
214
- "types": "./dist/prosekit-vue-components-popover-suggestion.d.ts",
215
- "import": "./dist/prosekit-vue-components-popover-suggestion.js",
216
- "default": "./dist/prosekit-vue-components-popover-suggestion.js"
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": "^0.0.3",
224
- "@prosekit/core": "^0.0.3",
225
- "@prosekit/extensions": "^0.0.3",
226
- "@prosekit/lit": "^0.0.3",
227
- "@prosekit/pm": "^0.0.3",
228
- "@prosekit/react": "^0.0.3",
229
- "@prosekit/vue": "^0.0.3"
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/elements/menu": [
304
- "./dist/prosekit-lit-elements-menu.d.ts"
306
+ "lit/components/command-empty": [
307
+ "./dist/prosekit-lit-components-command-empty.d.ts"
305
308
  ],
306
- "lit/elements/menu-item": [
307
- "./dist/prosekit-lit-elements-menu-item.d.ts"
309
+ "lit/components/command-item": [
310
+ "./dist/prosekit-lit-components-command-item.d.ts"
308
311
  ],
309
- "lit/elements/popover": [
310
- "./dist/prosekit-lit-elements-popover.d.ts"
312
+ "lit/components/command-list": [
313
+ "./dist/prosekit-lit-components-command-list.d.ts"
311
314
  ],
312
- "lit/elements/popover-suggestion": [
313
- "./dist/prosekit-lit-elements-popover-suggestion.d.ts"
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/menu": [
343
- "./dist/prosekit-react-components-menu.d.ts"
345
+ "react/components/command-empty": [
346
+ "./dist/prosekit-react-components-command-empty.d.ts"
344
347
  ],
345
- "react/components/menu-item": [
346
- "./dist/prosekit-react-components-menu-item.d.ts"
348
+ "react/components/command-item": [
349
+ "./dist/prosekit-react-components-command-item.d.ts"
347
350
  ],
348
- "react/components/popover": [
349
- "./dist/prosekit-react-components-popover.d.ts"
351
+ "react/components/command-list": [
352
+ "./dist/prosekit-react-components-command-list.d.ts"
350
353
  ],
351
- "react/components/popover-suggestion": [
352
- "./dist/prosekit-react-components-popover-suggestion.d.ts"
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/menu": [
358
- "./dist/prosekit-vue-components-menu.d.ts"
360
+ "vue/components/command-empty": [
361
+ "./dist/prosekit-vue-components-command-empty.d.ts"
359
362
  ],
360
- "vue/components/menu-item": [
361
- "./dist/prosekit-vue-components-menu-item.d.ts"
363
+ "vue/components/command-item": [
364
+ "./dist/prosekit-vue-components-command-item.d.ts"
362
365
  ],
363
- "vue/components/popover": [
364
- "./dist/prosekit-vue-components-popover.d.ts"
366
+ "vue/components/command-list": [
367
+ "./dist/prosekit-vue-components-command-list.d.ts"
365
368
  ],
366
- "vue/components/popover-suggestion": [
367
- "./dist/prosekit-vue-components-popover-suggestion.d.ts"
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,2 +0,0 @@
1
- // src/lit/elements/menu-item.gen.ts
2
- export * from "@prosekit/lit/elements/menu-item";
@@ -1 +0,0 @@
1
- export * from '@prosekit/lit/elements/menu';
@@ -1,2 +0,0 @@
1
- // src/lit/elements/menu.gen.ts
2
- export * from "@prosekit/lit/elements/menu";
@@ -1 +0,0 @@
1
- export * from '@prosekit/lit/elements/popover-suggestion';
@@ -1,2 +0,0 @@
1
- // src/lit/elements/popover-suggestion.gen.ts
2
- export * from "@prosekit/lit/elements/popover-suggestion";
@@ -1 +0,0 @@
1
- export * from '@prosekit/lit/elements/popover';
@@ -1,2 +0,0 @@
1
- // src/lit/elements/popover.gen.ts
2
- export * from "@prosekit/lit/elements/popover";
@@ -1 +0,0 @@
1
- export * from '@prosekit/react/components/menu-item';
@@ -1,2 +0,0 @@
1
- // src/react/components/menu-item.gen.ts
2
- export * from "@prosekit/react/components/menu-item";
@@ -1 +0,0 @@
1
- export * from '@prosekit/react/components/menu';
@@ -1,2 +0,0 @@
1
- // src/react/components/menu.gen.ts
2
- export * from "@prosekit/react/components/menu";
@@ -1 +0,0 @@
1
- export * from '@prosekit/react/components/popover-suggestion';
@@ -1,2 +0,0 @@
1
- // src/react/components/popover-suggestion.gen.ts
2
- export * from "@prosekit/react/components/popover-suggestion";
@@ -1 +0,0 @@
1
- export * from '@prosekit/react/components/popover';
@@ -1,2 +0,0 @@
1
- // src/react/components/popover.gen.ts
2
- export * from "@prosekit/react/components/popover";
@@ -1 +0,0 @@
1
- export * from '@prosekit/vue/components/menu-item';
@@ -1,2 +0,0 @@
1
- // src/vue/components/menu-item.gen.ts
2
- export * from "@prosekit/vue/components/menu-item";
@@ -1 +0,0 @@
1
- export * from '@prosekit/vue/components/menu';
@@ -1,2 +0,0 @@
1
- // src/vue/components/menu.gen.ts
2
- export * from "@prosekit/vue/components/menu";
@@ -1 +0,0 @@
1
- export * from '@prosekit/vue/components/popover-suggestion';
@@ -1,2 +0,0 @@
1
- // src/vue/components/popover-suggestion.gen.ts
2
- export * from "@prosekit/vue/components/popover-suggestion";
@@ -1 +0,0 @@
1
- export * from '@prosekit/vue/components/popover';
@@ -1,2 +0,0 @@
1
- // src/vue/components/popover.gen.ts
2
- export * from "@prosekit/vue/components/popover";