@mekari/pixel3-tooltip 0.0.4 → 0.0.5
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/{chunk-OBETIXOG.mjs → chunk-2KZ7KSYS.mjs} +1 -1
- package/dist/{chunk-4C7JA7QR.mjs → chunk-BFYYWBFD.mjs} +2 -2
- package/dist/{chunk-22GSYROL.mjs → chunk-ENW3A4UE.mjs} +1 -1
- package/dist/{chunk-JHWDKDBR.mjs → chunk-PZOZJSEB.mjs} +2 -2
- package/dist/{chunk-73AMP22F.mjs → chunk-RY5UNIIN.mjs} +1 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +5 -5
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/modules/tooltip.hooks.d.mts +1 -1
- package/dist/modules/tooltip.hooks.d.ts +1 -1
- package/dist/modules/tooltip.hooks.js +1 -1
- package/dist/modules/tooltip.hooks.mjs +1 -1
- package/dist/modules/tooltip.props.d.mts +1 -1
- package/dist/modules/tooltip.props.d.ts +1 -1
- package/dist/modules/tooltip.props.js +1 -1
- package/dist/modules/tooltip.props.mjs +1 -1
- package/dist/singleton-tooltip.mjs +3 -3
- package/dist/tooltip.d.mts +2 -2
- package/dist/tooltip.d.ts +2 -2
- package/dist/tooltip.js +2 -2
- package/dist/tooltip.mjs +3 -3
- package/dist/v-tooltip.mjs +4 -4
- package/package.json +2 -2
|
@@ -12,7 +12,7 @@ function useTooltip(props, emit, slots) {
|
|
|
12
12
|
console.error("[Pixel]: The MpTooltip component only expects one child.");
|
|
13
13
|
}
|
|
14
14
|
const getId = computed(() => props.id || `tooltip-${useId(4)}`);
|
|
15
|
-
const isOpen = ref(
|
|
15
|
+
const isOpen = ref(props.isDefaultOpen);
|
|
16
16
|
const triggerNode = ref(null);
|
|
17
17
|
const contentNode = ref(null);
|
|
18
18
|
const placement = ref(props.placement);
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
useTooltip
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-2KZ7KSYS.mjs";
|
|
4
4
|
import {
|
|
5
5
|
tooltipProps
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-ENW3A4UE.mjs";
|
|
7
7
|
|
|
8
8
|
// src/tooltip.tsx
|
|
9
9
|
import { Fragment as _Fragment, createVNode as _createVNode, createTextVNode as _createTextVNode } from "vue";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
useSingletonTooltip
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-2KZ7KSYS.mjs";
|
|
4
4
|
import {
|
|
5
5
|
singletonTooltipProps
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-ENW3A4UE.mjs";
|
|
7
7
|
|
|
8
8
|
// src/singleton-tooltip.tsx
|
|
9
9
|
import { createVNode as _createVNode, createTextVNode as _createTextVNode } from "vue";
|
package/dist/index.js
CHANGED
|
@@ -40,7 +40,7 @@ function useTooltip(props, emit, slots) {
|
|
|
40
40
|
console.error("[Pixel]: The MpTooltip component only expects one child.");
|
|
41
41
|
}
|
|
42
42
|
const getId = (0, import_vue2.computed)(() => props.id || `tooltip-${(0, import_pixel3_utils.useId)(4)}`);
|
|
43
|
-
const isOpen = (0, import_vue2.ref)(
|
|
43
|
+
const isOpen = (0, import_vue2.ref)(props.isDefaultOpen);
|
|
44
44
|
const triggerNode2 = (0, import_vue2.ref)(null);
|
|
45
45
|
const contentNode = (0, import_vue2.ref)(null);
|
|
46
46
|
const placement = (0, import_vue2.ref)(props.placement);
|
|
@@ -164,7 +164,7 @@ var tooltipProps = {
|
|
|
164
164
|
id: {
|
|
165
165
|
type: String
|
|
166
166
|
},
|
|
167
|
-
|
|
167
|
+
isDefaultOpen: {
|
|
168
168
|
type: Boolean
|
|
169
169
|
},
|
|
170
170
|
isManual: {
|
package/dist/index.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
MpTooltip
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-BFYYWBFD.mjs";
|
|
4
4
|
import {
|
|
5
5
|
PixelTooltipDirective
|
|
6
|
-
} from "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
6
|
+
} from "./chunk-RY5UNIIN.mjs";
|
|
7
|
+
import "./chunk-PZOZJSEB.mjs";
|
|
8
|
+
import "./chunk-2KZ7KSYS.mjs";
|
|
9
|
+
import "./chunk-ENW3A4UE.mjs";
|
|
10
10
|
import "./chunk-QZ7VFGWC.mjs";
|
|
11
11
|
export {
|
|
12
12
|
MpTooltip,
|
package/dist/metafile-cjs.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/modules/tooltip.hooks.ts":{"bytes":
|
|
1
|
+
{"inputs":{"src/modules/tooltip.hooks.ts":{"bytes":3115,"imports":[{"path":"@floating-ui/vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/modules/tooltip.props.ts":{"bytes":1707,"imports":[],"format":"esm"},"src/tooltip.tsx":{"bytes":1278,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/modules/tooltip.hooks.ts","kind":"import-statement","original":"./modules/tooltip.hooks"},{"path":"src/modules/tooltip.props.ts","kind":"import-statement","original":"./modules/tooltip.props"}],"format":"esm"},"src/singleton-tooltip.tsx":{"bytes":781,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/modules/tooltip.props.ts","kind":"import-statement","original":"./modules/tooltip.props"},{"path":"src/modules/tooltip.hooks.ts","kind":"import-statement","original":"./modules/tooltip.hooks"}],"format":"esm"},"src/v-tooltip.ts":{"bytes":4420,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"src/singleton-tooltip.tsx","kind":"import-statement","original":"./singleton-tooltip"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/index.tsx":{"bytes":176,"imports":[{"path":"src/tooltip.tsx","kind":"import-statement","original":"./tooltip"},{"path":"src/v-tooltip.ts","kind":"import-statement","original":"./v-tooltip"}],"format":"esm"}},"outputs":{"dist/index.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@floating-ui/vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-utils","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/index.tsx","inputs":{"src/index.tsx":{"bytesInOutput":177},"src/tooltip.tsx":{"bytesInOutput":1141},"src/modules/tooltip.hooks.ts":{"bytesInOutput":3431},"src/modules/tooltip.props.ts":{"bytesInOutput":679},"src/v-tooltip.ts":{"bytesInOutput":3695},"src/singleton-tooltip.tsx":{"bytesInOutput":566}},"bytes":10902},"dist/singleton-tooltip.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@floating-ui/vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-utils","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/singleton-tooltip.tsx","inputs":{"src/singleton-tooltip.tsx":{"bytesInOutput":749},"src/modules/tooltip.props.ts":{"bytesInOutput":219},"src/modules/tooltip.hooks.ts":{"bytesInOutput":1096}},"bytes":3191},"dist/tooltip.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@floating-ui/vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-utils","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/tooltip.tsx","inputs":{"src/tooltip.tsx":{"bytesInOutput":1274},"src/modules/tooltip.hooks.ts":{"bytesInOutput":2498},"src/modules/tooltip.props.ts":{"bytesInOutput":460}},"bytes":5330},"dist/v-tooltip.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@floating-ui/vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-utils","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/v-tooltip.ts","inputs":{"src/v-tooltip.ts":{"bytesInOutput":3860},"src/singleton-tooltip.tsx":{"bytesInOutput":566},"src/modules/tooltip.props.ts":{"bytesInOutput":219},"src/modules/tooltip.hooks.ts":{"bytesInOutput":1125}},"bytes":6942},"dist/modules/tooltip.hooks.js":{"imports":[{"path":"@floating-ui/vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-utils","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/modules/tooltip.hooks.ts","inputs":{"src/modules/tooltip.hooks.ts":{"bytesInOutput":3590}},"bytes":4639},"dist/modules/tooltip.props.js":{"imports":[],"exports":[],"entryPoint":"src/modules/tooltip.props.ts","inputs":{"src/modules/tooltip.props.ts":{"bytesInOutput":966}},"bytes":1945}}}
|
package/dist/metafile-esm.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/modules/tooltip.hooks.ts":{"bytes":
|
|
1
|
+
{"inputs":{"src/modules/tooltip.hooks.ts":{"bytes":3115,"imports":[{"path":"@floating-ui/vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/modules/tooltip.props.ts":{"bytes":1707,"imports":[],"format":"esm"},"src/tooltip.tsx":{"bytes":1278,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/modules/tooltip.hooks.ts","kind":"import-statement","original":"./modules/tooltip.hooks"},{"path":"src/modules/tooltip.props.ts","kind":"import-statement","original":"./modules/tooltip.props"}],"format":"esm"},"src/singleton-tooltip.tsx":{"bytes":781,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"src/modules/tooltip.props.ts","kind":"import-statement","original":"./modules/tooltip.props"},{"path":"src/modules/tooltip.hooks.ts","kind":"import-statement","original":"./modules/tooltip.hooks"}],"format":"esm"},"src/v-tooltip.ts":{"bytes":4420,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"src/singleton-tooltip.tsx","kind":"import-statement","original":"./singleton-tooltip"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/index.tsx":{"bytes":176,"imports":[{"path":"src/tooltip.tsx","kind":"import-statement","original":"./tooltip"},{"path":"src/v-tooltip.ts","kind":"import-statement","original":"./v-tooltip"}],"format":"esm"}},"outputs":{"dist/index.mjs":{"imports":[{"path":"dist/chunk-BFYYWBFD.mjs","kind":"import-statement"},{"path":"dist/chunk-RY5UNIIN.mjs","kind":"import-statement"},{"path":"dist/chunk-PZOZJSEB.mjs","kind":"import-statement"},{"path":"dist/chunk-2KZ7KSYS.mjs","kind":"import-statement"},{"path":"dist/chunk-ENW3A4UE.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTooltip","PixelTooltipDirective"],"entryPoint":"src/index.tsx","inputs":{"src/index.tsx":{"bytesInOutput":0}},"bytes":289},"dist/singleton-tooltip.mjs":{"imports":[{"path":"dist/chunk-PZOZJSEB.mjs","kind":"import-statement"},{"path":"dist/chunk-2KZ7KSYS.mjs","kind":"import-statement"},{"path":"dist/chunk-ENW3A4UE.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpSingletonTooltip"],"entryPoint":"src/singleton-tooltip.tsx","inputs":{},"bytes":187},"dist/tooltip.mjs":{"imports":[{"path":"dist/chunk-BFYYWBFD.mjs","kind":"import-statement"},{"path":"dist/chunk-2KZ7KSYS.mjs","kind":"import-statement"},{"path":"dist/chunk-ENW3A4UE.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["MpTooltip"],"entryPoint":"src/tooltip.tsx","inputs":{},"bytes":169},"dist/chunk-BFYYWBFD.mjs":{"imports":[{"path":"dist/chunk-2KZ7KSYS.mjs","kind":"import-statement"},{"path":"dist/chunk-ENW3A4UE.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"exports":["MpTooltip"],"inputs":{"src/tooltip.tsx":{"bytesInOutput":1074}},"bytes":1227},"dist/v-tooltip.mjs":{"imports":[{"path":"dist/chunk-RY5UNIIN.mjs","kind":"import-statement"},{"path":"dist/chunk-PZOZJSEB.mjs","kind":"import-statement"},{"path":"dist/chunk-2KZ7KSYS.mjs","kind":"import-statement"},{"path":"dist/chunk-ENW3A4UE.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["PixelTooltipDirective"],"entryPoint":"src/v-tooltip.ts","inputs":{},"bytes":224},"dist/chunk-RY5UNIIN.mjs":{"imports":[{"path":"dist/chunk-PZOZJSEB.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true}],"exports":["PixelTooltipDirective"],"inputs":{"src/v-tooltip.ts":{"bytesInOutput":3600}},"bytes":3768},"dist/chunk-PZOZJSEB.mjs":{"imports":[{"path":"dist/chunk-2KZ7KSYS.mjs","kind":"import-statement"},{"path":"dist/chunk-ENW3A4UE.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true}],"exports":["MpSingletonTooltip"],"inputs":{"src/singleton-tooltip.tsx":{"bytesInOutput":560}},"bytes":750},"dist/modules/tooltip.hooks.mjs":{"imports":[{"path":"dist/chunk-2KZ7KSYS.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["useSingletonTooltip","useTooltip"],"entryPoint":"src/modules/tooltip.hooks.ts","inputs":{},"bytes":157},"dist/chunk-2KZ7KSYS.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"@floating-ui/vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["useSingletonTooltip","useTooltip"],"inputs":{"src/modules/tooltip.hooks.ts":{"bytesInOutput":2989}},"bytes":3120},"dist/modules/tooltip.props.mjs":{"imports":[{"path":"dist/chunk-ENW3A4UE.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["singletonTooltipProps","tooltipEmits","tooltipProps"],"entryPoint":"src/modules/tooltip.props.ts","inputs":{},"bytes":197},"dist/chunk-ENW3A4UE.mjs":{"imports":[],"exports":["singletonTooltipProps","tooltipEmits","tooltipProps"],"inputs":{"src/modules/tooltip.props.ts":{"bytesInOutput":717}},"bytes":818},"dist/chunk-QZ7VFGWC.mjs":{"imports":[],"exports":["__name"],"inputs":{},"bytes":151}}}
|
|
@@ -34,7 +34,7 @@ function useTooltip(props, emit, slots) {
|
|
|
34
34
|
console.error("[Pixel]: The MpTooltip component only expects one child.");
|
|
35
35
|
}
|
|
36
36
|
const getId = (0, import_vue2.computed)(() => props.id || `tooltip-${(0, import_pixel3_utils.useId)(4)}`);
|
|
37
|
-
const isOpen = (0, import_vue2.ref)(
|
|
37
|
+
const isOpen = (0, import_vue2.ref)(props.isDefaultOpen);
|
|
38
38
|
const triggerNode = (0, import_vue2.ref)(null);
|
|
39
39
|
const contentNode = (0, import_vue2.ref)(null);
|
|
40
40
|
const placement = (0, import_vue2.ref)(props.placement);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
MpSingletonTooltip
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-PZOZJSEB.mjs";
|
|
4
|
+
import "./chunk-2KZ7KSYS.mjs";
|
|
5
|
+
import "./chunk-ENW3A4UE.mjs";
|
|
6
6
|
import "./chunk-QZ7VFGWC.mjs";
|
|
7
7
|
export {
|
|
8
8
|
MpSingletonTooltip
|
package/dist/tooltip.d.mts
CHANGED
|
@@ -13,7 +13,7 @@ declare const MpTooltip: vue.DefineComponent<{
|
|
|
13
13
|
id: {
|
|
14
14
|
type: vue.PropType<string>;
|
|
15
15
|
};
|
|
16
|
-
|
|
16
|
+
isDefaultOpen: {
|
|
17
17
|
type: vue.PropType<boolean>;
|
|
18
18
|
};
|
|
19
19
|
isManual: {
|
|
@@ -48,7 +48,7 @@ declare const MpTooltip: vue.DefineComponent<{
|
|
|
48
48
|
id: {
|
|
49
49
|
type: vue.PropType<string>;
|
|
50
50
|
};
|
|
51
|
-
|
|
51
|
+
isDefaultOpen: {
|
|
52
52
|
type: vue.PropType<boolean>;
|
|
53
53
|
};
|
|
54
54
|
isManual: {
|
package/dist/tooltip.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ declare const MpTooltip: vue.DefineComponent<{
|
|
|
13
13
|
id: {
|
|
14
14
|
type: vue.PropType<string>;
|
|
15
15
|
};
|
|
16
|
-
|
|
16
|
+
isDefaultOpen: {
|
|
17
17
|
type: vue.PropType<boolean>;
|
|
18
18
|
};
|
|
19
19
|
isManual: {
|
|
@@ -48,7 +48,7 @@ declare const MpTooltip: vue.DefineComponent<{
|
|
|
48
48
|
id: {
|
|
49
49
|
type: vue.PropType<string>;
|
|
50
50
|
};
|
|
51
|
-
|
|
51
|
+
isDefaultOpen: {
|
|
52
52
|
type: vue.PropType<boolean>;
|
|
53
53
|
};
|
|
54
54
|
isManual: {
|
package/dist/tooltip.js
CHANGED
|
@@ -37,7 +37,7 @@ function useTooltip(props, emit, slots) {
|
|
|
37
37
|
console.error("[Pixel]: The MpTooltip component only expects one child.");
|
|
38
38
|
}
|
|
39
39
|
const getId = (0, import_vue2.computed)(() => props.id || `tooltip-${(0, import_pixel3_utils.useId)(4)}`);
|
|
40
|
-
const isOpen = (0, import_vue2.ref)(
|
|
40
|
+
const isOpen = (0, import_vue2.ref)(props.isDefaultOpen);
|
|
41
41
|
const triggerNode = (0, import_vue2.ref)(null);
|
|
42
42
|
const contentNode = (0, import_vue2.ref)(null);
|
|
43
43
|
const placement = (0, import_vue2.ref)(props.placement);
|
|
@@ -129,7 +129,7 @@ var tooltipProps = {
|
|
|
129
129
|
id: {
|
|
130
130
|
type: String
|
|
131
131
|
},
|
|
132
|
-
|
|
132
|
+
isDefaultOpen: {
|
|
133
133
|
type: Boolean
|
|
134
134
|
},
|
|
135
135
|
isManual: {
|
package/dist/tooltip.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
MpTooltip
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-BFYYWBFD.mjs";
|
|
4
|
+
import "./chunk-2KZ7KSYS.mjs";
|
|
5
|
+
import "./chunk-ENW3A4UE.mjs";
|
|
6
6
|
import "./chunk-QZ7VFGWC.mjs";
|
|
7
7
|
export {
|
|
8
8
|
MpTooltip
|
package/dist/v-tooltip.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
PixelTooltipDirective
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-RY5UNIIN.mjs";
|
|
4
|
+
import "./chunk-PZOZJSEB.mjs";
|
|
5
|
+
import "./chunk-2KZ7KSYS.mjs";
|
|
6
|
+
import "./chunk-ENW3A4UE.mjs";
|
|
7
7
|
import "./chunk-QZ7VFGWC.mjs";
|
|
8
8
|
export {
|
|
9
9
|
PixelTooltipDirective
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mekari/pixel3-tooltip",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"files": [
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@floating-ui/vue": "^1.0.2",
|
|
11
11
|
"@mekari/pixel3-styled-system": "0.0.3",
|
|
12
|
-
"@mekari/pixel3-utils": "0.0.
|
|
12
|
+
"@mekari/pixel3-utils": "0.0.4"
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
15
|
"vue": "^3.4.9"
|