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