vue-tippy 6.0.0-alpha.4 → 6.0.0-alpha.40

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