@embedpdf/plugin-annotation 2.6.1 → 2.7.0
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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +203 -8
- package/dist/index.js.map +1 -1
- package/dist/lib/actions.d.ts +12 -1
- package/dist/lib/annotation-plugin.d.ts +17 -0
- package/dist/lib/tools/default-tools.d.ts +2 -0
- package/dist/lib/tools/types.d.ts +2 -0
- package/dist/lib/types.d.ts +18 -2
- package/dist/preact/index.cjs +1 -1
- package/dist/preact/index.cjs.map +1 -1
- package/dist/preact/index.js +1008 -1058
- package/dist/preact/index.js.map +1 -1
- package/dist/react/index.cjs +1 -1
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.js +1008 -1058
- package/dist/react/index.js.map +1 -1
- package/dist/shared/components/annotation-container.d.ts +11 -5
- package/dist/shared/components/annotations/circle.d.ts +4 -2
- package/dist/shared/components/annotations/free-text.d.ts +4 -1
- package/dist/shared/components/annotations/ink.d.ts +3 -1
- package/dist/shared/components/annotations/line.d.ts +3 -1
- package/dist/shared/components/annotations/polygon.d.ts +3 -2
- package/dist/shared/components/annotations/polyline.d.ts +3 -1
- package/dist/shared/components/annotations/square.d.ts +4 -2
- package/dist/shared/components/annotations.d.ts +0 -1
- package/dist/shared/components/appearance-image.d.ts +12 -0
- package/dist/shared/components/built-in-renderers.d.ts +2 -0
- package/dist/shared/components/text-markup/highlight.d.ts +3 -1
- package/dist/shared/components/text-markup/squiggly.d.ts +3 -1
- package/dist/shared/components/text-markup/strikeout.d.ts +3 -1
- package/dist/shared/components/text-markup/underline.d.ts +3 -1
- package/dist/shared/components/types.d.ts +66 -10
- package/dist/shared-preact/components/annotation-container.d.ts +11 -5
- package/dist/shared-preact/components/annotations/circle.d.ts +4 -2
- package/dist/shared-preact/components/annotations/free-text.d.ts +4 -1
- package/dist/shared-preact/components/annotations/ink.d.ts +3 -1
- package/dist/shared-preact/components/annotations/line.d.ts +3 -1
- package/dist/shared-preact/components/annotations/polygon.d.ts +3 -2
- package/dist/shared-preact/components/annotations/polyline.d.ts +3 -1
- package/dist/shared-preact/components/annotations/square.d.ts +4 -2
- package/dist/shared-preact/components/annotations.d.ts +0 -1
- package/dist/shared-preact/components/appearance-image.d.ts +12 -0
- package/dist/shared-preact/components/built-in-renderers.d.ts +2 -0
- package/dist/shared-preact/components/text-markup/highlight.d.ts +3 -1
- package/dist/shared-preact/components/text-markup/squiggly.d.ts +3 -1
- package/dist/shared-preact/components/text-markup/strikeout.d.ts +3 -1
- package/dist/shared-preact/components/text-markup/underline.d.ts +3 -1
- package/dist/shared-preact/components/types.d.ts +66 -10
- package/dist/shared-react/components/annotation-container.d.ts +11 -5
- package/dist/shared-react/components/annotations/circle.d.ts +4 -2
- package/dist/shared-react/components/annotations/free-text.d.ts +4 -1
- package/dist/shared-react/components/annotations/ink.d.ts +3 -1
- package/dist/shared-react/components/annotations/line.d.ts +3 -1
- package/dist/shared-react/components/annotations/polygon.d.ts +3 -2
- package/dist/shared-react/components/annotations/polyline.d.ts +3 -1
- package/dist/shared-react/components/annotations/square.d.ts +4 -2
- package/dist/shared-react/components/annotations.d.ts +0 -1
- package/dist/shared-react/components/appearance-image.d.ts +12 -0
- package/dist/shared-react/components/built-in-renderers.d.ts +2 -0
- package/dist/shared-react/components/text-markup/highlight.d.ts +3 -1
- package/dist/shared-react/components/text-markup/squiggly.d.ts +3 -1
- package/dist/shared-react/components/text-markup/strikeout.d.ts +3 -1
- package/dist/shared-react/components/text-markup/underline.d.ts +3 -1
- package/dist/shared-react/components/types.d.ts +66 -10
- package/dist/svelte/components/Annotations.svelte.d.ts +0 -7
- package/dist/svelte/components/AppearanceImage.svelte.d.ts +8 -0
- package/dist/svelte/components/annotations/Circle.svelte.d.ts +1 -10
- package/dist/svelte/components/annotations/FreeText.svelte.d.ts +1 -0
- package/dist/svelte/components/annotations/Ink.svelte.d.ts +1 -1
- package/dist/svelte/components/annotations/Line.svelte.d.ts +1 -0
- package/dist/svelte/components/annotations/Polygon.svelte.d.ts +1 -0
- package/dist/svelte/components/annotations/Polyline.svelte.d.ts +1 -1
- package/dist/svelte/components/annotations/Square.svelte.d.ts +1 -0
- package/dist/svelte/components/built-in-renderers.d.ts +2 -0
- package/dist/svelte/components/renderers/CircleRenderer.svelte.d.ts +5 -0
- package/dist/svelte/components/renderers/FreeTextRenderer.svelte.d.ts +5 -0
- package/dist/svelte/components/renderers/HighlightRenderer.svelte.d.ts +5 -0
- package/dist/svelte/components/renderers/InkRenderer.svelte.d.ts +5 -0
- package/dist/svelte/components/renderers/LineRenderer.svelte.d.ts +5 -0
- package/dist/svelte/components/renderers/LinkRenderer.svelte.d.ts +5 -0
- package/dist/svelte/components/renderers/PolygonRenderer.svelte.d.ts +5 -0
- package/dist/svelte/components/renderers/PolylineRenderer.svelte.d.ts +5 -0
- package/dist/svelte/components/renderers/SquareRenderer.svelte.d.ts +5 -0
- package/dist/svelte/components/renderers/SquigglyRenderer.svelte.d.ts +5 -0
- package/dist/svelte/components/renderers/StampRenderer.svelte.d.ts +5 -0
- package/dist/svelte/components/renderers/StrikeoutRenderer.svelte.d.ts +5 -0
- package/dist/svelte/components/renderers/UnderlineRenderer.svelte.d.ts +5 -0
- package/dist/svelte/components/text-markup/Highlight.svelte.d.ts +2 -0
- package/dist/svelte/components/text-markup/Squiggly.svelte.d.ts +2 -0
- package/dist/svelte/components/text-markup/Strikeout.svelte.d.ts +2 -0
- package/dist/svelte/components/text-markup/Underline.svelte.d.ts +2 -0
- package/dist/svelte/components/types.d.ts +8 -2
- package/dist/svelte/context/renderer-registry.svelte.d.ts +2 -2
- package/dist/svelte/context/types.d.ts +63 -2
- package/dist/svelte/index.cjs +1 -1
- package/dist/svelte/index.cjs.map +1 -1
- package/dist/svelte/index.js +2509 -2864
- package/dist/svelte/index.js.map +1 -1
- package/dist/vue/components/annotation-container.vue.d.ts +8 -3
- package/dist/vue/components/annotation-layer.vue.d.ts +1 -20
- package/dist/vue/components/annotations/circle.vue.d.ts +18 -5
- package/dist/vue/components/annotations/free-text.vue.d.ts +17 -5
- package/dist/vue/components/annotations/ink.vue.d.ts +16 -6
- package/dist/vue/components/annotations/line.vue.d.ts +20 -5
- package/dist/vue/components/annotations/link.vue.d.ts +24 -6
- package/dist/vue/components/annotations/polygon.vue.d.ts +21 -5
- package/dist/vue/components/annotations/polyline.vue.d.ts +18 -5
- package/dist/vue/components/annotations/square.vue.d.ts +18 -5
- package/dist/vue/components/annotations/stamp.vue.d.ts +11 -5
- package/dist/vue/components/annotations.vue.d.ts +8 -575
- package/dist/vue/components/appearance-image.vue.d.ts +9 -0
- package/dist/vue/components/built-in-renderers.d.ts +2 -0
- package/dist/vue/components/group-selection-box.vue.d.ts +2 -2
- package/dist/vue/components/renderers/circle-renderer.vue.d.ts +6 -0
- package/dist/vue/components/renderers/free-text-renderer.vue.d.ts +6 -0
- package/dist/vue/components/renderers/highlight-renderer.vue.d.ts +6 -0
- package/dist/vue/components/renderers/ink-renderer.vue.d.ts +6 -0
- package/dist/vue/components/renderers/line-renderer.vue.d.ts +6 -0
- package/dist/vue/components/renderers/link-renderer.vue.d.ts +6 -0
- package/dist/vue/components/renderers/polygon-renderer.vue.d.ts +6 -0
- package/dist/vue/components/renderers/polyline-renderer.vue.d.ts +6 -0
- package/dist/vue/components/renderers/square-renderer.vue.d.ts +6 -0
- package/dist/vue/components/renderers/squiggly-renderer.vue.d.ts +6 -0
- package/dist/vue/components/renderers/stamp-renderer.vue.d.ts +6 -0
- package/dist/vue/components/renderers/strikeout-renderer.vue.d.ts +6 -0
- package/dist/vue/components/renderers/underline-renderer.vue.d.ts +6 -0
- package/dist/vue/components/text-markup/highlight.vue.d.ts +17 -5
- package/dist/vue/components/text-markup/squiggly.vue.d.ts +17 -5
- package/dist/vue/components/text-markup/strikeout.vue.d.ts +17 -5
- package/dist/vue/components/text-markup/underline.vue.d.ts +17 -5
- package/dist/vue/context/renderer-registry.d.ts +2 -2
- package/dist/vue/context/types.d.ts +63 -2
- package/dist/vue/index.cjs +1 -1
- package/dist/vue/index.cjs.map +1 -1
- package/dist/vue/index.js +1651 -1278
- package/dist/vue/index.js.map +1 -1
- package/package.json +10 -10
|
@@ -14,11 +14,8 @@ type __VLS_Props = {
|
|
|
14
14
|
selectionOutlineColor?: string;
|
|
15
15
|
selectionOutline?: SelectionOutline;
|
|
16
16
|
groupSelectionOutline?: SelectionOutline;
|
|
17
|
-
/** Render function for selection menu (schema-driven approach) */
|
|
18
17
|
selectionMenu?: AnnotationSelectionMenuRenderFn;
|
|
19
|
-
/** Render function for group selection menu (schema-driven approach) */
|
|
20
18
|
groupSelectionMenu?: GroupSelectionMenuRenderFn;
|
|
21
|
-
/** Custom renderers for specific annotation types (provided by external plugins) */
|
|
22
19
|
annotationRenderers?: BoxedAnnotationRenderer[];
|
|
23
20
|
};
|
|
24
21
|
declare var __VLS_14: {
|
|
@@ -49,272 +46,6 @@ declare var __VLS_14: {
|
|
|
49
46
|
key: string | number | undefined;
|
|
50
47
|
style: CSSProperties;
|
|
51
48
|
}, __VLS_20: {
|
|
52
|
-
[key: string]: any;
|
|
53
|
-
key?: string | number;
|
|
54
|
-
style: CSSProperties;
|
|
55
|
-
backgroundColor: string;
|
|
56
|
-
iconColor: string;
|
|
57
|
-
connectorStyle: CSSProperties;
|
|
58
|
-
showConnector: boolean;
|
|
59
|
-
opacity: number;
|
|
60
|
-
border: import('..').RotationHandleBorder;
|
|
61
|
-
} | {
|
|
62
|
-
[x: string]: never;
|
|
63
|
-
}, __VLS_35: {
|
|
64
|
-
context: import('..').AnnotationSelectionContext;
|
|
65
|
-
selected: boolean;
|
|
66
|
-
rect: {
|
|
67
|
-
origin: {
|
|
68
|
-
x: number;
|
|
69
|
-
y: number;
|
|
70
|
-
};
|
|
71
|
-
size: {
|
|
72
|
-
width: number;
|
|
73
|
-
height: number;
|
|
74
|
-
};
|
|
75
|
-
};
|
|
76
|
-
placement: import('@embedpdf/utils/vue').SelectionMenuPlacement;
|
|
77
|
-
menuWrapperProps: {
|
|
78
|
-
style: CSSProperties;
|
|
79
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
80
|
-
onTouchstart: (e: TouchEvent) => void;
|
|
81
|
-
};
|
|
82
|
-
}, __VLS_38: {
|
|
83
|
-
backgroundColor: string;
|
|
84
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
85
|
-
onPointermove: (e: PointerEvent) => void;
|
|
86
|
-
onPointerup: (e: PointerEvent) => void;
|
|
87
|
-
onPointercancel: (e: PointerEvent) => void;
|
|
88
|
-
key: string | number | undefined;
|
|
89
|
-
style: CSSProperties;
|
|
90
|
-
}, __VLS_41: {
|
|
91
|
-
backgroundColor: string;
|
|
92
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
93
|
-
onPointermove: (e: PointerEvent) => void;
|
|
94
|
-
onPointerup: (e: PointerEvent) => void;
|
|
95
|
-
onPointercancel: (e: PointerEvent) => void;
|
|
96
|
-
key: string | number | undefined;
|
|
97
|
-
style: CSSProperties;
|
|
98
|
-
}, __VLS_44: {
|
|
99
|
-
[key: string]: any;
|
|
100
|
-
key?: string | number;
|
|
101
|
-
style: CSSProperties;
|
|
102
|
-
backgroundColor: string;
|
|
103
|
-
iconColor: string;
|
|
104
|
-
connectorStyle: CSSProperties;
|
|
105
|
-
showConnector: boolean;
|
|
106
|
-
opacity: number;
|
|
107
|
-
border: import('..').RotationHandleBorder;
|
|
108
|
-
} | {
|
|
109
|
-
[x: string]: never;
|
|
110
|
-
}, __VLS_59: {
|
|
111
|
-
context: import('..').AnnotationSelectionContext;
|
|
112
|
-
selected: boolean;
|
|
113
|
-
rect: {
|
|
114
|
-
origin: {
|
|
115
|
-
x: number;
|
|
116
|
-
y: number;
|
|
117
|
-
};
|
|
118
|
-
size: {
|
|
119
|
-
width: number;
|
|
120
|
-
height: number;
|
|
121
|
-
};
|
|
122
|
-
};
|
|
123
|
-
placement: import('@embedpdf/utils/vue').SelectionMenuPlacement;
|
|
124
|
-
menuWrapperProps: {
|
|
125
|
-
style: CSSProperties;
|
|
126
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
127
|
-
onTouchstart: (e: TouchEvent) => void;
|
|
128
|
-
};
|
|
129
|
-
}, __VLS_62: {
|
|
130
|
-
backgroundColor: string;
|
|
131
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
132
|
-
onPointermove: (e: PointerEvent) => void;
|
|
133
|
-
onPointerup: (e: PointerEvent) => void;
|
|
134
|
-
onPointercancel: (e: PointerEvent) => void;
|
|
135
|
-
key: string | number | undefined;
|
|
136
|
-
style: CSSProperties;
|
|
137
|
-
}, __VLS_65: {
|
|
138
|
-
backgroundColor: string;
|
|
139
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
140
|
-
onPointermove: (e: PointerEvent) => void;
|
|
141
|
-
onPointerup: (e: PointerEvent) => void;
|
|
142
|
-
onPointercancel: (e: PointerEvent) => void;
|
|
143
|
-
key: string | number | undefined;
|
|
144
|
-
style: CSSProperties;
|
|
145
|
-
}, __VLS_68: {
|
|
146
|
-
[key: string]: any;
|
|
147
|
-
key?: string | number;
|
|
148
|
-
style: CSSProperties;
|
|
149
|
-
backgroundColor: string;
|
|
150
|
-
iconColor: string;
|
|
151
|
-
connectorStyle: CSSProperties;
|
|
152
|
-
showConnector: boolean;
|
|
153
|
-
opacity: number;
|
|
154
|
-
border: import('..').RotationHandleBorder;
|
|
155
|
-
} | {
|
|
156
|
-
[x: string]: never;
|
|
157
|
-
}, __VLS_83: {
|
|
158
|
-
context: import('..').AnnotationSelectionContext;
|
|
159
|
-
selected: boolean;
|
|
160
|
-
rect: {
|
|
161
|
-
origin: {
|
|
162
|
-
x: number;
|
|
163
|
-
y: number;
|
|
164
|
-
};
|
|
165
|
-
size: {
|
|
166
|
-
width: number;
|
|
167
|
-
height: number;
|
|
168
|
-
};
|
|
169
|
-
};
|
|
170
|
-
placement: import('@embedpdf/utils/vue').SelectionMenuPlacement;
|
|
171
|
-
menuWrapperProps: {
|
|
172
|
-
style: CSSProperties;
|
|
173
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
174
|
-
onTouchstart: (e: TouchEvent) => void;
|
|
175
|
-
};
|
|
176
|
-
}, __VLS_86: {
|
|
177
|
-
backgroundColor: string;
|
|
178
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
179
|
-
onPointermove: (e: PointerEvent) => void;
|
|
180
|
-
onPointerup: (e: PointerEvent) => void;
|
|
181
|
-
onPointercancel: (e: PointerEvent) => void;
|
|
182
|
-
key: string | number | undefined;
|
|
183
|
-
style: CSSProperties;
|
|
184
|
-
}, __VLS_89: {
|
|
185
|
-
backgroundColor: string;
|
|
186
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
187
|
-
onPointermove: (e: PointerEvent) => void;
|
|
188
|
-
onPointerup: (e: PointerEvent) => void;
|
|
189
|
-
onPointercancel: (e: PointerEvent) => void;
|
|
190
|
-
key: string | number | undefined;
|
|
191
|
-
style: CSSProperties;
|
|
192
|
-
}, __VLS_92: {
|
|
193
|
-
[key: string]: any;
|
|
194
|
-
key?: string | number;
|
|
195
|
-
style: CSSProperties;
|
|
196
|
-
backgroundColor: string;
|
|
197
|
-
iconColor: string;
|
|
198
|
-
connectorStyle: CSSProperties;
|
|
199
|
-
showConnector: boolean;
|
|
200
|
-
opacity: number;
|
|
201
|
-
border: import('..').RotationHandleBorder;
|
|
202
|
-
} | {
|
|
203
|
-
[x: string]: never;
|
|
204
|
-
}, __VLS_107: {
|
|
205
|
-
context: import('..').AnnotationSelectionContext;
|
|
206
|
-
selected: boolean;
|
|
207
|
-
rect: {
|
|
208
|
-
origin: {
|
|
209
|
-
x: number;
|
|
210
|
-
y: number;
|
|
211
|
-
};
|
|
212
|
-
size: {
|
|
213
|
-
width: number;
|
|
214
|
-
height: number;
|
|
215
|
-
};
|
|
216
|
-
};
|
|
217
|
-
placement: import('@embedpdf/utils/vue').SelectionMenuPlacement;
|
|
218
|
-
menuWrapperProps: {
|
|
219
|
-
style: CSSProperties;
|
|
220
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
221
|
-
onTouchstart: (e: TouchEvent) => void;
|
|
222
|
-
};
|
|
223
|
-
}, __VLS_110: {
|
|
224
|
-
backgroundColor: string;
|
|
225
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
226
|
-
onPointermove: (e: PointerEvent) => void;
|
|
227
|
-
onPointerup: (e: PointerEvent) => void;
|
|
228
|
-
onPointercancel: (e: PointerEvent) => void;
|
|
229
|
-
key: string | number | undefined;
|
|
230
|
-
style: CSSProperties;
|
|
231
|
-
}, __VLS_113: {
|
|
232
|
-
backgroundColor: string;
|
|
233
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
234
|
-
onPointermove: (e: PointerEvent) => void;
|
|
235
|
-
onPointerup: (e: PointerEvent) => void;
|
|
236
|
-
onPointercancel: (e: PointerEvent) => void;
|
|
237
|
-
key: string | number | undefined;
|
|
238
|
-
style: CSSProperties;
|
|
239
|
-
}, __VLS_116: {
|
|
240
|
-
[key: string]: any;
|
|
241
|
-
key?: string | number;
|
|
242
|
-
style: CSSProperties;
|
|
243
|
-
backgroundColor: string;
|
|
244
|
-
iconColor: string;
|
|
245
|
-
connectorStyle: CSSProperties;
|
|
246
|
-
showConnector: boolean;
|
|
247
|
-
opacity: number;
|
|
248
|
-
border: import('..').RotationHandleBorder;
|
|
249
|
-
} | {
|
|
250
|
-
[x: string]: never;
|
|
251
|
-
}, __VLS_131: {
|
|
252
|
-
context: import('..').AnnotationSelectionContext;
|
|
253
|
-
selected: boolean;
|
|
254
|
-
rect: {
|
|
255
|
-
origin: {
|
|
256
|
-
x: number;
|
|
257
|
-
y: number;
|
|
258
|
-
};
|
|
259
|
-
size: {
|
|
260
|
-
width: number;
|
|
261
|
-
height: number;
|
|
262
|
-
};
|
|
263
|
-
};
|
|
264
|
-
placement: import('@embedpdf/utils/vue').SelectionMenuPlacement;
|
|
265
|
-
menuWrapperProps: {
|
|
266
|
-
style: CSSProperties;
|
|
267
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
268
|
-
onTouchstart: (e: TouchEvent) => void;
|
|
269
|
-
};
|
|
270
|
-
}, __VLS_134: {
|
|
271
|
-
backgroundColor: string;
|
|
272
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
273
|
-
onPointermove: (e: PointerEvent) => void;
|
|
274
|
-
onPointerup: (e: PointerEvent) => void;
|
|
275
|
-
onPointercancel: (e: PointerEvent) => void;
|
|
276
|
-
key: string | number | undefined;
|
|
277
|
-
style: CSSProperties;
|
|
278
|
-
}, __VLS_137: {
|
|
279
|
-
backgroundColor: string;
|
|
280
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
281
|
-
onPointermove: (e: PointerEvent) => void;
|
|
282
|
-
onPointerup: (e: PointerEvent) => void;
|
|
283
|
-
onPointercancel: (e: PointerEvent) => void;
|
|
284
|
-
key: string | number | undefined;
|
|
285
|
-
style: CSSProperties;
|
|
286
|
-
}, __VLS_140: {
|
|
287
|
-
[key: string]: any;
|
|
288
|
-
key?: string | number;
|
|
289
|
-
style: CSSProperties;
|
|
290
|
-
backgroundColor: string;
|
|
291
|
-
iconColor: string;
|
|
292
|
-
connectorStyle: CSSProperties;
|
|
293
|
-
showConnector: boolean;
|
|
294
|
-
opacity: number;
|
|
295
|
-
border: import('..').RotationHandleBorder;
|
|
296
|
-
} | {
|
|
297
|
-
[x: string]: never;
|
|
298
|
-
}, __VLS_155: {
|
|
299
|
-
context: import('..').AnnotationSelectionContext;
|
|
300
|
-
selected: boolean;
|
|
301
|
-
rect: {
|
|
302
|
-
origin: {
|
|
303
|
-
x: number;
|
|
304
|
-
y: number;
|
|
305
|
-
};
|
|
306
|
-
size: {
|
|
307
|
-
width: number;
|
|
308
|
-
height: number;
|
|
309
|
-
};
|
|
310
|
-
};
|
|
311
|
-
placement: import('@embedpdf/utils/vue').SelectionMenuPlacement;
|
|
312
|
-
menuWrapperProps: {
|
|
313
|
-
style: CSSProperties;
|
|
314
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
315
|
-
onTouchstart: (e: TouchEvent) => void;
|
|
316
|
-
};
|
|
317
|
-
}, __VLS_158: {
|
|
318
49
|
backgroundColor: string;
|
|
319
50
|
onPointerdown: (e: PointerEvent) => void;
|
|
320
51
|
onPointermove: (e: PointerEvent) => void;
|
|
@@ -322,15 +53,7 @@ declare var __VLS_14: {
|
|
|
322
53
|
onPointercancel: (e: PointerEvent) => void;
|
|
323
54
|
key: string | number | undefined;
|
|
324
55
|
style: CSSProperties;
|
|
325
|
-
},
|
|
326
|
-
backgroundColor: string;
|
|
327
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
328
|
-
onPointermove: (e: PointerEvent) => void;
|
|
329
|
-
onPointerup: (e: PointerEvent) => void;
|
|
330
|
-
onPointercancel: (e: PointerEvent) => void;
|
|
331
|
-
key: string | number | undefined;
|
|
332
|
-
style: CSSProperties;
|
|
333
|
-
}, __VLS_164: {
|
|
56
|
+
}, __VLS_23: {
|
|
334
57
|
[key: string]: any;
|
|
335
58
|
key?: string | number;
|
|
336
59
|
style: CSSProperties;
|
|
@@ -342,34 +65,7 @@ declare var __VLS_14: {
|
|
|
342
65
|
border: import('..').RotationHandleBorder;
|
|
343
66
|
} | {
|
|
344
67
|
[x: string]: never;
|
|
345
|
-
},
|
|
346
|
-
context: import('..').AnnotationSelectionContext;
|
|
347
|
-
selected: boolean;
|
|
348
|
-
rect: {
|
|
349
|
-
origin: {
|
|
350
|
-
x: number;
|
|
351
|
-
y: number;
|
|
352
|
-
};
|
|
353
|
-
size: {
|
|
354
|
-
width: number;
|
|
355
|
-
height: number;
|
|
356
|
-
};
|
|
357
|
-
};
|
|
358
|
-
placement: import('@embedpdf/utils/vue').SelectionMenuPlacement;
|
|
359
|
-
menuWrapperProps: {
|
|
360
|
-
style: CSSProperties;
|
|
361
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
362
|
-
onTouchstart: (e: TouchEvent) => void;
|
|
363
|
-
};
|
|
364
|
-
}, __VLS_182: {
|
|
365
|
-
backgroundColor: string;
|
|
366
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
367
|
-
onPointermove: (e: PointerEvent) => void;
|
|
368
|
-
onPointerup: (e: PointerEvent) => void;
|
|
369
|
-
onPointercancel: (e: PointerEvent) => void;
|
|
370
|
-
key: string | number | undefined;
|
|
371
|
-
style: CSSProperties;
|
|
372
|
-
}, __VLS_185: {
|
|
68
|
+
}, __VLS_32: any, __VLS_35: {
|
|
373
69
|
backgroundColor: string;
|
|
374
70
|
onPointerdown: (e: PointerEvent) => void;
|
|
375
71
|
onPointermove: (e: PointerEvent) => void;
|
|
@@ -377,196 +73,7 @@ declare var __VLS_14: {
|
|
|
377
73
|
onPointercancel: (e: PointerEvent) => void;
|
|
378
74
|
key: string | number | undefined;
|
|
379
75
|
style: CSSProperties;
|
|
380
|
-
},
|
|
381
|
-
[key: string]: any;
|
|
382
|
-
key?: string | number;
|
|
383
|
-
style: CSSProperties;
|
|
384
|
-
backgroundColor: string;
|
|
385
|
-
iconColor: string;
|
|
386
|
-
connectorStyle: CSSProperties;
|
|
387
|
-
showConnector: boolean;
|
|
388
|
-
opacity: number;
|
|
389
|
-
border: import('..').RotationHandleBorder;
|
|
390
|
-
} | {
|
|
391
|
-
[x: string]: never;
|
|
392
|
-
}, __VLS_203: {
|
|
393
|
-
context: import('..').AnnotationSelectionContext;
|
|
394
|
-
selected: boolean;
|
|
395
|
-
rect: {
|
|
396
|
-
origin: {
|
|
397
|
-
x: number;
|
|
398
|
-
y: number;
|
|
399
|
-
};
|
|
400
|
-
size: {
|
|
401
|
-
width: number;
|
|
402
|
-
height: number;
|
|
403
|
-
};
|
|
404
|
-
};
|
|
405
|
-
placement: import('@embedpdf/utils/vue').SelectionMenuPlacement;
|
|
406
|
-
menuWrapperProps: {
|
|
407
|
-
style: CSSProperties;
|
|
408
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
409
|
-
onTouchstart: (e: TouchEvent) => void;
|
|
410
|
-
};
|
|
411
|
-
}, __VLS_206: {
|
|
412
|
-
backgroundColor: string;
|
|
413
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
414
|
-
onPointermove: (e: PointerEvent) => void;
|
|
415
|
-
onPointerup: (e: PointerEvent) => void;
|
|
416
|
-
onPointercancel: (e: PointerEvent) => void;
|
|
417
|
-
key: string | number | undefined;
|
|
418
|
-
style: CSSProperties;
|
|
419
|
-
}, __VLS_209: {
|
|
420
|
-
backgroundColor: string;
|
|
421
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
422
|
-
onPointermove: (e: PointerEvent) => void;
|
|
423
|
-
onPointerup: (e: PointerEvent) => void;
|
|
424
|
-
onPointercancel: (e: PointerEvent) => void;
|
|
425
|
-
key: string | number | undefined;
|
|
426
|
-
style: CSSProperties;
|
|
427
|
-
}, __VLS_212: {
|
|
428
|
-
[key: string]: any;
|
|
429
|
-
key?: string | number;
|
|
430
|
-
style: CSSProperties;
|
|
431
|
-
backgroundColor: string;
|
|
432
|
-
iconColor: string;
|
|
433
|
-
connectorStyle: CSSProperties;
|
|
434
|
-
showConnector: boolean;
|
|
435
|
-
opacity: number;
|
|
436
|
-
border: import('..').RotationHandleBorder;
|
|
437
|
-
} | {
|
|
438
|
-
[x: string]: never;
|
|
439
|
-
}, __VLS_227: {
|
|
440
|
-
context: import('..').AnnotationSelectionContext;
|
|
441
|
-
selected: boolean;
|
|
442
|
-
rect: {
|
|
443
|
-
origin: {
|
|
444
|
-
x: number;
|
|
445
|
-
y: number;
|
|
446
|
-
};
|
|
447
|
-
size: {
|
|
448
|
-
width: number;
|
|
449
|
-
height: number;
|
|
450
|
-
};
|
|
451
|
-
};
|
|
452
|
-
placement: import('@embedpdf/utils/vue').SelectionMenuPlacement;
|
|
453
|
-
menuWrapperProps: {
|
|
454
|
-
style: CSSProperties;
|
|
455
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
456
|
-
onTouchstart: (e: TouchEvent) => void;
|
|
457
|
-
};
|
|
458
|
-
}, __VLS_242: {
|
|
459
|
-
context: import('..').AnnotationSelectionContext;
|
|
460
|
-
selected: boolean;
|
|
461
|
-
rect: {
|
|
462
|
-
origin: {
|
|
463
|
-
x: number;
|
|
464
|
-
y: number;
|
|
465
|
-
};
|
|
466
|
-
size: {
|
|
467
|
-
width: number;
|
|
468
|
-
height: number;
|
|
469
|
-
};
|
|
470
|
-
};
|
|
471
|
-
placement: import('@embedpdf/utils/vue').SelectionMenuPlacement;
|
|
472
|
-
menuWrapperProps: {
|
|
473
|
-
style: CSSProperties;
|
|
474
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
475
|
-
onTouchstart: (e: TouchEvent) => void;
|
|
476
|
-
};
|
|
477
|
-
}, __VLS_257: {
|
|
478
|
-
context: import('..').AnnotationSelectionContext;
|
|
479
|
-
selected: boolean;
|
|
480
|
-
rect: {
|
|
481
|
-
origin: {
|
|
482
|
-
x: number;
|
|
483
|
-
y: number;
|
|
484
|
-
};
|
|
485
|
-
size: {
|
|
486
|
-
width: number;
|
|
487
|
-
height: number;
|
|
488
|
-
};
|
|
489
|
-
};
|
|
490
|
-
placement: import('@embedpdf/utils/vue').SelectionMenuPlacement;
|
|
491
|
-
menuWrapperProps: {
|
|
492
|
-
style: CSSProperties;
|
|
493
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
494
|
-
onTouchstart: (e: TouchEvent) => void;
|
|
495
|
-
};
|
|
496
|
-
}, __VLS_272: {
|
|
497
|
-
context: import('..').AnnotationSelectionContext;
|
|
498
|
-
selected: boolean;
|
|
499
|
-
rect: {
|
|
500
|
-
origin: {
|
|
501
|
-
x: number;
|
|
502
|
-
y: number;
|
|
503
|
-
};
|
|
504
|
-
size: {
|
|
505
|
-
width: number;
|
|
506
|
-
height: number;
|
|
507
|
-
};
|
|
508
|
-
};
|
|
509
|
-
placement: import('@embedpdf/utils/vue').SelectionMenuPlacement;
|
|
510
|
-
menuWrapperProps: {
|
|
511
|
-
style: CSSProperties;
|
|
512
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
513
|
-
onTouchstart: (e: TouchEvent) => void;
|
|
514
|
-
};
|
|
515
|
-
}, __VLS_287: {
|
|
516
|
-
context: import('..').AnnotationSelectionContext;
|
|
517
|
-
selected: boolean;
|
|
518
|
-
rect: {
|
|
519
|
-
origin: {
|
|
520
|
-
x: number;
|
|
521
|
-
y: number;
|
|
522
|
-
};
|
|
523
|
-
size: {
|
|
524
|
-
width: number;
|
|
525
|
-
height: number;
|
|
526
|
-
};
|
|
527
|
-
};
|
|
528
|
-
placement: import('@embedpdf/utils/vue').SelectionMenuPlacement;
|
|
529
|
-
menuWrapperProps: {
|
|
530
|
-
style: CSSProperties;
|
|
531
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
532
|
-
onTouchstart: (e: TouchEvent) => void;
|
|
533
|
-
};
|
|
534
|
-
}, __VLS_290: {
|
|
535
|
-
backgroundColor: string;
|
|
536
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
537
|
-
onPointermove: (e: PointerEvent) => void;
|
|
538
|
-
onPointerup: (e: PointerEvent) => void;
|
|
539
|
-
onPointercancel: (e: PointerEvent) => void;
|
|
540
|
-
key: string | number | undefined;
|
|
541
|
-
style: CSSProperties;
|
|
542
|
-
}, __VLS_299: {
|
|
543
|
-
context: import('..').GroupSelectionContext;
|
|
544
|
-
selected: boolean;
|
|
545
|
-
rect: {
|
|
546
|
-
origin: {
|
|
547
|
-
x: number;
|
|
548
|
-
y: number;
|
|
549
|
-
};
|
|
550
|
-
size: {
|
|
551
|
-
width: number;
|
|
552
|
-
height: number;
|
|
553
|
-
};
|
|
554
|
-
};
|
|
555
|
-
placement: import('@embedpdf/utils/vue').SelectionMenuPlacement;
|
|
556
|
-
menuWrapperProps: {
|
|
557
|
-
style: CSSProperties;
|
|
558
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
559
|
-
onTouchstart: (e: TouchEvent) => void;
|
|
560
|
-
};
|
|
561
|
-
}, __VLS_302: {
|
|
562
|
-
backgroundColor: string;
|
|
563
|
-
onPointerdown: (e: PointerEvent) => void;
|
|
564
|
-
onPointermove: (e: PointerEvent) => void;
|
|
565
|
-
onPointerup: (e: PointerEvent) => void;
|
|
566
|
-
onPointercancel: (e: PointerEvent) => void;
|
|
567
|
-
key: string | number | undefined;
|
|
568
|
-
style: CSSProperties;
|
|
569
|
-
}, __VLS_305: {
|
|
76
|
+
}, __VLS_38: {
|
|
570
77
|
[key: string]: any;
|
|
571
78
|
key?: string | number;
|
|
572
79
|
style: CSSProperties;
|
|
@@ -584,89 +91,15 @@ type __VLS_Slots = {} & {
|
|
|
584
91
|
} & {
|
|
585
92
|
'resize-handle'?: (props: typeof __VLS_17) => any;
|
|
586
93
|
} & {
|
|
587
|
-
'
|
|
588
|
-
} & {
|
|
589
|
-
'selection-menu'?: (props: typeof __VLS_35) => any;
|
|
590
|
-
} & {
|
|
591
|
-
'resize-handle'?: (props: typeof __VLS_38) => any;
|
|
592
|
-
} & {
|
|
593
|
-
'vertex-handle'?: (props: typeof __VLS_41) => any;
|
|
594
|
-
} & {
|
|
595
|
-
'rotation-handle'?: (props: typeof __VLS_44) => any;
|
|
596
|
-
} & {
|
|
597
|
-
'selection-menu'?: (props: typeof __VLS_59) => any;
|
|
598
|
-
} & {
|
|
599
|
-
'resize-handle'?: (props: typeof __VLS_62) => any;
|
|
600
|
-
} & {
|
|
601
|
-
'vertex-handle'?: (props: typeof __VLS_65) => any;
|
|
602
|
-
} & {
|
|
603
|
-
'rotation-handle'?: (props: typeof __VLS_68) => any;
|
|
604
|
-
} & {
|
|
605
|
-
'selection-menu'?: (props: typeof __VLS_83) => any;
|
|
606
|
-
} & {
|
|
607
|
-
'resize-handle'?: (props: typeof __VLS_86) => any;
|
|
608
|
-
} & {
|
|
609
|
-
'vertex-handle'?: (props: typeof __VLS_89) => any;
|
|
610
|
-
} & {
|
|
611
|
-
'rotation-handle'?: (props: typeof __VLS_92) => any;
|
|
612
|
-
} & {
|
|
613
|
-
'selection-menu'?: (props: typeof __VLS_107) => any;
|
|
614
|
-
} & {
|
|
615
|
-
'resize-handle'?: (props: typeof __VLS_110) => any;
|
|
616
|
-
} & {
|
|
617
|
-
'vertex-handle'?: (props: typeof __VLS_113) => any;
|
|
618
|
-
} & {
|
|
619
|
-
'rotation-handle'?: (props: typeof __VLS_116) => any;
|
|
620
|
-
} & {
|
|
621
|
-
'selection-menu'?: (props: typeof __VLS_131) => any;
|
|
622
|
-
} & {
|
|
623
|
-
'resize-handle'?: (props: typeof __VLS_134) => any;
|
|
624
|
-
} & {
|
|
625
|
-
'vertex-handle'?: (props: typeof __VLS_137) => any;
|
|
626
|
-
} & {
|
|
627
|
-
'rotation-handle'?: (props: typeof __VLS_140) => any;
|
|
628
|
-
} & {
|
|
629
|
-
'selection-menu'?: (props: typeof __VLS_155) => any;
|
|
630
|
-
} & {
|
|
631
|
-
'resize-handle'?: (props: typeof __VLS_158) => any;
|
|
632
|
-
} & {
|
|
633
|
-
'vertex-handle'?: (props: typeof __VLS_161) => any;
|
|
634
|
-
} & {
|
|
635
|
-
'rotation-handle'?: (props: typeof __VLS_164) => any;
|
|
636
|
-
} & {
|
|
637
|
-
'selection-menu'?: (props: typeof __VLS_179) => any;
|
|
638
|
-
} & {
|
|
639
|
-
'resize-handle'?: (props: typeof __VLS_182) => any;
|
|
640
|
-
} & {
|
|
641
|
-
'vertex-handle'?: (props: typeof __VLS_185) => any;
|
|
642
|
-
} & {
|
|
643
|
-
'rotation-handle'?: (props: typeof __VLS_188) => any;
|
|
644
|
-
} & {
|
|
645
|
-
'selection-menu'?: (props: typeof __VLS_203) => any;
|
|
646
|
-
} & {
|
|
647
|
-
'resize-handle'?: (props: typeof __VLS_206) => any;
|
|
648
|
-
} & {
|
|
649
|
-
'vertex-handle'?: (props: typeof __VLS_209) => any;
|
|
650
|
-
} & {
|
|
651
|
-
'rotation-handle'?: (props: typeof __VLS_212) => any;
|
|
652
|
-
} & {
|
|
653
|
-
'selection-menu'?: (props: typeof __VLS_227) => any;
|
|
654
|
-
} & {
|
|
655
|
-
'selection-menu'?: (props: typeof __VLS_242) => any;
|
|
656
|
-
} & {
|
|
657
|
-
'selection-menu'?: (props: typeof __VLS_257) => any;
|
|
658
|
-
} & {
|
|
659
|
-
'selection-menu'?: (props: typeof __VLS_272) => any;
|
|
660
|
-
} & {
|
|
661
|
-
'selection-menu'?: (props: typeof __VLS_287) => any;
|
|
94
|
+
'vertex-handle'?: (props: typeof __VLS_20) => any;
|
|
662
95
|
} & {
|
|
663
|
-
'
|
|
96
|
+
'rotation-handle'?: (props: typeof __VLS_23) => any;
|
|
664
97
|
} & {
|
|
665
|
-
'group-selection-menu'?: (props: typeof
|
|
98
|
+
'group-selection-menu'?: (props: typeof __VLS_32) => any;
|
|
666
99
|
} & {
|
|
667
|
-
'resize-handle'?: (props: typeof
|
|
100
|
+
'resize-handle'?: (props: typeof __VLS_35) => any;
|
|
668
101
|
} & {
|
|
669
|
-
'rotation-handle'?: (props: typeof
|
|
102
|
+
'rotation-handle'?: (props: typeof __VLS_38) => any;
|
|
670
103
|
};
|
|
671
104
|
declare const __VLS_base: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
672
105
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { CSSProperties } from 'vue';
|
|
2
|
+
import { AnnotationAppearanceImage } from '@embedpdf/models';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
appearance: AnnotationAppearanceImage<Blob>;
|
|
5
|
+
style?: CSSProperties;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
8
|
+
declare const _default: typeof __VLS_export;
|
|
9
|
+
export default _default;
|
|
@@ -82,10 +82,10 @@ type __VLS_Slots = {} & {
|
|
|
82
82
|
'group-selection-menu'?: (props: typeof __VLS_17) => any;
|
|
83
83
|
};
|
|
84
84
|
declare const __VLS_base: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
85
|
-
isRotatable: boolean;
|
|
86
|
-
lockAspectRatio: boolean;
|
|
87
85
|
outlineOffset: number;
|
|
88
86
|
zIndex: number;
|
|
87
|
+
isRotatable: boolean;
|
|
88
|
+
lockAspectRatio: boolean;
|
|
89
89
|
selectionOutlineColor: string;
|
|
90
90
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
91
91
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PdfCircleAnnoObject } from '@embedpdf/models';
|
|
2
|
+
import { AnnotationRendererProps } from '../../context/types';
|
|
3
|
+
type __VLS_Props = AnnotationRendererProps<PdfCircleAnnoObject>;
|
|
4
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PdfFreeTextAnnoObject } from '@embedpdf/models';
|
|
2
|
+
import { AnnotationRendererProps } from '../../context/types';
|
|
3
|
+
type __VLS_Props = AnnotationRendererProps<PdfFreeTextAnnoObject>;
|
|
4
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PdfHighlightAnnoObject } from '@embedpdf/models';
|
|
2
|
+
import { AnnotationRendererProps } from '../../context/types';
|
|
3
|
+
type __VLS_Props = AnnotationRendererProps<PdfHighlightAnnoObject>;
|
|
4
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PdfInkAnnoObject } from '@embedpdf/models';
|
|
2
|
+
import { AnnotationRendererProps } from '../../context/types';
|
|
3
|
+
type __VLS_Props = AnnotationRendererProps<PdfInkAnnoObject>;
|
|
4
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PdfLineAnnoObject } from '@embedpdf/models';
|
|
2
|
+
import { AnnotationRendererProps } from '../../context/types';
|
|
3
|
+
type __VLS_Props = AnnotationRendererProps<PdfLineAnnoObject>;
|
|
4
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
export default _default;
|