vue-tippy 6.0.0-alpha.5 → 6.0.0-alpha.50

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.
@@ -0,0 +1,793 @@
1
+ import { Component } from 'vue';
2
+ import { ComponentObjectPropsOptions } from 'vue';
3
+ import { Content } from 'tippy.js';
4
+ import { CreateSingletonProps } from 'tippy.js';
5
+ import { DefaultProps } from 'tippy.js';
6
+ import { Directive } from 'vue';
7
+ import { Instance } from 'tippy.js';
8
+ import { Plugin as Plugin_2 } from 'vue';
9
+ import { Props } from 'tippy.js';
10
+ import { Ref } from 'vue';
11
+ import { roundArrow } from 'tippy.js';
12
+ import tippy from 'tippy.js';
13
+ import { VNode } from 'vue';
14
+
15
+ export declare const directive: Directive;
16
+
17
+ declare const plugin: Plugin_2;
18
+ export default plugin;
19
+ export { plugin }
20
+ export { roundArrow }
21
+
22
+ export declare const setDefaultProps: (partialProps: Partial<import("tippy.js").DefaultProps>) => void;
23
+
24
+ export declare const Tippy: import("vue").DefineComponent<ComponentObjectPropsOptions<Record<string, unknown>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
25
+ [key: string]: any;
26
+ }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "state"[], "state", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {
27
+ [x: string]: any;
28
+ }>, {}>;
29
+ export { tippy }
30
+
31
+ export declare type TippyComponent = InstanceType<typeof Tippy>;
32
+
33
+ export declare type TippyContent = Content | VNode | Component | Ref;
34
+
35
+ export declare type TippyInstance = Instance | Element | undefined;
36
+
37
+ export declare type TippyInstances = Ref<TippyInstance>[] | Ref<TippyInstance[]> | (() => TippyInstance[]);
38
+
39
+ export declare type TippyOptions = Partial<Omit<Props, 'content' | 'triggerTarget'> & {
40
+ content: TippyContent;
41
+ triggerTarget: TippyTarget;
42
+ }>;
43
+
44
+ export declare interface TippyPluginOptions {
45
+ directive?: string;
46
+ component?: string;
47
+ componentSingleton?: string;
48
+ defaultProps?: Partial<DefaultProps>;
49
+ }
50
+
51
+ export declare const TippySingleton: import("vue").DefineComponent<ComponentObjectPropsOptions<Record<string, unknown>>, {
52
+ instances: import("vue").Ref<{
53
+ clearDelayTimeouts: () => void;
54
+ destroy: () => void;
55
+ disable: () => void;
56
+ enable: () => void;
57
+ hide: () => void;
58
+ hideWithInteractivity: (event: MouseEvent) => void;
59
+ id: number;
60
+ plugins: {
61
+ name?: string | undefined;
62
+ defaultValue?: any;
63
+ fn: (instance: Instance<any>) => Partial<import("tippy.js").LifecycleHooks<any>>;
64
+ }[];
65
+ popper: import("tippy.js").PopperElement<any>;
66
+ popperInstance: {
67
+ state: {
68
+ elements: {
69
+ reference: Element | {
70
+ getBoundingClientRect: () => ClientRect | DOMRect;
71
+ contextElement?: Element | undefined;
72
+ };
73
+ popper: HTMLElement;
74
+ arrow?: HTMLElement | undefined;
75
+ };
76
+ options: {
77
+ placement: import("@popperjs/core").Placement;
78
+ modifiers: any[];
79
+ strategy: import("@popperjs/core").PositioningStrategy;
80
+ onFirstUpdate?: ((arg0: Partial<import("@popperjs/core").State>) => void) | undefined;
81
+ };
82
+ placement: import("@popperjs/core").Placement;
83
+ strategy: import("@popperjs/core").PositioningStrategy;
84
+ orderedModifiers: {
85
+ name: any;
86
+ enabled: boolean;
87
+ phase: import("@popperjs/core").ModifierPhases;
88
+ requires?: string[] | undefined;
89
+ requiresIfExists?: string[] | undefined;
90
+ fn: (arg0: import("@popperjs/core").ModifierArguments<any>) => void | import("@popperjs/core").State;
91
+ effect?: ((arg0: import("@popperjs/core").ModifierArguments<any>) => void | (() => void)) | undefined;
92
+ options?: {
93
+ [x: string]: any;
94
+ } | undefined;
95
+ data?: {
96
+ [x: string]: any;
97
+ } | undefined;
98
+ }[];
99
+ rects: {
100
+ reference: {
101
+ width: number;
102
+ height: number;
103
+ x: number;
104
+ y: number;
105
+ };
106
+ popper: {
107
+ width: number;
108
+ height: number;
109
+ x: number;
110
+ y: number;
111
+ };
112
+ };
113
+ scrollParents: {
114
+ reference: (Element | {
115
+ innerHeight: number;
116
+ offsetHeight: number;
117
+ innerWidth: number;
118
+ offsetWidth: number;
119
+ pageXOffset: number;
120
+ pageYOffset: number;
121
+ getComputedStyle: typeof getComputedStyle;
122
+ addEventListener: (type: any, listener: any, optionsOrUseCapture?: any) => void;
123
+ removeEventListener: (type: any, listener: any, optionsOrUseCapture?: any) => void;
124
+ Element: Element;
125
+ HTMLElement: HTMLElement;
126
+ Node: Node;
127
+ toString: () => "[object Window]";
128
+ devicePixelRatio: number;
129
+ visualViewport?: {
130
+ addEventListener: (type: string, listener: EventListener | EventListenerObject | null, options?: boolean | AddEventListenerOptions | undefined) => void;
131
+ dispatchEvent: (event: Event) => boolean;
132
+ removeEventListener: (type: string, callback: EventListener | EventListenerObject | null, options?: boolean | EventListenerOptions | undefined) => void;
133
+ width: number;
134
+ height: number;
135
+ offsetLeft: number;
136
+ offsetTop: number;
137
+ scale: number;
138
+ } | undefined;
139
+ ShadowRoot: ShadowRoot;
140
+ } | {
141
+ addEventListener: (type: string, listener: EventListener | EventListenerObject | null, options?: boolean | AddEventListenerOptions | undefined) => void;
142
+ dispatchEvent: (event: Event) => boolean;
143
+ removeEventListener: (type: string, callback: EventListener | EventListenerObject | null, options?: boolean | EventListenerOptions | undefined) => void;
144
+ width: number;
145
+ height: number;
146
+ offsetLeft: number;
147
+ offsetTop: number;
148
+ scale: number;
149
+ })[];
150
+ popper: (Element | {
151
+ innerHeight: number;
152
+ offsetHeight: number;
153
+ innerWidth: number;
154
+ offsetWidth: number;
155
+ pageXOffset: number;
156
+ pageYOffset: number;
157
+ getComputedStyle: typeof getComputedStyle;
158
+ addEventListener: (type: any, listener: any, optionsOrUseCapture?: any) => void;
159
+ removeEventListener: (type: any, listener: any, optionsOrUseCapture?: any) => void;
160
+ Element: Element;
161
+ HTMLElement: HTMLElement;
162
+ Node: Node;
163
+ toString: () => "[object Window]";
164
+ devicePixelRatio: number;
165
+ visualViewport?: {
166
+ addEventListener: (type: string, listener: EventListener | EventListenerObject | null, options?: boolean | AddEventListenerOptions | undefined) => void;
167
+ dispatchEvent: (event: Event) => boolean;
168
+ removeEventListener: (type: string, callback: EventListener | EventListenerObject | null, options?: boolean | EventListenerOptions | undefined) => void;
169
+ width: number;
170
+ height: number;
171
+ offsetLeft: number;
172
+ offsetTop: number;
173
+ scale: number;
174
+ } | undefined;
175
+ ShadowRoot: ShadowRoot;
176
+ } | {
177
+ addEventListener: (type: string, listener: EventListener | EventListenerObject | null, options?: boolean | AddEventListenerOptions | undefined) => void;
178
+ dispatchEvent: (event: Event) => boolean;
179
+ removeEventListener: (type: string, callback: EventListener | EventListenerObject | null, options?: boolean | EventListenerOptions | undefined) => void;
180
+ width: number;
181
+ height: number;
182
+ offsetLeft: number;
183
+ offsetTop: number;
184
+ scale: number;
185
+ })[];
186
+ };
187
+ styles: {
188
+ [x: string]: {
189
+ [x: number]: string | undefined;
190
+ alignContent?: string | undefined;
191
+ alignItems?: string | undefined;
192
+ alignSelf?: string | undefined;
193
+ alignmentBaseline?: string | undefined;
194
+ all?: string | undefined;
195
+ animation?: string | undefined;
196
+ animationDelay?: string | undefined;
197
+ animationDirection?: string | undefined;
198
+ animationDuration?: string | undefined;
199
+ animationFillMode?: string | undefined;
200
+ animationIterationCount?: string | undefined;
201
+ animationName?: string | undefined;
202
+ animationPlayState?: string | undefined;
203
+ animationTimingFunction?: string | undefined;
204
+ backfaceVisibility?: string | undefined;
205
+ background?: string | undefined;
206
+ backgroundAttachment?: string | undefined;
207
+ backgroundClip?: string | undefined;
208
+ backgroundColor?: string | undefined;
209
+ backgroundImage?: string | undefined;
210
+ backgroundOrigin?: string | undefined;
211
+ backgroundPosition?: string | undefined;
212
+ backgroundPositionX?: string | undefined;
213
+ backgroundPositionY?: string | undefined;
214
+ backgroundRepeat?: string | undefined;
215
+ backgroundSize?: string | undefined;
216
+ baselineShift?: string | undefined;
217
+ blockSize?: string | undefined;
218
+ border?: string | undefined;
219
+ borderBlockEnd?: string | undefined;
220
+ borderBlockEndColor?: string | undefined;
221
+ borderBlockEndStyle?: string | undefined;
222
+ borderBlockEndWidth?: string | undefined;
223
+ borderBlockStart?: string | undefined;
224
+ borderBlockStartColor?: string | undefined;
225
+ borderBlockStartStyle?: string | undefined;
226
+ borderBlockStartWidth?: string | undefined;
227
+ borderBottom?: string | undefined;
228
+ borderBottomColor?: string | undefined;
229
+ borderBottomLeftRadius?: string | undefined;
230
+ borderBottomRightRadius?: string | undefined;
231
+ borderBottomStyle?: string | undefined;
232
+ borderBottomWidth?: string | undefined;
233
+ borderCollapse?: string | undefined;
234
+ borderColor?: string | undefined;
235
+ borderImage?: string | undefined;
236
+ borderImageOutset?: string | undefined;
237
+ borderImageRepeat?: string | undefined;
238
+ borderImageSlice?: string | undefined;
239
+ borderImageSource?: string | undefined;
240
+ borderImageWidth?: string | undefined;
241
+ borderInlineEnd?: string | undefined;
242
+ borderInlineEndColor?: string | undefined;
243
+ borderInlineEndStyle?: string | undefined;
244
+ borderInlineEndWidth?: string | undefined;
245
+ borderInlineStart?: string | undefined;
246
+ borderInlineStartColor?: string | undefined;
247
+ borderInlineStartStyle?: string | undefined;
248
+ borderInlineStartWidth?: string | undefined;
249
+ borderLeft?: string | undefined;
250
+ borderLeftColor?: string | undefined;
251
+ borderLeftStyle?: string | undefined;
252
+ borderLeftWidth?: string | undefined;
253
+ borderRadius?: string | undefined;
254
+ borderRight?: string | undefined;
255
+ borderRightColor?: string | undefined;
256
+ borderRightStyle?: string | undefined;
257
+ borderRightWidth?: string | undefined;
258
+ borderSpacing?: string | undefined;
259
+ borderStyle?: string | undefined;
260
+ borderTop?: string | undefined;
261
+ borderTopColor?: string | undefined;
262
+ borderTopLeftRadius?: string | undefined;
263
+ borderTopRightRadius?: string | undefined;
264
+ borderTopStyle?: string | undefined;
265
+ borderTopWidth?: string | undefined;
266
+ borderWidth?: string | undefined;
267
+ bottom?: string | undefined;
268
+ boxShadow?: string | undefined;
269
+ boxSizing?: string | undefined;
270
+ breakAfter?: string | undefined;
271
+ breakBefore?: string | undefined;
272
+ breakInside?: string | undefined;
273
+ captionSide?: string | undefined;
274
+ caretColor?: string | undefined;
275
+ clear?: string | undefined;
276
+ clip?: string | undefined;
277
+ clipPath?: string | undefined;
278
+ clipRule?: string | undefined;
279
+ color?: string | undefined;
280
+ colorInterpolation?: string | undefined;
281
+ colorInterpolationFilters?: string | undefined;
282
+ columnCount?: string | undefined;
283
+ columnFill?: string | undefined;
284
+ columnGap?: string | undefined;
285
+ columnRule?: string | undefined;
286
+ columnRuleColor?: string | undefined;
287
+ columnRuleStyle?: string | undefined;
288
+ columnRuleWidth?: string | undefined;
289
+ columnSpan?: string | undefined;
290
+ columnWidth?: string | undefined;
291
+ columns?: string | undefined;
292
+ content?: string | undefined;
293
+ counterIncrement?: string | undefined;
294
+ counterReset?: string | undefined;
295
+ cssFloat?: string | undefined;
296
+ cssText?: string | undefined;
297
+ cursor?: string | undefined;
298
+ direction?: string | undefined;
299
+ display?: string | undefined;
300
+ dominantBaseline?: string | undefined;
301
+ emptyCells?: string | undefined;
302
+ fill?: string | undefined;
303
+ fillOpacity?: string | undefined;
304
+ fillRule?: string | undefined;
305
+ filter?: string | undefined;
306
+ flex?: string | undefined;
307
+ flexBasis?: string | undefined;
308
+ flexDirection?: string | undefined;
309
+ flexFlow?: string | undefined;
310
+ flexGrow?: string | undefined;
311
+ flexShrink?: string | undefined;
312
+ flexWrap?: string | undefined;
313
+ float?: string | undefined;
314
+ floodColor?: string | undefined;
315
+ floodOpacity?: string | undefined;
316
+ font?: string | undefined;
317
+ fontFamily?: string | undefined;
318
+ fontFeatureSettings?: string | undefined;
319
+ fontKerning?: string | undefined;
320
+ fontSize?: string | undefined;
321
+ fontSizeAdjust?: string | undefined;
322
+ fontStretch?: string | undefined;
323
+ fontStyle?: string | undefined;
324
+ fontSynthesis?: string | undefined;
325
+ fontVariant?: string | undefined;
326
+ fontVariantCaps?: string | undefined;
327
+ fontVariantEastAsian?: string | undefined;
328
+ fontVariantLigatures?: string | undefined;
329
+ fontVariantNumeric?: string | undefined;
330
+ fontVariantPosition?: string | undefined;
331
+ fontWeight?: string | undefined;
332
+ gap?: string | undefined;
333
+ glyphOrientationVertical?: string | undefined;
334
+ grid?: string | undefined;
335
+ gridArea?: string | undefined;
336
+ gridAutoColumns?: string | undefined;
337
+ gridAutoFlow?: string | undefined;
338
+ gridAutoRows?: string | undefined;
339
+ gridColumn?: string | undefined;
340
+ gridColumnEnd?: string | undefined;
341
+ gridColumnGap?: string | undefined;
342
+ gridColumnStart?: string | undefined;
343
+ gridGap?: string | undefined;
344
+ gridRow?: string | undefined;
345
+ gridRowEnd?: string | undefined;
346
+ gridRowGap?: string | undefined;
347
+ gridRowStart?: string | undefined;
348
+ gridTemplate?: string | undefined;
349
+ gridTemplateAreas?: string | undefined;
350
+ gridTemplateColumns?: string | undefined;
351
+ gridTemplateRows?: string | undefined;
352
+ height?: string | undefined;
353
+ hyphens?: string | undefined;
354
+ imageOrientation?: string | undefined;
355
+ imageRendering?: string | undefined;
356
+ inlineSize?: string | undefined;
357
+ justifyContent?: string | undefined;
358
+ justifyItems?: string | undefined;
359
+ justifySelf?: string | undefined;
360
+ left?: string | undefined;
361
+ readonly length?: number | undefined;
362
+ letterSpacing?: string | undefined;
363
+ lightingColor?: string | undefined;
364
+ lineBreak?: string | undefined;
365
+ lineHeight?: string | undefined;
366
+ listStyle?: string | undefined;
367
+ listStyleImage?: string | undefined;
368
+ listStylePosition?: string | undefined;
369
+ listStyleType?: string | undefined;
370
+ margin?: string | undefined;
371
+ marginBlockEnd?: string | undefined;
372
+ marginBlockStart?: string | undefined;
373
+ marginBottom?: string | undefined;
374
+ marginInlineEnd?: string | undefined;
375
+ marginInlineStart?: string | undefined;
376
+ marginLeft?: string | undefined;
377
+ marginRight?: string | undefined;
378
+ marginTop?: string | undefined;
379
+ marker?: string | undefined;
380
+ markerEnd?: string | undefined;
381
+ markerMid?: string | undefined;
382
+ markerStart?: string | undefined;
383
+ mask?: string | undefined;
384
+ maskComposite?: string | undefined;
385
+ maskImage?: string | undefined;
386
+ maskPosition?: string | undefined;
387
+ maskRepeat?: string | undefined;
388
+ maskSize?: string | undefined;
389
+ maskType?: string | undefined;
390
+ maxBlockSize?: string | undefined;
391
+ maxHeight?: string | undefined;
392
+ maxInlineSize?: string | undefined;
393
+ maxWidth?: string | undefined;
394
+ minBlockSize?: string | undefined;
395
+ minHeight?: string | undefined;
396
+ minInlineSize?: string | undefined;
397
+ minWidth?: string | undefined;
398
+ objectFit?: string | undefined;
399
+ objectPosition?: string | undefined;
400
+ opacity?: string | undefined;
401
+ order?: string | undefined;
402
+ orphans?: string | undefined;
403
+ outline?: string | undefined;
404
+ outlineColor?: string | undefined;
405
+ outlineOffset?: string | undefined;
406
+ outlineStyle?: string | undefined;
407
+ outlineWidth?: string | undefined;
408
+ overflow?: string | undefined;
409
+ overflowAnchor?: string | undefined;
410
+ overflowWrap?: string | undefined;
411
+ overflowX?: string | undefined;
412
+ overflowY?: string | undefined;
413
+ overscrollBehavior?: string | undefined;
414
+ overscrollBehaviorBlock?: string | undefined;
415
+ overscrollBehaviorInline?: string | undefined;
416
+ overscrollBehaviorX?: string | undefined;
417
+ overscrollBehaviorY?: string | undefined;
418
+ padding?: string | undefined;
419
+ paddingBlockEnd?: string | undefined;
420
+ paddingBlockStart?: string | undefined;
421
+ paddingBottom?: string | undefined;
422
+ paddingInlineEnd?: string | undefined;
423
+ paddingInlineStart?: string | undefined;
424
+ paddingLeft?: string | undefined;
425
+ paddingRight?: string | undefined;
426
+ paddingTop?: string | undefined;
427
+ pageBreakAfter?: string | undefined;
428
+ pageBreakBefore?: string | undefined;
429
+ pageBreakInside?: string | undefined;
430
+ paintOrder?: string | undefined;
431
+ readonly parentRule?: {
432
+ cssText: string;
433
+ readonly parentRule: any | null;
434
+ readonly parentStyleSheet: {
435
+ readonly cssRules: {
436
+ [x: number]: any;
437
+ readonly length: number;
438
+ item: (index: number) => CSSRule | null;
439
+ };
440
+ readonly ownerRule: any | null;
441
+ readonly rules: {
442
+ [x: number]: any;
443
+ readonly length: number;
444
+ item: (index: number) => CSSRule | null;
445
+ };
446
+ addRule: (selector?: string | undefined, style?: string | undefined, index?: number | undefined) => number;
447
+ deleteRule: (index: number) => void;
448
+ insertRule: (rule: string, index?: number | undefined) => number;
449
+ removeRule: (index?: number | undefined) => void;
450
+ disabled: boolean;
451
+ readonly href: string | null;
452
+ readonly media: {
453
+ [x: number]: string;
454
+ readonly length: number;
455
+ mediaText: string;
456
+ toString: () => string;
457
+ appendMedium: (medium: string) => void;
458
+ deleteMedium: (medium: string) => void;
459
+ item: (index: number) => string | null;
460
+ };
461
+ readonly ownerNode: Element | ProcessingInstruction | null;
462
+ readonly parentStyleSheet: any | null;
463
+ readonly title: string | null;
464
+ readonly type: string;
465
+ } | null;
466
+ readonly type: number;
467
+ readonly CHARSET_RULE: number;
468
+ readonly FONT_FACE_RULE: number;
469
+ readonly IMPORT_RULE: number;
470
+ readonly KEYFRAMES_RULE: number;
471
+ readonly KEYFRAME_RULE: number;
472
+ readonly MEDIA_RULE: number;
473
+ readonly NAMESPACE_RULE: number;
474
+ readonly PAGE_RULE: number;
475
+ readonly STYLE_RULE: number;
476
+ readonly SUPPORTS_RULE: number;
477
+ } | null | undefined;
478
+ perspective?: string | undefined;
479
+ perspectiveOrigin?: string | undefined;
480
+ placeContent?: string | undefined;
481
+ placeItems?: string | undefined;
482
+ placeSelf?: string | undefined;
483
+ pointerEvents?: string | undefined;
484
+ position?: string | undefined;
485
+ quotes?: string | undefined;
486
+ resize?: string | undefined;
487
+ right?: string | undefined;
488
+ rotate?: string | undefined;
489
+ rowGap?: string | undefined;
490
+ rubyAlign?: string | undefined;
491
+ rubyPosition?: string | undefined;
492
+ scale?: string | undefined;
493
+ scrollBehavior?: string | undefined;
494
+ shapeRendering?: string | undefined;
495
+ stopColor?: string | undefined;
496
+ stopOpacity?: string | undefined;
497
+ stroke?: string | undefined;
498
+ strokeDasharray?: string | undefined;
499
+ strokeDashoffset?: string | undefined;
500
+ strokeLinecap?: string | undefined;
501
+ strokeLinejoin?: string | undefined;
502
+ strokeMiterlimit?: string | undefined;
503
+ strokeOpacity?: string | undefined;
504
+ strokeWidth?: string | undefined;
505
+ tabSize?: string | undefined;
506
+ tableLayout?: string | undefined;
507
+ textAlign?: string | undefined;
508
+ textAlignLast?: string | undefined;
509
+ textAnchor?: string | undefined;
510
+ textCombineUpright?: string | undefined;
511
+ textDecoration?: string | undefined;
512
+ textDecorationColor?: string | undefined;
513
+ textDecorationLine?: string | undefined;
514
+ textDecorationStyle?: string | undefined;
515
+ textEmphasis?: string | undefined;
516
+ textEmphasisColor?: string | undefined;
517
+ textEmphasisPosition?: string | undefined;
518
+ textEmphasisStyle?: string | undefined;
519
+ textIndent?: string | undefined;
520
+ textJustify?: string | undefined;
521
+ textOrientation?: string | undefined;
522
+ textOverflow?: string | undefined;
523
+ textRendering?: string | undefined;
524
+ textShadow?: string | undefined;
525
+ textTransform?: string | undefined;
526
+ textUnderlinePosition?: string | undefined;
527
+ top?: string | undefined;
528
+ touchAction?: string | undefined;
529
+ transform?: string | undefined;
530
+ transformBox?: string | undefined;
531
+ transformOrigin?: string | undefined;
532
+ transformStyle?: string | undefined;
533
+ transition?: string | undefined;
534
+ transitionDelay?: string | undefined;
535
+ transitionDuration?: string | undefined;
536
+ transitionProperty?: string | undefined;
537
+ transitionTimingFunction?: string | undefined;
538
+ translate?: string | undefined;
539
+ unicodeBidi?: string | undefined;
540
+ userSelect?: string | undefined;
541
+ verticalAlign?: string | undefined;
542
+ visibility?: string | undefined;
543
+ webkitAlignContent?: string | undefined;
544
+ webkitAlignItems?: string | undefined;
545
+ webkitAlignSelf?: string | undefined;
546
+ webkitAnimation?: string | undefined;
547
+ webkitAnimationDelay?: string | undefined;
548
+ webkitAnimationDirection?: string | undefined;
549
+ webkitAnimationDuration?: string | undefined;
550
+ webkitAnimationFillMode?: string | undefined;
551
+ webkitAnimationIterationCount?: string | undefined;
552
+ webkitAnimationName?: string | undefined;
553
+ webkitAnimationPlayState?: string | undefined;
554
+ webkitAnimationTimingFunction?: string | undefined;
555
+ webkitAppearance?: string | undefined;
556
+ webkitBackfaceVisibility?: string | undefined;
557
+ webkitBackgroundClip?: string | undefined;
558
+ webkitBackgroundOrigin?: string | undefined;
559
+ webkitBackgroundSize?: string | undefined;
560
+ webkitBorderBottomLeftRadius?: string | undefined;
561
+ webkitBorderBottomRightRadius?: string | undefined;
562
+ webkitBorderRadius?: string | undefined;
563
+ webkitBorderTopLeftRadius?: string | undefined;
564
+ webkitBorderTopRightRadius?: string | undefined;
565
+ webkitBoxAlign?: string | undefined;
566
+ webkitBoxFlex?: string | undefined;
567
+ webkitBoxOrdinalGroup?: string | undefined;
568
+ webkitBoxOrient?: string | undefined;
569
+ webkitBoxPack?: string | undefined;
570
+ webkitBoxShadow?: string | undefined;
571
+ webkitBoxSizing?: string | undefined;
572
+ webkitFilter?: string | undefined;
573
+ webkitFlex?: string | undefined;
574
+ webkitFlexBasis?: string | undefined;
575
+ webkitFlexDirection?: string | undefined;
576
+ webkitFlexFlow?: string | undefined;
577
+ webkitFlexGrow?: string | undefined;
578
+ webkitFlexShrink?: string | undefined;
579
+ webkitFlexWrap?: string | undefined;
580
+ webkitJustifyContent?: string | undefined;
581
+ webkitLineClamp?: string | undefined;
582
+ webkitMask?: string | undefined;
583
+ webkitMaskBoxImage?: string | undefined;
584
+ webkitMaskBoxImageOutset?: string | undefined;
585
+ webkitMaskBoxImageRepeat?: string | undefined;
586
+ webkitMaskBoxImageSlice?: string | undefined;
587
+ webkitMaskBoxImageSource?: string | undefined;
588
+ webkitMaskBoxImageWidth?: string | undefined;
589
+ webkitMaskClip?: string | undefined;
590
+ webkitMaskComposite?: string | undefined;
591
+ webkitMaskImage?: string | undefined;
592
+ webkitMaskOrigin?: string | undefined;
593
+ webkitMaskPosition?: string | undefined;
594
+ webkitMaskRepeat?: string | undefined;
595
+ webkitMaskSize?: string | undefined;
596
+ webkitOrder?: string | undefined;
597
+ webkitPerspective?: string | undefined;
598
+ webkitPerspectiveOrigin?: string | undefined;
599
+ webkitTapHighlightColor?: string | undefined;
600
+ webkitTextFillColor?: string | undefined;
601
+ webkitTextSizeAdjust?: string | undefined;
602
+ webkitTextStroke?: string | undefined;
603
+ webkitTextStrokeColor?: string | undefined;
604
+ webkitTextStrokeWidth?: string | undefined;
605
+ webkitTransform?: string | undefined;
606
+ webkitTransformOrigin?: string | undefined;
607
+ webkitTransformStyle?: string | undefined;
608
+ webkitTransition?: string | undefined;
609
+ webkitTransitionDelay?: string | undefined;
610
+ webkitTransitionDuration?: string | undefined;
611
+ webkitTransitionProperty?: string | undefined;
612
+ webkitTransitionTimingFunction?: string | undefined;
613
+ webkitUserSelect?: string | undefined;
614
+ whiteSpace?: string | undefined;
615
+ widows?: string | undefined;
616
+ width?: string | undefined;
617
+ willChange?: string | undefined;
618
+ wordBreak?: string | undefined;
619
+ wordSpacing?: string | undefined;
620
+ wordWrap?: string | undefined;
621
+ writingMode?: string | undefined;
622
+ zIndex?: string | undefined;
623
+ zoom?: string | undefined;
624
+ getPropertyPriority?: ((property: string) => string) | undefined;
625
+ getPropertyValue?: ((property: string) => string) | undefined;
626
+ item?: ((index: number) => string) | undefined;
627
+ removeProperty?: ((property: string) => string) | undefined;
628
+ setProperty?: ((property: string, value: string | null, priority?: string | undefined) => void) | undefined;
629
+ };
630
+ };
631
+ attributes: {
632
+ [x: string]: {
633
+ [x: string]: string | boolean;
634
+ };
635
+ };
636
+ modifiersData: {
637
+ [x: string]: any;
638
+ arrow?: {
639
+ x?: number | undefined;
640
+ y?: number | undefined;
641
+ centerOffset: number;
642
+ } | undefined;
643
+ hide?: {
644
+ isReferenceHidden: boolean;
645
+ hasPopperEscaped: boolean;
646
+ referenceClippingOffsets: {
647
+ top: number;
648
+ left: number;
649
+ right: number;
650
+ bottom: number;
651
+ };
652
+ popperEscapeOffsets: {
653
+ top: number;
654
+ left: number;
655
+ right: number;
656
+ bottom: number;
657
+ };
658
+ } | undefined;
659
+ offset?: {
660
+ auto?: {
661
+ y: number;
662
+ x: number;
663
+ } | undefined;
664
+ "auto-start"?: {
665
+ y: number;
666
+ x: number;
667
+ } | undefined;
668
+ "auto-end"?: {
669
+ y: number;
670
+ x: number;
671
+ } | undefined;
672
+ top?: {
673
+ y: number;
674
+ x: number;
675
+ } | undefined;
676
+ bottom?: {
677
+ y: number;
678
+ x: number;
679
+ } | undefined;
680
+ right?: {
681
+ y: number;
682
+ x: number;
683
+ } | undefined;
684
+ left?: {
685
+ y: number;
686
+ x: number;
687
+ } | undefined;
688
+ "top-start"?: {
689
+ y: number;
690
+ x: number;
691
+ } | undefined;
692
+ "top-end"?: {
693
+ y: number;
694
+ x: number;
695
+ } | undefined;
696
+ "bottom-start"?: {
697
+ y: number;
698
+ x: number;
699
+ } | undefined;
700
+ "bottom-end"?: {
701
+ y: number;
702
+ x: number;
703
+ } | undefined;
704
+ "right-start"?: {
705
+ y: number;
706
+ x: number;
707
+ } | undefined;
708
+ "right-end"?: {
709
+ y: number;
710
+ x: number;
711
+ } | undefined;
712
+ "left-start"?: {
713
+ y: number;
714
+ x: number;
715
+ } | undefined;
716
+ "left-end"?: {
717
+ y: number;
718
+ x: number;
719
+ } | undefined;
720
+ } | undefined;
721
+ preventOverflow?: {
722
+ y: number;
723
+ x: number;
724
+ } | undefined;
725
+ popperOffsets?: {
726
+ y: number;
727
+ x: number;
728
+ } | undefined;
729
+ };
730
+ reset: boolean;
731
+ };
732
+ destroy: () => void;
733
+ forceUpdate: () => void;
734
+ update: () => Promise<Partial<import("@popperjs/core").State>>;
735
+ setOptions: (setOptionsAction: Partial<import("@popperjs/core").OptionsGeneric<any>> | ((prev: Partial<import("@popperjs/core").OptionsGeneric<any>>) => Partial<import("@popperjs/core").OptionsGeneric<any>>)) => Promise<Partial<import("@popperjs/core").State>>;
736
+ } | null;
737
+ props: any;
738
+ reference: import("tippy.js").ReferenceElement<any>;
739
+ setContent: (content: import("tippy.js").Content) => void;
740
+ setProps: (partialProps: Partial<any>) => void;
741
+ show: () => void;
742
+ state: {
743
+ isEnabled: boolean;
744
+ isVisible: boolean;
745
+ isDestroyed: boolean;
746
+ isMounted: boolean;
747
+ isShown: boolean;
748
+ };
749
+ unmount: () => void;
750
+ }[]>;
751
+ singleton: import("vue").Ref<import("tippy.js").CreateSingletonInstance<import("tippy.js").CreateSingletonProps<import("tippy.js").Props>> | undefined>;
752
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{} & {
753
+ [x: string]: any;
754
+ }>, {}>;
755
+
756
+ export declare type TippyTarget = Element | Element[] | Ref<Element | undefined> | Ref<Element[] | undefined> | null;
757
+
758
+ export declare function useSingleton(instances: TippyInstances, optionalProps?: Partial<CreateSingletonProps<Props>>): {
759
+ singleton: import("vue").Ref<import("tippy.js").CreateSingletonInstance<CreateSingletonProps<Props>> | undefined>;
760
+ };
761
+
762
+ export declare function useTippy(el: Element | (() => Element) | Ref<Element> | Ref<Element | undefined>, opts?: TippyOptions, settings?: {
763
+ mount: boolean;
764
+ }): {
765
+ tippy: Ref<Instance<Props> | undefined>;
766
+ refresh: () => void;
767
+ refreshContent: () => void;
768
+ setContent: (value: TippyContent) => void;
769
+ setProps: (value: TippyOptions) => void;
770
+ destroy: () => void;
771
+ hide: () => void;
772
+ show: () => void;
773
+ disable: () => void;
774
+ enable: () => void;
775
+ unmount: () => void;
776
+ mount: () => void;
777
+ state: Ref<{
778
+ isEnabled: boolean;
779
+ isVisible: boolean;
780
+ isDestroyed: boolean;
781
+ isMounted: boolean;
782
+ isShown: boolean;
783
+ }>;
784
+ };
785
+
786
+ export declare function useTippyComponent(opts?: TippyOptions, children?: any): {
787
+ instance: import("vue").Ref<any>;
788
+ TippyComponent: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
789
+ [key: string]: any;
790
+ }>;
791
+ };
792
+
793
+ export { }