vue-chrts 0.0.159 → 0.0.161
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/components/Line/LineChart.cjs +1 -1
- package/dist/components/Line/LineChart.cjs.map +1 -1
- package/dist/components/Line/LineChart.js +21 -52
- package/dist/components/Line/LineChart.js.map +1 -1
- package/dist/components/Line/LineChart.vue.d.ts +1 -3
- package/package.json +1 -1
- package/dist/components/Tooltip.cjs +0 -2
- package/dist/components/Tooltip.cjs.map +0 -1
- package/dist/components/Tooltip.js +0 -38
- package/dist/components/Tooltip.js.map +0 -1
- package/dist/components/Tooltip.vue.d.ts +0 -17
- package/dist/components/Tooltip2.cjs +0 -2
- package/dist/components/Tooltip2.cjs.map +0 -1
- package/dist/components/Tooltip2.js +0 -5
- package/dist/components/Tooltip2.js.map +0 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),a=require("@unovis/vue"),u=e.defineComponent({__name:"LineChart",props:{data:{},height:{},xLabel:{},yLabel:{},categories:{},xFormatter:{type:Function},yFormatter:{type:Function},yNumTicks:{},xNumTicks:{},paginationPosition:{}},setup(l){const o=l,n=t=>Object.values(o.categories)[t].color;return(t,m)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["space-y-4 flex flex-col",{"flex-col-reverse":o.paginationPosition==="top"}])},[e.createVNode(e.unref(a.VisXYContainer),{data:t.data,height:t.height},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Object.keys(o.categories),(s,r)=>(e.openBlock(),e.createBlock(e.unref(a.VisLine),{key:r,x:(i,c)=>c,y:i=>i[s],color:n(r)},null,8,["x","y","color"]))),128)),e.createVNode(e.unref(a.VisAxis),{type:"x","tick-format":t.xFormatter,"num-ticks":t.xNumTicks??4,label:t.xLabel,"label-margin":8,"domain-line":!1,"grid-line":!1},null,8,["tick-format","num-ticks","label"]),e.createVNode(e.unref(a.VisAxis),{type:"y","num-ticks":t.yNumTicks??4,"tick-format":t.yFormatter,label:t.yLabel,"domain-line":!1},null,8,["num-ticks","tick-format","label"])]),_:1},8,["data","height"])],2))}});exports.default=u;
|
|
2
2
|
//# sourceMappingURL=LineChart.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LineChart.cjs","sources":["../../../src/components/Line/LineChart.vue"],"sourcesContent":["<script setup lang=\"ts\" generic=\"T\">\
|
|
1
|
+
{"version":3,"file":"LineChart.cjs","sources":["../../../src/components/Line/LineChart.vue"],"sourcesContent":["<script setup lang=\"ts\" generic=\"T\">\n\nimport {\n VisAxis,\n VisBulletLegend,\n VisLine,\n VisXYContainer,\n VisTooltip,\n} from \"@unovis/vue\";\n\nimport { PaginationPosition } from \"../../types\";\n\ntype LineChartProps<T> = {\n data: T[];\n height: number;\n xLabel?: string;\n yLabel?: string;\n categories: Record<string, any>;\n xFormatter: (i: number, idx: number) => string;\n yFormatter?: (i: number, idx: number) => string;\n yNumTicks?: number;\n xNumTicks?: number;\n paginationPosition?: PaginationPosition;\n};\n\nconst props = defineProps<LineChartProps<T>>();\n\nconst color = (key: number) => Object.values(props.categories)[key].color;\n\n</script>\n\n<template>\n <div\n class=\"space-y-4 flex flex-col\"\n :class=\"{\n 'flex-col-reverse': props.paginationPosition === 'top',\n }\"\n >\n <VisXYContainer :data=\"data\" :height=\"height\">\n\n <template v-for=\"(i, iKey) in Object.keys(props.categories)\" :key=\"iKey\">\n <VisLine\n :x=\"(_: any, i: number) => i\"\n :y=\"(d: T) => d[i as keyof typeof d]\"\n :color=\"color(iKey)\"\n />\n </template>\n <VisAxis\n type=\"x\"\n :tick-format=\"xFormatter\"\n :num-ticks=\"xNumTicks ?? 4\"\n :label=\"xLabel\"\n :label-margin=\"8\"\n :domain-line=\"false\"\n :grid-line=\"false\"\n />\n <VisAxis\n type=\"y\"\n :num-ticks=\"yNumTicks ?? 4\"\n :tick-format=\"yFormatter\"\n :label=\"yLabel\"\n :domain-line=\"false\"\n />\n </VisXYContainer>\n <!-- <div class=\"flex items center justify-end\">\n <VisBulletLegend :items=\"Object.values(categories)\" />\n </div> -->\n </div>\n</template>\n"],"names":["props","__props","color","key"],"mappings":"+WAyBA,MAAMA,EAAQC,EAERC,EAASC,GAAgB,OAAO,OAAOH,EAAM,UAAU,EAAEG,CAAG,EAAE"}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
import z from "../Tooltip.js";
|
|
5
|
-
const E = { class: "flex items center justify-end" }, X = /* @__PURE__ */ g({
|
|
1
|
+
import { defineComponent as f, createElementBlock as n, openBlock as o, normalizeClass as k, createVNode as i, unref as t, withCtx as y, Fragment as d, renderList as g, createBlock as b } from "vue";
|
|
2
|
+
import { VisXYContainer as h, VisLine as x, VisAxis as s } from "@unovis/vue";
|
|
3
|
+
const N = /* @__PURE__ */ f({
|
|
6
4
|
__name: "LineChart",
|
|
7
5
|
props: {
|
|
8
6
|
data: {},
|
|
@@ -12,49 +10,29 @@ const E = { class: "flex items center justify-end" }, X = /* @__PURE__ */ g({
|
|
|
12
10
|
categories: {},
|
|
13
11
|
xFormatter: { type: Function },
|
|
14
12
|
yFormatter: { type: Function },
|
|
15
|
-
curveType: {},
|
|
16
13
|
yNumTicks: {},
|
|
17
14
|
xNumTicks: {},
|
|
18
15
|
paginationPosition: {}
|
|
19
16
|
},
|
|
20
|
-
setup(
|
|
21
|
-
const
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
const r = k(z, {
|
|
26
|
-
data: e,
|
|
27
|
-
categories: n.categories
|
|
28
|
-
}), a = document.createElement("div");
|
|
29
|
-
r.mount(a);
|
|
30
|
-
const i = a.innerHTML;
|
|
31
|
-
return r.unmount(), i;
|
|
32
|
-
} catch {
|
|
33
|
-
return "";
|
|
34
|
-
}
|
|
35
|
-
});
|
|
36
|
-
return (e, r) => (l(), s("div", {
|
|
37
|
-
class: v(["space-y-4 flex flex-col", {
|
|
38
|
-
"flex-col-reverse": n.paginationPosition === "top"
|
|
17
|
+
setup(c) {
|
|
18
|
+
const a = c, m = (e) => Object.values(a.categories)[e].color;
|
|
19
|
+
return (e, F) => (o(), n("div", {
|
|
20
|
+
class: k(["space-y-4 flex flex-col", {
|
|
21
|
+
"flex-col-reverse": a.paginationPosition === "top"
|
|
39
22
|
}])
|
|
40
23
|
}, [
|
|
41
|
-
|
|
24
|
+
i(t(h), {
|
|
42
25
|
data: e.data,
|
|
43
26
|
height: e.height
|
|
44
27
|
}, {
|
|
45
|
-
default:
|
|
46
|
-
o(t(
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
y: (c) => c[a],
|
|
54
|
-
color: d(i),
|
|
55
|
-
"curve-type": e.curveType ?? t(C).MonotoneX
|
|
56
|
-
}, null, 8, ["x", "y", "color", "curve-type"]))), 128)),
|
|
57
|
-
o(t(u), {
|
|
28
|
+
default: y(() => [
|
|
29
|
+
(o(!0), n(d, null, g(Object.keys(a.categories), (u, l) => (o(), b(t(x), {
|
|
30
|
+
key: l,
|
|
31
|
+
x: (r, p) => p,
|
|
32
|
+
y: (r) => r[u],
|
|
33
|
+
color: m(l)
|
|
34
|
+
}, null, 8, ["x", "y", "color"]))), 128)),
|
|
35
|
+
i(t(s), {
|
|
58
36
|
type: "x",
|
|
59
37
|
"tick-format": e.xFormatter,
|
|
60
38
|
"num-ticks": e.xNumTicks ?? 4,
|
|
@@ -63,29 +41,20 @@ const E = { class: "flex items center justify-end" }, X = /* @__PURE__ */ g({
|
|
|
63
41
|
"domain-line": !1,
|
|
64
42
|
"grid-line": !1
|
|
65
43
|
}, null, 8, ["tick-format", "num-ticks", "label"]),
|
|
66
|
-
|
|
44
|
+
i(t(s), {
|
|
67
45
|
type: "y",
|
|
68
46
|
"num-ticks": e.yNumTicks ?? 4,
|
|
69
47
|
"tick-format": e.yFormatter,
|
|
70
48
|
label: e.yLabel,
|
|
71
49
|
"domain-line": !1
|
|
72
|
-
}, null, 8, ["num-ticks", "tick-format", "label"])
|
|
73
|
-
o(t(B), {
|
|
74
|
-
color: "#666",
|
|
75
|
-
template: f.value
|
|
76
|
-
}, null, 8, ["template"])
|
|
50
|
+
}, null, 8, ["num-ticks", "tick-format", "label"])
|
|
77
51
|
]),
|
|
78
52
|
_: 1
|
|
79
|
-
}, 8, ["data", "height"])
|
|
80
|
-
b("div", E, [
|
|
81
|
-
o(t(w), {
|
|
82
|
-
items: Object.values(e.categories)
|
|
83
|
-
}, null, 8, ["items"])
|
|
84
|
-
])
|
|
53
|
+
}, 8, ["data", "height"])
|
|
85
54
|
], 2));
|
|
86
55
|
}
|
|
87
56
|
});
|
|
88
57
|
export {
|
|
89
|
-
|
|
58
|
+
N as default
|
|
90
59
|
};
|
|
91
60
|
//# sourceMappingURL=LineChart.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LineChart.js","sources":["../../../src/components/Line/LineChart.vue"],"sourcesContent":["<script setup lang=\"ts\" generic=\"T\">\
|
|
1
|
+
{"version":3,"file":"LineChart.js","sources":["../../../src/components/Line/LineChart.vue"],"sourcesContent":["<script setup lang=\"ts\" generic=\"T\">\n\nimport {\n VisAxis,\n VisBulletLegend,\n VisLine,\n VisXYContainer,\n VisTooltip,\n} from \"@unovis/vue\";\n\nimport { PaginationPosition } from \"../../types\";\n\ntype LineChartProps<T> = {\n data: T[];\n height: number;\n xLabel?: string;\n yLabel?: string;\n categories: Record<string, any>;\n xFormatter: (i: number, idx: number) => string;\n yFormatter?: (i: number, idx: number) => string;\n yNumTicks?: number;\n xNumTicks?: number;\n paginationPosition?: PaginationPosition;\n};\n\nconst props = defineProps<LineChartProps<T>>();\n\nconst color = (key: number) => Object.values(props.categories)[key].color;\n\n</script>\n\n<template>\n <div\n class=\"space-y-4 flex flex-col\"\n :class=\"{\n 'flex-col-reverse': props.paginationPosition === 'top',\n }\"\n >\n <VisXYContainer :data=\"data\" :height=\"height\">\n\n <template v-for=\"(i, iKey) in Object.keys(props.categories)\" :key=\"iKey\">\n <VisLine\n :x=\"(_: any, i: number) => i\"\n :y=\"(d: T) => d[i as keyof typeof d]\"\n :color=\"color(iKey)\"\n />\n </template>\n <VisAxis\n type=\"x\"\n :tick-format=\"xFormatter\"\n :num-ticks=\"xNumTicks ?? 4\"\n :label=\"xLabel\"\n :label-margin=\"8\"\n :domain-line=\"false\"\n :grid-line=\"false\"\n />\n <VisAxis\n type=\"y\"\n :num-ticks=\"yNumTicks ?? 4\"\n :tick-format=\"yFormatter\"\n :label=\"yLabel\"\n :domain-line=\"false\"\n />\n </VisXYContainer>\n <!-- <div class=\"flex items center justify-end\">\n <VisBulletLegend :items=\"Object.values(categories)\" />\n </div> -->\n </div>\n</template>\n"],"names":["props","__props","color","key"],"mappings":";;;;;;;;;;;;;;;;;AAyBA,UAAMA,IAAQC,GAERC,IAAQ,CAACC,MAAgB,OAAO,OAAOH,EAAM,UAAU,EAAEG,CAAG,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { CurveType, BulletLegendItemInterface } from '@unovis/ts';
|
|
2
1
|
import { PaginationPosition } from '../../types';
|
|
3
2
|
|
|
4
3
|
declare const _default: <T>(__VLS_props: Awaited<typeof __VLS_setup>["props"], __VLS_ctx?: __VLS_Prettify<Pick<Awaited<typeof __VLS_setup>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
@@ -7,10 +6,9 @@ declare const _default: <T>(__VLS_props: Awaited<typeof __VLS_setup>["props"], _
|
|
|
7
6
|
height: number;
|
|
8
7
|
xLabel?: string;
|
|
9
8
|
yLabel?: string;
|
|
10
|
-
categories: Record<string,
|
|
9
|
+
categories: Record<string, any>;
|
|
11
10
|
xFormatter: (i: number, idx: number) => string;
|
|
12
11
|
yFormatter?: (i: number, idx: number) => string;
|
|
13
|
-
curveType?: CurveType;
|
|
14
12
|
yNumTicks?: number;
|
|
15
13
|
xNumTicks?: number;
|
|
16
14
|
paginationPosition?: PaginationPosition;
|
package/package.json
CHANGED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),s=e.defineComponent({__name:"Tooltip",props:{data:{},categories:{}},setup(r){const l=r,n=["_index","_stacked","_ending"],i=e.computed(()=>Object.entries(l.data).filter(([o,a])=>{var t;return!n.includes(o)&&((t=l.categories[o])==null?void 0:t.color)}));return(o,a)=>(e.openBlock(),e.createElementBlock("div",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,([t,c])=>(e.openBlock(),e.createElementBlock("div",{key:t,style:{display:"flex","align-items":"center","margin-bottom":"4px"}},[e.createElementVNode("span",{style:e.normalizeStyle([{width:"8px",height:"8px","border-radius":"4px","margin-right":"8px"},{backgroundColor:o.categories[t].color}])},null,4),e.createElementVNode("div",null,[e.createElementVNode("span",{style:e.normalizeStyle([{"font-weight":"600","margin-right":"8px"},{color:"var(--tooltip-label-color)"}])},e.toDisplayString(t)+":",1),e.createElementVNode("span",{style:e.normalizeStyle([{"font-weight":"400"},{color:"var(--tooltip-value-color)"}])},e.toDisplayString(c),1)])]))),128))]))}});exports.default=s;
|
|
2
|
-
//# sourceMappingURL=Tooltip.cjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Tooltip.cjs","sources":["../../src/components/Tooltip.vue"],"sourcesContent":["<script lang=\"ts\" setup generic=\"T\">\nimport { BulletLegendItemInterface } from \"@unovis/ts\";\nimport { computed } from \"vue\";\n\nconst props = defineProps<{\n data: T;\n categories: Record<string, BulletLegendItemInterface>;\n}>();\n\nconst keyBlockList = [\"_index\", \"_stacked\", \"_ending\"];\n\nconst visibleEntries = computed(() => {\n return Object.entries(props.data).filter(\n ([key, _]) => !keyBlockList.includes(key) && props.categories[key]?.color\n );\n});\n</script>\n\n<template>\n <div>\n <div v-for=\"[key, value] in visibleEntries\" :key=\"key\" style=\"display: flex; align-items: center; margin-bottom: 4px;\">\n <span\n style=\"width: 8px; height: 8px; border-radius: 4px; margin-right: 8px;\"\n :style=\"{ backgroundColor: categories[key].color }\"\n ></span>\n <div>\n <span style=\"font-weight: 600; margin-right: 8px;\" :style=\"{ color: 'var(--tooltip-label-color)' }\">{{ key }}:</span>\n <span style=\"font-weight: 400;\" :style=\"{ color: 'var(--tooltip-value-color)' }\">{{ value }}</span>\n </div>\n </div>\n </div>\n</template>\n"],"names":["props","__props","keyBlockList","visibleEntries","computed","key","_","_a"],"mappings":"gNAIA,MAAMA,EAAQC,EAKRC,EAAe,CAAC,SAAU,WAAY,SAAS,EAE/CC,EAAiBC,EAAAA,SAAS,IACvB,OAAO,QAAQJ,EAAM,IAAI,EAAE,OAChC,CAAC,CAACK,EAAKC,CAAC,IAAM,OAAA,OAACJ,EAAa,SAASG,CAAG,KAAKE,EAAAP,EAAM,WAAWK,CAAG,IAApB,YAAAE,EAAuB,OACtE,CACD"}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { defineComponent as g, computed as m, createElementBlock as r, openBlock as l, Fragment as x, renderList as _, createElementVNode as o, normalizeStyle as n, toDisplayString as a } from "vue";
|
|
2
|
-
const h = /* @__PURE__ */ g({
|
|
3
|
-
__name: "Tooltip",
|
|
4
|
-
props: {
|
|
5
|
-
data: {},
|
|
6
|
-
categories: {}
|
|
7
|
-
},
|
|
8
|
-
setup(s) {
|
|
9
|
-
const i = s, c = ["_index", "_stacked", "_ending"], p = m(() => Object.entries(i.data).filter(
|
|
10
|
-
([t, d]) => {
|
|
11
|
-
var e;
|
|
12
|
-
return !c.includes(t) && ((e = i.categories[t]) == null ? void 0 : e.color);
|
|
13
|
-
}
|
|
14
|
-
));
|
|
15
|
-
return (t, d) => (l(), r("div", null, [
|
|
16
|
-
(l(!0), r(x, null, _(p.value, ([e, u]) => (l(), r("div", {
|
|
17
|
-
key: e,
|
|
18
|
-
style: { display: "flex", "align-items": "center", "margin-bottom": "4px" }
|
|
19
|
-
}, [
|
|
20
|
-
o("span", {
|
|
21
|
-
style: n([{ width: "8px", height: "8px", "border-radius": "4px", "margin-right": "8px" }, { backgroundColor: t.categories[e].color }])
|
|
22
|
-
}, null, 4),
|
|
23
|
-
o("div", null, [
|
|
24
|
-
o("span", {
|
|
25
|
-
style: n([{ "font-weight": "600", "margin-right": "8px" }, { color: "var(--tooltip-label-color)" }])
|
|
26
|
-
}, a(e) + ":", 1),
|
|
27
|
-
o("span", {
|
|
28
|
-
style: n([{ "font-weight": "400" }, { color: "var(--tooltip-value-color)" }])
|
|
29
|
-
}, a(u), 1)
|
|
30
|
-
])
|
|
31
|
-
]))), 128))
|
|
32
|
-
]));
|
|
33
|
-
}
|
|
34
|
-
});
|
|
35
|
-
export {
|
|
36
|
-
h as default
|
|
37
|
-
};
|
|
38
|
-
//# sourceMappingURL=Tooltip.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Tooltip.js","sources":["../../src/components/Tooltip.vue"],"sourcesContent":["<script lang=\"ts\" setup generic=\"T\">\nimport { BulletLegendItemInterface } from \"@unovis/ts\";\nimport { computed } from \"vue\";\n\nconst props = defineProps<{\n data: T;\n categories: Record<string, BulletLegendItemInterface>;\n}>();\n\nconst keyBlockList = [\"_index\", \"_stacked\", \"_ending\"];\n\nconst visibleEntries = computed(() => {\n return Object.entries(props.data).filter(\n ([key, _]) => !keyBlockList.includes(key) && props.categories[key]?.color\n );\n});\n</script>\n\n<template>\n <div>\n <div v-for=\"[key, value] in visibleEntries\" :key=\"key\" style=\"display: flex; align-items: center; margin-bottom: 4px;\">\n <span\n style=\"width: 8px; height: 8px; border-radius: 4px; margin-right: 8px;\"\n :style=\"{ backgroundColor: categories[key].color }\"\n ></span>\n <div>\n <span style=\"font-weight: 600; margin-right: 8px;\" :style=\"{ color: 'var(--tooltip-label-color)' }\">{{ key }}:</span>\n <span style=\"font-weight: 400;\" :style=\"{ color: 'var(--tooltip-value-color)' }\">{{ value }}</span>\n </div>\n </div>\n </div>\n</template>\n"],"names":["props","__props","keyBlockList","visibleEntries","computed","key","_","_a"],"mappings":";;;;;;;;AAIA,UAAMA,IAAQC,GAKRC,IAAe,CAAC,UAAU,YAAY,SAAS,GAE/CC,IAAiBC,EAAS,MACvB,OAAO,QAAQJ,EAAM,IAAI,EAAE;AAAA,MAChC,CAAC,CAACK,GAAKC,CAAC,MAAM;;AAAA,gBAACJ,EAAa,SAASG,CAAG,OAAKE,IAAAP,EAAM,WAAWK,CAAG,MAApB,gBAAAE,EAAuB;AAAA;AAAA,IACtE,CACD;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { BulletLegendItemInterface } from '@unovis/ts';
|
|
2
|
-
|
|
3
|
-
declare const _default: <T>(__VLS_props: Awaited<typeof __VLS_setup>["props"], __VLS_ctx?: __VLS_Prettify<Pick<Awaited<typeof __VLS_setup>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
4
|
-
props: __VLS_Prettify<__VLS_OmitKeepDiscriminatedUnion<(Partial<{}> & Omit<{} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>) & {
|
|
5
|
-
data: T;
|
|
6
|
-
categories: Record<string, BulletLegendItemInterface>;
|
|
7
|
-
}, keyof import('vue').VNodeProps | keyof import('vue').AllowedComponentProps>> & {} & (import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps);
|
|
8
|
-
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
9
|
-
attrs: any;
|
|
10
|
-
slots: ReturnType<() => {}>;
|
|
11
|
-
emit: typeof __VLS_emit;
|
|
12
|
-
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
13
|
-
[key: string]: any;
|
|
14
|
-
}> & {
|
|
15
|
-
__ctx?: Awaited<typeof __VLS_setup>;
|
|
16
|
-
};
|
|
17
|
-
export default _default;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Tooltip2.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Tooltip2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|