@prosekit/vue 0.7.0-beta.0 → 0.7.0-beta.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.
Files changed (116) hide show
  1. package/dist/prosekit-vue-autocomplete.d.ts +216 -25
  2. package/dist/prosekit-vue-autocomplete.d.ts.map +1 -1
  3. package/dist/prosekit-vue-autocomplete.js +270 -9
  4. package/dist/prosekit-vue-autocomplete.js.map +1 -1
  5. package/dist/prosekit-vue-block-handle.d.ts +202 -19
  6. package/dist/prosekit-vue-block-handle.d.ts.map +1 -1
  7. package/dist/prosekit-vue-block-handle.js +211 -7
  8. package/dist/prosekit-vue-block-handle.js.map +1 -1
  9. package/dist/prosekit-vue-drop-indicator.d.ts +24 -8
  10. package/dist/prosekit-vue-drop-indicator.d.ts.map +1 -1
  11. package/dist/prosekit-vue-drop-indicator.js +36 -3
  12. package/dist/prosekit-vue-drop-indicator.js.map +1 -1
  13. package/dist/prosekit-vue-inline-popover.d.ts +200 -9
  14. package/dist/prosekit-vue-inline-popover.d.ts.map +1 -1
  15. package/dist/prosekit-vue-inline-popover.js +171 -5
  16. package/dist/prosekit-vue-inline-popover.js.map +1 -1
  17. package/dist/prosekit-vue-menu.d.ts +287 -0
  18. package/dist/prosekit-vue-menu.d.ts.map +1 -0
  19. package/dist/prosekit-vue-menu.js +313 -0
  20. package/dist/prosekit-vue-menu.js.map +1 -0
  21. package/dist/prosekit-vue-popover.d.ts +219 -19
  22. package/dist/prosekit-vue-popover.d.ts.map +1 -1
  23. package/dist/prosekit-vue-popover.js +222 -7
  24. package/dist/prosekit-vue-popover.js.map +1 -1
  25. package/dist/prosekit-vue-resizable.d.ts +50 -15
  26. package/dist/prosekit-vue-resizable.d.ts.map +1 -1
  27. package/dist/prosekit-vue-resizable.js +92 -7
  28. package/dist/prosekit-vue-resizable.js.map +1 -1
  29. package/dist/prosekit-vue-table-handle.d.ts +427 -55
  30. package/dist/prosekit-vue-table-handle.d.ts.map +1 -1
  31. package/dist/prosekit-vue-table-handle.js +455 -19
  32. package/dist/prosekit-vue-table-handle.js.map +1 -1
  33. package/dist/prosekit-vue-tooltip.d.ts +203 -19
  34. package/dist/prosekit-vue-tooltip.d.ts.map +1 -1
  35. package/dist/prosekit-vue-tooltip.js +202 -7
  36. package/dist/prosekit-vue-tooltip.js.map +1 -1
  37. package/package.json +27 -17
  38. package/src/components/autocomplete/autocomplete-empty.gen.ts +21 -25
  39. package/src/components/autocomplete/autocomplete-item.gen.ts +80 -26
  40. package/src/components/autocomplete/autocomplete-popup.gen.ts +80 -0
  41. package/src/components/autocomplete/autocomplete-positioner.gen.ts +149 -0
  42. package/src/components/autocomplete/autocomplete-root.gen.ts +112 -0
  43. package/src/components/autocomplete/index.gen.ts +12 -4
  44. package/src/components/autocomplete/index.ts +27 -0
  45. package/src/components/block-handle/block-handle-add.gen.ts +51 -26
  46. package/src/components/block-handle/block-handle-draggable.gen.ts +51 -26
  47. package/src/components/block-handle/block-handle-popup.gen.ts +29 -0
  48. package/src/components/block-handle/block-handle-positioner.gen.ts +167 -0
  49. package/src/components/block-handle/block-handle-root.gen.ts +84 -0
  50. package/src/components/block-handle/index.gen.ts +13 -3
  51. package/src/components/block-handle/index.ts +27 -0
  52. package/src/components/drop-indicator/drop-indicator.gen.ts +57 -26
  53. package/src/components/drop-indicator/index.gen.ts +5 -1
  54. package/src/components/drop-indicator/index.ts +14 -0
  55. package/src/components/inline-popover/index.gen.ts +11 -1
  56. package/src/components/inline-popover/index.ts +22 -0
  57. package/src/components/inline-popover/inline-popover-popup.gen.ts +29 -0
  58. package/src/components/inline-popover/inline-popover-positioner.gen.ts +173 -0
  59. package/src/components/inline-popover/inline-popover-root.gen.ts +108 -0
  60. package/src/components/menu/index.gen.ts +19 -0
  61. package/src/components/menu/index.ts +37 -0
  62. package/src/components/menu/menu-item.gen.ts +91 -0
  63. package/src/components/menu/menu-popup.gen.ts +54 -0
  64. package/src/components/menu/menu-positioner.gen.ts +174 -0
  65. package/src/components/menu/menu-root.gen.ts +88 -0
  66. package/src/components/menu/menu-submenu-root.gen.ts +29 -0
  67. package/src/components/menu/menu-submenu-trigger.gen.ts +29 -0
  68. package/src/components/menu/menu-trigger.gen.ts +79 -0
  69. package/src/components/popover/index.gen.ts +11 -3
  70. package/src/components/popover/index.ts +24 -0
  71. package/src/components/popover/popover-popup.gen.ts +29 -0
  72. package/src/components/popover/popover-positioner.gen.ts +174 -0
  73. package/src/components/popover/popover-root.gen.ts +88 -26
  74. package/src/components/popover/popover-trigger.gen.ts +88 -26
  75. package/src/components/resizable/index.gen.ts +8 -2
  76. package/src/components/resizable/index.ts +20 -0
  77. package/src/components/resizable/resizable-handle.gen.ts +46 -26
  78. package/src/components/resizable/resizable-root.gen.ts +87 -26
  79. package/src/components/table-handle/index.gen.ts +17 -9
  80. package/src/components/table-handle/index.ts +58 -0
  81. package/src/components/table-handle/table-handle-column-menu-root.gen.ts +62 -0
  82. package/src/components/table-handle/table-handle-column-menu-trigger.gen.ts +56 -0
  83. package/src/components/table-handle/table-handle-column-popup.gen.ts +29 -0
  84. package/src/components/table-handle/table-handle-column-positioner.gen.ts +197 -0
  85. package/src/components/table-handle/table-handle-drag-preview.gen.ts +49 -26
  86. package/src/components/table-handle/table-handle-drop-indicator.gen.ts +49 -26
  87. package/src/components/table-handle/table-handle-root.gen.ts +51 -26
  88. package/src/components/table-handle/table-handle-row-menu-root.gen.ts +62 -0
  89. package/src/components/table-handle/table-handle-row-menu-trigger.gen.ts +56 -0
  90. package/src/components/table-handle/table-handle-row-popup.gen.ts +29 -0
  91. package/src/components/table-handle/table-handle-row-positioner.gen.ts +197 -0
  92. package/src/components/tooltip/index.gen.ts +11 -3
  93. package/src/components/tooltip/index.ts +24 -0
  94. package/src/components/tooltip/tooltip-popup.gen.ts +29 -0
  95. package/src/components/tooltip/tooltip-positioner.gen.ts +174 -0
  96. package/src/components/tooltip/tooltip-root.gen.ts +81 -26
  97. package/src/components/tooltip/tooltip-trigger.gen.ts +55 -26
  98. package/src/extensions/vue-node-view.spec.ts +156 -0
  99. package/dist/create-component.js +0 -45
  100. package/dist/create-component.js.map +0 -1
  101. package/dist/create-emits.d.ts +0 -5
  102. package/dist/create-emits.d.ts.map +0 -1
  103. package/src/components/autocomplete/autocomplete-list.gen.ts +0 -33
  104. package/src/components/autocomplete/autocomplete-popover.gen.ts +0 -33
  105. package/src/components/block-handle/block-handle-popover.gen.ts +0 -33
  106. package/src/components/create-component.ts +0 -84
  107. package/src/components/create-emits.ts +0 -8
  108. package/src/components/inline-popover/inline-popover.gen.ts +0 -33
  109. package/src/components/popover/popover-content.gen.ts +0 -33
  110. package/src/components/table-handle/table-handle-column-root.gen.ts +0 -33
  111. package/src/components/table-handle/table-handle-column-trigger.gen.ts +0 -33
  112. package/src/components/table-handle/table-handle-popover-content.gen.ts +0 -33
  113. package/src/components/table-handle/table-handle-popover-item.gen.ts +0 -33
  114. package/src/components/table-handle/table-handle-row-root.gen.ts +0 -33
  115. package/src/components/table-handle/table-handle-row-trigger.gen.ts +0 -33
  116. package/src/components/tooltip/tooltip-content.gen.ts +0 -33
