@prosekit/lit 0.2.6 → 0.2.8

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 (30) hide show
  1. package/dist/_tsup-dts-rollup.d.ts +30 -4
  2. package/dist/{chunk-3TPE2GKD.js → chunk-7E5POS6D.js} +4 -2
  3. package/dist/{chunk-CPC45JQ7.js → chunk-BFBBTEVM.js} +4 -2
  4. package/dist/{chunk-XHBZNZ2L.js → chunk-FKSZFUL3.js} +4 -2
  5. package/dist/chunk-LCDA7GFP.js +11 -0
  6. package/dist/{chunk-3AZDRLDR.js → chunk-UIHDPY7W.js} +0 -9
  7. package/dist/{chunk-I5EMQRE4.js → chunk-VPUV5WUG.js} +4 -2
  8. package/dist/prosekit-lit-autocomplete-empty.js +4 -2
  9. package/dist/prosekit-lit-autocomplete-item.js +3 -2
  10. package/dist/prosekit-lit-autocomplete-list.js +4 -3
  11. package/dist/prosekit-lit-autocomplete-popover.js +5 -4
  12. package/dist/prosekit-lit-block-popover.js +3 -2
  13. package/dist/prosekit-lit-combo-box-input.js +12 -3
  14. package/dist/prosekit-lit-combo-box-item.js +3 -2
  15. package/dist/prosekit-lit-combo-box-list.js +4 -2
  16. package/dist/prosekit-lit-combo-box.js +4 -3
  17. package/dist/prosekit-lit-drag-handle.js +4 -2
  18. package/dist/prosekit-lit-inline-popover.js +3 -2
  19. package/dist/prosekit-lit-popover-content.d.ts +3 -0
  20. package/dist/prosekit-lit-popover-content.js +17 -0
  21. package/dist/prosekit-lit-popover-root.d.ts +3 -0
  22. package/dist/prosekit-lit-popover-root.js +17 -0
  23. package/dist/prosekit-lit-popover-trigger.d.ts +3 -0
  24. package/dist/prosekit-lit-popover-trigger.js +12 -0
  25. package/dist/prosekit-lit-popover.js +3 -2
  26. package/dist/prosekit-lit-resizable-handle.d.ts +1 -1
  27. package/dist/prosekit-lit-resizable-handle.js +4 -2
  28. package/dist/prosekit-lit-resizable.d.ts +1 -1
  29. package/dist/prosekit-lit-resizable.js +4 -2
  30. package/package.json +34 -9
@@ -11,6 +11,11 @@ import { Keymap } from '@prosekit/core';
11
11
  import { LitElement } from 'lit';
12
12
  import { Options } from 'tsup';
13
13
  import type { Placement } from '@floating-ui/dom';
14
+ import { PopoverContentElement as PopoverContent } from '@aria-ui/popover';
15
+ import { PopoverContentProps as PopoverContentProps_2 } from '@aria-ui/popover';
16
+ import { PopoverRootElement as PopoverRoot } from '@aria-ui/popover';
17
+ import { PopoverRootProps as PopoverRootProps_2 } from '@aria-ui/popover';
18
+ import { PopoverTriggerElement as PopoverTrigger } from '@aria-ui/popover';
14
19
  import type { PropertyValueMap } from 'lit';
15
20
  import { PropertyValues } from 'lit';
16
21
  import type { ProseMirrorNode } from '@prosekit/pm/model';
