1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
| import { defineComponent, toRefs, reactive, openBlock, createBlock, normalizeProps, guardReactiveProps, withCtx, createVNode, mergeProps, renderSlot, Teleport, Transition, createCommentVNode, createElementBlock, Fragment } from 'vue';
| import { pick } from 'lodash-unified';
| import { tooltipV2ArrowProps } from './arrow.mjs';
| import { tooltipV2ContentProps } from './content.mjs';
| import { tooltipV2RootProps } from './root.mjs';
| import { tooltipV2Props } from './tooltip.mjs';
| import { tooltipV2TriggerProps } from './trigger.mjs';
| import TooltipV2Root from './root2.mjs';
| import TooltipV2Arrow from './arrow2.mjs';
| import TooltipV2Content from './content2.mjs';
| import TooltipV2Trigger from './trigger2.mjs';
| import _export_sfc from '../../../_virtual/plugin-vue_export-helper.mjs';
|
| const __default__ = defineComponent({
| name: "ElTooltipV2"
| });
| const _sfc_main = /* @__PURE__ */ defineComponent({
| ...__default__,
| props: tooltipV2Props,
| setup(__props) {
| const props = __props;
| const refedProps = toRefs(props);
| const arrowProps = reactive(pick(refedProps, Object.keys(tooltipV2ArrowProps)));
| const contentProps = reactive(pick(refedProps, Object.keys(tooltipV2ContentProps)));
| const rootProps = reactive(pick(refedProps, Object.keys(tooltipV2RootProps)));
| const triggerProps = reactive(pick(refedProps, Object.keys(tooltipV2TriggerProps)));
| return (_ctx, _cache) => {
| return openBlock(), createBlock(TooltipV2Root, normalizeProps(guardReactiveProps(rootProps)), {
| default: withCtx(({ open }) => [
| createVNode(TooltipV2Trigger, mergeProps(triggerProps, { nowrap: "" }), {
| default: withCtx(() => [
| renderSlot(_ctx.$slots, "trigger")
| ]),
| _: 3
| }, 16),
| (openBlock(), createBlock(Teleport, {
| to: _ctx.to,
| disabled: !_ctx.teleported
| }, [
| _ctx.fullTransition ? (openBlock(), createBlock(Transition, normalizeProps(mergeProps({ key: 0 }, _ctx.transitionProps)), {
| default: withCtx(() => [
| _ctx.alwaysOn || open ? (openBlock(), createBlock(TooltipV2Content, normalizeProps(mergeProps({ key: 0 }, contentProps)), {
| arrow: withCtx(({ style, side }) => [
| _ctx.showArrow ? (openBlock(), createBlock(TooltipV2Arrow, mergeProps({ key: 0 }, arrowProps, {
| style,
| side
| }), null, 16, ["style", "side"])) : createCommentVNode("v-if", true)
| ]),
| default: withCtx(() => [
| renderSlot(_ctx.$slots, "default")
| ]),
| _: 3
| }, 16)) : createCommentVNode("v-if", true)
| ]),
| _: 2
| }, 1040)) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
| _ctx.alwaysOn || open ? (openBlock(), createBlock(TooltipV2Content, normalizeProps(mergeProps({ key: 0 }, contentProps)), {
| arrow: withCtx(({ style, side }) => [
| _ctx.showArrow ? (openBlock(), createBlock(TooltipV2Arrow, mergeProps({ key: 0 }, arrowProps, {
| style,
| side
| }), null, 16, ["style", "side"])) : createCommentVNode("v-if", true)
| ]),
| default: withCtx(() => [
| renderSlot(_ctx.$slots, "default")
| ]),
| _: 3
| }, 16)) : createCommentVNode("v-if", true)
| ], 64))
| ], 8, ["to", "disabled"]))
| ]),
| _: 3
| }, 16);
| };
| }
| });
| var TooltipV2 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "/home/runner/work/element-plus/element-plus/packages/components/tooltip-v2/src/tooltip.vue"]]);
|
| export { TooltipV2 as default };
| //# sourceMappingURL=tooltip2.mjs.map
|
|