@@ -1,11 +1,96 @@
1
- import { t as createComponent } from "./create-component.js";
2
- import { resizableHandleEvents, resizableHandleProps, resizableRootEvents, resizableRootProps } from "@prosekit/web/resizable";
3
- //#region src/components/resizable/resizable-handle.gen.ts
4
- const ResizableHandle = createComponent("prosekit-resizable-handle", "ResizableHandle", Object.keys(resizableHandleProps), Object.keys(resizableHandleEvents));
5
- //#endregion
1
+ import { computed, defineComponent, h, shallowRef, watchEffect } from "vue";
2
+ import { ResizeEndEvent, ResizeStartEvent, registerResizableHandleElement, registerResizableRootElement } from "@prosekit/web/resizable";
6
3
  //#region src/components/resizable/resizable-root.gen.ts
7
- const ResizableRoot = createComponent("prosekit-resizable-root", "ResizableRoot", Object.keys(resizableRootProps), Object.keys(resizableRootEvents));
4
+ /**
5
+ * This file is auto-generated by the "@aria-ui/cli" tool. Do not edit this file directly.
6
+ */
7
+ /**
8
+ * A Vue component that renders an `prosekit-resizable-root` custom element.
9
+ *
10
+ * @public
11
+ */
12
+ const ResizableRoot = /* @__PURE__ */ defineComponent((props, { slots }) => {
13
+ registerResizableRootElement();
14
+ const elementRef = shallowRef(null);
15
+ const splittedProps = computed(() => {
16
+ const { aspectRatio: p0, height: p1, width: p2, onResizeEnd: e0, onResizeStart: e1, ...restProps } = props;
17
+ return [[
18
+ p0,
19
+ p1,
20
+ p2,
21
+ e0,
22
+ e1
23
+ ], restProps];
24
+ });
25
+ const handlers = [];
26
+ watchEffect(() => {
27
+ const element = elementRef.value;
28
+ if (!element) return;
29
+ const [p0, p1, p2, e0, e1] = splittedProps.value[0];
30
+ Object.assign(element, {
31
+ aspectRatio: p0,
32
+ height: p1,
33
+ width: p2
34
+ });
35
+ handlers.length = 0;
36
+ handlers.push(e0);
37
+ handlers.push(e1);
38
+ });
39
+ watchEffect(() => {
40
+ const element = elementRef.value;
41
+ if (!element) return;
42
+ const ac = new AbortController();
43
+ for (const [index, eventName] of ["resizeEnd", "resizeStart"].entries()) element.addEventListener(eventName, (event) => {
44
+ handlers[index]?.(event);
45
+ }, { signal: ac.signal });
46
+ return () => ac.abort();
47
+ });
48
+ return () => {
49
+ const restProps = splittedProps.value[1];
50
+ return h("prosekit-resizable-root", {
51
+ ...restProps,
52
+ ref: elementRef
53
+ }, slots.default?.());
54
+ };
55
+ }, { props: [
56
+ "aspectRatio",
57
+ "height",
58
+ "width",
59
+ "onResizeEnd",
60
+ "onResizeStart"
61
+ ] });
62
+ //#endregion
63
+ //#region src/components/resizable/resizable-handle.gen.ts
64
+ /**
65
+ * This file is auto-generated by the "@aria-ui/cli" tool. Do not edit this file directly.
66
+ */
67
+ /**
68
+ * A Vue component that renders an `prosekit-resizable-handle` custom element.
69
+ *
70
+ * @public
71
+ */
72
+ const ResizableHandle = /* @__PURE__ */ defineComponent((props, { slots }) => {
73
+ registerResizableHandleElement();
74
+ const elementRef = shallowRef(null);
75
+ const splittedProps = computed(() => {
76
+ const { position: p0, ...restProps } = props;
77
+ return [[p0], restProps];
78
+ });
79
+ watchEffect(() => {
80
+ const element = elementRef.value;
81
+ if (!element) return;
82
+ const [p0] = splittedProps.value[0];
83
+ Object.assign(element, { position: p0 });
84
+ });
85
+ return () => {
86
+ const restProps = splittedProps.value[1];
87
+ return h("prosekit-resizable-handle", {
88
+ ...restProps,
89
+ ref: elementRef
90
+ }, slots.default?.());
91
+ };
92
+ }, { props: ["position"] });
8
93
  //#endregion