@@ -635,6 +640,8 @@ export declare class ListManager<Item extends {
635
640
 
636
641
  /**
637
642
  * A custom element that displays a popover anchored to a reference element.
643
+ *
644
+ * @deprecated Use `prosekit-popover-root` instead.
638
645
  */
639
646
  export declare class Popover extends LightElement implements Partial<PopoverProps> {
640
647
  /**
@@ -693,6 +700,10 @@ export declare class Popover extends LightElement implements Partial<PopoverProp
693
700
  */
694
701
  export declare const popoverAvailable: boolean;
695
702
 
703
+ export { PopoverContent }
704
+
705
+ export declare type PopoverContentProps = Partial<PopoverContentProps_2>;
706
+
696
707
  export declare interface PopoverProps {
697
708
  /**
698
709
  * Whether the popover is open.
@@ -726,6 +737,15 @@ declare const popoverPropsNames: readonly ["open", "onOpenChange", "reference",
726
737
  export { popoverPropsNames }
727
738
  export { popoverPropsNames as propNames_alias_15 }
728
739
 
740
+ export { PopoverRoot }
741
+
742
+ export declare type PopoverRootProps = Partial<PopoverRootProps_2>;
743
+
744
+ export { PopoverTrigger }
745
+
746
+ export declare interface PopoverTriggerProps {
747
+ }
748
+
729
749
  /**
730
750
  * @public
731
751
  */
@@ -875,20 +895,26 @@ export { propNames_5 as propNames_alias_12 }
875
895
  * @internal
876
896
  */
877
897
  declare const propNames_6: readonly ["width", "height", "aspectRatio", "onSizeChangeStart", "onSizeChange", "onSizeChangeEnd"];
878
- export { propNames_6 as propNames_alias_16 }
879
- export { propNames_6 as propNames_alias_17 }
898
+ export { propNames_6 as propNames_alias_19 }
899
+ export { propNames_6 as propNames_alias_20 }
880
900
 
881
901
  /**
882
902
  * @internal
883
903
  */
884
904
  declare const propNames_7: readonly [];
885
- export { propNames_7 as propNames_alias_18 }
886
- export { propNames_7 as propNames_alias_19 }
905
+ export { propNames_7 as propNames_alias_21 }
906
+ export { propNames_7 as propNames_alias_22 }
887
907
 
888
908
  export declare const propNames_alias_13: readonly ["editor"];
889
909
 
890
910
  export declare const propNames_alias_14: readonly ["editor", "available", "open", "onOpenChange", "reference", "positioning"];
891
911
 
912
+ export declare const propNames_alias_16: (keyof PopoverContentProps_2)[];
913
+
914
+ export declare const propNames_alias_17: (keyof PopoverRootProps_2)[];
915
+
916
+ export declare const propNames_alias_18: never[];
917
+
892
918
  export declare const propNames_alias_5: readonly ["editor", "regex", "positioning"];
893
919
 
894
920
  export declare const propNames_alias_6: readonly ["editor"];
@@ -2,9 +2,11 @@ import {
2
2
  comboBoxContext
3
3
  } from "./chunk-C4MW43I4.js";
4
4
  import {
5
- LightElement,
5
+ LightElement
6
+ } from "./chunk-UIHDPY7W.js";
7
+ import {
6
8
  defineCustomElement
7
- } from "./chunk-3AZDRLDR.js";
9
+ } from "./chunk-LCDA7GFP.js";
8
10
 
9
11
  // src/components/combo-box-item/component.ts
10
12
  import { ContextConsumer } from "@lit/context";
@@ -5,9 +5,11 @@ import {
5
5
  ListManager
6
6
  } from "./chunk-MZAHIYA5.js";
7
7
  import {
8
- LightElement,
8
+ LightElement
9
+ } from "./chunk-UIHDPY7W.js";
10
+ import {
9
11
  defineCustomElement
10
- } from "./chunk-3AZDRLDR.js";
12
+ } from "./chunk-LCDA7GFP.js";
11
13
 
12
14
  // src/components/autocomplete-popover/context.ts
13
15
  import { createContext } from "@lit/context";
@@ -1,7 +1,9 @@
1
1
  import {
2
- LightElement,
2
+ LightElement
3
+ } from "./chunk-UIHDPY7W.js";
4
+ import {
3
5
  defineCustomElement
4
- } from "./chunk-3AZDRLDR.js";
6
+ } from "./chunk-LCDA7GFP.js";
5
7
 
6
8
  // src/components/popover/index.ts
7
9
  import "@floating-ui/dom";
@@ -0,0 +1,11 @@
1
+ // src/utils/define-custom-element.ts
2
+ function defineCustomElement(name, constructor, options) {
3
+ if (typeof customElements === "undefined") {
4
+ return;
5
+ }
6
+ customElements.define(name, constructor, options);
7
+ }
8
+
9
+ export {
10
+ defineCustomElement
11
+ };
@@ -1,11 +1,3 @@
1
- // src/utils/define-custom-element.ts
2
- function defineCustomElement(name, constructor, options) {
3
- if (typeof customElements === "undefined") {
4
- return;
5
- }
6
- customElements.define(name, constructor, options);
7
- }
8
-
9
1
  // src/components/block-element/index.ts
10
2
  import { LitElement } from "lit";
