@prosekit/vue 0.7.0-beta.1 → 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.
- package/dist/prosekit-vue-autocomplete.d.ts +216 -25
- package/dist/prosekit-vue-autocomplete.d.ts.map +1 -1
- package/dist/prosekit-vue-autocomplete.js +270 -9
- package/dist/prosekit-vue-autocomplete.js.map +1 -1
- package/dist/prosekit-vue-block-handle.d.ts +202 -19
- package/dist/prosekit-vue-block-handle.d.ts.map +1 -1
- package/dist/prosekit-vue-block-handle.js +211 -7
- package/dist/prosekit-vue-block-handle.js.map +1 -1
- package/dist/prosekit-vue-drop-indicator.d.ts +24 -8
- package/dist/prosekit-vue-drop-indicator.d.ts.map +1 -1
- package/dist/prosekit-vue-drop-indicator.js +36 -3
- package/dist/prosekit-vue-drop-indicator.js.map +1 -1
- package/dist/prosekit-vue-inline-popover.d.ts +200 -9
- package/dist/prosekit-vue-inline-popover.d.ts.map +1 -1
- package/dist/prosekit-vue-inline-popover.js +171 -5
- package/dist/prosekit-vue-inline-popover.js.map +1 -1
- package/dist/prosekit-vue-menu.d.ts +287 -0
- package/dist/prosekit-vue-menu.d.ts.map +1 -0
- package/dist/prosekit-vue-menu.js +313 -0
- package/dist/prosekit-vue-menu.js.map +1 -0
- package/dist/prosekit-vue-popover.d.ts +219 -19
- package/dist/prosekit-vue-popover.d.ts.map +1 -1
- package/dist/prosekit-vue-popover.js +222 -7
- package/dist/prosekit-vue-popover.js.map +1 -1
- package/dist/prosekit-vue-resizable.d.ts +50 -15
- package/dist/prosekit-vue-resizable.d.ts.map +1 -1
- package/dist/prosekit-vue-resizable.js +92 -7
- package/dist/prosekit-vue-resizable.js.map +1 -1
- package/dist/prosekit-vue-table-handle.d.ts +427 -55
- package/dist/prosekit-vue-table-handle.d.ts.map +1 -1
- package/dist/prosekit-vue-table-handle.js +455 -19
- package/dist/prosekit-vue-table-handle.js.map +1 -1
- package/dist/prosekit-vue-tooltip.d.ts +203 -19
- package/dist/prosekit-vue-tooltip.d.ts.map +1 -1
- package/dist/prosekit-vue-tooltip.js +202 -7
- package/dist/prosekit-vue-tooltip.js.map +1 -1
- package/package.json +24 -16
- package/src/components/autocomplete/autocomplete-empty.gen.ts +21 -25
- package/src/components/autocomplete/autocomplete-item.gen.ts +80 -26
- package/src/components/autocomplete/autocomplete-popup.gen.ts +80 -0
- package/src/components/autocomplete/autocomplete-positioner.gen.ts +149 -0
- package/src/components/autocomplete/autocomplete-root.gen.ts +112 -0
- package/src/components/autocomplete/index.gen.ts +12 -4
- package/src/components/autocomplete/index.ts +27 -0
- package/src/components/block-handle/block-handle-add.gen.ts +51 -26
- package/src/components/block-handle/block-handle-draggable.gen.ts +51 -26
- package/src/components/block-handle/block-handle-popup.gen.ts +29 -0
- package/src/components/block-handle/block-handle-positioner.gen.ts +167 -0
- package/src/components/block-handle/block-handle-root.gen.ts +84 -0
- package/src/components/block-handle/index.gen.ts +13 -3
- package/src/components/block-handle/index.ts +27 -0
- package/src/components/drop-indicator/drop-indicator.gen.ts +57 -26
- package/src/components/drop-indicator/index.gen.ts +5 -1
- package/src/components/drop-indicator/index.ts +14 -0
- package/src/components/inline-popover/index.gen.ts +11 -1
- package/src/components/inline-popover/index.ts +22 -0
- package/src/components/inline-popover/inline-popover-popup.gen.ts +29 -0
- package/src/components/inline-popover/inline-popover-positioner.gen.ts +173 -0
- package/src/components/inline-popover/inline-popover-root.gen.ts +108 -0
- package/src/components/menu/index.gen.ts +19 -0
- package/src/components/menu/index.ts +37 -0
- package/src/components/menu/menu-item.gen.ts +91 -0
- package/src/components/menu/menu-popup.gen.ts +54 -0
- package/src/components/menu/menu-positioner.gen.ts +174 -0
- package/src/components/menu/menu-root.gen.ts +88 -0
- package/src/components/menu/menu-submenu-root.gen.ts +29 -0
- package/src/components/menu/menu-submenu-trigger.gen.ts +29 -0
- package/src/components/menu/menu-trigger.gen.ts +79 -0
- package/src/components/popover/index.gen.ts +11 -3
- package/src/components/popover/index.ts +24 -0
- package/src/components/popover/popover-popup.gen.ts +29 -0
- package/src/components/popover/popover-positioner.gen.ts +174 -0
- package/src/components/popover/popover-root.gen.ts +88 -26
- package/src/components/popover/popover-trigger.gen.ts +88 -26
- package/src/components/resizable/index.gen.ts +8 -2
- package/src/components/resizable/index.ts +20 -0
- package/src/components/resizable/resizable-handle.gen.ts +46 -26
- package/src/components/resizable/resizable-root.gen.ts +87 -26
- package/src/components/table-handle/index.gen.ts +17 -9
- package/src/components/table-handle/index.ts +58 -0
- package/src/components/table-handle/table-handle-column-menu-root.gen.ts +62 -0
- package/src/components/table-handle/table-handle-column-menu-trigger.gen.ts +56 -0
- package/src/components/table-handle/table-handle-column-popup.gen.ts +29 -0
- package/src/components/table-handle/table-handle-column-positioner.gen.ts +197 -0
- package/src/components/table-handle/table-handle-drag-preview.gen.ts +49 -26
- package/src/components/table-handle/table-handle-drop-indicator.gen.ts +49 -26
- package/src/components/table-handle/table-handle-root.gen.ts +51 -26
- package/src/components/table-handle/table-handle-row-menu-root.gen.ts +62 -0
- package/src/components/table-handle/table-handle-row-menu-trigger.gen.ts +56 -0
- package/src/components/table-handle/table-handle-row-popup.gen.ts +29 -0
- package/src/components/table-handle/table-handle-row-positioner.gen.ts +197 -0
- package/src/components/tooltip/index.gen.ts +11 -3
- package/src/components/tooltip/index.ts +24 -0
- package/src/components/tooltip/tooltip-popup.gen.ts +29 -0
- package/src/components/tooltip/tooltip-positioner.gen.ts +174 -0
- package/src/components/tooltip/tooltip-root.gen.ts +81 -26
- package/src/components/tooltip/tooltip-trigger.gen.ts +55 -26
- package/dist/create-component.js +0 -45
- package/dist/create-component.js.map +0 -1
- package/dist/create-emits.d.ts +0 -5
- package/dist/create-emits.d.ts.map +0 -1
- package/src/components/autocomplete/autocomplete-list.gen.ts +0 -33
- package/src/components/autocomplete/autocomplete-popover.gen.ts +0 -33
- package/src/components/block-handle/block-handle-popover.gen.ts +0 -33
- package/src/components/create-component.ts +0 -84
- package/src/components/create-emits.ts +0 -8
- package/src/components/inline-popover/inline-popover.gen.ts +0 -33
- package/src/components/popover/popover-content.gen.ts +0 -33
- package/src/components/table-handle/table-handle-column-root.gen.ts +0 -33
- package/src/components/table-handle/table-handle-column-trigger.gen.ts +0 -33
- package/src/components/table-handle/table-handle-popover-content.gen.ts +0 -33
- package/src/components/table-handle/table-handle-popover-item.gen.ts +0 -33
- package/src/components/table-handle/table-handle-row-root.gen.ts +0 -33
- package/src/components/table-handle/table-handle-row-trigger.gen.ts +0 -33
- package/src/components/tooltip/tooltip-content.gen.ts +0 -33
|
@@ -1,11 +1,96 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
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
|
-
|
|
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-
|
|
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 {
|
|
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-
|
|
4
|
+
//#region src/components/table-handle/table-handle-column-popup.gen.d.ts
|
|
6
5
|
/**
|
|
7
|
-
* Props for the {@link
|
|
6
|
+
* Props for the {@link TableHandleColumnPopup} Vue component.
|
|
7
|
+
*
|
|
8
|
+
* @public
|
|
8
9
|
*/
|
|
9
|
-
interface
|
|
10
|
+
interface TableHandleColumnPopupProps {}
|
|
10
11
|
/**
|
|
11
|
-
*
|
|
12
|
+
* A Vue component that renders an `prosekit-table-handle-column-popup` custom element.
|
|
13
|
+
*
|
|
14
|
+
* @public
|
|
12
15
|
*/
|
|
13
|
-
|
|
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-
|
|
18
|
+
//#region src/components/table-handle/table-handle-column-positioner.gen.d.ts
|
|
17
19
|
/**
|
|
18
|
-
* Props for the {@link
|
|
20
|
+
* Props for the {@link TableHandleColumnPositioner} Vue component.
|
|
21
|
+
*
|
|
22
|
+
* @public
|
|
19
23
|
*/
|
|
20
|
-
interface
|
|
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
|
-
*
|
|
153
|
+
* A Vue component that renders an `prosekit-table-handle-column-positioner` custom element.
|
|
154
|
+
*
|
|
155
|
+
* @public
|
|
23
156
|
*/
|
|
24
|
-
|
|
25
|
-
|
|
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
|
|
215
|
+
interface TableHandleDragPreviewProps {
|
|
216
|
+
/**
|
|
217
|
+
* @default null
|
|
218
|
+
* @hidden
|
|
219
|
+
*/
|
|
220
|
+
editor?: TableHandleDragPreviewProps$1['editor'];
|
|
221
|
+
}
|
|
32
222
|
/**
|
|
33
|
-
*
|
|
223
|
+
* A Vue component that renders an `prosekit-table-handle-drag-preview` custom element.
|
|
224
|
+
*
|
|
225
|
+
* @public
|
|
34
226
|
*/
|
|
35
|
-
|
|
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
|
|
235
|
+
interface TableHandleDropIndicatorProps {
|
|
236
|
+
/**
|
|
237
|
+
* @default null
|
|
238
|
+
* @hidden
|
|
239
|
+
*/
|
|
240
|
+
editor?: TableHandleDropIndicatorProps$1['editor'];
|
|
241
|
+
}
|
|
43
242
|
/**
|
|
44
|
-
*
|
|
243
|
+
* A Vue component that renders an `prosekit-table-handle-drop-indicator` custom element.
|
|
244
|
+
*
|
|
245
|
+
* @public
|
|
45
246
|
*/
|
|
46
|
-
|
|
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-
|
|
249
|
+
//#region src/components/table-handle/table-handle-root.gen.d.ts
|
|
50
250
|
/**
|
|
51
|
-
* Props for the {@link
|
|
251
|
+
* Props for the {@link TableHandleRoot} Vue component.
|
|
252
|
+
*
|
|
253
|
+
* @public
|
|
52
254
|
*/
|
|
53
|
-
interface
|
|
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
|
-
*
|
|
265
|
+
* A Vue component that renders an `prosekit-table-handle-root` custom element.
|
|
266
|
+
*
|
|
267
|
+
* @public
|
|
56
268
|
*/
|
|
57
|
-
|
|
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-
|
|
271
|
+
//#region src/components/table-handle/table-handle-row-popup.gen.d.ts
|
|
61
272
|
/**
|
|
62
|
-
* Props for the {@link
|
|
273
|
+
* Props for the {@link TableHandleRowPopup} Vue component.
|
|
274
|
+
*
|
|
275
|
+
* @public
|
|
63
276
|
*/
|
|
64
|
-
interface
|
|
277
|
+
interface TableHandleRowPopupProps {}
|
|
65
278
|
/**
|
|
66
|
-
*
|
|
279
|
+
* A Vue component that renders an `prosekit-table-handle-row-popup` custom element.
|
|
280
|
+
*
|
|
281
|
+
* @public
|
|
67
282
|
*/
|
|
68
|
-
|
|
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-
|
|
285
|
+
//#region src/components/table-handle/table-handle-row-positioner.gen.d.ts
|
|
72
286
|
/**
|
|
73
|
-
* Props for the {@link
|
|
287
|
+
* Props for the {@link TableHandleRowPositioner} Vue component.
|
|
288
|
+
*
|
|
289
|
+
* @public
|
|
74
290
|
*/
|
|
75
|
-
interface
|
|
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
|
-
*
|
|
420
|
+
* A Vue component that renders an `prosekit-table-handle-row-positioner` custom element.
|
|
421
|
+
*
|
|
422
|
+
* @public
|
|
78
423
|
*/
|
|
79
|
-
|
|
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
|
|
428
|
+
* Props for the {@link TableHandleRowMenuRoot} Vue component.
|
|
429
|
+
*
|
|
430
|
+
* @public
|
|
85
431
|
*/
|
|
86
|
-
interface
|
|
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
|
-
*
|
|
450
|
+
* A Vue component that renders an `prosekit-table-handle-row-menu-root` custom element.
|
|
451
|
+
*
|
|
452
|
+
* @public
|
|
89
453
|
*/
|
|
90
|
-
|
|
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
|
|
458
|
+
* Props for the {@link TableHandleRowMenuTrigger} Vue component.
|
|
459
|
+
*
|
|
460
|
+
* @public
|
|
96
461
|
*/
|
|
97
|
-
interface
|
|
462
|
+
interface TableHandleRowMenuTriggerProps {
|
|
463
|
+
/**
|
|
464
|
+
* @default null
|
|
465
|
+
* @hidden
|
|
466
|
+
*/
|
|
467
|
+
editor?: TableHandleRowMenuTriggerProps$1['editor'];
|
|
468
|
+
}
|
|
98
469
|
/**
|
|
99
|
-
*
|
|
470
|
+
* A Vue component that renders an `prosekit-table-handle-row-menu-trigger` custom element.
|
|
471
|
+
*
|
|
472
|
+
* @public
|
|
100
473
|
*/
|
|
101
|
-
|
|
102
|
-
declare const TableHandleRowTrigger: DefineSetupFnComponent<TableHandleRowTriggerProps & HTMLAttributes, TableHandleRowTriggerEmits>;
|
|
474
|
+
declare const TableHandleRowMenuTrigger: DefineSetupFnComponent<TableHandleRowMenuTriggerProps & HTMLAttributes>;
|
|
103
475
|
//#endregion
|
|
104
|
-
export {
|
|
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
|