9
- export { ResizableHandle, ResizableRoot };
94
+ export { ResizableHandle, ResizableRoot, ResizeEndEvent, ResizeStartEvent };
10
95
 
11
96
  //# sourceMappingURL=prosekit-vue-resizable.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"prosekit-vue-resizable.js","names":[],"sources":["../src/components/resizable/resizable-handle.gen.ts","../src/components/resizable/resizable-root.gen.ts"],"sourcesContent":["import {\n resizableHandleProps,\n resizableHandleEvents,\n type ResizableHandleProps as Props,\n type ResizableHandleEvents as Events,\n} from '@prosekit/web/resizable'\nimport type { DefineSetupFnComponent, HTMLAttributes } from 'vue'\n\nimport { createComponent } from '../create-component.ts'\nimport type { CreateEmits } from '../create-emits.ts'\n\n/**\n * Props for the {@link ResizableHandle} component.\n */\nexport interface ResizableHandleProps extends Partial<Props> {}\n\n/**\n * Emits for the {@link ResizableHandle} component.\n */\nexport interface ResizableHandleEmits extends CreateEmits<Events> {}\n\nexport const ResizableHandle: DefineSetupFnComponent<\n ResizableHandleProps & HTMLAttributes,\n ResizableHandleEmits\n> = createComponent<\n ResizableHandleProps,\n ResizableHandleEmits\n>(\n 'prosekit-resizable-handle',\n 'ResizableHandle',\n Object.keys(resizableHandleProps),\n Object.keys(resizableHandleEvents),\n)\n","import {\n resizableRootProps,\n resizableRootEvents,\n type ResizableRootProps as Props,\n type ResizableRootEvents as Events,\n} from '@prosekit/web/resizable'\nimport type { DefineSetupFnComponent, HTMLAttributes } from 'vue'\n\nimport { createComponent } from '../create-component.ts'\nimport type { CreateEmits } from '../create-emits.ts'\n\n/**\n * Props for the {@link ResizableRoot} component.\n */\nexport interface ResizableRootProps extends Partial<Props> {}\n\n/**\n * Emits for the {@link ResizableRoot} component.\n */\nexport interface ResizableRootEmits extends CreateEmits<Events> {}\n\nexport const ResizableRoot: DefineSetupFnComponent<\n ResizableRootProps & HTMLAttributes,\n ResizableRootEmits\n> = createComponent<\n ResizableRootProps,\n ResizableRootEmits\n>(\n 'prosekit-resizable-root',\n 'ResizableRoot',\n Object.keys(resizableRootProps),\n Object.keys(resizableRootEvents),\n)\n"],"mappings":";;;AAqBA,MAAa,kBAGT,gBAIF,6BACA,mBACA,OAAO,KAAK,qBAAqB,EACjC,OAAO,KAAK,sBAAsB,CACnC;;;ACXD,MAAa,gBAGT,gBAIF,2BACA,iBACA,OAAO,KAAK,mBAAmB,EAC/B,OAAO,KAAK,oBAAoB,CACjC"}
