@prosekit/lit 0.5.0 → 0.5.2
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/prosekit-lit.js +1 -0
- package/package.json +13 -13
- package/src/components/autocomplete/index.gen.ts +7 -0
- package/src/components/block-handle/index.gen.ts +5 -0
- package/src/components/drop-indicator/index.gen.ts +1 -0
- package/src/components/inline-popover/index.gen.ts +1 -0
- package/src/components/popover/index.gen.ts +5 -0
- package/src/components/resizable/index.gen.ts +3 -0
- package/src/components/table-handle/index.gen.ts +17 -0
- package/src/components/tooltip/index.gen.ts +5 -0
- package/src/index.ts +1 -0
package/dist/prosekit-lit.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prosekit/lit",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.2",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "Lit components and utilities for ProseKit",
|
|
7
7
|
"author": {
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
},
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"funding": "https://github.com/sponsors/ocavue",
|
|
13
|
-
"homepage": "https://github.com/
|
|
13
|
+
"homepage": "https://github.com/prosekit/prosekit#readme",
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|
|
16
|
-
"url": "git+https://github.com/
|
|
16
|
+
"url": "git+https://github.com/prosekit/prosekit.git",
|
|
17
17
|
"directory": "packages/lit"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
|
-
"url": "https://github.com/
|
|
20
|
+
"url": "https://github.com/prosekit/prosekit/issues"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
23
|
"ProseMirror"
|
|
@@ -64,17 +64,17 @@
|
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
66
|
"files": [
|
|
67
|
-
"dist"
|
|
67
|
+
"dist",
|
|
68
|
+
"src"
|
|
68
69
|
],
|
|
69
70
|
"dependencies": {
|
|
70
|
-
"@prosekit/web": "^0.7.
|
|
71
|
+
"@prosekit/web": "^0.7.6"
|
|
71
72
|
},
|
|
72
73
|
"devDependencies": {
|
|
73
|
-
"tsdown": "^0.
|
|
74
|
-
"typescript": "~5.
|
|
75
|
-
"
|
|
76
|
-
"@prosekit/config-vitest": "0.0.0"
|
|
77
|
-
"@prosekit/config-tsdown": "0.0.0"
|
|
74
|
+
"tsdown": "^0.16.2",
|
|
75
|
+
"typescript": "~5.9.3",
|
|
76
|
+
"@prosekit/config-tsdown": "0.0.0",
|
|
77
|
+
"@prosekit/config-vitest": "0.0.0"
|
|
78
78
|
},
|
|
79
79
|
"publishConfig": {
|
|
80
80
|
"dev": {}
|
|
@@ -84,12 +84,12 @@
|
|
|
84
84
|
"prosekit-lit": "./src/index.ts",
|
|
85
85
|
"prosekit-lit-autocomplete": "./src/components/autocomplete/index.gen.ts",
|
|
86
86
|
"prosekit-lit-block-handle": "./src/components/block-handle/index.gen.ts",
|
|
87
|
+
"prosekit-lit-drop-indicator": "./src/components/drop-indicator/index.gen.ts",
|
|
87
88
|
"prosekit-lit-inline-popover": "./src/components/inline-popover/index.gen.ts",
|
|
88
89
|
"prosekit-lit-popover": "./src/components/popover/index.gen.ts",
|
|
89
90
|
"prosekit-lit-resizable": "./src/components/resizable/index.gen.ts",
|
|
90
91
|
"prosekit-lit-table-handle": "./src/components/table-handle/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"
|
|
92
|
+
"prosekit-lit-tooltip": "./src/components/tooltip/index.gen.ts"
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"scripts": {
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { AutocompleteEmptyElement as AutocompleteEmpty } from '@prosekit/web/autocomplete'
|
|
2
|
+
|
|
3
|
+
export { AutocompleteItemElement as AutocompleteItem } from '@prosekit/web/autocomplete'
|
|
4
|
+
|
|
5
|
+
export { AutocompleteListElement as AutocompleteList } from '@prosekit/web/autocomplete'
|
|
6
|
+
|
|
7
|
+
export { AutocompletePopoverElement as AutocompletePopover } from '@prosekit/web/autocomplete'
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { BlockHandleAddElement as BlockHandleAdd } from '@prosekit/web/block-handle'
|
|
2
|
+
|
|
3
|
+
export { BlockHandleDraggableElement as BlockHandleDraggable } from '@prosekit/web/block-handle'
|
|
4
|
+
|
|
5
|
+
export { BlockHandlePopoverElement as BlockHandlePopover } from '@prosekit/web/block-handle'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { DropIndicatorElement as DropIndicator } from '@prosekit/web/drop-indicator'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { InlinePopoverElement as InlinePopover } from '@prosekit/web/inline-popover'
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export { TableHandleColumnRootElement as TableHandleColumnRoot } from '@prosekit/web/table-handle'
|
|
2
|
+
|
|
3
|
+
export { TableHandleColumnTriggerElement as TableHandleColumnTrigger } from '@prosekit/web/table-handle'
|
|
4
|
+
|
|
5
|
+
export { TableHandleDragPreviewElement as TableHandleDragPreview } from '@prosekit/web/table-handle'
|
|
6
|
+
|
|
7
|
+
export { TableHandleDropIndicatorElement as TableHandleDropIndicator } from '@prosekit/web/table-handle'
|
|
8
|
+
|
|
9
|
+
export { TableHandlePopoverContentElement as TableHandlePopoverContent } from '@prosekit/web/table-handle'
|
|
10
|
+
|
|
11
|
+
export { TableHandlePopoverItemElement as TableHandlePopoverItem } from '@prosekit/web/table-handle'
|
|
12
|
+
|
|
13
|
+
export { TableHandleRootElement as TableHandleRoot } from '@prosekit/web/table-handle'
|
|
14
|
+
|
|
15
|
+
export { TableHandleRowRootElement as TableHandleRowRoot } from '@prosekit/web/table-handle'
|
|
16
|
+
|
|
17
|
+
export { TableHandleRowTriggerElement as TableHandleRowTrigger } from '@prosekit/web/table-handle'
|
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {}
|