11
3
  var LightElement = class extends LitElement {
@@ -34,6 +26,5 @@ var LightElement = class extends LitElement {
34
26
  };
35
27
 
36
28
  export {
37
- defineCustomElement,
38
29
  LightElement
39
30
  };
@@ -2,9 +2,11 @@ import {
2
2
  autocompleteListContext
3
3
  } from "./chunk-5CI65R73.js";
4
4
  import {
5
- LightElement,
5
+ LightElement
6
+ } from "./chunk-UIHDPY7W.js";
7
+ import {
6
8
  defineCustomElement
7
- } from "./chunk-3AZDRLDR.js";
9
+ } from "./chunk-LCDA7GFP.js";
8
10
 
9
11
  // src/components/autocomplete-item/component.ts
10
12
  import { ContextConsumer } from "@lit/context";
@@ -2,9 +2,11 @@ import {
2
2
  autocompleteListContext
3
3
  } from "./chunk-5CI65R73.js";
4
4
  import {
5
- LightElement,
5
+ LightElement
6
+ } from "./chunk-UIHDPY7W.js";
7
+ import {
6
8
  defineCustomElement
7
- } from "./chunk-3AZDRLDR.js";
9
+ } from "./chunk-LCDA7GFP.js";
8
10
 
9
11
  // src/components/autocomplete-empty/index.ts
10
12
  import { ContextConsumer } from "@lit/context";
@@ -1,9 +1,10 @@
1
1
  import {
2
2
  AutocompleteItem,
3
3
  propNames
4
- } from "./chunk-I5EMQRE4.js";
4
+ } from "./chunk-VPUV5WUG.js";
5
5
  import "./chunk-5CI65R73.js";
6
- import "./chunk-3AZDRLDR.js";
6
+ import "./chunk-UIHDPY7W.js";
7
+ import "./chunk-LCDA7GFP.js";
7
8
  export {
8
9
  AutocompleteItem,
9
10
  propNames
@@ -1,11 +1,12 @@
1
1
  import {
2
2
  AutocompleteList,
3
3
  propNames
4
- } from "./chunk-CPC45JQ7.js";
5
- import "./chunk-I5EMQRE4.js";
4
+ } from "./chunk-BFBBTEVM.js";
5
+ import "./chunk-VPUV5WUG.js";
6
6
  import "./chunk-5CI65R73.js";
7
7
  import "./chunk-MZAHIYA5.js";
8
- import "./chunk-3AZDRLDR.js";
8
+ import "./chunk-UIHDPY7W.js";
9
+ import "./chunk-LCDA7GFP.js";
9
10
  export {
10
11
  AutocompleteList,
11
12
  propNames
@@ -1,15 +1,16 @@
1
1
  import {
2
2
  autocompletePopoverContext
3
- } from "./chunk-CPC45JQ7.js";
4
- import "./chunk-I5EMQRE4.js";
3
+ } from "./chunk-BFBBTEVM.js";
4
+ import "./chunk-VPUV5WUG.js";
5
5
  import "./chunk-5CI65R73.js";
6
6
  import "./chunk-MZAHIYA5.js";
7
7
  import {
8
8
  Popover
9
- } from "./chunk-XHBZNZ2L.js";
9
+ } from "./chunk-FKSZFUL3.js";
10
+ import "./chunk-UIHDPY7W.js";
10
11
  import {
11
12
  defineCustomElement
12
- } from "./chunk-3AZDRLDR.js";
13
+ } from "./chunk-LCDA7GFP.js";
13
14
 
14
15
  // src/components/autocomplete-popover/index.ts
15
16
  import { ContextProvider } from "@lit/context";
@@ -3,10 +3,11 @@ import {
3
3
  } from "./chunk-S72UTR5M.js";
4
4
  import {
5
5
  Popover
6
- } from "./chunk-XHBZNZ2L.js";
6
+ } from "./chunk-FKSZFUL3.js";
7
+ import "./chunk-UIHDPY7W.js";
7
8
  import {
8
9
  defineCustomElement
9
- } from "./chunk-3AZDRLDR.js";
10
+ } from "./chunk-LCDA7GFP.js";
10
11
 
11
12
  // src/components/block-popover/index.ts
12
13
  import { ContextProvider } from "@lit/context";
@@ -2,9 +2,11 @@ import {
2
2
  comboBoxContext
3
3
  } from "./chunk-C4MW43I4.js";