1
+ {"version":3,"file":"prosekit-vue-resizable.js","names":[],"sources":["../src/components/resizable/resizable-root.gen.ts","../src/components/resizable/resizable-handle.gen.ts"],"sourcesContent":["/**\n * This file is auto-generated by the \"@aria-ui/cli\" tool. Do not edit this file directly.\n */\n\nimport { registerResizableRootElement, type ResizableRootEvents, type ResizableRootProps as ResizableRootElementProps } from '@prosekit/web/resizable';\nimport { defineComponent, h, type DefineSetupFnComponent, type HTMLAttributes, shallowRef, computed, watchEffect } from 'vue';\n\n/**\n * Props for the {@link ResizableRoot} Vue component.\n *\n * @public\n */\nexport interface ResizableRootProps {\n /**\n * The width of the resizable element.\n *\n * @default null\n */\n width?: ResizableRootElementProps['width'];\n /**\n * The height of the resizable element.\n *\n * @default null\n */\n height?: ResizableRootElementProps['height'];\n /**\n * The aspect ratio of the resizable element.\n *\n * @default null\n */\n aspectRatio?: ResizableRootElementProps['aspectRatio'];\n /** Emitted when a resize operation starts. */\n onResizeStart?: (event: ResizableRootEvents['resizeStart']) => void;\n /** Emitted when a resize operation ends. */\n onResizeEnd?: (event: ResizableRootEvents['resizeEnd']) => void;\n}\n\n/**\n * A Vue component that renders an `prosekit-resizable-root` custom element.\n *\n * @public\n */\nexport const ResizableRoot: DefineSetupFnComponent<ResizableRootProps & HTMLAttributes> = /* @__PURE__ */ defineComponent<ResizableRootProps & HTMLAttributes>(\n (props, { slots }) => {\n registerResizableRootElement();\n\n const elementRef = shallowRef<HTMLElement | null>(null);\n\n const splittedProps = computed(() => {\n const { aspectRatio: p0, height: p1, width: p2, onResizeEnd: e0, onResizeStart: e1, ...restProps } = props;\n return [[p0, p1, p2, e0, e1], restProps] as const;\n });\n\n const handlers: Array<((event: any) => void) | undefined> = [];\n\n watchEffect(() => {\n const element = elementRef.value;\n if (!element) return;\n\n const [p0, p1, p2, e0, e1] = splittedProps.value[0];\n\n Object.assign(element, { aspectRatio: p0, height: p1, width: p2 });\n\n handlers.length = 0;\n handlers.push(e0);\n handlers.push(e1);\n });\n\n watchEffect(() => {\n const element = elementRef.value;\n if (!element) return;\n\n const ac = new AbortController();\n for (const [index, eventName] of ['resizeEnd', 'resizeStart'].entries()) {\n element.addEventListener(\n eventName,\n (event: Event) => {\n handlers[index]?.(event);\n },\n { signal: ac.signal },\n );\n }\n return () => ac.abort();\n });\n\n return () => {\n const restProps = splittedProps.value[1];\n return h('prosekit-resizable-root', { ...restProps, ref: elementRef }, slots.default?.());\n };\n },\n { props: ['aspectRatio', 'height', 'width', 'onResizeEnd', 'onResizeStart'] },\n);\n\nexport type { ResizableRootEvents };\n","/**\n * This file is auto-generated by the \"@aria-ui/cli\" tool. Do not edit this file directly.\n */\n\nimport { registerResizableHandleElement, type ResizableHandleProps as ResizableHandleElementProps } from '@prosekit/web/resizable';\nimport { defineComponent, h, type DefineSetupFnComponent, type HTMLAttributes, shallowRef, computed, watchEffect } from 'vue';\n\n/**\n * Props for the {@link ResizableHandle} Vue component.\n *\n * @public\n */\nexport interface ResizableHandleProps {\n /**\n * The position of the handle.\n *\n * @default \"bottom-right\"\n */\n position?: ResizableHandleElementProps['position'];\n}\n\n/**\n * A Vue component that renders an `prosekit-resizable-handle` custom element.\n *\n * @public\n */\nexport const ResizableHandle: DefineSetupFnComponent<ResizableHandleProps & HTMLAttributes> = /* @__PURE__ */ defineComponent<ResizableHandleProps & HTMLAttributes>(\n (props, { slots }) => {\n registerResizableHandleElement();\n\n const elementRef = shallowRef<HTMLElement | null>(null);\n\n const splittedProps = computed(() => {\n const { position: p0, ...restProps } = props;\n return [[p0], restProps] as const;\n });\n\n watchEffect(() => {\n const element = elementRef.value;\n if (!element) return;\n\n const [p0] = splittedProps.value[0];\n\n Object.assign(element, { position: p0 });\n });\n\n return () => {\n const restProps = splittedProps.value[1];\n return h('prosekit-resizable-handle', { ...restProps, ref: elementRef }, slots.default?.());\n };\n },\n { props: ['position'] },\n);\n"],"mappings":";;;;;;;;;;;AA0CA,MAAa,gBAA6F,iCACvG,OAAO,EAAE,YAAY;AACpB,+BAA8B;CAE9B,MAAM,aAAa,WAA+B,KAAK;CAEvD,MAAM,gBAAgB,eAAe;EACnC,MAAM,EAAE,aAAa,IAAI,QAAQ,IAAI,OAAO,IAAI,aAAa,IAAI,eAAe,IAAI,GAAG,cAAc;AACrG,SAAO,CAAC;GAAC;GAAI;GAAI;GAAI;GAAI;GAAG,EAAE,UAAU;GACxC;CAEF,MAAM,WAAsD,EAAE;AAE9D,mBAAkB;EAChB,MAAM,UAAU,WAAW;AAC3B,MAAI,CAAC,QAAS;EAEd,MAAM,CAAC,IAAI,IAAI,IAAI,IAAI,MAAM,cAAc,MAAM;AAEjD,SAAO,OAAO,SAAS;GAAE,aAAa;GAAI,QAAQ;GAAI,OAAO;GAAI,CAAC;AAElE,WAAS,SAAS;AAClB,WAAS,KAAK,GAAG;AACjB,WAAS,KAAK,GAAG;GACjB;AAEF,mBAAkB;EAChB,MAAM,UAAU,WAAW;AAC3B,MAAI,CAAC,QAAS;EAEd,MAAM,KAAK,IAAI,iBAAiB;AAChC,OAAK,MAAM,CAAC,OAAO,cAAc,CAAC,aAAa,cAAc,CAAC,SAAS,CACrE,SAAQ,iBACN,YACC,UAAiB;AAChB,YAAS,SAAS,MAAM;KAE1B,EAAE,QAAQ,GAAG,QAAQ,CACtB;AAEH,eAAa,GAAG,OAAO;GACvB;AAEF,cAAa;EACX,MAAM,YAAY,cAAc,MAAM;AACtC,SAAO,EAAE,2BAA2B;GAAE,GAAG;GAAW,KAAK;GAAY,EAAE,MAAM,WAAW,CAAC;;GAG7F,EAAE,OAAO;CAAC;CAAe;CAAU;CAAS;CAAe;CAAgB,EAAE,CAC9E;;;;;;;;;;;ACjED,MAAa,kBAAiG,iCAC3G,OAAO,EAAE,YAAY;AACpB,iCAAgC;CAEhC,MAAM,aAAa,WAA+B,KAAK;CAEvD,MAAM,gBAAgB,eAAe;EACnC,MAAM,EAAE,UAAU,IAAI,GAAG,cAAc;AACvC,SAAO,CAAC,CAAC,GAAG,EAAE,UAAU;GACxB;AAEF,mBAAkB;EAChB,MAAM,UAAU,WAAW;AAC3B,MAAI,CAAC,QAAS;EAEd,MAAM,CAAC,MAAM,cAAc,MAAM;AAEjC,SAAO,OAAO,SAAS,EAAE,UAAU,IAAI,CAAC;GACxC;AAEF,cAAa;EACX,MAAM,YAAY,cAAc,MAAM;AACtC,SAAO,EAAE,6BAA6B;GAAE,GAAG;GAAW,KAAK;GAAY,EAAE,MAAM,WAAW,CAAC;;GAG/F,EAAE,OAAO,CAAC,WAAW,EAAE,CACxB"}
@@ -1,105 +1,477 @@
1
- import { t as CreateEmits } from "./create-emits.js";
2
1
  import { DefineSetupFnComponent, HTMLAttributes } from "vue";
3
- import { TableHandleColumnRootEvents, TableHandleColumnRootProps as TableHandleColumnRootProps$1, TableHandleColumnTriggerEvents, TableHandleColumnTriggerProps as TableHandleColumnTriggerProps$1, TableHandleDragPreviewEvents, TableHandleDragPreviewProps as TableHandleDragPreviewProps$1, TableHandleDropIndicatorEvents, TableHandleDropIndicatorProps as TableHandleDropIndicatorProps$1, TableHandlePopoverContentEvents, TableHandlePopoverContentProps as TableHandlePopoverContentProps$1, TableHandlePopoverItemEvents, TableHandlePopoverItemProps as TableHandlePopoverItemProps$1, TableHandleRootEvents, TableHandleRootProps as TableHandleRootProps$1, TableHandleRowRootEvents, TableHandleRowRootProps as TableHandleRowRootProps$1, TableHandleRowTriggerEvents, TableHandleRowTriggerProps as TableHandleRowTriggerProps$1 } from "@prosekit/web/table-handle";
2
+ import { TableHandleColumnMenuRootProps as TableHandleColumnMenuRootProps$1, TableHandleColumnMenuTriggerProps as TableHandleColumnMenuTriggerProps$1, TableHandleColumnPositionerProps as TableHandleColumnPositionerProps$1, TableHandleDragPreviewProps as TableHandleDragPreviewProps$1, TableHandleDropIndicatorProps as TableHandleDropIndicatorProps$1, TableHandleRootProps as TableHandleRootProps$1, TableHandleRowMenuRootProps as TableHandleRowMenuRootProps$1, TableHandleRowMenuTriggerProps as TableHandleRowMenuTriggerProps$1, TableHandleRowPositionerProps as TableHandleRowPositionerProps$1 } from "@prosekit/web/table-handle";
4
3
 
