@saasmakers/ui 0.1.83 → 0.1.85
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/app/types/global.d.ts +6 -1
- package/package.json +1 -1
package/app/types/global.d.ts
CHANGED
|
@@ -109,7 +109,12 @@ declare global {
|
|
|
109
109
|
|
|
110
110
|
declare module 'vue' {
|
|
111
111
|
interface GlobalDirectives {
|
|
112
|
-
vTooltip: Directive<HTMLElement, string |
|
|
112
|
+
vTooltip: Directive<HTMLElement, string | undefined | {
|
|
113
|
+
content?: string
|
|
114
|
+
hideOnTargetClick?: boolean
|
|
115
|
+
html?: boolean
|
|
116
|
+
trigger?: 'click' | 'focus' | 'hover' | 'manual'
|
|
117
|
+
}>
|
|
113
118
|
}
|
|
114
119
|
}
|
|
115
120
|
|