4
4
  import {
5
- LightElement,
5
+ LightElement
6
+ } from "./chunk-UIHDPY7W.js";
7
+ import {
6
8
  defineCustomElement
7
- } from "./chunk-3AZDRLDR.js";
9
+ } from "./chunk-LCDA7GFP.js";
8
10
 
9
11
  // src/components/combo-box-input/index.ts
10
12
  import { ContextConsumer } from "@lit/context";
@@ -69,7 +71,14 @@ var ComboBoxInput = class extends LightElement {
69
71
  */
70
72
  render() {
71
73
  var _a, _b;
72
- return html`<input placeholder="${this.placeholder}" @keydown="${(event) => this.handleKeydown(event)}" @input="${(event) => this.handleInput(event)}" .value="${(_b = (_a = this.comboBoxContext.value) == null ? void 0 : _a.inputValue) != null ? _b : ""}">`;
74
+ return html`
75
+ <input
76
+ placeholder=${this.placeholder}
77
+ @keydown=${(event) => this.handleKeydown(event)}
78
+ @input=${(event) => this.handleInput(event)}
79
+ .value=${(_b = (_a = this.comboBoxContext.value) == null ? void 0 : _a.inputValue) != null ? _b : ""}
80
+ ></input>
81
+ `;
73
82
  }
74
83
  };