5
- //#region src/components/table-handle/table-handle-column-root.gen.d.ts
4
+ //#region src/components/table-handle/table-handle-column-popup.gen.d.ts
6
5
  /**
7
- * Props for the {@link TableHandleColumnRoot} component.
6
+ * Props for the {@link TableHandleColumnPopup} Vue component.
7
+ *
8
+ * @public
8
9
  */
9
- interface TableHandleColumnRootProps extends Partial<TableHandleColumnRootProps$1> {}
10
+ interface TableHandleColumnPopupProps {}
10
11
  /**
11
- * Emits for the {@link TableHandleColumnRoot} component.
12
+ * A Vue component that renders an `prosekit-table-handle-column-popup` custom element.
13
+ *
14
+ * @public
12
15
  */
13
- interface TableHandleColumnRootEmits extends CreateEmits<TableHandleColumnRootEvents> {}
14
- declare const TableHandleColumnRoot: DefineSetupFnComponent<TableHandleColumnRootProps & HTMLAttributes, TableHandleColumnRootEmits>;
16
+ declare const TableHandleColumnPopup: DefineSetupFnComponent<TableHandleColumnPopupProps & HTMLAttributes>;
15
17
  //#endregion
16
- //#region src/components/table-handle/table-handle-column-trigger.gen.d.ts
18
+ //#region src/components/table-handle/table-handle-column-positioner.gen.d.ts
17
19
  /**
18
- * Props for the {@link TableHandleColumnTrigger} component.
20
+ * Props for the {@link TableHandleColumnPositioner} Vue component.
21
+ *
22
+ * @public
19
23
  */
20
- interface TableHandleColumnTriggerProps extends Partial<TableHandleColumnTriggerProps$1> {}
24
+ interface TableHandleColumnPositionerProps {
25
+ /**
26
+ * The placement of the popover, relative to the hovered table cell.
27
+ *
28
+ * @default "top"
29
+ */
30
+ placement?: TableHandleColumnPositionerProps$1['placement'];
31
+ /**
32
+ * The strategy to use for positioning
33
+ *
34
+ * @default "absolute"
35
+ */
36
+ strategy?: TableHandleColumnPositionerProps$1['strategy'];
37
+ /**
38
+ * Options to activate auto-update listeners
39
+ *
40
+ * @see https://floating-ui.com/docs/autoUpdate
41
+ *
42
+ * @default true
43
+ */
44
+ autoUpdate?: TableHandleColumnPositionerProps$1['autoUpdate'];
45
+ /**
46
+ * Whether to use the browser [Popover API](https://developer.mozilla.org/en-US/docs/Web/API/Popover_API)
47
+ * to place the floating element on top of other page content.
48
+ *
49
+ * @default false
50
+ */
51
+ hoist?: TableHandleColumnPositionerProps$1['hoist'];
52
+ /**
53
+ * @default 0
54
+ * @hidden
55
+ */
56
+ offset?: TableHandleColumnPositionerProps$1['offset'];
57
+ /**
58
+ * @default false
59
+ * @hidden
60
+ */
61
+ flip?: TableHandleColumnPositionerProps$1['flip'];
62
+ /**
63
+ * @default false
64
+ * @hidden
65
+ */
66
+ shift?: TableHandleColumnPositionerProps$1['shift'];
67
+ /**
68
+ * Whether the floating element can overlap the reference element to keep it
69
+ * in view.
70
+ *
71
+ * @default false
72
+ */
73
+ overlap?: TableHandleColumnPositionerProps$1['overlap'];
74
+ /**
75
+ * Whether to constrain the floating element's width and height to not exceed
76
+ * the viewport.
77
+ *
78
+ * @default false
79
+ */
80
+ fitViewport?: TableHandleColumnPositionerProps$1['fitViewport'];
81
+ /**
82
+ * Whether to constrain the floating element's width so that it matches the
83
+ * reference element.
84
+ *
85
+ * @default false
86
+ */
87
+ sameWidth?: TableHandleColumnPositionerProps$1['sameWidth'];
88
+ /**
89
+ * Whether to constrain the floating element's height so that it matches the
90
+ * reference element.
91
+ *
92
+ * @default false
93
+ */
94
+ sameHeight?: TableHandleColumnPositionerProps$1['sameHeight'];
95
+ /**
96
+ * Whether to improve positioning for inline reference elements that span over
97
+ * multiple lines.
98
+ *
99
+ * @default false
100
+ */
101
+ inline?: TableHandleColumnPositionerProps$1['inline'];
102
+ /**
103
+ * @default true
104
+ * @hidden
105
+ */
106
+ hide?: TableHandleColumnPositionerProps$1['hide'];
107
+ /**
108
+ * Describes the clipping element(s) or area that overflow will be checked relative to.
109
+ * Please see https://floating-ui.com/docs/detectoverflow#boundary for more information.
110
+ *
111
+ * @default 'clippingAncestors'
112
+ */
113
+ boundary?: TableHandleColumnPositionerProps$1['boundary'];
114
+ /**
115
+ * Describes the root boundary that the element will be checked for overflow relative to.
116
+ * Please see https://floating-ui.com/docs/detectoverflow#rootboundary for more information.
117
+ *
118
+ * @default 'viewport'
119
+ */
120
+ rootBoundary?: TableHandleColumnPositionerProps$1['rootBoundary'];
121
+ /**
122
+ * Describes the virtual padding around the boundary to check for overflow.
123
+ * Please see https://floating-ui.com/docs/detectoverflow#padding for more information.
124
+ *
125
+ * @default 4
126
+ */
127
+ overflowPadding?: TableHandleColumnPositionerProps$1['overflowPadding'];
128
+ /**
129
+ * The element that will be used to check for overflow. Please see
130
+ * https://floating-ui.com/docs/detectoverflow#elementcontext for more
131
+ * information.
132
+ *
133
+ * @default 'floating'
134
+ */
135
+ elementContext?: TableHandleColumnPositionerProps$1['elementContext'];
136
+ /**
137
+ * Whether to check the alternate elementContext's boundary. Please see
138
+ * https://floating-ui.com/docs/detectoverflow#altboundary for more
139
+ * information.
140
+ *
141
+ * @default false
142
+ */
143
+ altBoundary?: TableHandleColumnPositionerProps$1['altBoundary'];
144
+ /**
145
+ * The ProseKit editor instance.
146
+ *
147
+ * @default null
148
+ * @hidden
149
+ */
150
+ editor?: TableHandleColumnPositionerProps$1['editor'];
151
+ }
21
152
  /**
22
- * Emits for the {@link TableHandleColumnTrigger} component.
153
+ * A Vue component that renders an `prosekit-table-handle-column-positioner` custom element.
154
+ *
155
+ * @public
23
156
  */
