@vue-pdf-viewer/viewer 3.0.0-alpha.9 → 3.0.0-beta.1
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.js +10606 -10417
- package/dist/index.umd.cjs +22 -31
- package/dist/types/components/AppTooltip.vue.d.ts +3 -3
- package/dist/types/components/FreeTextPanel.vue.d.ts +1 -15
- package/dist/types/components/LayerAnnotationEditorFreeText.vue.d.ts +3 -0
- package/dist/types/components/LayerAnnotationEditorFreeTextItem.vue.d.ts +10 -4
- package/dist/types/components/ui/select/SelectContent.vue.d.ts +3 -0
- package/dist/types/composables/__mocks__/useLicense.d.ts +12 -0
- package/dist/types/composables/useAnnotationFreeText.d.ts +1097 -23
- package/dist/types/composables/useAnnotationHighlight.d.ts +22 -22
- package/dist/types/composables/useAnnotationStamp.d.ts +42 -22
- package/dist/types/composables/useAnnotationStorage.d.ts +1 -1
- package/dist/types/composables/usePlugins.d.ts +1 -1
- package/dist/types/utils/annotation-free-text.d.ts +3 -4
- package/dist/types/utils/annotation-highlight.d.ts +19 -0
- package/dist/types/utils/types.d.ts +23 -9
- package/dist/types/utils.d.ts +1 -0
- package/package.json +4 -4
|
@@ -3,7 +3,9 @@ import { Ref } from 'vue';
|
|
|
3
3
|
import type { AnnotationFreeText } from '@/utils/types';
|
|
4
4
|
interface UseAnnotationFreeTextProps {
|
|
5
5
|
page: Ref<PDFPageProxy>;
|
|
6
|
+
pageWrapperLayer: Ref<HTMLDivElement>;
|
|
6
7
|
annotationLayer: Ref<AnnotationLayer>;
|
|
8
|
+
editorLayer: Ref<HTMLDivElement>;
|
|
7
9
|
}
|
|
8
10
|
export declare const useAnnotationFreeText: (props: UseAnnotationFreeTextProps) => {
|
|
9
11
|
isPrepared: Ref<boolean, boolean>;
|
|
@@ -123,24 +125,559 @@ export declare const useAnnotationFreeText: (props: UseAnnotationFreeTextProps)
|
|
|
123
125
|
} | undefined;
|
|
124
126
|
fontSize?: number | undefined;
|
|
125
127
|
value?: string | undefined;
|
|
128
|
+
richText?: {
|
|
129
|
+
html: {
|
|
130
|
+
attributes: {
|
|
131
|
+
style: {
|
|
132
|
+
[x: number]: string | undefined;
|
|
133
|
+
accentColor?: string | undefined;
|
|
134
|
+
alignContent?: string | undefined;
|
|
135
|
+
alignItems?: string | undefined;
|
|
136
|
+
alignSelf?: string | undefined;
|
|
137
|
+
alignmentBaseline?: string | undefined;
|
|
138
|
+
all?: string | undefined;
|
|
139
|
+
animation?: string | undefined;
|
|
140
|
+
animationDelay?: string | undefined;
|
|
141
|
+
animationDirection?: string | undefined;
|
|
142
|
+
animationDuration?: string | undefined;
|
|
143
|
+
animationFillMode?: string | undefined;
|
|
144
|
+
animationIterationCount?: string | undefined;
|
|
145
|
+
animationName?: string | undefined;
|
|
146
|
+
animationPlayState?: string | undefined;
|
|
147
|
+
animationTimingFunction?: string | undefined;
|
|
148
|
+
appearance?: string | undefined;
|
|
149
|
+
aspectRatio?: string | undefined;
|
|
150
|
+
backdropFilter?: string | undefined;
|
|
151
|
+
backfaceVisibility?: string | undefined;
|
|
152
|
+
background?: string | undefined;
|
|
153
|
+
backgroundAttachment?: string | undefined;
|
|
154
|
+
backgroundBlendMode?: string | undefined;
|
|
155
|
+
backgroundClip?: string | undefined;
|
|
156
|
+
backgroundColor?: string | undefined;
|
|
157
|
+
backgroundImage?: string | undefined;
|
|
158
|
+
backgroundOrigin?: string | undefined;
|
|
159
|
+
backgroundPosition?: string | undefined;
|
|
160
|
+
backgroundPositionX?: string | undefined;
|
|
161
|
+
backgroundPositionY?: string | undefined;
|
|
162
|
+
backgroundRepeat?: string | undefined;
|
|
163
|
+
backgroundSize?: string | undefined;
|
|
164
|
+
baselineShift?: string | undefined;
|
|
165
|
+
blockSize?: string | undefined;
|
|
166
|
+
border?: string | undefined;
|
|
167
|
+
borderBlock?: string | undefined;
|
|
168
|
+
borderBlockColor?: string | undefined;
|
|
169
|
+
borderBlockEnd?: string | undefined;
|
|
170
|
+
borderBlockEndColor?: string | undefined;
|
|
171
|
+
borderBlockEndStyle?: string | undefined;
|
|
172
|
+
borderBlockEndWidth?: string | undefined;
|
|
173
|
+
borderBlockStart?: string | undefined;
|
|
174
|
+
borderBlockStartColor?: string | undefined;
|
|
175
|
+
borderBlockStartStyle?: string | undefined;
|
|
176
|
+
borderBlockStartWidth?: string | undefined;
|
|
177
|
+
borderBlockStyle?: string | undefined;
|
|
178
|
+
borderBlockWidth?: string | undefined;
|
|
179
|
+
borderBottom?: string | undefined;
|
|
180
|
+
borderBottomColor?: string | undefined;
|
|
181
|
+
borderBottomLeftRadius?: string | undefined;
|
|
182
|
+
borderBottomRightRadius?: string | undefined;
|
|
183
|
+
borderBottomStyle?: string | undefined;
|
|
184
|
+
borderBottomWidth?: string | undefined;
|
|
185
|
+
borderCollapse?: string | undefined;
|
|
186
|
+
borderColor?: string | undefined;
|
|
187
|
+
borderEndEndRadius?: string | undefined;
|
|
188
|
+
borderEndStartRadius?: string | undefined;
|
|
189
|
+
borderImage?: string | undefined;
|
|
190
|
+
borderImageOutset?: string | undefined;
|
|
191
|
+
borderImageRepeat?: string | undefined;
|
|
192
|
+
borderImageSlice?: string | undefined;
|
|
193
|
+
borderImageSource?: string | undefined;
|
|
194
|
+
borderImageWidth?: string | undefined;
|
|
195
|
+
borderInline?: string | undefined;
|
|
196
|
+
borderInlineColor?: string | undefined;
|
|
197
|
+
borderInlineEnd?: string | undefined;
|
|
198
|
+
borderInlineEndColor?: string | undefined;
|
|
199
|
+
borderInlineEndStyle?: string | undefined;
|
|
200
|
+
borderInlineEndWidth?: string | undefined;
|
|
201
|
+
borderInlineStart?: string | undefined;
|
|
202
|
+
borderInlineStartColor?: string | undefined;
|
|
203
|
+
borderInlineStartStyle?: string | undefined;
|
|
204
|
+
borderInlineStartWidth?: string | undefined;
|
|
205
|
+
borderInlineStyle?: string | undefined;
|
|
206
|
+
borderInlineWidth?: string | undefined;
|
|
207
|
+
borderLeft?: string | undefined;
|
|
208
|
+
borderLeftColor?: string | undefined;
|
|
209
|
+
borderLeftStyle?: string | undefined;
|
|
210
|
+
borderLeftWidth?: string | undefined;
|
|
211
|
+
borderRadius?: string | undefined;
|
|
212
|
+
borderRight?: string | undefined;
|
|
213
|
+
borderRightColor?: string | undefined;
|
|
214
|
+
borderRightStyle?: string | undefined;
|
|
215
|
+
borderRightWidth?: string | undefined;
|
|
216
|
+
borderSpacing?: string | undefined;
|
|
217
|
+
borderStartEndRadius?: string | undefined;
|
|
218
|
+
borderStartStartRadius?: string | undefined;
|
|
219
|
+
borderStyle?: string | undefined;
|
|
220
|
+
borderTop?: string | undefined;
|
|
221
|
+
borderTopColor?: string | undefined;
|
|
222
|
+
borderTopLeftRadius?: string | undefined;
|
|
223
|
+
borderTopRightRadius?: string | undefined;
|
|
224
|
+
borderTopStyle?: string | undefined;
|
|
225
|
+
borderTopWidth?: string | undefined;
|
|
226
|
+
borderWidth?: string | undefined;
|
|
227
|
+
bottom?: string | undefined;
|
|
228
|
+
boxShadow?: string | undefined;
|
|
229
|
+
boxSizing?: string | undefined;
|
|
230
|
+
breakAfter?: string | undefined;
|
|
231
|
+
breakBefore?: string | undefined;
|
|
232
|
+
breakInside?: string | undefined;
|
|
233
|
+
captionSide?: string | undefined;
|
|
234
|
+
caretColor?: string | undefined;
|
|
235
|
+
clear?: string | undefined;
|
|
236
|
+
clip?: string | undefined;
|
|
237
|
+
clipPath?: string | undefined;
|
|
238
|
+
clipRule?: string | undefined;
|
|
239
|
+
color?: string | undefined;
|
|
240
|
+
colorInterpolation?: string | undefined;
|
|
241
|
+
colorInterpolationFilters?: string | undefined;
|
|
242
|
+
colorScheme?: string | undefined;
|
|
243
|
+
columnCount?: string | undefined;
|
|
244
|
+
columnFill?: string | undefined;
|
|
245
|
+
columnGap?: string | undefined;
|
|
246
|
+
columnRule?: string | undefined;
|
|
247
|
+
columnRuleColor?: string | undefined;
|
|
248
|
+
columnRuleStyle?: string | undefined;
|
|
249
|
+
columnRuleWidth?: string | undefined;
|
|
250
|
+
columnSpan?: string | undefined;
|
|
251
|
+
columnWidth?: string | undefined;
|
|
252
|
+
columns?: string | undefined;
|
|
253
|
+
contain?: string | undefined;
|
|
254
|
+
container?: string | undefined;
|
|
255
|
+
containerName?: string | undefined;
|
|
256
|
+
containerType?: string | undefined;
|
|
257
|
+
content?: string | undefined;
|
|
258
|
+
counterIncrement?: string | undefined;
|
|
259
|
+
counterReset?: string | undefined;
|
|
260
|
+
counterSet?: string | undefined;
|
|
261
|
+
cssFloat?: string | undefined;
|
|
262
|
+
cssText?: string | undefined;
|
|
263
|
+
cursor?: string | undefined;
|
|
264
|
+
direction?: string | undefined;
|
|
265
|
+
display?: string | undefined;
|
|
266
|
+
dominantBaseline?: string | undefined;
|
|
267
|
+
emptyCells?: string | undefined;
|
|
268
|
+
fill?: string | undefined;
|
|
269
|
+
fillOpacity?: string | undefined;
|
|
270
|
+
fillRule?: string | undefined;
|
|
271
|
+
filter?: string | undefined;
|
|
272
|
+
flex?: string | undefined;
|
|
273
|
+
flexBasis?: string | undefined;
|
|
274
|
+
flexDirection?: string | undefined;
|
|
275
|
+
flexFlow?: string | undefined;
|
|
276
|
+
flexGrow?: string | undefined;
|
|
277
|
+
flexShrink?: string | undefined;
|
|
278
|
+
flexWrap?: string | undefined;
|
|
279
|
+
float?: string | undefined;
|
|
280
|
+
floodColor?: string | undefined;
|
|
281
|
+
floodOpacity?: string | undefined;
|
|
282
|
+
font?: string | undefined;
|
|
283
|
+
fontFamily?: string | undefined;
|
|
284
|
+
fontFeatureSettings?: string | undefined;
|
|
285
|
+
fontKerning?: string | undefined;
|
|
286
|
+
fontOpticalSizing?: string | undefined;
|
|
287
|
+
fontPalette?: string | undefined;
|
|
288
|
+
fontSize?: string | undefined;
|
|
289
|
+
fontSizeAdjust?: string | undefined;
|
|
290
|
+
fontStretch?: string | undefined;
|
|
291
|
+
fontStyle?: string | undefined;
|
|
292
|
+
fontSynthesis?: string | undefined;
|
|
293
|
+
fontVariant?: string | undefined;
|
|
294
|
+
fontVariantAlternates?: string | undefined;
|
|
295
|
+
fontVariantCaps?: string | undefined;
|
|
296
|
+
fontVariantEastAsian?: string | undefined;
|
|
297
|
+
fontVariantLigatures?: string | undefined;
|
|
298
|
+
fontVariantNumeric?: string | undefined;
|
|
299
|
+
fontVariantPosition?: string | undefined;
|
|
300
|
+
fontVariationSettings?: string | undefined;
|
|
301
|
+
fontWeight?: string | undefined;
|
|
302
|
+
gap?: string | undefined;
|
|
303
|
+
grid?: string | undefined;
|
|
304
|
+
gridArea?: string | undefined;
|
|
305
|
+
gridAutoColumns?: string | undefined;
|
|
306
|
+
gridAutoFlow?: string | undefined;
|
|
307
|
+
gridAutoRows?: string | undefined;
|
|
308
|
+
gridColumn?: string | undefined;
|
|
309
|
+
gridColumnEnd?: string | undefined;
|
|
310
|
+
gridColumnGap?: string | undefined;
|
|
311
|
+
gridColumnStart?: string | undefined;
|
|
312
|
+
gridGap?: string | undefined;
|
|
313
|
+
gridRow?: string | undefined;
|
|
314
|
+
gridRowEnd?: string | undefined;
|
|
315
|
+
gridRowGap?: string | undefined;
|
|
316
|
+
gridRowStart?: string | undefined;
|
|
317
|
+
gridTemplate?: string | undefined;
|
|
318
|
+
gridTemplateAreas?: string | undefined;
|
|
319
|
+
gridTemplateColumns?: string | undefined;
|
|
320
|
+
gridTemplateRows?: string | undefined;
|
|
321
|
+
height?: string | undefined;
|
|
322
|
+
hyphenateCharacter?: string | undefined;
|
|
323
|
+
hyphens?: string | undefined;
|
|
324
|
+
imageOrientation?: string | undefined;
|
|
325
|
+
imageRendering?: string | undefined;
|
|
326
|
+
inlineSize?: string | undefined;
|
|
327
|
+
inset?: string | undefined;
|
|
328
|
+
insetBlock?: string | undefined;
|
|
329
|
+
insetBlockEnd?: string | undefined;
|
|
330
|
+
insetBlockStart?: string | undefined;
|
|
331
|
+
insetInline?: string | undefined;
|
|
332
|
+
insetInlineEnd?: string | undefined;
|
|
333
|
+
insetInlineStart?: string | undefined;
|
|
334
|
+
isolation?: string | undefined;
|
|
335
|
+
justifyContent?: string | undefined;
|
|
336
|
+
justifyItems?: string | undefined;
|
|
337
|
+
justifySelf?: string | undefined;
|
|
338
|
+
left?: string | undefined;
|
|
339
|
+
readonly length?: number | undefined;
|
|
340
|
+
letterSpacing?: string | undefined;
|
|
341
|
+
lightingColor?: string | undefined;
|
|
342
|
+
lineBreak?: string | undefined;
|
|
343
|
+
lineHeight?: string | undefined;
|
|
344
|
+
listStyle?: string | undefined;
|
|
345
|
+
listStyleImage?: string | undefined;
|
|
346
|
+
listStylePosition?: string | undefined;
|
|
347
|
+
listStyleType?: string | undefined;
|
|
348
|
+
margin?: string | undefined;
|
|
349
|
+
marginBlock?: string | undefined;
|
|
350
|
+
marginBlockEnd?: string | undefined;
|
|
351
|
+
marginBlockStart?: string | undefined;
|
|
352
|
+
marginBottom?: string | undefined;
|
|
353
|
+
marginInline?: string | undefined;
|
|
354
|
+
marginInlineEnd?: string | undefined;
|
|
355
|
+
marginInlineStart?: string | undefined;
|
|
356
|
+
marginLeft?: string | undefined;
|
|
357
|
+
marginRight?: string | undefined;
|
|
358
|
+
marginTop?: string | undefined;
|
|
359
|
+
marker?: string | undefined;
|
|
360
|
+
markerEnd?: string | undefined;
|
|
361
|
+
markerMid?: string | undefined;
|
|
362
|
+
markerStart?: string | undefined;
|
|
363
|
+
mask?: string | undefined;
|
|
364
|
+
maskClip?: string | undefined;
|
|
365
|
+
maskComposite?: string | undefined;
|
|
366
|
+
maskImage?: string | undefined;
|
|
367
|
+
maskMode?: string | undefined;
|
|
368
|
+
maskOrigin?: string | undefined;
|
|
369
|
+
maskPosition?: string | undefined;
|
|
370
|
+
maskRepeat?: string | undefined;
|
|
371
|
+
maskSize?: string | undefined;
|
|
372
|
+
maskType?: string | undefined;
|
|
373
|
+
maxBlockSize?: string | undefined;
|
|
374
|
+
maxHeight?: string | undefined;
|
|
375
|
+
maxInlineSize?: string | undefined;
|
|
376
|
+
maxWidth?: string | undefined;
|
|
377
|
+
minBlockSize?: string | undefined;
|
|
378
|
+
minHeight?: string | undefined;
|
|
379
|
+
minInlineSize?: string | undefined;
|
|
380
|
+
minWidth?: string | undefined;
|
|
381
|
+
mixBlendMode?: string | undefined;
|
|
382
|
+
objectFit?: string | undefined;
|
|
383
|
+
objectPosition?: string | undefined;
|
|
384
|
+
offset?: string | undefined;
|
|
385
|
+
offsetDistance?: string | undefined;
|
|
386
|
+
offsetPath?: string | undefined;
|
|
387
|
+
offsetRotate?: string | undefined;
|
|
388
|
+
opacity?: string | undefined;
|
|
389
|
+
order?: string | undefined;
|
|
390
|
+
orphans?: string | undefined;
|
|
391
|
+
outline?: string | undefined;
|
|
392
|
+
outlineColor?: string | undefined;
|
|
393
|
+
outlineOffset?: string | undefined;
|
|
394
|
+
outlineStyle?: string | undefined;
|
|
395
|
+
outlineWidth?: string | undefined;
|
|
396
|
+
overflow?: string | undefined;
|
|
397
|
+
overflowAnchor?: string | undefined;
|
|
398
|
+
overflowClipMargin?: string | undefined;
|
|
399
|
+
overflowWrap?: string | undefined;
|
|
400
|
+
overflowX?: string | undefined;
|
|
401
|
+
overflowY?: string | undefined;
|
|
402
|
+
overscrollBehavior?: string | undefined;
|
|
403
|
+
overscrollBehaviorBlock?: string | undefined;
|
|
404
|
+
overscrollBehaviorInline?: string | undefined;
|
|
405
|
+
overscrollBehaviorX?: string | undefined;
|
|
406
|
+
overscrollBehaviorY?: string | undefined;
|
|
407
|
+
padding?: string | undefined;
|
|
408
|
+
paddingBlock?: string | undefined;
|
|
409
|
+
paddingBlockEnd?: string | undefined;
|
|
410
|
+
paddingBlockStart?: string | undefined;
|
|
411
|
+
paddingBottom?: string | undefined;
|
|
412
|
+
paddingInline?: string | undefined;
|
|
413
|
+
paddingInlineEnd?: string | undefined;
|
|
414
|
+
paddingInlineStart?: string | undefined;
|
|
415
|
+
paddingLeft?: string | undefined;
|
|
416
|
+
paddingRight?: string | undefined;
|
|
417
|
+
paddingTop?: string | undefined;
|
|
418
|
+
pageBreakAfter?: string | undefined;
|
|
419
|
+
pageBreakBefore?: string | undefined;
|
|
420
|
+
pageBreakInside?: string | undefined;
|
|
421
|
+
paintOrder?: string | undefined;
|
|
422
|
+
readonly parentRule?: {
|
|
423
|
+
cssText: string;
|
|
424
|
+
readonly parentRule: any | null;
|
|
425
|
+
readonly parentStyleSheet: {
|
|
426
|
+
readonly cssRules: {
|
|
427
|
+
[x: number]: any;
|
|
428
|
+
readonly length: number;
|
|
429
|
+
item: (index: number) => CSSRule | null;
|
|
430
|
+
[Symbol.iterator]: () => IterableIterator<CSSRule>;
|
|
431
|
+
};
|
|
432
|
+
readonly ownerRule: any | null;
|
|
433
|
+
readonly rules: {
|
|
434
|
+
[x: number]: any;
|
|
435
|
+
readonly length: number;
|
|
436
|
+
item: (index: number) => CSSRule | null;
|
|
437
|
+
[Symbol.iterator]: () => IterableIterator<CSSRule>;
|
|
438
|
+
};
|
|
439
|
+
addRule: (selector?: string | undefined, style?: string | undefined, index?: number | undefined) => number;
|
|
440
|
+
deleteRule: (index: number) => void;
|
|
441
|
+
insertRule: (rule: string, index?: number | undefined) => number;
|
|
442
|
+
removeRule: (index?: number | undefined) => void;
|
|
443
|
+
replace: (text: string) => Promise<CSSStyleSheet>;
|
|
444
|
+
replaceSync: (text: string) => void;
|
|
445
|
+
disabled: boolean;
|
|
446
|
+
readonly href: string | null;
|
|
447
|
+
readonly media: {
|
|
448
|
+
[x: number]: string;
|
|
449
|
+
readonly length: number;
|
|
450
|
+
mediaText: string;
|
|
451
|
+
toString: () => string;
|
|
452
|
+
appendMedium: (medium: string) => void;
|
|
453
|
+
deleteMedium: (medium: string) => void;
|
|
454
|
+
item: (index: number) => string | null;
|
|
455
|
+
[Symbol.iterator]: () => IterableIterator<string>;
|
|
456
|
+
};
|
|
457
|
+
readonly ownerNode: Element | ProcessingInstruction | null;
|
|
458
|
+
readonly parentStyleSheet: any | null;
|
|
459
|
+
readonly title: string | null;
|
|
460
|
+
readonly type: string;
|
|
461
|
+
} | null;
|
|
462
|
+
readonly type: number;
|
|
463
|
+
readonly CHARSET_RULE: number;
|
|
464
|
+
readonly FONT_FACE_RULE: number;
|
|
465
|
+
readonly IMPORT_RULE: number;
|
|
466
|
+
readonly KEYFRAMES_RULE: number;
|
|
467
|
+
readonly KEYFRAME_RULE: number;
|
|
468
|
+
readonly MEDIA_RULE: number;
|
|
469
|
+
readonly NAMESPACE_RULE: number;
|
|
470
|
+
readonly PAGE_RULE: number;
|
|
471
|
+
readonly STYLE_RULE: number;
|
|
472
|
+
readonly SUPPORTS_RULE: number;
|
|
473
|
+
} | null | undefined;
|
|
474
|
+
perspective?: string | undefined;
|
|
475
|
+
perspectiveOrigin?: string | undefined;
|
|
476
|
+
placeContent?: string | undefined;
|
|
477
|
+
placeItems?: string | undefined;
|
|
478
|
+
placeSelf?: string | undefined;
|
|
479
|
+
pointerEvents?: string | undefined;
|
|
480
|
+
position?: string | undefined;
|
|
481
|
+
printColorAdjust?: string | undefined;
|
|
482
|
+
quotes?: string | undefined;
|
|
483
|
+
resize?: string | undefined;
|
|
484
|
+
right?: string | undefined;
|
|
485
|
+
rotate?: string | undefined;
|
|
486
|
+
rowGap?: string | undefined;
|
|
487
|
+
rubyPosition?: string | undefined;
|
|
488
|
+
scale?: string | undefined;
|
|
489
|
+
scrollBehavior?: string | undefined;
|
|
490
|
+
scrollMargin?: string | undefined;
|
|
491
|
+
scrollMarginBlock?: string | undefined;
|
|
492
|
+
scrollMarginBlockEnd?: string | undefined;
|
|
493
|
+
scrollMarginBlockStart?: string | undefined;
|
|
494
|
+
scrollMarginBottom?: string | undefined;
|
|
495
|
+
scrollMarginInline?: string | undefined;
|
|
496
|
+
scrollMarginInlineEnd?: string | undefined;
|
|
497
|
+
scrollMarginInlineStart?: string | undefined;
|
|
498
|
+
scrollMarginLeft?: string | undefined;
|
|
499
|
+
scrollMarginRight?: string | undefined;
|
|
500
|
+
scrollMarginTop?: string | undefined;
|
|
501
|
+
scrollPadding?: string | undefined;
|
|
502
|
+
scrollPaddingBlock?: string | undefined;
|
|
503
|
+
scrollPaddingBlockEnd?: string | undefined;
|
|
504
|
+
scrollPaddingBlockStart?: string | undefined;
|
|
505
|
+
scrollPaddingBottom?: string | undefined;
|
|
506
|
+
scrollPaddingInline?: string | undefined;
|
|
507
|
+
scrollPaddingInlineEnd?: string | undefined;
|
|
508
|
+
scrollPaddingInlineStart?: string | undefined;
|
|
509
|
+
scrollPaddingLeft?: string | undefined;
|
|
510
|
+
scrollPaddingRight?: string | undefined;
|
|
511
|
+
scrollPaddingTop?: string | undefined;
|
|
512
|
+
scrollSnapAlign?: string | undefined;
|
|
513
|
+
scrollSnapStop?: string | undefined;
|
|
514
|
+
scrollSnapType?: string | undefined;
|
|
515
|
+
scrollbarGutter?: string | undefined;
|
|
516
|
+
shapeImageThreshold?: string | undefined;
|
|
517
|
+
shapeMargin?: string | undefined;
|
|
518
|
+
shapeOutside?: string | undefined;
|
|
519
|
+
shapeRendering?: string | undefined;
|
|
520
|
+
stopColor?: string | undefined;
|
|
521
|
+
stopOpacity?: string | undefined;
|
|
522
|
+
stroke?: string | undefined;
|
|
523
|
+
strokeDasharray?: string | undefined;
|
|
524
|
+
strokeDashoffset?: string | undefined;
|
|
525
|
+
strokeLinecap?: string | undefined;
|
|
526
|
+
strokeLinejoin?: string | undefined;
|
|
527
|
+
strokeMiterlimit?: string | undefined;
|
|
528
|
+
strokeOpacity?: string | undefined;
|
|
529
|
+
strokeWidth?: string | undefined;
|
|
530
|
+
tabSize?: string | undefined;
|
|
531
|
+
tableLayout?: string | undefined;
|
|
532
|
+
textAlign?: string | undefined;
|
|
533
|
+
textAlignLast?: string | undefined;
|
|
534
|
+
textAnchor?: string | undefined;
|
|
535
|
+
textCombineUpright?: string | undefined;
|
|
536
|
+
textDecoration?: string | undefined;
|
|
537
|
+
textDecorationColor?: string | undefined;
|
|
538
|
+
textDecorationLine?: string | undefined;
|
|
539
|
+
textDecorationSkipInk?: string | undefined;
|
|
540
|
+
textDecorationStyle?: string | undefined;
|
|
541
|
+
textDecorationThickness?: string | undefined;
|
|
542
|
+
textEmphasis?: string | undefined;
|
|
543
|
+
textEmphasisColor?: string | undefined;
|
|
544
|
+
textEmphasisPosition?: string | undefined;
|
|
545
|
+
textEmphasisStyle?: string | undefined;
|
|
546
|
+
textIndent?: string | undefined;
|
|
547
|
+
textOrientation?: string | undefined;
|
|
548
|
+
textOverflow?: string | undefined;
|
|
549
|
+
textRendering?: string | undefined;
|
|
550
|
+
textShadow?: string | undefined;
|
|
551
|
+
textTransform?: string | undefined;
|
|
552
|
+
textUnderlineOffset?: string | undefined;
|
|
553
|
+
textUnderlinePosition?: string | undefined;
|
|
554
|
+
top?: string | undefined;
|
|
555
|
+
touchAction?: string | undefined;
|
|
556
|
+
transform?: string | undefined;
|
|
557
|
+
transformBox?: string | undefined;
|
|
558
|
+
transformOrigin?: string | undefined;
|
|
559
|
+
transformStyle?: string | undefined;
|
|
560
|
+
transition?: string | undefined;
|
|
561
|
+
transitionDelay?: string | undefined;
|
|
562
|
+
transitionDuration?: string | undefined;
|
|
563
|
+
transitionProperty?: string | undefined;
|
|
564
|
+
transitionTimingFunction?: string | undefined;
|
|
565
|
+
translate?: string | undefined;
|
|
566
|
+
unicodeBidi?: string | undefined;
|
|
567
|
+
userSelect?: string | undefined;
|
|
568
|
+
verticalAlign?: string | undefined;
|
|
569
|
+
visibility?: string | undefined;
|
|
570
|
+
webkitAlignContent?: string | undefined;
|
|
571
|
+
webkitAlignItems?: string | undefined;
|
|
572
|
+
webkitAlignSelf?: string | undefined;
|
|
573
|
+
webkitAnimation?: string | undefined;
|
|
574
|
+
webkitAnimationDelay?: string | undefined;
|
|
575
|
+
webkitAnimationDirection?: string | undefined;
|
|
576
|
+
webkitAnimationDuration?: string | undefined;
|
|
577
|
+
webkitAnimationFillMode?: string | undefined;
|
|
578
|
+
webkitAnimationIterationCount?: string | undefined;
|
|
579
|
+
webkitAnimationName?: string | undefined;
|
|
580
|
+
webkitAnimationPlayState?: string | undefined;
|
|
581
|
+
webkitAnimationTimingFunction?: string | undefined;
|
|
582
|
+
webkitAppearance?: string | undefined;
|
|
583
|
+
webkitBackfaceVisibility?: string | undefined;
|
|
584
|
+
webkitBackgroundClip?: string | undefined;
|
|
585
|
+
webkitBackgroundOrigin?: string | undefined;
|
|
586
|
+
webkitBackgroundSize?: string | undefined;
|
|
587
|
+
webkitBorderBottomLeftRadius?: string | undefined;
|
|
588
|
+
webkitBorderBottomRightRadius?: string | undefined;
|
|
589
|
+
webkitBorderRadius?: string | undefined;
|
|
590
|
+
webkitBorderTopLeftRadius?: string | undefined;
|
|
591
|
+
webkitBorderTopRightRadius?: string | undefined;
|
|
592
|
+
webkitBoxAlign?: string | undefined;
|
|
593
|
+
webkitBoxFlex?: string | undefined;
|
|
594
|
+
webkitBoxOrdinalGroup?: string | undefined;
|
|
595
|
+
webkitBoxOrient?: string | undefined;
|
|
596
|
+
webkitBoxPack?: string | undefined;
|
|
597
|
+
webkitBoxShadow?: string | undefined;
|
|
598
|
+
webkitBoxSizing?: string | undefined;
|
|
599
|
+
webkitFilter?: string | undefined;
|
|
600
|
+
webkitFlex?: string | undefined;
|
|
601
|
+
webkitFlexBasis?: string | undefined;
|
|
602
|
+
webkitFlexDirection?: string | undefined;
|
|
603
|
+
webkitFlexFlow?: string | undefined;
|
|
604
|
+
webkitFlexGrow?: string | undefined;
|
|
605
|
+
webkitFlexShrink?: string | undefined;
|
|
606
|
+
webkitFlexWrap?: string | undefined;
|
|
607
|
+
webkitJustifyContent?: string | undefined;
|
|
608
|
+
webkitLineClamp?: string | undefined;
|
|
609
|
+
webkitMask?: string | undefined;
|
|
610
|
+
webkitMaskBoxImage?: string | undefined;
|
|
611
|
+
webkitMaskBoxImageOutset?: string | undefined;
|
|
612
|
+
webkitMaskBoxImageRepeat?: string | undefined;
|
|
613
|
+
webkitMaskBoxImageSlice?: string | undefined;
|
|
614
|
+
webkitMaskBoxImageSource?: string | undefined;
|
|
615
|
+
webkitMaskBoxImageWidth?: string | undefined;
|
|
616
|
+
webkitMaskClip?: string | undefined;
|
|
617
|
+
webkitMaskComposite?: string | undefined;
|
|
618
|
+
webkitMaskImage?: string | undefined;
|
|
619
|
+
webkitMaskOrigin?: string | undefined;
|
|
620
|
+
webkitMaskPosition?: string | undefined;
|
|
621
|
+
webkitMaskRepeat?: string | undefined;
|
|
622
|
+
webkitMaskSize?: string | undefined;
|
|
623
|
+
webkitOrder?: string | undefined;
|
|
624
|
+
webkitPerspective?: string | undefined;
|
|
625
|
+
webkitPerspectiveOrigin?: string | undefined;
|
|
626
|
+
webkitTextFillColor?: string | undefined;
|
|
627
|
+
webkitTextSizeAdjust?: string | undefined;
|
|
628
|
+
webkitTextStroke?: string | undefined;
|
|
629
|
+
webkitTextStrokeColor?: string | undefined;
|
|
630
|
+
webkitTextStrokeWidth?: string | undefined;
|
|
631
|
+
webkitTransform?: string | undefined;
|
|
632
|
+
webkitTransformOrigin?: string | undefined;
|
|
633
|
+
webkitTransformStyle?: string | undefined;
|
|
634
|
+
webkitTransition?: string | undefined;
|
|
635
|
+
webkitTransitionDelay?: string | undefined;
|
|
636
|
+
webkitTransitionDuration?: string | undefined;
|
|
637
|
+
webkitTransitionProperty?: string | undefined;
|
|
638
|
+
webkitTransitionTimingFunction?: string | undefined;
|
|
639
|
+
webkitUserSelect?: string | undefined;
|
|
640
|
+
whiteSpace?: string | undefined;
|
|
641
|
+
widows?: string | undefined;
|
|
642
|
+
width?: string | undefined;
|
|
643
|
+
willChange?: string | undefined;
|
|
644
|
+
wordBreak?: string | undefined;
|
|
645
|
+
wordSpacing?: string | undefined;
|
|
646
|
+
wordWrap?: string | undefined;
|
|
647
|
+
writingMode?: string | undefined;
|
|
648
|
+
zIndex?: string | undefined;
|
|
649
|
+
getPropertyPriority?: ((property: string) => string) | undefined;
|
|
650
|
+
getPropertyValue?: ((property: string) => string) | undefined;
|
|
651
|
+
item?: ((index: number) => string) | undefined;
|
|
652
|
+
removeProperty?: ((property: string) => string) | undefined;
|
|
653
|
+
setProperty?: ((property: string, value: string | null, priority?: string | undefined) => void) | undefined;
|
|
654
|
+
[Symbol.iterator]?: (() => IterableIterator<string>) | undefined;
|
|
655
|
+
};
|
|
656
|
+
class: string[];
|
|
657
|
+
};
|
|
658
|
+
name: string;
|
|
659
|
+
};
|
|
660
|
+
str: string;
|
|
661
|
+
} | undefined;
|
|
662
|
+
isModified?: boolean | undefined;
|
|
663
|
+
id: string;
|
|
126
664
|
annotationType: number;
|
|
127
|
-
dest
|
|
665
|
+
dest?: string | [number | {
|
|
128
666
|
gen: number;
|
|
129
667
|
num: number;
|
|
130
668
|
}, {
|
|
131
669
|
name: string;
|
|
132
|
-
}, ...any[]];
|
|
133
|
-
hasAppearance
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
borderStyle: {
|
|
670
|
+
}, ...any[]] | undefined;
|
|
671
|
+
hasAppearance?: boolean | undefined;
|
|
672
|
+
rect?: number[] | undefined;
|
|
673
|
+
subtype?: string | undefined;
|
|
674
|
+
borderStyle?: {
|
|
138
675
|
dashArray: number[];
|
|
139
676
|
horizontalCornerRadius: number;
|
|
140
677
|
style: number;
|
|
141
678
|
verticalCornerRadius: number;
|
|
142
679
|
width: number;
|
|
143
|
-
};
|
|
680
|
+
} | undefined;
|
|
144
681
|
hasPopup?: boolean | undefined;
|
|
145
682
|
contents?: string | undefined;
|
|
146
683
|
contentsObj?: {
|
|
@@ -217,7 +754,7 @@ export declare const useAnnotationFreeText: (props: UseAnnotationFreeTextProps)
|
|
|
217
754
|
x: number;
|
|
218
755
|
y: number;
|
|
219
756
|
}[][] | undefined;
|
|
220
|
-
lineCoordinates
|
|
757
|
+
lineCoordinates?: number[] | undefined;
|
|
221
758
|
action?: string | undefined;
|
|
222
759
|
unsafeUrl?: string | undefined;
|
|
223
760
|
url?: string | undefined;
|
|
@@ -227,8 +764,8 @@ export declare const useAnnotationFreeText: (props: UseAnnotationFreeTextProps)
|
|
|
227
764
|
y: number;
|
|
228
765
|
}[] | undefined;
|
|
229
766
|
name?: string | undefined;
|
|
230
|
-
fieldType
|
|
231
|
-
pushButton
|
|
767
|
+
fieldType?: string | undefined;
|
|
768
|
+
pushButton?: boolean | undefined;
|
|
232
769
|
deleted?: boolean | undefined;
|
|
233
770
|
noView?: boolean | undefined;
|
|
234
771
|
noPrint?: boolean | undefined;
|
|
@@ -348,24 +885,559 @@ export declare const useAnnotationFreeText: (props: UseAnnotationFreeTextProps)
|
|
|
348
885
|
} | undefined;
|
|
349
886
|
fontSize?: number | undefined;
|
|
350
887
|
value?: string | undefined;
|
|
888
|
+
richText?: {
|
|
889
|
+
html: {
|
|
890
|
+
attributes: {
|
|
891
|
+
style: {
|
|
892
|
+
[x: number]: string | undefined;
|
|
893
|
+
accentColor?: string | undefined;
|
|
894
|
+
alignContent?: string | undefined;
|
|
895
|
+
alignItems?: string | undefined;
|
|
896
|
+
alignSelf?: string | undefined;
|
|
897
|
+
alignmentBaseline?: string | undefined;
|
|
898
|
+
all?: string | undefined;
|
|
899
|
+
animation?: string | undefined;
|
|
900
|
+
animationDelay?: string | undefined;
|
|
901
|
+
animationDirection?: string | undefined;
|
|
902
|
+
animationDuration?: string | undefined;
|
|
903
|
+
animationFillMode?: string | undefined;
|
|
904
|
+
animationIterationCount?: string | undefined;
|
|
905
|
+
animationName?: string | undefined;
|
|
906
|
+
animationPlayState?: string | undefined;
|
|
907
|
+
animationTimingFunction?: string | undefined;
|
|
908
|
+
appearance?: string | undefined;
|
|
909
|
+
aspectRatio?: string | undefined;
|
|
910
|
+
backdropFilter?: string | undefined;
|
|
911
|
+
backfaceVisibility?: string | undefined;
|
|
912
|
+
background?: string | undefined;
|
|
913
|
+
backgroundAttachment?: string | undefined;
|
|
914
|
+
backgroundBlendMode?: string | undefined;
|
|
915
|
+
backgroundClip?: string | undefined;
|
|
916
|
+
backgroundColor?: string | undefined;
|
|
917
|
+
backgroundImage?: string | undefined;
|
|
918
|
+
backgroundOrigin?: string | undefined;
|
|
919
|
+
backgroundPosition?: string | undefined;
|
|
920
|
+
backgroundPositionX?: string | undefined;
|
|
921
|
+
backgroundPositionY?: string | undefined;
|
|
922
|
+
backgroundRepeat?: string | undefined;
|
|
923
|
+
backgroundSize?: string | undefined;
|
|
924
|
+
baselineShift?: string | undefined;
|
|
925
|
+
blockSize?: string | undefined;
|
|
926
|
+
border?: string | undefined;
|
|
927
|
+
borderBlock?: string | undefined;
|
|
928
|
+
borderBlockColor?: string | undefined;
|
|
929
|
+
borderBlockEnd?: string | undefined;
|
|
930
|
+
borderBlockEndColor?: string | undefined;
|
|
931
|
+
borderBlockEndStyle?: string | undefined;
|
|
932
|
+
borderBlockEndWidth?: string | undefined;
|
|
933
|
+
borderBlockStart?: string | undefined;
|
|
934
|
+
borderBlockStartColor?: string | undefined;
|
|
935
|
+
borderBlockStartStyle?: string | undefined;
|
|
936
|
+
borderBlockStartWidth?: string | undefined;
|
|
937
|
+
borderBlockStyle?: string | undefined;
|
|
938
|
+
borderBlockWidth?: string | undefined;
|
|
939
|
+
borderBottom?: string | undefined;
|
|
940
|
+
borderBottomColor?: string | undefined;
|
|
941
|
+
borderBottomLeftRadius?: string | undefined;
|
|
942
|
+
borderBottomRightRadius?: string | undefined;
|
|
943
|
+
borderBottomStyle?: string | undefined;
|
|
944
|
+
borderBottomWidth?: string | undefined;
|
|
945
|
+
borderCollapse?: string | undefined;
|
|
946
|
+
borderColor?: string | undefined;
|
|
947
|
+
borderEndEndRadius?: string | undefined;
|
|
948
|
+
borderEndStartRadius?: string | undefined;
|
|
949
|
+
borderImage?: string | undefined;
|
|
950
|
+
borderImageOutset?: string | undefined;
|
|
951
|
+
borderImageRepeat?: string | undefined;
|
|
952
|
+
borderImageSlice?: string | undefined;
|
|
953
|
+
borderImageSource?: string | undefined;
|
|
954
|
+
borderImageWidth?: string | undefined;
|
|
955
|
+
borderInline?: string | undefined;
|
|
956
|
+
borderInlineColor?: string | undefined;
|
|
957
|
+
borderInlineEnd?: string | undefined;
|
|
958
|
+
borderInlineEndColor?: string | undefined;
|
|
959
|
+
borderInlineEndStyle?: string | undefined;
|
|
960
|
+
borderInlineEndWidth?: string | undefined;
|
|
961
|
+
borderInlineStart?: string | undefined;
|
|
962
|
+
borderInlineStartColor?: string | undefined;
|
|
963
|
+
borderInlineStartStyle?: string | undefined;
|
|
964
|
+
borderInlineStartWidth?: string | undefined;
|
|
965
|
+
borderInlineStyle?: string | undefined;
|
|
966
|
+
borderInlineWidth?: string | undefined;
|
|
967
|
+
borderLeft?: string | undefined;
|
|
968
|
+
borderLeftColor?: string | undefined;
|
|
969
|
+
borderLeftStyle?: string | undefined;
|
|
970
|
+
borderLeftWidth?: string | undefined;
|
|
971
|
+
borderRadius?: string | undefined;
|
|
972
|
+
borderRight?: string | undefined;
|
|
973
|
+
borderRightColor?: string | undefined;
|
|
974
|
+
borderRightStyle?: string | undefined;
|
|
975
|
+
borderRightWidth?: string | undefined;
|
|
976
|
+
borderSpacing?: string | undefined;
|
|
977
|
+
borderStartEndRadius?: string | undefined;
|
|
978
|
+
borderStartStartRadius?: string | undefined;
|
|
979
|
+
borderStyle?: string | undefined;
|
|
980
|
+
borderTop?: string | undefined;
|
|
981
|
+
borderTopColor?: string | undefined;
|
|
982
|
+
borderTopLeftRadius?: string | undefined;
|
|
983
|
+
borderTopRightRadius?: string | undefined;
|
|
984
|
+
borderTopStyle?: string | undefined;
|
|
985
|
+
borderTopWidth?: string | undefined;
|
|
986
|
+
borderWidth?: string | undefined;
|
|
987
|
+
bottom?: string | undefined;
|
|
988
|
+
boxShadow?: string | undefined;
|
|
989
|
+
boxSizing?: string | undefined;
|
|
990
|
+
breakAfter?: string | undefined;
|
|
991
|
+
breakBefore?: string | undefined;
|
|
992
|
+
breakInside?: string | undefined;
|
|
993
|
+
captionSide?: string | undefined;
|
|
994
|
+
caretColor?: string | undefined;
|
|
995
|
+
clear?: string | undefined;
|
|
996
|
+
clip?: string | undefined;
|
|
997
|
+
clipPath?: string | undefined;
|
|
998
|
+
clipRule?: string | undefined;
|
|
999
|
+
color?: string | undefined;
|
|
1000
|
+
colorInterpolation?: string | undefined;
|
|
1001
|
+
colorInterpolationFilters?: string | undefined;
|
|
1002
|
+
colorScheme?: string | undefined;
|
|
1003
|
+
columnCount?: string | undefined;
|
|
1004
|
+
columnFill?: string | undefined;
|
|
1005
|
+
columnGap?: string | undefined;
|
|
1006
|
+
columnRule?: string | undefined;
|
|
1007
|
+
columnRuleColor?: string | undefined;
|
|
1008
|
+
columnRuleStyle?: string | undefined;
|
|
1009
|
+
columnRuleWidth?: string | undefined;
|
|
1010
|
+
columnSpan?: string | undefined;
|
|
1011
|
+
columnWidth?: string | undefined;
|
|
1012
|
+
columns?: string | undefined;
|
|
1013
|
+
contain?: string | undefined;
|
|
1014
|
+
container?: string | undefined;
|
|
1015
|
+
containerName?: string | undefined;
|
|
1016
|
+
containerType?: string | undefined;
|
|
1017
|
+
content?: string | undefined;
|
|
1018
|
+
counterIncrement?: string | undefined;
|
|
1019
|
+
counterReset?: string | undefined;
|
|
1020
|
+
counterSet?: string | undefined;
|
|
1021
|
+
cssFloat?: string | undefined;
|
|
1022
|
+
cssText?: string | undefined;
|
|
1023
|
+
cursor?: string | undefined;
|
|
1024
|
+
direction?: string | undefined;
|
|
1025
|
+
display?: string | undefined;
|
|
1026
|
+
dominantBaseline?: string | undefined;
|
|
1027
|
+
emptyCells?: string | undefined;
|
|
1028
|
+
fill?: string | undefined;
|
|
1029
|
+
fillOpacity?: string | undefined;
|
|
1030
|
+
fillRule?: string | undefined;
|
|
1031
|
+
filter?: string | undefined;
|
|
1032
|
+
flex?: string | undefined;
|
|
1033
|
+
flexBasis?: string | undefined;
|
|
1034
|
+
flexDirection?: string | undefined;
|
|
1035
|
+
flexFlow?: string | undefined;
|
|
1036
|
+
flexGrow?: string | undefined;
|
|
1037
|
+
flexShrink?: string | undefined;
|
|
1038
|
+
flexWrap?: string | undefined;
|
|
1039
|
+
float?: string | undefined;
|
|
1040
|
+
floodColor?: string | undefined;
|
|
1041
|
+
floodOpacity?: string | undefined;
|
|
1042
|
+
font?: string | undefined;
|
|
1043
|
+
fontFamily?: string | undefined;
|
|
1044
|
+
fontFeatureSettings?: string | undefined;
|
|
1045
|
+
fontKerning?: string | undefined;
|
|
1046
|
+
fontOpticalSizing?: string | undefined;
|
|
1047
|
+
fontPalette?: string | undefined;
|
|
1048
|
+
fontSize?: string | undefined;
|
|
1049
|
+
fontSizeAdjust?: string | undefined;
|
|
1050
|
+
fontStretch?: string | undefined;
|
|
1051
|
+
fontStyle?: string | undefined;
|
|
1052
|
+
fontSynthesis?: string | undefined;
|
|
1053
|
+
fontVariant?: string | undefined;
|
|
1054
|
+
fontVariantAlternates?: string | undefined;
|
|
1055
|
+
fontVariantCaps?: string | undefined;
|
|
1056
|
+
fontVariantEastAsian?: string | undefined;
|
|
1057
|
+
fontVariantLigatures?: string | undefined;
|
|
1058
|
+
fontVariantNumeric?: string | undefined;
|
|
1059
|
+
fontVariantPosition?: string | undefined;
|
|
1060
|
+
fontVariationSettings?: string | undefined;
|
|
1061
|
+
fontWeight?: string | undefined;
|
|
1062
|
+
gap?: string | undefined;
|
|
1063
|
+
grid?: string | undefined;
|
|
1064
|
+
gridArea?: string | undefined;
|
|
1065
|
+
gridAutoColumns?: string | undefined;
|
|
1066
|
+
gridAutoFlow?: string | undefined;
|
|
1067
|
+
gridAutoRows?: string | undefined;
|
|
1068
|
+
gridColumn?: string | undefined;
|
|
1069
|
+
gridColumnEnd?: string | undefined;
|
|
1070
|
+
gridColumnGap?: string | undefined;
|
|
1071
|
+
gridColumnStart?: string | undefined;
|
|
1072
|
+
gridGap?: string | undefined;
|
|
1073
|
+
gridRow?: string | undefined;
|
|
1074
|
+
gridRowEnd?: string | undefined;
|
|
1075
|
+
gridRowGap?: string | undefined;
|
|
1076
|
+
gridRowStart?: string | undefined;
|
|
1077
|
+
gridTemplate?: string | undefined;
|
|
1078
|
+
gridTemplateAreas?: string | undefined;
|
|
1079
|
+
gridTemplateColumns?: string | undefined;
|
|
1080
|
+
gridTemplateRows?: string | undefined;
|
|
1081
|
+
height?: string | undefined;
|
|
1082
|
+
hyphenateCharacter?: string | undefined;
|
|
1083
|
+
hyphens?: string | undefined;
|
|
1084
|
+
imageOrientation?: string | undefined;
|
|
1085
|
+
imageRendering?: string | undefined;
|
|
1086
|
+
inlineSize?: string | undefined;
|
|
1087
|
+
inset?: string | undefined;
|
|
1088
|
+
insetBlock?: string | undefined;
|
|
1089
|
+
insetBlockEnd?: string | undefined;
|
|
1090
|
+
insetBlockStart?: string | undefined;
|
|
1091
|
+
insetInline?: string | undefined;
|
|
1092
|
+
insetInlineEnd?: string | undefined;
|
|
1093
|
+
insetInlineStart?: string | undefined;
|
|
1094
|
+
isolation?: string | undefined;
|
|
1095
|
+
justifyContent?: string | undefined;
|
|
1096
|
+
justifyItems?: string | undefined;
|
|
1097
|
+
justifySelf?: string | undefined;
|
|
1098
|
+
left?: string | undefined;
|
|
1099
|
+
readonly length?: number | undefined;
|
|
1100
|
+
letterSpacing?: string | undefined;
|
|
1101
|
+
lightingColor?: string | undefined;
|
|
1102
|
+
lineBreak?: string | undefined;
|
|
1103
|
+
lineHeight?: string | undefined;
|
|
1104
|
+
listStyle?: string | undefined;
|
|
1105
|
+
listStyleImage?: string | undefined;
|
|
1106
|
+
listStylePosition?: string | undefined;
|
|
1107
|
+
listStyleType?: string | undefined;
|
|
1108
|
+
margin?: string | undefined;
|
|
1109
|
+
marginBlock?: string | undefined;
|
|
1110
|
+
marginBlockEnd?: string | undefined;
|
|
1111
|
+
marginBlockStart?: string | undefined;
|
|
1112
|
+
marginBottom?: string | undefined;
|
|
1113
|
+
marginInline?: string | undefined;
|
|
1114
|
+
marginInlineEnd?: string | undefined;
|
|
1115
|
+
marginInlineStart?: string | undefined;
|
|
1116
|
+
marginLeft?: string | undefined;
|
|
1117
|
+
marginRight?: string | undefined;
|
|
1118
|
+
marginTop?: string | undefined;
|
|
1119
|
+
marker?: string | undefined;
|
|
1120
|
+
markerEnd?: string | undefined;
|
|
1121
|
+
markerMid?: string | undefined;
|
|
1122
|
+
markerStart?: string | undefined;
|
|
1123
|
+
mask?: string | undefined;
|
|
1124
|
+
maskClip?: string | undefined;
|
|
1125
|
+
maskComposite?: string | undefined;
|
|
1126
|
+
maskImage?: string | undefined;
|
|
1127
|
+
maskMode?: string | undefined;
|
|
1128
|
+
maskOrigin?: string | undefined;
|
|
1129
|
+
maskPosition?: string | undefined;
|
|
1130
|
+
maskRepeat?: string | undefined;
|
|
1131
|
+
maskSize?: string | undefined;
|
|
1132
|
+
maskType?: string | undefined;
|
|
1133
|
+
maxBlockSize?: string | undefined;
|
|
1134
|
+
maxHeight?: string | undefined;
|
|
1135
|
+
maxInlineSize?: string | undefined;
|
|
1136
|
+
maxWidth?: string | undefined;
|
|
1137
|
+
minBlockSize?: string | undefined;
|
|
1138
|
+
minHeight?: string | undefined;
|
|
1139
|
+
minInlineSize?: string | undefined;
|
|
1140
|
+
minWidth?: string | undefined;
|
|
1141
|
+
mixBlendMode?: string | undefined;
|
|
1142
|
+
objectFit?: string | undefined;
|
|
1143
|
+
objectPosition?: string | undefined;
|
|
1144
|
+
offset?: string | undefined;
|
|
1145
|
+
offsetDistance?: string | undefined;
|
|
1146
|
+
offsetPath?: string | undefined;
|
|
1147
|
+
offsetRotate?: string | undefined;
|
|
1148
|
+
opacity?: string | undefined;
|
|
1149
|
+
order?: string | undefined;
|
|
1150
|
+
orphans?: string | undefined;
|
|
1151
|
+
outline?: string | undefined;
|
|
1152
|
+
outlineColor?: string | undefined;
|
|
1153
|
+
outlineOffset?: string | undefined;
|
|
1154
|
+
outlineStyle?: string | undefined;
|
|
1155
|
+
outlineWidth?: string | undefined;
|
|
1156
|
+
overflow?: string | undefined;
|
|
1157
|
+
overflowAnchor?: string | undefined;
|
|
1158
|
+
overflowClipMargin?: string | undefined;
|
|
1159
|
+
overflowWrap?: string | undefined;
|
|
1160
|
+
overflowX?: string | undefined;
|
|
1161
|
+
overflowY?: string | undefined;
|
|
1162
|
+
overscrollBehavior?: string | undefined;
|
|
1163
|
+
overscrollBehaviorBlock?: string | undefined;
|
|
1164
|
+
overscrollBehaviorInline?: string | undefined;
|
|
1165
|
+
overscrollBehaviorX?: string | undefined;
|
|
1166
|
+
overscrollBehaviorY?: string | undefined;
|
|
1167
|
+
padding?: string | undefined;
|
|
1168
|
+
paddingBlock?: string | undefined;
|
|
1169
|
+
paddingBlockEnd?: string | undefined;
|
|
1170
|
+
paddingBlockStart?: string | undefined;
|
|
1171
|
+
paddingBottom?: string | undefined;
|
|
1172
|
+
paddingInline?: string | undefined;
|
|
1173
|
+
paddingInlineEnd?: string | undefined;
|
|
1174
|
+
paddingInlineStart?: string | undefined;
|
|
1175
|
+
paddingLeft?: string | undefined;
|
|
1176
|
+
paddingRight?: string | undefined;
|
|
1177
|
+
paddingTop?: string | undefined;
|
|
1178
|
+
pageBreakAfter?: string | undefined;
|
|
1179
|
+
pageBreakBefore?: string | undefined;
|
|
1180
|
+
pageBreakInside?: string | undefined;
|
|
1181
|
+
paintOrder?: string | undefined;
|
|
1182
|
+
readonly parentRule?: {
|
|
1183
|
+
cssText: string;
|
|
1184
|
+
readonly parentRule: any | null;
|
|
1185
|
+
readonly parentStyleSheet: {
|
|
1186
|
+
readonly cssRules: {
|
|
1187
|
+
[x: number]: any;
|
|
1188
|
+
readonly length: number;
|
|
1189
|
+
item: (index: number) => CSSRule | null;
|
|
1190
|
+
[Symbol.iterator]: () => IterableIterator<CSSRule>;
|
|
1191
|
+
};
|
|
1192
|
+
readonly ownerRule: any | null;
|
|
1193
|
+
readonly rules: {
|
|
1194
|
+
[x: number]: any;
|
|
1195
|
+
readonly length: number;
|
|
1196
|
+
item: (index: number) => CSSRule | null;
|
|
1197
|
+
[Symbol.iterator]: () => IterableIterator<CSSRule>;
|
|
1198
|
+
};
|
|
1199
|
+
addRule: (selector?: string | undefined, style?: string | undefined, index?: number | undefined) => number;
|
|
1200
|
+
deleteRule: (index: number) => void;
|
|
1201
|
+
insertRule: (rule: string, index?: number | undefined) => number;
|
|
1202
|
+
removeRule: (index?: number | undefined) => void;
|
|
1203
|
+
replace: (text: string) => Promise<CSSStyleSheet>;
|
|
1204
|
+
replaceSync: (text: string) => void;
|
|
1205
|
+
disabled: boolean;
|
|
1206
|
+
readonly href: string | null;
|
|
1207
|
+
readonly media: {
|
|
1208
|
+
[x: number]: string;
|
|
1209
|
+
readonly length: number;
|
|
1210
|
+
mediaText: string;
|
|
1211
|
+
toString: () => string;
|
|
1212
|
+
appendMedium: (medium: string) => void;
|
|
1213
|
+
deleteMedium: (medium: string) => void;
|
|
1214
|
+
item: (index: number) => string | null;
|
|
1215
|
+
[Symbol.iterator]: () => IterableIterator<string>;
|
|
1216
|
+
};
|
|
1217
|
+
readonly ownerNode: Element | ProcessingInstruction | null;
|
|
1218
|
+
readonly parentStyleSheet: any | null;
|
|
1219
|
+
readonly title: string | null;
|
|
1220
|
+
readonly type: string;
|
|
1221
|
+
} | null;
|
|
1222
|
+
readonly type: number;
|
|
1223
|
+
readonly CHARSET_RULE: number;
|
|
1224
|
+
readonly FONT_FACE_RULE: number;
|
|
1225
|
+
readonly IMPORT_RULE: number;
|
|
1226
|
+
readonly KEYFRAMES_RULE: number;
|
|
1227
|
+
readonly KEYFRAME_RULE: number;
|
|
1228
|
+
readonly MEDIA_RULE: number;
|
|
1229
|
+
readonly NAMESPACE_RULE: number;
|
|
1230
|
+
readonly PAGE_RULE: number;
|
|
1231
|
+
readonly STYLE_RULE: number;
|
|
1232
|
+
readonly SUPPORTS_RULE: number;
|
|
1233
|
+
} | null | undefined;
|
|
1234
|
+
perspective?: string | undefined;
|
|
1235
|
+
perspectiveOrigin?: string | undefined;
|
|
1236
|
+
placeContent?: string | undefined;
|
|
1237
|
+
placeItems?: string | undefined;
|
|
1238
|
+
placeSelf?: string | undefined;
|
|
1239
|
+
pointerEvents?: string | undefined;
|
|
1240
|
+
position?: string | undefined;
|
|
1241
|
+
printColorAdjust?: string | undefined;
|
|
1242
|
+
quotes?: string | undefined;
|
|
1243
|
+
resize?: string | undefined;
|
|
1244
|
+
right?: string | undefined;
|
|
1245
|
+
rotate?: string | undefined;
|
|
1246
|
+
rowGap?: string | undefined;
|
|
1247
|
+
rubyPosition?: string | undefined;
|
|
1248
|
+
scale?: string | undefined;
|
|
1249
|
+
scrollBehavior?: string | undefined;
|
|
1250
|
+
scrollMargin?: string | undefined;
|
|
1251
|
+
scrollMarginBlock?: string | undefined;
|
|
1252
|
+
scrollMarginBlockEnd?: string | undefined;
|
|
1253
|
+
scrollMarginBlockStart?: string | undefined;
|
|
1254
|
+
scrollMarginBottom?: string | undefined;
|
|
1255
|
+
scrollMarginInline?: string | undefined;
|
|
1256
|
+
scrollMarginInlineEnd?: string | undefined;
|
|
1257
|
+
scrollMarginInlineStart?: string | undefined;
|
|
1258
|
+
scrollMarginLeft?: string | undefined;
|
|
1259
|
+
scrollMarginRight?: string | undefined;
|
|
1260
|
+
scrollMarginTop?: string | undefined;
|
|
1261
|
+
scrollPadding?: string | undefined;
|
|
1262
|
+
scrollPaddingBlock?: string | undefined;
|
|
1263
|
+
scrollPaddingBlockEnd?: string | undefined;
|
|
1264
|
+
scrollPaddingBlockStart?: string | undefined;
|
|
1265
|
+
scrollPaddingBottom?: string | undefined;
|
|
1266
|
+
scrollPaddingInline?: string | undefined;
|
|
1267
|
+
scrollPaddingInlineEnd?: string | undefined;
|
|
1268
|
+
scrollPaddingInlineStart?: string | undefined;
|
|
1269
|
+
scrollPaddingLeft?: string | undefined;
|
|
1270
|
+
scrollPaddingRight?: string | undefined;
|
|
1271
|
+
scrollPaddingTop?: string | undefined;
|
|
1272
|
+
scrollSnapAlign?: string | undefined;
|
|
1273
|
+
scrollSnapStop?: string | undefined;
|
|
1274
|
+
scrollSnapType?: string | undefined;
|
|
1275
|
+
scrollbarGutter?: string | undefined;
|
|
1276
|
+
shapeImageThreshold?: string | undefined;
|
|
1277
|
+
shapeMargin?: string | undefined;
|
|
1278
|
+
shapeOutside?: string | undefined;
|
|
1279
|
+
shapeRendering?: string | undefined;
|
|
1280
|
+
stopColor?: string | undefined;
|
|
1281
|
+
stopOpacity?: string | undefined;
|
|
1282
|
+
stroke?: string | undefined;
|
|
1283
|
+
strokeDasharray?: string | undefined;
|
|
1284
|
+
strokeDashoffset?: string | undefined;
|
|
1285
|
+
strokeLinecap?: string | undefined;
|
|
1286
|
+
strokeLinejoin?: string | undefined;
|
|
1287
|
+
strokeMiterlimit?: string | undefined;
|
|
1288
|
+
strokeOpacity?: string | undefined;
|
|
1289
|
+
strokeWidth?: string | undefined;
|
|
1290
|
+
tabSize?: string | undefined;
|
|
1291
|
+
tableLayout?: string | undefined;
|
|
1292
|
+
textAlign?: string | undefined;
|
|
1293
|
+
textAlignLast?: string | undefined;
|
|
1294
|
+
textAnchor?: string | undefined;
|
|
1295
|
+
textCombineUpright?: string | undefined;
|
|
1296
|
+
textDecoration?: string | undefined;
|
|
1297
|
+
textDecorationColor?: string | undefined;
|
|
1298
|
+
textDecorationLine?: string | undefined;
|
|
1299
|
+
textDecorationSkipInk?: string | undefined;
|
|
1300
|
+
textDecorationStyle?: string | undefined;
|
|
1301
|
+
textDecorationThickness?: string | undefined;
|
|
1302
|
+
textEmphasis?: string | undefined;
|
|
1303
|
+
textEmphasisColor?: string | undefined;
|
|
1304
|
+
textEmphasisPosition?: string | undefined;
|
|
1305
|
+
textEmphasisStyle?: string | undefined;
|
|
1306
|
+
textIndent?: string | undefined;
|
|
1307
|
+
textOrientation?: string | undefined;
|
|
1308
|
+
textOverflow?: string | undefined;
|
|
1309
|
+
textRendering?: string | undefined;
|
|
1310
|
+
textShadow?: string | undefined;
|
|
1311
|
+
textTransform?: string | undefined;
|
|
1312
|
+
textUnderlineOffset?: string | undefined;
|
|
1313
|
+
textUnderlinePosition?: string | undefined;
|
|
1314
|
+
top?: string | undefined;
|
|
1315
|
+
touchAction?: string | undefined;
|
|
1316
|
+
transform?: string | undefined;
|
|
1317
|
+
transformBox?: string | undefined;
|
|
1318
|
+
transformOrigin?: string | undefined;
|
|
1319
|
+
transformStyle?: string | undefined;
|
|
1320
|
+
transition?: string | undefined;
|
|
1321
|
+
transitionDelay?: string | undefined;
|
|
1322
|
+
transitionDuration?: string | undefined;
|
|
1323
|
+
transitionProperty?: string | undefined;
|
|
1324
|
+
transitionTimingFunction?: string | undefined;
|
|
1325
|
+
translate?: string | undefined;
|
|
1326
|
+
unicodeBidi?: string | undefined;
|
|
1327
|
+
userSelect?: string | undefined;
|
|
1328
|
+
verticalAlign?: string | undefined;
|
|
1329
|
+
visibility?: string | undefined;
|
|
1330
|
+
webkitAlignContent?: string | undefined;
|
|
1331
|
+
webkitAlignItems?: string | undefined;
|
|
1332
|
+
webkitAlignSelf?: string | undefined;
|
|
1333
|
+
webkitAnimation?: string | undefined;
|
|
1334
|
+
webkitAnimationDelay?: string | undefined;
|
|
1335
|
+
webkitAnimationDirection?: string | undefined;
|
|
1336
|
+
webkitAnimationDuration?: string | undefined;
|
|
1337
|
+
webkitAnimationFillMode?: string | undefined;
|
|
1338
|
+
webkitAnimationIterationCount?: string | undefined;
|
|
1339
|
+
webkitAnimationName?: string | undefined;
|
|
1340
|
+
webkitAnimationPlayState?: string | undefined;
|
|
1341
|
+
webkitAnimationTimingFunction?: string | undefined;
|
|
1342
|
+
webkitAppearance?: string | undefined;
|
|
1343
|
+
webkitBackfaceVisibility?: string | undefined;
|
|
1344
|
+
webkitBackgroundClip?: string | undefined;
|
|
1345
|
+
webkitBackgroundOrigin?: string | undefined;
|
|
1346
|
+
webkitBackgroundSize?: string | undefined;
|
|
1347
|
+
webkitBorderBottomLeftRadius?: string | undefined;
|
|
1348
|
+
webkitBorderBottomRightRadius?: string | undefined;
|
|
1349
|
+
webkitBorderRadius?: string | undefined;
|
|
1350
|
+
webkitBorderTopLeftRadius?: string | undefined;
|
|
1351
|
+
webkitBorderTopRightRadius?: string | undefined;
|
|
1352
|
+
webkitBoxAlign?: string | undefined;
|
|
1353
|
+
webkitBoxFlex?: string | undefined;
|
|
1354
|
+
webkitBoxOrdinalGroup?: string | undefined;
|
|
1355
|
+
webkitBoxOrient?: string | undefined;
|
|
1356
|
+
webkitBoxPack?: string | undefined;
|
|
1357
|
+
webkitBoxShadow?: string | undefined;
|
|
1358
|
+
webkitBoxSizing?: string | undefined;
|
|
1359
|
+
webkitFilter?: string | undefined;
|
|
1360
|
+
webkitFlex?: string | undefined;
|
|
1361
|
+
webkitFlexBasis?: string | undefined;
|
|
1362
|
+
webkitFlexDirection?: string | undefined;
|
|
1363
|
+
webkitFlexFlow?: string | undefined;
|
|
1364
|
+
webkitFlexGrow?: string | undefined;
|
|
1365
|
+
webkitFlexShrink?: string | undefined;
|
|
1366
|
+
webkitFlexWrap?: string | undefined;
|
|
1367
|
+
webkitJustifyContent?: string | undefined;
|
|
1368
|
+
webkitLineClamp?: string | undefined;
|
|
1369
|
+
webkitMask?: string | undefined;
|
|
1370
|
+
webkitMaskBoxImage?: string | undefined;
|
|
1371
|
+
webkitMaskBoxImageOutset?: string | undefined;
|
|
1372
|
+
webkitMaskBoxImageRepeat?: string | undefined;
|
|
1373
|
+
webkitMaskBoxImageSlice?: string | undefined;
|
|
1374
|
+
webkitMaskBoxImageSource?: string | undefined;
|
|
1375
|
+
webkitMaskBoxImageWidth?: string | undefined;
|
|
1376
|
+
webkitMaskClip?: string | undefined;
|
|
1377
|
+
webkitMaskComposite?: string | undefined;
|
|
1378
|
+
webkitMaskImage?: string | undefined;
|
|
1379
|
+
webkitMaskOrigin?: string | undefined;
|
|
1380
|
+
webkitMaskPosition?: string | undefined;
|
|
1381
|
+
webkitMaskRepeat?: string | undefined;
|
|
1382
|
+
webkitMaskSize?: string | undefined;
|
|
1383
|
+
webkitOrder?: string | undefined;
|
|
1384
|
+
webkitPerspective?: string | undefined;
|
|
1385
|
+
webkitPerspectiveOrigin?: string | undefined;
|
|
1386
|
+
webkitTextFillColor?: string | undefined;
|
|
1387
|
+
webkitTextSizeAdjust?: string | undefined;
|
|
1388
|
+
webkitTextStroke?: string | undefined;
|
|
1389
|
+
webkitTextStrokeColor?: string | undefined;
|
|
1390
|
+
webkitTextStrokeWidth?: string | undefined;
|
|
1391
|
+
webkitTransform?: string | undefined;
|
|
1392
|
+
webkitTransformOrigin?: string | undefined;
|
|
1393
|
+
webkitTransformStyle?: string | undefined;
|
|
1394
|
+
webkitTransition?: string | undefined;
|
|
1395
|
+
webkitTransitionDelay?: string | undefined;
|
|
1396
|
+
webkitTransitionDuration?: string | undefined;
|
|
1397
|
+
webkitTransitionProperty?: string | undefined;
|
|
1398
|
+
webkitTransitionTimingFunction?: string | undefined;
|
|
1399
|
+
webkitUserSelect?: string | undefined;
|
|
1400
|
+
whiteSpace?: string | undefined;
|
|
1401
|
+
widows?: string | undefined;
|
|
1402
|
+
width?: string | undefined;
|
|
1403
|
+
willChange?: string | undefined;
|
|
1404
|
+
wordBreak?: string | undefined;
|
|
1405
|
+
wordSpacing?: string | undefined;
|
|
1406
|
+
wordWrap?: string | undefined;
|
|
1407
|
+
writingMode?: string | undefined;
|
|
1408
|
+
zIndex?: string | undefined;
|
|
1409
|
+
getPropertyPriority?: ((property: string) => string) | undefined;
|
|
1410
|
+
getPropertyValue?: ((property: string) => string) | undefined;
|
|
1411
|
+
item?: ((index: number) => string) | undefined;
|
|
1412
|
+
removeProperty?: ((property: string) => string) | undefined;
|
|
1413
|
+
setProperty?: ((property: string, value: string | null, priority?: string | undefined) => void) | undefined;
|
|
1414
|
+
[Symbol.iterator]?: (() => IterableIterator<string>) | undefined;
|
|
1415
|
+
};
|
|
1416
|
+
class: string[];
|
|
1417
|
+
};
|
|
1418
|
+
name: string;
|
|
1419
|
+
};
|
|
1420
|
+
str: string;
|
|
1421
|
+
} | undefined;
|
|
1422
|
+
isModified?: boolean | undefined;
|
|
1423
|
+
id: string;
|
|
351
1424
|
annotationType: number;
|
|
352
|
-
dest
|
|
1425
|
+
dest?: string | [number | {
|
|
353
1426
|
gen: number;
|
|
354
1427
|
num: number;
|
|
355
1428
|
}, {
|
|
356
1429
|
name: string;
|
|
357
|
-
}, ...any[]];
|
|
358
|
-
hasAppearance
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
borderStyle: {
|
|
1430
|
+
}, ...any[]] | undefined;
|
|
1431
|
+
hasAppearance?: boolean | undefined;
|
|
1432
|
+
rect?: number[] | undefined;
|
|
1433
|
+
subtype?: string | undefined;
|
|
1434
|
+
borderStyle?: {
|
|
363
1435
|
dashArray: number[];
|
|
364
1436
|
horizontalCornerRadius: number;
|
|
365
1437
|
style: number;
|
|
366
1438
|
verticalCornerRadius: number;
|
|
367
1439
|
width: number;
|
|
368
|
-
};
|
|
1440
|
+
} | undefined;
|
|
369
1441
|
hasPopup?: boolean | undefined;
|
|
370
1442
|
contents?: string | undefined;
|
|
371
1443
|
contentsObj?: {
|
|
@@ -442,7 +1514,7 @@ export declare const useAnnotationFreeText: (props: UseAnnotationFreeTextProps)
|
|
|
442
1514
|
x: number;
|
|
443
1515
|
y: number;
|
|
444
1516
|
}[][] | undefined;
|
|
445
|
-
lineCoordinates
|
|
1517
|
+
lineCoordinates?: number[] | undefined;
|
|
446
1518
|
action?: string | undefined;
|
|
447
1519
|
unsafeUrl?: string | undefined;
|
|
448
1520
|
url?: string | undefined;
|
|
@@ -452,17 +1524,19 @@ export declare const useAnnotationFreeText: (props: UseAnnotationFreeTextProps)
|
|
|
452
1524
|
y: number;
|
|
453
1525
|
}[] | undefined;
|
|
454
1526
|
name?: string | undefined;
|
|
455
|
-
fieldType
|
|
456
|
-
pushButton
|
|
1527
|
+
fieldType?: string | undefined;
|
|
1528
|
+
pushButton?: boolean | undefined;
|
|
457
1529
|
deleted?: boolean | undefined;
|
|
458
1530
|
noView?: boolean | undefined;
|
|
459
1531
|
noPrint?: boolean | undefined;
|
|
460
1532
|
}[]>;
|
|
461
1533
|
freeTextElementClickOpens: import("vue").Reactive<Map<string, boolean>>;
|
|
462
1534
|
freeTextElements: Ref<Map<string, HTMLElement> & Omit<Map<string, HTMLElement>, keyof Map<any, any>>, Map<string, HTMLElement> | (Map<string, HTMLElement> & Omit<Map<string, HTMLElement>, keyof Map<any, any>>)>;
|
|
1535
|
+
freeTextElementDragging: import("vue").Reactive<Map<string, boolean>>;
|
|
463
1536
|
handleFreeTextClick: (annotation: AnnotationFreeText) => void;
|
|
464
1537
|
handleFreeTextRemove: (annotation: AnnotationFreeText) => void;
|
|
465
1538
|
handleFreeTextUpdate: (annotation: AnnotationFreeText) => void;
|
|
466
|
-
|
|
1539
|
+
handleFreeTextDragStart: (annotation: AnnotationFreeText) => void;
|
|
1540
|
+
handleFreeTextDragEnd: (annotation: AnnotationFreeText) => void;
|
|
467
1541
|
};
|
|
468
1542
|
export {};
|