@prosekit/lit 0.0.16 → 0.0.17
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.
@@ -240,7 +240,9 @@ declare class ComboBoxItem extends LightBlockElement {
|
|
240
240
|
export { ComboBoxItem }
|
241
241
|
export { ComboBoxItem as ComboBoxItem_alias_1 }
|
242
242
|
|
243
|
-
declare type ComboBoxItemProps =
|
243
|
+
declare type ComboBoxItemProps = {
|
244
|
+
onSelect?: VoidFunction;
|
245
|
+
};
|
244
246
|
export { ComboBoxItemProps }
|
245
247
|
export { ComboBoxItemProps as ComboBoxItemProps_alias_1 }
|
246
248
|
|
@@ -251,11 +253,13 @@ declare class ComboBoxList extends LightBlockElement {
|
|
251
253
|
export { ComboBoxList }
|
252
254
|
export { ComboBoxList as ComboBoxList_alias_1 }
|
253
255
|
|
254
|
-
declare type ComboBoxListProps =
|
256
|
+
declare type ComboBoxListProps = {
|
257
|
+
lang?: string;
|
258
|
+
};
|
255
259
|
export { ComboBoxListProps }
|
256
260
|
export { ComboBoxListProps as ComboBoxListProps_alias_1 }
|
257
261
|
|
258
|
-
export declare interface ComboBoxProps {
|
262
|
+
export declare interface ComboBoxProps extends PopoverProps {
|
259
263
|
onDismiss?: VoidFunction;
|
260
264
|
}
|
261
265
|
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@prosekit/lit",
|
3
3
|
"type": "module",
|
4
|
-
"version": "0.0.
|
4
|
+
"version": "0.0.17",
|
5
5
|
"private": false,
|
6
6
|
"author": {
|
7
7
|
"name": "ocavue",
|
@@ -82,8 +82,8 @@
|
|
82
82
|
"dependencies": {
|
83
83
|
"@floating-ui/dom": "^1.5.3",
|
84
84
|
"@lit/context": "^1.0.0",
|
85
|
-
"@prosekit/core": "^0.0.
|
86
|
-
"@prosekit/extensions": "^0.0.
|
85
|
+
"@prosekit/core": "^0.0.13",
|
86
|
+
"@prosekit/extensions": "^0.0.15",
|
87
87
|
"@prosekit/pm": "^0.0.6",
|
88
88
|
"@superhuman/command-score": "^0.5.0",
|
89
89
|
"lit": "^3.0.0"
|
@@ -94,7 +94,7 @@
|
|
94
94
|
"tsup": "^7.2.0",
|
95
95
|
"typescript": "^5.2.2",
|
96
96
|
"vitest": "^0.34.6",
|
97
|
-
"vue": "^3.3.
|
97
|
+
"vue": "^3.3.6"
|
98
98
|
},
|
99
99
|
"scripts": {
|
100
100
|
"build:tsup": "tsup",
|