24
- interface TableHandleColumnTriggerEmits extends CreateEmits<TableHandleColumnTriggerEvents> {}
25
- declare const TableHandleColumnTrigger: DefineSetupFnComponent<TableHandleColumnTriggerProps & HTMLAttributes, TableHandleColumnTriggerEmits>;
157
+ declare const TableHandleColumnPositioner: DefineSetupFnComponent<TableHandleColumnPositionerProps & HTMLAttributes>;
158
+ //#endregion
159
+ //#region src/components/table-handle/table-handle-column-menu-root.gen.d.ts
160
+ /**
161
+ * Props for the {@link TableHandleColumnMenuRoot} Vue component.
162
+ *
163
+ * @public
164
+ */
165
+ interface TableHandleColumnMenuRootProps {
166
+ /**
167
+ * Whether the overlay is initially open.
168
+ * @default false
169
+ */
170
+ defaultOpen?: TableHandleColumnMenuRootProps$1['defaultOpen'];
171
+ /**
172
+ * Whether the overlay is currently open.
173
+ * @default null
174
+ */
175
+ open?: TableHandleColumnMenuRootProps$1['open'];
176
+ /**
177
+ * Whether the component should ignore user interaction.
178
+ * @default false
179
+ */
180
+ disabled?: TableHandleColumnMenuRootProps$1['disabled'];
181
+ }
182
+ /**
183
+ * A Vue component that renders an `prosekit-table-handle-column-menu-root` custom element.
184
+ *
185
+ * @public
186
+ */
187
+ declare const TableHandleColumnMenuRoot: DefineSetupFnComponent<TableHandleColumnMenuRootProps & HTMLAttributes>;
188
+ //#endregion
189
+ //#region src/components/table-handle/table-handle-column-menu-trigger.gen.d.ts
190
+ /**
191
+ * Props for the {@link TableHandleColumnMenuTrigger} Vue component.
192
+ *
193
+ * @public
194
+ */
195
+ interface TableHandleColumnMenuTriggerProps {
196
+ /**
197
+ * @default null
198
+ * @hidden
199
+ */
200
+ editor?: TableHandleColumnMenuTriggerProps$1['editor'];
201
+ }
202
+ /**
203
+ * A Vue component that renders an `prosekit-table-handle-column-menu-trigger` custom element.
204
+ *
205
+ * @public
206
+ */
207
+ declare const TableHandleColumnMenuTrigger: DefineSetupFnComponent<TableHandleColumnMenuTriggerProps & HTMLAttributes>;
26
208
  //#endregion
27
209
  //#region src/components/table-handle/table-handle-drag-preview.gen.d.ts
28
210
  /**
29
- * Props for the {@link TableHandleDragPreview} component.
211
+ * Props for the {@link TableHandleDragPreview} Vue component.
212
+ *
213
+ * @public
30
214
  */
31
- interface TableHandleDragPreviewProps extends Partial<TableHandleDragPreviewProps$1> {}
215
+ interface TableHandleDragPreviewProps {
216
+ /**
217
+ * @default null
218
+ * @hidden
219
+ */
220
+ editor?: TableHandleDragPreviewProps$1['editor'];
221
+ }
32
222
  /**
33
- * Emits for the {@link TableHandleDragPreview} component.
223
+ * A Vue component that renders an `prosekit-table-handle-drag-preview` custom element.
224
+ *
225
+ * @public
34
226
  */
35
- interface TableHandleDragPreviewEmits extends CreateEmits<TableHandleDragPreviewEvents> {}
36
- declare const TableHandleDragPreview: DefineSetupFnComponent<TableHandleDragPreviewProps & HTMLAttributes, TableHandleDragPreviewEmits>;
227
+ declare const TableHandleDragPreview: DefineSetupFnComponent<TableHandleDragPreviewProps & HTMLAttributes>;
37
228
  //#endregion
38
229
  //#region src/components/table-handle/table-handle-drop-indicator.gen.d.ts
39
230
  /**
40
- * Props for the {@link TableHandleDropIndicator} component.
231
+ * Props for the {@link TableHandleDropIndicator} Vue component.
232
+ *
233
+ * @public
41
234
  */
42
- interface TableHandleDropIndicatorProps extends Partial<TableHandleDropIndicatorProps$1> {}
235
+ interface TableHandleDropIndicatorProps {
236
+ /**
237
+ * @default null
238
+ * @hidden
239
+ */
240
+ editor?: TableHandleDropIndicatorProps$1['editor'];
241
+ }
43
242
  /**
44
- * Emits for the {@link TableHandleDropIndicator} component.
243
+ * A Vue component that renders an `prosekit-table-handle-drop-indicator` custom element.
244
+ *
245
+ * @public
45
246
  */
46
- interface TableHandleDropIndicatorEmits extends CreateEmits<TableHandleDropIndicatorEvents> {}
47
- declare const TableHandleDropIndicator: DefineSetupFnComponent<TableHandleDropIndicatorProps & HTMLAttributes, TableHandleDropIndicatorEmits>;
247
+ declare const TableHandleDropIndicator: DefineSetupFnComponent<TableHandleDropIndicatorProps & HTMLAttributes>;
48
248
  //#endregion
49
- //#region src/components/table-handle/table-handle-popover-content.gen.d.ts
249
+ //#region src/components/table-handle/table-handle-root.gen.d.ts
50
250
  /**
51
- * Props for the {@link TableHandlePopoverContent} component.
251
+ * Props for the {@link TableHandleRoot} Vue component.
252
+ *
253
+ * @public
52
254
  */
