@prosekit/lit 0.4.16 → 0.5.0

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.
@@ -0,0 +1,2 @@
1
+ import { DropIndicatorElement as DropIndicator } from "@prosekit/web/drop-indicator";
2
+ export { DropIndicator };
@@ -0,0 +1,3 @@
1
+ import { DropIndicatorElement as DropIndicator } from "@prosekit/web/drop-indicator";
2
+
3
+ export { DropIndicator };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@prosekit/lit",
3
3
  "type": "module",
4
- "version": "0.4.16",
4
+ "version": "0.5.0",
5
5
  "private": false,
6
6
  "description": "Lit components and utilities for ProseKit",
7
7
  "author": {
@@ -38,6 +38,10 @@
38
38
  "types": "./dist/prosekit-lit-block-handle.d.ts",
39
39
  "default": "./dist/prosekit-lit-block-handle.js"
40
40
  },
41
+ "./drop-indicator": {
42
+ "types": "./dist/prosekit-lit-drop-indicator.d.ts",
43
+ "default": "./dist/prosekit-lit-drop-indicator.js"
44
+ },
41
45
  "./inline-popover": {
42
46
  "types": "./dist/prosekit-lit-inline-popover.d.ts",
43
47
  "default": "./dist/prosekit-lit-inline-popover.js"
@@ -63,14 +67,14 @@
63
67
  "dist"
64
68
  ],
65
69
  "dependencies": {
66
- "@prosekit/web": "^0.6.0"
70
+ "@prosekit/web": "^0.7.0"
67
71
  },
68
72
  "devDependencies": {
69
- "tsdown": "^0.12.9",
73
+ "tsdown": "^0.13.1",
70
74
  "typescript": "~5.8.3",
71
75
  "vitest": "^3.2.4",
72
- "@prosekit/config-tsdown": "0.0.0",
73
- "@prosekit/config-vitest": "0.0.0"
76
+ "@prosekit/config-vitest": "0.0.0",
77
+ "@prosekit/config-tsdown": "0.0.0"
74
78
  },
75
79
  "publishConfig": {
76
80
  "dev": {}
@@ -84,7 +88,8 @@
84
88
  "prosekit-lit-popover": "./src/components/popover/index.gen.ts",
85
89
  "prosekit-lit-resizable": "./src/components/resizable/index.gen.ts",
86
90
  "prosekit-lit-table-handle": "./src/components/table-handle/index.gen.ts",
87
- "prosekit-lit-tooltip": "./src/components/tooltip/index.gen.ts"
91
+ "prosekit-lit-tooltip": "./src/components/tooltip/index.gen.ts",
92
+ "prosekit-lit-drop-indicator": "./src/components/drop-indicator/index.gen.ts"
88
93
  }
89
94
  },
90
95
  "scripts": {
@@ -103,6 +108,9 @@
103
108
  "block-handle": [
104
109
  "./dist/prosekit-lit-block-handle.d.ts"
105
110
  ],
111
+ "drop-indicator": [
112
+ "./dist/prosekit-lit-drop-indicator.d.ts"
113
+ ],
106
114
  "inline-popover": [
107
115
  "./dist/prosekit-lit-inline-popover.d.ts"
108
116
  ],