vue-tippy 6.4.4 → 6.5.0

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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * vue-tippy v6.4.4
2
+ * vue-tippy v6.5.0
3
3
  * (c) 2024
4
4
  * @license MIT
5
5
  */
@@ -198,7 +198,7 @@ export declare const Tippy: import("vue").DefineComponent<{
198
198
  [key: string]: any;
199
199
  }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
200
200
  [key: string]: any;
201
- }>[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "state"[], "state", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
201
+ }>[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "state"[], "state", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
202
202
  to: {
203
203
  type: PropType<string | Element>;
204
204
  };
@@ -710,7 +710,7 @@ export declare const TippySingleton: import("vue").DefineComponent<ComponentObje
710
710
  unmount: () => void;
711
711
  }[]>;
712
712
  singleton: import("vue").Ref<import("tippy.js").CreateSingletonInstance<import("tippy.js").CreateSingletonProps<import("tippy.js").Props>> | undefined>;
713
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<ComponentObjectPropsOptions<Record<string, unknown>>>>, {}>;
713
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<ComponentObjectPropsOptions<Record<string, unknown>>>>, {}>;
714
714
 
715
715
  export declare type TippyTarget = Element | Element[] | Ref<Element | undefined> | Ref<Element[] | undefined> | null;
716
716
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * vue-tippy v6.4.4
2
+ * vue-tippy v6.5.0
3
3
  * (c) 2024
4
4
  * @license MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * vue-tippy v6.4.4
2
+ * vue-tippy v6.5.0
3
3
  * (c) 2024
4
4
  * @license MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * vue-tippy v6.4.4
2
+ * vue-tippy v6.5.0
3
3
  * (c) 2024
4
4
  * @license MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * vue-tippy v6.4.4
2
+ * vue-tippy v6.5.0
3
3
  * (c) 2024
4
4
  * @license MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * vue-tippy v6.4.4
2
+ * vue-tippy v6.5.0
3
3
  * (c) 2024
4
4
  * @license MIT
5
5
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-tippy",
3
- "version": "6.4.4",
3
+ "version": "6.5.0",
4
4
  "main": "index.js",
5
5
  "module": "dist/vue-tippy.mjs",
6
6
  "unpkg": "dist/vue-tippy.iife.js",
package/src/.DS_Store CHANGED
Binary file
@@ -3,7 +3,7 @@ import { TippyOptions } from '../types'
3
3
  import { useTippy } from '../composables'
4
4
  import tippy from 'tippy.js'
5
5
 
6
- declare module '@vue/runtime-core' {
6
+ declare module 'vue' {
7
7
  interface ComponentCustomProps extends TippyOptions {
8
8
  to: string | Element
9
9
  tag: string
@@ -4,7 +4,7 @@ import { useSingleton } from '../composables'
4
4
  import { TippyOptions } from '../types'
5
5
  import tippy, { DefaultProps } from 'tippy.js'
6
6
 
7
- declare module '@vue/runtime-core' {
7
+ declare module 'vue' {
8
8
  interface ComponentCustomProps extends TippyOptions {}
9
9
  }
10
10