75
84
  /**
@@ -1,9 +1,10 @@
1
1
  import {
2
2
  ComboBoxItem,
3
3
  propNames
4
- } from "./chunk-3TPE2GKD.js";
4
+ } from "./chunk-7E5POS6D.js";
5
5
  import "./chunk-C4MW43I4.js";
6
- import "./chunk-3AZDRLDR.js";
6
+ import "./chunk-UIHDPY7W.js";
7
+ import "./chunk-LCDA7GFP.js";
7
8
  export {
8
9
  ComboBoxItem,
9
10
  propNames
@@ -2,9 +2,11 @@ import {
2
2
  comboBoxContext
3
3
  } from "./chunk-C4MW43I4.js";
4
4
  import {
5
- LightElement,
5
+ LightElement
6
+ } from "./chunk-UIHDPY7W.js";
7
+ import {
6
8
  defineCustomElement
7
- } from "./chunk-3AZDRLDR.js";
9
+ } from "./chunk-LCDA7GFP.js";
8
10
 
9
11
  // src/components/combo-box-list/component.ts
10
12
  import { ContextConsumer } from "@lit/context";
@@ -1,16 +1,17 @@
1
- import "./chunk-3TPE2GKD.js";
1
+ import "./chunk-7E5POS6D.js";
2
2
  import {
3
3
  ListManager
4
4
  } from "./chunk-MZAHIYA5.js";
5
5
  import {
6
6
  Popover
7
- } from "./chunk-XHBZNZ2L.js";
7
+ } from "./chunk-FKSZFUL3.js";
8
8
  import {
9
9
  comboBoxContext
10
10
  } from "./chunk-C4MW43I4.js";
11
+ import "./chunk-UIHDPY7W.js";
11
12
  import {
12
13
  defineCustomElement
13
- } from "./chunk-3AZDRLDR.js";
14
+ } from "./chunk-LCDA7GFP.js";
14
15
 
15
16
  // src/components/combo-box/index.ts
16
17
  import { ContextProvider } from "@lit/context";
@@ -2,9 +2,11 @@ import {
2
2
  blockPopoverContext
3
3
  } from "./chunk-S72UTR5M.js";
4
4
  import {
5
- LightElement,
5
+ LightElement
6
+ } from "./chunk-UIHDPY7W.js";
7
+ import {
6
8
  defineCustomElement
7
- } from "./chunk-3AZDRLDR.js";
9
+ } from "./chunk-LCDA7GFP.js";
8
10
 
9
11
  // src/components/drag-handle/index.ts
10
12
  import { ContextConsumer } from "@lit/context";
@@ -1,10 +1,11 @@
1
1
  import {
2
2
  Popover,
3
3
  popoverPropsNames
4
- } from "./chunk-XHBZNZ2L.js";
4
+ } from "./chunk-FKSZFUL3.js";
5
+ import "./chunk-UIHDPY7W.js";
5
6
  import {
6
7
  defineCustomElement
7
- } from "./chunk-3AZDRLDR.js";
8
+ } from "./chunk-LCDA7GFP.js";
8
9
 
9
10
  // src/components/inline-popover/index.ts
10
11
  import "@prosekit/core";
@@ -0,0 +1,3 @@
1
+ export { PopoverContent } from './_tsup-dts-rollup';
2
+ export { PopoverContentProps } from './_tsup-dts-rollup';
3
+ export { propNames_alias_16 as propNames } from './_tsup-dts-rollup';
@@ -0,0 +1,17 @@
1
+ import {
2
+ defineCustomElement
3
+ } from "./chunk-LCDA7GFP.js";
4
+
5
+ // src/components/popover-content/index.ts
6
+ import {
7
+ PopoverContentElement,
8
+ defaultPopoverContentProps
9
+ } from "@aria-ui/popover";
10
+ var propNames = Object.keys(
11
+ defaultPopoverContentProps
12
+ );
13
+ defineCustomElement("prosekit-popover-content", PopoverContentElement);
14
+ export {
15
+ PopoverContentElement as PopoverContent,
16
+ propNames
17
+ };
@@ -0,0 +1,3 @@
1
+ export { PopoverRoot } from './_tsup-dts-rollup';
2
+ export { PopoverRootProps } from './_tsup-dts-rollup';
3
+ export { propNames_alias_17 as propNames } from './_tsup-dts-rollup';
@@ -0,0 +1,17 @@
1
+ import {
2
+ defineCustomElement
3
+ } from "./chunk-LCDA7GFP.js";
4
+
5
+ // src/components/popover-root/index.ts
6
+ import {
7
+ PopoverRootElement,
8
+ defaultPopoverRootProps
9
+ } from "@aria-ui/popover";
10
+ var propNames = Object.keys(
11
+ defaultPopoverRootProps
12
+ );
13
+ defineCustomElement("prosekit-popover-root", PopoverRootElement);
14
+ export {
15
+ PopoverRootElement as PopoverRoot,
16
+ propNames
17
+ };
@@ -0,0 +1,3 @@
1
+ export { PopoverTrigger } from './_tsup-dts-rollup';
2
+ export { PopoverTriggerProps } from './_tsup-dts-rollup';
3
+ export { propNames_alias_18 as propNames } from './_tsup-dts-rollup';
@@ -0,0 +1,12 @@
1
+ import {
2
+ defineCustomElement
3
+ } from "./chunk-LCDA7GFP.js";
4
+
5
+ // src/components/popover-trigger/index.ts
6
+ import { PopoverTriggerElement } from "@aria-ui/popover";
7
+ var propNames = [];
8
+ defineCustomElement("prosekit-popover-trigger", PopoverTriggerElement);
9
+ export {
10
+ PopoverTriggerElement as PopoverTrigger,
11
+ propNames
12
+ };
@@ -1,8 +1,9 @@
1
1
  import {
2
2
  Popover,
3
3
  popoverPropsNames
4
- } from "./chunk-XHBZNZ2L.js";
5
- import "./chunk-3AZDRLDR.js";
4
+ } from "./chunk-FKSZFUL3.js";
5
+ import "./chunk-UIHDPY7W.js";
6
+ import "./chunk-LCDA7GFP.js";
6
7
  export {
7
8
  Popover,
8
9
  popoverPropsNames,
@@ -1,3 +1,3 @@
1
1
  export { ResizableHandle_alias_1 as ResizableHandle } from './_tsup-dts-rollup';
2
2
  export { ResizableHandleProps_alias_1 as ResizableHandleProps } from './_tsup-dts-rollup';
3
- export { propNames_alias_19 as propNames } from './_tsup-dts-rollup';
3
+ export { propNames_alias_22 as propNames } from './_tsup-dts-rollup';
@@ -2,9 +2,11 @@ import {
2
2
  resizableContext
3
3
  } from "./chunk-WEUGKLVB.js";
4
4
  import {
5
- LightElement,
5
+ LightElement
6
+ } from "./chunk-UIHDPY7W.js";
7
+ import {
6
8
  defineCustomElement
7
- } from "./chunk-3AZDRLDR.js";
9
+ } from "./chunk-LCDA7GFP.js";
8
10
 
9
11
  // src/components/resizable-handle/component.ts
10
12
  import { ContextConsumer } from "@lit/context";
@@ -1,3 +1,3 @@
1
1
  export { Resizable_alias_1 as Resizable } from './_tsup-dts-rollup';
2
- export { propNames_alias_17 as propNames } from './_tsup-dts-rollup';
2
+ export { propNames_alias_20 as propNames } from './_tsup-dts-rollup';
3
3
  export { ResizableProps_alias_1 as ResizableProps } from './_tsup-dts-rollup';
@@ -2,9 +2,11 @@ import {
2
2
  resizableContext
3
3
  } from "./chunk-WEUGKLVB.js";
4
4
  import {
5
- LightElement,
5
+ LightElement
6
+ } from "./chunk-UIHDPY7W.js";
7
+ import {
6
8
  defineCustomElement
7
- } from "./chunk-3AZDRLDR.js";
9
+ } from "./chunk-LCDA7GFP.js";
8
10
 
9
11
  // src/components/resizable/component.ts
10
12
  import { ContextProvider } from "@lit/context";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@prosekit/lit",
3
3
  "type": "module",
4
- "version": "0.2.6",
4
+ "version": "0.2.8",
5
5
  "private": false,
6
6
  "author": {
7
7
  "name": "ocavue",
@@ -90,6 +90,21 @@
90
90
  "import": "./dist/prosekit-lit-popover.js",
91
91
  "default": "./dist/prosekit-lit-popover.js"
92
92
  },
93
+ "./popover-content": {
94
+ "types": "./dist/prosekit-lit-popover-content.d.ts",
95
+ "import": "./dist/prosekit-lit-popover-content.js",
96
+ "default": "./dist/prosekit-lit-popover-content.js"
97
+ },
98
+ "./popover-root": {
99
+ "types": "./dist/prosekit-lit-popover-root.d.ts",
100
+ "import": "./dist/prosekit-lit-popover-root.js",
101
+ "default": "./dist/prosekit-lit-popover-root.js"
102
+ },
103
+ "./popover-trigger": {
104
+ "types": "./dist/prosekit-lit-popover-trigger.d.ts",
105
+ "import": "./dist/prosekit-lit-popover-trigger.js",
106
+ "default": "./dist/prosekit-lit-popover-trigger.js"
107
+ },
93
108
  "./resizable": {
94
109
  "types": "./dist/prosekit-lit-resizable.d.ts",
95
110
  "import": "./dist/prosekit-lit-resizable.js",
@@ -105,23 +120,24 @@
105
120
  "dist"
106
121
  ],
107
122
  "dependencies": {
123
+ "@aria-ui/core": "^0.0.9",
124
+ "@aria-ui/popover": "^0.0.7",
108
125
  "@floating-ui/dom": "^1.6.3",
109
126
  "@lit/context": "^1.1.0",
110
127
  "@prosekit/core": "^0.4.0",
111
- "@prosekit/extensions": "^0.3.2",
112
- "@prosekit/pm": "^0.1.1",
128
+ "@prosekit/extensions": "^0.4.2",
129
+ "@prosekit/pm": "^0.1.2",
113
130
  "@superhuman/command-score": "^0.5.0",
114
- "@zag-js/dismissable": "^0.35.0",
115
- "@zag-js/dom-query": "^0.35.0",
116
- "@zag-js/utils": "^0.35.0",
131
+ "@zag-js/dismissable": "^0.41.0",
132
+ "@zag-js/dom-query": "^0.41.0",
133
+ "@zag-js/utils": "^0.41.0",
117
134
  "lit": "^3.1.2"
118
135
  },
119
136
  "devDependencies": {
120
137
  "@prosekit/dev": "*",
121
- "minify-literals": "^1.0.8",
122
138
  "tsup": "^8.0.2",
123
- "typescript": "^5.3.3",
124
- "vitest": "^1.2.2"
139
+ "typescript": "^5.4.3",
140
+ "vitest": "^1.4.0"
125
141
  },
126
142
  "scripts": {
127
143
  "build:tsup": "tsup",
@@ -169,6 +185,15 @@
169
185
  "popover": [
170
186
  "./dist/prosekit-lit-popover.d.ts"
171
187
  ],
188
+ "popover-content": [
189
+ "./dist/prosekit-lit-popover-content.d.ts"
190
+ ],
191
+ "popover-root": [
192
+ "./dist/prosekit-lit-popover-root.d.ts"
193
+ ],
194
+ "popover-trigger": [
195
+ "./dist/prosekit-lit-popover-trigger.d.ts"
196
+ ],
172
197
  "resizable": [
173
198
  "./dist/prosekit-lit-resizable.d.ts"
174
199
  ],