53
- interface TableHandlePopoverContentProps extends Partial<TableHandlePopoverContentProps$1> {}
255
+ interface TableHandleRootProps {
256
+ /**
257
+ * The ProseKit editor instance.
258
+ *
259
+ * @default null
260
+ * @hidden
261
+ */
262
+ editor?: TableHandleRootProps$1['editor'];
263
+ }
54
264
  /**
55
- * Emits for the {@link TableHandlePopoverContent} component.
265
+ * A Vue component that renders an `prosekit-table-handle-root` custom element.
266
+ *
267
+ * @public
56
268
  */
57
- interface TableHandlePopoverContentEmits extends CreateEmits<TableHandlePopoverContentEvents> {}
58
- declare const TableHandlePopoverContent: DefineSetupFnComponent<TableHandlePopoverContentProps & HTMLAttributes, TableHandlePopoverContentEmits>;
269
+ declare const TableHandleRoot: DefineSetupFnComponent<TableHandleRootProps & HTMLAttributes>;
59
270
  //#endregion
60
- //#region src/components/table-handle/table-handle-popover-item.gen.d.ts
271
+ //#region src/components/table-handle/table-handle-row-popup.gen.d.ts
61
272
  /**
62
- * Props for the {@link TableHandlePopoverItem} component.
273
+ * Props for the {@link TableHandleRowPopup} Vue component.
274
+ *
275
+ * @public
63
276
  */
64
- interface TableHandlePopoverItemProps extends Partial<TableHandlePopoverItemProps$1> {}
277
+ interface TableHandleRowPopupProps {}
65
278
  /**
66
- * Emits for the {@link TableHandlePopoverItem} component.
279
+ * A Vue component that renders an `prosekit-table-handle-row-popup` custom element.
280
+ *
281
+ * @public
67
282
  */
68
- interface TableHandlePopoverItemEmits extends CreateEmits<TableHandlePopoverItemEvents> {}
69
- declare const TableHandlePopoverItem: DefineSetupFnComponent<TableHandlePopoverItemProps & HTMLAttributes, TableHandlePopoverItemEmits>;
283
+ declare const TableHandleRowPopup: DefineSetupFnComponent<TableHandleRowPopupProps & HTMLAttributes>;
70
284
  //#endregion
71
- //#region src/components/table-handle/table-handle-root.gen.d.ts
285
+ //#region src/components/table-handle/table-handle-row-positioner.gen.d.ts
72
286
  /**
73
- * Props for the {@link TableHandleRoot} component.
287
+ * Props for the {@link TableHandleRowPositioner} Vue component.
288
+ *
289
+ * @public
74
290
  */
75
- interface TableHandleRootProps extends Partial<TableHandleRootProps$1> {}
291
+ interface TableHandleRowPositionerProps {
292
+ /**
293
+ * The placement of the popover, relative to the hovered table cell.
294
+ *
295
+ * @default "left"
296
+ */
297
+ placement?: TableHandleRowPositionerProps$1['placement'];
298
+ /**
299
+ * The strategy to use for positioning
300
+ *
301
+ * @default "absolute"
302
+ */
303
+ strategy?: TableHandleRowPositionerProps$1['strategy'];
304
+ /**
305
+ * Options to activate auto-update listeners
306
+ *
307
+ * @see https://floating-ui.com/docs/autoUpdate
308
+ *
309
+ * @default true
310
+ */
311
+ autoUpdate?: TableHandleRowPositionerProps$1['autoUpdate'];
312
+ /**
313
+ * Whether to use the browser [Popover API](https://developer.mozilla.org/en-US/docs/Web/API/Popover_API)
314
+ * to place the floating element on top of other page content.
315
+ *
316
+ * @default false
317
+ */
318
+ hoist?: TableHandleRowPositionerProps$1['hoist'];
319
+ /**
320
+ * @default 0
321
+ * @hidden
322
+ */
323
+ offset?: TableHandleRowPositionerProps$1['offset'];
324
+ /**
325
+ * @default false
326
+ * @hidden
327
+ */
328
+ flip?: TableHandleRowPositionerProps$1['flip'];
329
+ /**
330
+ * @default false
331
+ * @hidden
332
+ */
333
+ shift?: TableHandleRowPositionerProps$1['shift'];
334
+ /**
335
+ * Whether the floating element can overlap the reference element to keep it
336
+ * in view.
337
+ *
338
+ * @default false
339
+ */
340
+ overlap?: TableHandleRowPositionerProps$1['overlap'];
341
+ /**
342
+ * Whether to constrain the floating element's width and height to not exceed
343
+ * the viewport.
344
+ *
345
+ * @default false
346
+ */
347
+ fitViewport?: TableHandleRowPositionerProps$1['fitViewport'];
348
+ /**
349
+ * Whether to constrain the floating element's width so that it matches the
350
+ * reference element.
351
+ *
352
+ * @default false
353
+ */
354
+ sameWidth?: TableHandleRowPositionerProps$1['sameWidth'];
355
+ /**
356
+ * Whether to constrain the floating element's height so that it matches the
357
+ * reference element.
358
+ *
359
+ * @default false
360
+ */
361
+ sameHeight?: TableHandleRowPositionerProps$1['sameHeight'];
362
+ /**
363
+ * Whether to improve positioning for inline reference elements that span over
364
+ * multiple lines.
365
+ *
366
+ * @default false
367
+ */
368
+ inline?: TableHandleRowPositionerProps$1['inline'];
369
+ /**
370
+ * @default true
371
+ * @hidden
372
+ */
373
+ hide?: TableHandleRowPositionerProps$1['hide'];
374
+ /**
375
+ * Describes the clipping element(s) or area that overflow will be checked relative to.
376
+ * Please see https://floating-ui.com/docs/detectoverflow#boundary for more information.
377
+ *
378
+ * @default 'clippingAncestors'
379
+ */
380
+ boundary?: TableHandleRowPositionerProps$1['boundary'];
381
+ /**
382
+ * Describes the root boundary that the element will be checked for overflow relative to.
383
+ * Please see https://floating-ui.com/docs/detectoverflow#rootboundary for more information.
384
+ *
385
+ * @default 'viewport'
386
+ */
387
+ rootBoundary?: TableHandleRowPositionerProps$1['rootBoundary'];
388
+ /**
389
+ * Describes the virtual padding around the boundary to check for overflow.
390
+ * Please see https://floating-ui.com/docs/detectoverflow#padding for more information.
391
+ *
392
+ * @default 4
393
+ */
394
+ overflowPadding?: TableHandleRowPositionerProps$1['overflowPadding'];
395
+ /**
396
+ * The element that will be used to check for overflow. Please see
397
+ * https://floating-ui.com/docs/detectoverflow#elementcontext for more
398
+ * information.
399
+ *
400
+ * @default 'floating'
401
+ */
402
+ elementContext?: TableHandleRowPositionerProps$1['elementContext'];
403
+ /**
404
+ * Whether to check the alternate elementContext's boundary. Please see
405
+ * https://floating-ui.com/docs/detectoverflow#altboundary for more
406
+ * information.
407
+ *
408
+ * @default false
409
+ */
410
+ altBoundary?: TableHandleRowPositionerProps$1['altBoundary'];
411
+ /**
412
+ * The ProseKit editor instance.
413
+ *
414
+ * @default null
415
+ * @hidden
416
+ */
417
+ editor?: TableHandleRowPositionerProps$1['editor'];
418
+ }
76
419
  /**
77
- * Emits for the {@link TableHandleRoot} component.
420
+ * A Vue component that renders an `prosekit-table-handle-row-positioner` custom element.
421
+ *
422
+ * @public
78
423
  */
