@prosekit/solid 0.0.15 → 0.0.16
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.
@@ -16,6 +16,7 @@ import { Keymap } from '@prosekit/core';
|
|
16
16
|
import { Options } from 'tsup';
|
17
17
|
import { ParentProps } from 'solid-js';
|
18
18
|
import { PopoverOptions } from '@prosekit/lit/autocomplete-popover';
|
19
|
+
import type { PopoverProps as PopoverProps_2 } from '@prosekit/lit/popover';
|
19
20
|
import { UserProjectConfigExport } from 'vitest/dist/config.js';
|
20
21
|
|
21
22
|
declare const AutocompleteEmpty: Component<AutocompleteEmptyProps>;
|
@@ -107,8 +108,15 @@ declare interface EditorContext {
|
|
107
108
|
|
108
109
|
export declare const editorContext: Context<EditorContext | null>;
|
109
110
|
|
111
|
+
export declare const Popover: Component<PopoverProps>;
|
112
|
+
|
110
113
|
export { PopoverOptions }
|
111
114
|
|
115
|
+
export declare type PopoverProps = {
|
116
|
+
class?: string;
|
117
|
+
children?: JSXElement;
|
118
|
+
} & PopoverProps_2;
|
119
|
+
|
112
120
|
declare const ProseKit: Component<ProseKitProps>;
|
113
121
|
export { ProseKit }
|
114
122
|
export { ProseKit as ProseKit_alias_1 }
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@prosekit/solid",
|
3
3
|
"type": "module",
|
4
|
-
"version": "0.0.
|
4
|
+
"version": "0.0.16",
|
5
5
|
"private": false,
|
6
6
|
"author": {
|
7
7
|
"name": "ocavue",
|
@@ -74,14 +74,19 @@
|
|
74
74
|
"types": "./dist/prosekit-solid-combo-box-list.d.ts",
|
75
75
|
"import": "./dist/prosekit-solid-combo-box-list.js",
|
76
76
|
"default": "./dist/prosekit-solid-combo-box-list.js"
|
77
|
+
},
|
78
|
+
"./popover": {
|
79
|
+
"types": "./dist/prosekit-solid-popover.d.ts",
|
80
|
+
"import": "./dist/prosekit-solid-popover.js",
|
81
|
+
"default": "./dist/prosekit-solid-popover.js"
|
77
82
|
}
|
78
83
|
},
|
79
84
|
"files": [
|
80
85
|
"dist"
|
81
86
|
],
|
82
87
|
"dependencies": {
|
83
|
-
"@prosekit/core": "^0.0.
|
84
|
-
"@prosekit/lit": "^0.0.
|
88
|
+
"@prosekit/core": "^0.0.14",
|
89
|
+
"@prosekit/lit": "^0.0.18"
|
85
90
|
},
|
86
91
|
"peerDependencies": {
|
87
92
|
"solid-js": ">= 1.7.0"
|
@@ -134,6 +139,9 @@
|
|
134
139
|
],
|
135
140
|
"combo-box-list": [
|
136
141
|
"./dist/prosekit-solid-combo-box-list.d.ts"
|
142
|
+
],
|
143
|
+
"popover": [
|
144
|
+
"./dist/prosekit-solid-popover.d.ts"
|
137
145
|
]
|
138
146
|
}
|
139
147
|
}
|