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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
| import { defineComponent, ref, computed, openBlock, createBlock, unref, mergeProps, withCtx, createElementVNode, normalizeClass, normalizeStyle, resolveDynamicComponent, createCommentVNode, createTextVNode, toDisplayString, createVNode, renderSlot } from 'vue';
| import { ElButton } from '../../button/index.mjs';
| import { ElIcon } from '../../icon/index.mjs';
| import { ElTooltip } from '../../tooltip/index.mjs';
| import '../../../hooks/index.mjs';
| import '../../../utils/index.mjs';
| import { popconfirmProps, popconfirmEmits } from './popconfirm.mjs';
| import _export_sfc from '../../../_virtual/plugin-vue_export-helper.mjs';
| import { useLocale } from '../../../hooks/use-locale/index.mjs';
| import { useNamespace } from '../../../hooks/use-namespace/index.mjs';
| import { addUnit } from '../../../utils/dom/style.mjs';
|
| const __default__ = defineComponent({
| name: "ElPopconfirm"
| });
| const _sfc_main = /* @__PURE__ */ defineComponent({
| ...__default__,
| props: popconfirmProps,
| emits: popconfirmEmits,
| setup(__props, { emit }) {
| const props = __props;
| const { t } = useLocale();
| const ns = useNamespace("popconfirm");
| const tooltipRef = ref();
| const hidePopper = () => {
| var _a, _b;
| (_b = (_a = tooltipRef.value) == null ? void 0 : _a.onClose) == null ? void 0 : _b.call(_a);
| };
| const style = computed(() => {
| return {
| width: addUnit(props.width)
| };
| });
| const confirm = (e) => {
| emit("confirm", e);
| hidePopper();
| };
| const cancel = (e) => {
| emit("cancel", e);
| hidePopper();
| };
| const finalConfirmButtonText = computed(() => props.confirmButtonText || t("el.popconfirm.confirmButtonText"));
| const finalCancelButtonText = computed(() => props.cancelButtonText || t("el.popconfirm.cancelButtonText"));
| return (_ctx, _cache) => {
| return openBlock(), createBlock(unref(ElTooltip), mergeProps({
| ref_key: "tooltipRef",
| ref: tooltipRef,
| trigger: "click",
| effect: "light"
| }, _ctx.$attrs, {
| "popper-class": `${unref(ns).namespace.value}-popover`,
| "popper-style": unref(style),
| teleported: _ctx.teleported,
| "fallback-placements": ["bottom", "top", "right", "left"],
| "hide-after": _ctx.hideAfter,
| persistent: _ctx.persistent
| }), {
| content: withCtx(() => [
| createElementVNode("div", {
| class: normalizeClass(unref(ns).b())
| }, [
| createElementVNode("div", {
| class: normalizeClass(unref(ns).e("main"))
| }, [
| !_ctx.hideIcon && _ctx.icon ? (openBlock(), createBlock(unref(ElIcon), {
| key: 0,
| class: normalizeClass(unref(ns).e("icon")),
| style: normalizeStyle({ color: _ctx.iconColor })
| }, {
| default: withCtx(() => [
| (openBlock(), createBlock(resolveDynamicComponent(_ctx.icon)))
| ]),
| _: 1
| }, 8, ["class", "style"])) : createCommentVNode("v-if", true),
| createTextVNode(" " + toDisplayString(_ctx.title), 1)
| ], 2),
| createElementVNode("div", {
| class: normalizeClass(unref(ns).e("action"))
| }, [
| createVNode(unref(ElButton), {
| size: "small",
| type: _ctx.cancelButtonType === "text" ? "" : _ctx.cancelButtonType,
| text: _ctx.cancelButtonType === "text",
| onClick: cancel
| }, {
| default: withCtx(() => [
| createTextVNode(toDisplayString(unref(finalCancelButtonText)), 1)
| ]),
| _: 1
| }, 8, ["type", "text"]),
| createVNode(unref(ElButton), {
| size: "small",
| type: _ctx.confirmButtonType === "text" ? "" : _ctx.confirmButtonType,
| text: _ctx.confirmButtonType === "text",
| onClick: confirm
| }, {
| default: withCtx(() => [
| createTextVNode(toDisplayString(unref(finalConfirmButtonText)), 1)
| ]),
| _: 1
| }, 8, ["type", "text"])
| ], 2)
| ], 2)
| ]),
| default: withCtx(() => [
| _ctx.$slots.reference ? renderSlot(_ctx.$slots, "reference", { key: 0 }) : createCommentVNode("v-if", true)
| ]),
| _: 3
| }, 16, ["popper-class", "popper-style", "teleported", "hide-after", "persistent"]);
| };
| }
| });
| var Popconfirm = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "/home/runner/work/element-plus/element-plus/packages/components/popconfirm/src/popconfirm.vue"]]);
|
| export { Popconfirm as default };
| //# sourceMappingURL=popconfirm2.mjs.map
|
|