79
- interface TableHandleRootEmits extends CreateEmits<TableHandleRootEvents> {}
80
- declare const TableHandleRoot: DefineSetupFnComponent<TableHandleRootProps & HTMLAttributes, TableHandleRootEmits>;
424
+ declare const TableHandleRowPositioner: DefineSetupFnComponent<TableHandleRowPositionerProps & HTMLAttributes>;
81
425
  //#endregion
82
- //#region src/components/table-handle/table-handle-row-root.gen.d.ts
426
+ //#region src/components/table-handle/table-handle-row-menu-root.gen.d.ts
83
427
  /**
84
- * Props for the {@link TableHandleRowRoot} component.
428
+ * Props for the {@link TableHandleRowMenuRoot} Vue component.
429
+ *
430
+ * @public
85
431
  */
86
- interface TableHandleRowRootProps extends Partial<TableHandleRowRootProps$1> {}
432
+ interface TableHandleRowMenuRootProps {
433
+ /**
434
+ * Whether the overlay is initially open.
435
+ * @default false
436
+ */
437
+ defaultOpen?: TableHandleRowMenuRootProps$1['defaultOpen'];
438
+ /**
439
+ * Whether the overlay is currently open.
440
+ * @default null
441
+ */
442
+ open?: TableHandleRowMenuRootProps$1['open'];
443
+ /**
444
+ * Whether the component should ignore user interaction.
445
+ * @default false
446
+ */
447
+ disabled?: TableHandleRowMenuRootProps$1['disabled'];
448
+ }
87
449
  /**
88
- * Emits for the {@link TableHandleRowRoot} component.
450
+ * A Vue component that renders an `prosekit-table-handle-row-menu-root` custom element.
451
+ *
452
+ * @public
89
453
  */
90
- interface TableHandleRowRootEmits extends CreateEmits<TableHandleRowRootEvents> {}
91
- declare const TableHandleRowRoot: DefineSetupFnComponent<TableHandleRowRootProps & HTMLAttributes, TableHandleRowRootEmits>;
454
+ declare const TableHandleRowMenuRoot: DefineSetupFnComponent<TableHandleRowMenuRootProps & HTMLAttributes>;
92
455
  //#endregion
93
- //#region src/components/table-handle/table-handle-row-trigger.gen.d.ts
456
+ //#region src/components/table-handle/table-handle-row-menu-trigger.gen.d.ts
94
457
  /**
95
- * Props for the {@link TableHandleRowTrigger} component.
458
+ * Props for the {@link TableHandleRowMenuTrigger} Vue component.
459
+ *
460
+ * @public
96
461
  */
97
- interface TableHandleRowTriggerProps extends Partial<TableHandleRowTriggerProps$1> {}
462
+ interface TableHandleRowMenuTriggerProps {
463
+ /**
464
+ * @default null
465
+ * @hidden
466
+ */
467
+ editor?: TableHandleRowMenuTriggerProps$1['editor'];
468
+ }
98
469
  /**
99
- * Emits for the {@link TableHandleRowTrigger} component.
470
+ * A Vue component that renders an `prosekit-table-handle-row-menu-trigger` custom element.
471
+ *
472
+ * @public
100
473
  */
101
- interface TableHandleRowTriggerEmits extends CreateEmits<TableHandleRowTriggerEvents> {}
102
- declare const TableHandleRowTrigger: DefineSetupFnComponent<TableHandleRowTriggerProps & HTMLAttributes, TableHandleRowTriggerEmits>;
474
+ declare const TableHandleRowMenuTrigger: DefineSetupFnComponent<TableHandleRowMenuTriggerProps & HTMLAttributes>;
103
475
  //#endregion
104
- export { TableHandleColumnRoot, type TableHandleColumnRootEmits, type TableHandleColumnRootProps, TableHandleColumnTrigger, type TableHandleColumnTriggerEmits, type TableHandleColumnTriggerProps, TableHandleDragPreview, type TableHandleDragPreviewEmits, type TableHandleDragPreviewProps, TableHandleDropIndicator, type TableHandleDropIndicatorEmits, type TableHandleDropIndicatorProps, TableHandlePopoverContent, type TableHandlePopoverContentEmits, type TableHandlePopoverContentProps, TableHandlePopoverItem, type TableHandlePopoverItemEmits, type TableHandlePopoverItemProps, TableHandleRoot, type TableHandleRootEmits, type TableHandleRootProps, TableHandleRowRoot, type TableHandleRowRootEmits, type TableHandleRowRootProps, TableHandleRowTrigger, type TableHandleRowTriggerEmits, type TableHandleRowTriggerProps };
476
+ export { TableHandleColumnMenuRoot, type TableHandleColumnMenuRootProps, TableHandleColumnMenuTrigger, type TableHandleColumnMenuTriggerProps, TableHandleColumnPopup, type TableHandleColumnPopupProps, TableHandleColumnPositioner, type TableHandleColumnPositionerProps, TableHandleDragPreview, type TableHandleDragPreviewProps, TableHandleDropIndicator, type TableHandleDropIndicatorProps, TableHandleRoot, type TableHandleRootProps, TableHandleRowMenuRoot, type TableHandleRowMenuRootProps, TableHandleRowMenuTrigger, type TableHandleRowMenuTriggerProps, TableHandleRowPopup, type TableHandleRowPopupProps, TableHandleRowPositioner, type TableHandleRowPositionerProps };
105
477
  //# sourceMappingURL=prosekit-vue-table-handle.d.ts.map