@vue-interface/tooltip 2.0.8 → 2.0.9

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/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  import { default as Tooltip } from './src/Tooltip.vue';
2
2
  import { TooltipDirective, TooltipPlugin } from './src/TooltipPlugin';
3
+ export * from './src/TooltipPlugin';
3
4
  export { Tooltip, TooltipDirective, TooltipPlugin };
package/dist/tooltip.js CHANGED
@@ -1,4 +1,4 @@
1
- import { defineComponent as O, useTemplateRef as b, ref as w, isRef as k, shallowReadonly as M, computed as s, watchEffect as g, onUnmounted as j, createBlock as B, openBlock as D, Teleport as I, createElementVNode as p, normalizeStyle as y, unref as u, normalizeClass as P, renderSlot as U, createTextVNode as W, toDisplayString as z, h as V, render as q } from "vue";
1
+ import { defineComponent as O, useTemplateRef as b, ref as w, isRef as k, shallowReadonly as M, computed as s, watchEffect as g, onUnmounted as j, openBlock as B, createBlock as D, Teleport as I, createElementVNode as p, normalizeStyle as y, unref as u, normalizeClass as P, renderSlot as U, createTextVNode as W, toDisplayString as z, h as V, render as q } from "vue";
2
2
  import { useFloating as H, autoUpdate as J, flip as G, offset as K, arrow as Q } from "@floating-ui/vue";
3
3
  const X = ["data-tooltip-id"], Y = {
4
4
  ref: "inner",
@@ -68,7 +68,7 @@ const X = ["data-tooltip-id"], Y = {
68
68
  arrowEl: r,
69
69
  isShowing: i,
70
70
  hash: f
71
- }), (d, oe) => (D(), B(I, { to: "body" }, [
71
+ }), (d, oe) => (B(), D(I, { to: "body" }, [
72
72
  p("div", {
73
73
  ref_key: "tooltipEl",
74
74
  ref: l,
@@ -0,0 +1,3 @@
1
+ import { ConfigEnv } from 'vite';
2
+ declare const _default: ({ command }: ConfigEnv) => import('vite').UserConfig;
3
+ export default _default;
package/index.ts CHANGED
@@ -1,6 +1,8 @@
1
1
  import Tooltip from './src/Tooltip.vue';
2
2
  import { TooltipDirective, TooltipPlugin } from './src/TooltipPlugin';
3
3
 
4
+ export * from './src/TooltipPlugin';
5
+
4
6
  export {
5
7
  Tooltip,
6
8
  TooltipDirective,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue-interface/tooltip",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "description": "A Vue tooltip component.",
5
5
  "readme": "README.md",
6
6
  "type": "module",