ep-craft 0.1.19 → 0.1.21
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/_virtual/_plugin-vue_export-helper.js +9 -0
- package/dist/components/affix/affix.d.ts +55 -0
- package/dist/components/affix/affix.js +199 -0
- package/dist/components/affix/index.d.ts +2 -2
- package/dist/components/affix/index.js +3 -4
- package/dist/components/alert/alert.d.ts +39 -0
- package/dist/components/alert/alert.js +94 -0
- package/dist/components/alert/index.d.ts +2 -2
- package/dist/components/alert/index.js +3 -4
- package/dist/components/anchor/anchor.d.ts +54 -0
- package/dist/components/anchor/anchor.js +153 -0
- package/dist/components/anchor/index.d.ts +2 -2
- package/dist/components/anchor/index.js +3 -4
- package/dist/components/anchor-link/anchor-link.d.ts +17 -0
- package/dist/components/anchor-link/anchor-link.js +51 -0
- package/dist/components/anchor-link/index.d.ts +2 -2
- package/dist/components/anchor-link/index.js +6 -4
- package/dist/components/button/EpButton.vue.d.ts +11 -11
- package/dist/components/button/EpButton.vue.js +122 -0
- package/dist/components/button/EpButton2.vue.js +4 -0
- package/dist/components/button/button.d.ts +3 -3
- package/dist/components/button/button.js +95 -0
- package/dist/components/button/index.d.ts +2 -2
- package/dist/components/button/index.js +3 -4
- package/dist/components/button/use-button-custom.js +66 -0
- package/dist/components/check-tag/EpCheckTag.vue.d.ts +1 -1
- package/dist/components/check-tag/EpCheckTag.vue.js +29 -0
- package/dist/components/check-tag/EpCheckTag2.vue.js +4 -0
- package/dist/components/check-tag/check-tag.js +20 -0
- package/dist/components/check-tag/index.d.ts +2 -2
- package/dist/components/check-tag/index.js +3 -4
- package/dist/components/collapse-transition/index.d.ts +20 -3
- package/dist/components/collapse-transition/index.js +6 -4
- package/dist/components/collapse-transition/src/collapse-transition.vue.d.ts +12 -0
- package/dist/components/collapse-transition/src/collapse-transition.vue.js +55 -0
- package/dist/components/collapse-transition/src/collapse-transition2.vue.js +4 -0
- package/dist/components/config-provider/src/constants.d.ts +14 -0
- package/dist/components/config-provider/src/hooks/use-global-config.d.ts +32 -0
- package/dist/components/focus-trap/index.d.ts +81 -0
- package/dist/components/focus-trap/index.js +19 -0
- package/dist/components/focus-trap/src/focus-trap.vue.d.ts +32 -0
- package/dist/components/focus-trap/src/focus-trap.vue.js +10 -0
- package/dist/components/focus-trap/src/focus-trap2.vue.js +164 -0
- package/dist/components/focus-trap/src/tokens.d.ts +13 -0
- package/dist/components/focus-trap/src/tokens.js +17 -0
- package/dist/components/focus-trap/src/utils.d.ts +29 -0
- package/dist/components/focus-trap/src/utils.js +83 -0
- package/dist/components/form/index.d.ts +3 -0
- package/dist/components/form/index.js +4 -2
- package/dist/components/form/src/constants.d.ts +4 -0
- package/dist/components/form/src/constants.js +4 -0
- package/dist/components/form/src/hooks/use-form-common-props.d.ts +6 -0
- package/dist/components/form/src/hooks/use-form-item.d.ts +19 -0
- package/dist/components/form/src/types.d.ts +24 -0
- package/dist/components/icon/index.d.ts +21 -3
- package/dist/components/icon/index.js +7 -4
- package/dist/components/icon/src/icon.d.ts +34 -0
- package/dist/components/icon/src/icon.js +16 -0
- package/dist/components/icon/src/icon.vue.d.ts +13 -0
- package/dist/components/icon/src/icon.vue.js +36 -0
- package/dist/components/icon/src/icon2.vue.js +4 -0
- package/dist/components/menu/menu.d.ts +8 -8
- package/dist/components/popper/index.d.ts +54 -3
- package/dist/components/popper/index.js +30 -5
- package/dist/components/popper/src/arrow.d.ts +30 -0
- package/dist/components/popper/src/arrow.js +14 -0
- package/dist/components/popper/src/arrow.vue.d.ts +7 -0
- package/dist/components/popper/src/arrow.vue.js +4 -0
- package/dist/components/popper/src/arrow2.vue.js +37 -0
- package/dist/components/popper/src/composables/index.d.ts +4 -0
- package/dist/components/popper/src/composables/use-content-dom.d.ts +40 -0
- package/dist/components/popper/src/composables/use-content-dom.js +45 -0
- package/dist/components/popper/src/composables/use-content.d.ts +77 -0
- package/dist/components/popper/src/composables/use-content.js +76 -0
- package/dist/components/popper/src/composables/use-focus-trap.d.ts +12 -0
- package/dist/components/popper/src/composables/use-focus-trap.js +29 -0
- package/dist/components/popper/src/constants.d.ts +23 -0
- package/dist/components/popper/src/constants.js +5 -0
- package/dist/components/popper/src/content.d.ts +234 -0
- package/dist/components/popper/src/content.js +129 -0
- package/dist/components/popper/src/content.vue.d.ts +61 -0
- package/dist/components/popper/src/content.vue.js +4 -0
- package/dist/components/popper/src/content2.vue.js +151 -0
- package/dist/components/popper/src/popper.d.ts +35 -0
- package/dist/components/popper/src/popper.js +22 -0
- package/dist/components/popper/src/popper.vue.d.ts +22 -0
- package/dist/components/popper/src/popper.vue.js +38 -0
- package/dist/components/popper/src/popper2.vue.js +4 -0
- package/dist/components/popper/src/trigger.d.ts +130 -0
- package/dist/components/popper/src/trigger.js +36 -0
- package/dist/components/popper/src/trigger.vue.d.ts +18 -0
- package/dist/components/popper/src/trigger.vue.js +4 -0
- package/dist/components/popper/src/trigger2.vue.js +134 -0
- package/dist/components/popper/src/utils.d.ts +48 -0
- package/dist/components/popper/src/utils.js +57 -0
- package/dist/components/radio/radio.d.ts +2 -2
- package/dist/components/radio-button/radio-button.d.ts +2 -2
- package/dist/components/radio-group/radio-group.d.ts +2 -2
- package/dist/components/slot/index.d.ts +3 -0
- package/dist/components/slot/src/only-child.d.ts +7 -0
- package/dist/components/slot/src/only-child.js +55 -0
- package/dist/components/tab-pane/tab-pane.d.ts +2 -2
- package/dist/components/tabs/tabs.d.ts +2 -2
- package/dist/components/tag/EpTag.vue.d.ts +4 -4
- package/dist/components/tag/EpTag.vue.js +96 -0
- package/dist/components/tag/EpTag2.vue.js +4 -0
- package/dist/components/tag/index.d.ts +2 -2
- package/dist/components/tag/index.js +2 -3
- package/dist/components/tag/tag.js +38 -0
- package/dist/components/tooltip/index.d.ts +174 -3
- package/dist/components/tooltip/index.js +18 -5
- package/dist/components/tooltip/src/constants.d.ts +18 -0
- package/dist/components/tooltip/src/constants.js +4 -0
- package/dist/components/tooltip/src/content.d.ts +327 -0
- package/dist/components/tooltip/src/content.js +72 -0
- package/dist/components/tooltip/src/content.vue.d.ts +47 -0
- package/dist/components/tooltip/src/content.vue.js +188 -0
- package/dist/components/tooltip/src/content2.vue.js +4 -0
- package/dist/components/tooltip/src/tooltip.d.ts +346 -0
- package/dist/components/tooltip/src/tooltip.js +47 -0
- package/dist/components/tooltip/src/tooltip.vue.d.ts +90 -0
- package/dist/components/tooltip/src/tooltip.vue.js +236 -0
- package/dist/components/tooltip/src/tooltip2.vue.js +4 -0
- package/dist/components/tooltip/src/trigger.d.ts +94 -0
- package/dist/components/tooltip/src/trigger.js +41 -0
- package/dist/components/tooltip/src/trigger.vue.d.ts +26 -0
- package/dist/components/tooltip/src/trigger.vue.js +104 -0
- package/dist/components/tooltip/src/trigger2.vue.js +4 -0
- package/dist/components/tooltip/src/utils.d.ts +5 -0
- package/dist/components/tooltip/src/utils.js +9 -0
- package/dist/constants/aria.d.ts +17 -0
- package/dist/constants/aria.js +24 -0
- package/dist/constants/column-alignment.d.ts +2 -0
- package/dist/constants/date.d.ts +3 -0
- package/dist/constants/event.d.ts +3 -0
- package/dist/constants/form.d.ts +2 -0
- package/dist/constants/index.d.ts +7 -0
- package/dist/constants/key.d.ts +1 -0
- package/dist/constants/size.d.ts +7 -0
- package/dist/constants/size.js +4 -0
- package/dist/directives/click-outside/index.d.ts +3 -0
- package/dist/directives/index.d.ts +5 -0
- package/dist/directives/mousewheel/index.d.ts +11 -0
- package/dist/directives/repeat-click/index.d.ts +17 -0
- package/dist/directives/trap-focus/index.d.ts +9 -0
- package/dist/hooks/index.d.ts +17 -0
- package/dist/hooks/use-aria/index.d.ts +37 -0
- package/dist/hooks/use-aria/index.js +24 -0
- package/dist/hooks/use-delayed-toggle/index.d.ts +36 -0
- package/dist/hooks/use-delayed-toggle/index.js +63 -0
- package/dist/hooks/use-deprecated/index.d.ts +11 -0
- package/dist/hooks/use-empty-values/index.d.ts +29 -0
- package/dist/hooks/use-empty-values/index.js +23 -0
- package/dist/hooks/use-escape-keydown/index.d.ts +1 -0
- package/dist/hooks/use-escape-keydown/index.js +21 -0
- package/dist/hooks/use-forward-ref/index.d.ts +9 -0
- package/dist/hooks/use-forward-ref/index.js +23 -0
- package/dist/hooks/use-id/index.d.ts +8 -0
- package/dist/hooks/use-id/index.js +27 -0
- package/dist/hooks/use-locale/index.d.ts +17 -0
- package/dist/hooks/use-model-toggle/index.d.ts +46 -0
- package/dist/hooks/use-model-toggle/index.js +67 -0
- package/dist/hooks/use-namespace/index.d.ts +23 -0
- package/dist/hooks/use-namespace/index.js +45 -0
- package/dist/hooks/use-ordered-children/index.d.ts +14 -0
- package/dist/hooks/use-popper/index.d.ts +78 -0
- package/dist/hooks/use-popper/index.js +97 -0
- package/dist/hooks/use-popper-container/index.d.ts +8 -0
- package/dist/hooks/use-popper-container/index.js +26 -0
- package/dist/hooks/use-prop/index.d.ts +2 -0
- package/dist/hooks/use-size/index.d.ts +21 -0
- package/dist/hooks/use-size/index.js +8 -0
- package/dist/hooks/use-timeout/index.d.ts +4 -0
- package/dist/hooks/use-timeout/index.js +16 -0
- package/dist/hooks/use-z-index/index.d.ts +13 -0
- package/dist/hooks/use-z-index/index.js +27 -0
- package/dist/node_modules/.pnpm/element-plus@2.14.3_vue@3.5.40_typescript@5.9.3_/node_modules/element-plus/es/components/anchor/src/anchor.vue_vue_type_script_setup_true_lang.js +8 -8
- package/dist/node_modules/.pnpm/element-plus@2.14.3_vue@3.5.40_typescript@5.9.3_/node_modules/element-plus/es/components/button/index.js +2 -2
- package/dist/resolver.js +13 -12
- package/dist/utils/arrays.d.ts +6 -0
- package/dist/utils/arrays.js +5 -0
- package/dist/utils/browser.d.ts +4 -0
- package/dist/utils/browser.js +6 -0
- package/dist/utils/dom/aria.d.ts +26 -0
- package/dist/utils/dom/aria.js +26 -0
- package/dist/utils/dom/element.d.ts +3 -0
- package/dist/utils/dom/event.d.ts +8 -0
- package/dist/utils/dom/event.js +32 -0
- package/dist/utils/dom/index.d.ts +7 -0
- package/dist/utils/dom/position.d.ts +7 -0
- package/dist/utils/dom/scroll.d.ts +11 -0
- package/dist/utils/dom/style.d.ts +9 -0
- package/dist/utils/dom/style.js +15 -0
- package/dist/utils/easings.d.ts +1 -0
- package/dist/utils/error.d.ts +3 -0
- package/dist/utils/error.js +15 -0
- package/dist/utils/functions.d.ts +2 -0
- package/dist/utils/i18n.d.ts +4 -0
- package/dist/utils/index.d.ts +31 -0
- package/dist/utils/numbers.d.ts +6 -0
- package/dist/utils/objects.d.ts +7 -0
- package/dist/utils/raf.d.ts +2 -0
- package/dist/utils/rand.d.ts +12 -0
- package/dist/utils/strings.d.ts +8 -0
- package/dist/utils/throttleByRaf.d.ts +4 -0
- package/dist/utils/types.d.ts +9 -0
- package/dist/utils/types.js +16 -0
- package/dist/utils/typescript.d.ts +93 -0
- package/dist/utils/vue/global-node.d.ts +3 -0
- package/dist/utils/vue/icon.d.ts +27 -0
- package/dist/utils/vue/index.d.ts +9 -0
- package/dist/utils/vue/install.d.ts +7 -0
- package/dist/utils/vue/install.js +34 -0
- package/dist/utils/vue/props/index.d.ts +2 -0
- package/dist/utils/vue/props/runtime.d.ts +29 -0
- package/dist/utils/vue/props/runtime.js +36 -0
- package/dist/utils/vue/props/types.d.ts +85 -0
- package/dist/utils/vue/props/util.d.ts +7 -0
- package/dist/utils/vue/refs.d.ts +2 -0
- package/dist/utils/vue/size.d.ts +2 -0
- package/dist/utils/vue/typescript.d.ts +25 -0
- package/dist/utils/vue/validator.d.ts +3 -0
- package/dist/utils/vue/vnode.d.ts +48 -0
- package/dist/vendored-components.d.ts +13 -0
- package/dist/vendored-components.js +22 -0
- package/package.json +11 -3
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
import { defineComponent as x, ref as l, toRef as s, computed as b, provide as M, unref as p, readonly as N, watch as $, onDeactivated as H, onBeforeUnmount as L, openBlock as f, createBlock as w, withCtx as y, createVNode as h, renderSlot as B, createCommentVNode as T, createElementBlock as C, toDisplayString as z, mergeDefaults as K } from "vue";
|
|
2
|
+
import { ElPopper as U } from "../../popper/index.js";
|
|
3
|
+
import { isBoolean as k } from "../../../utils/types.js";
|
|
4
|
+
import { useNamespace as j } from "../../../hooks/use-namespace/index.js";
|
|
5
|
+
import { useId as V } from "../../../hooks/use-id/index.js";
|
|
6
|
+
import "../../../hooks/use-size/index.js";
|
|
7
|
+
import { usePopperContainer as J } from "../../../hooks/use-popper-container/index.js";
|
|
8
|
+
import "../../../hooks/use-z-index/index.js";
|
|
9
|
+
import { useDelayedToggle as Y } from "../../../hooks/use-delayed-toggle/index.js";
|
|
10
|
+
import "../../../hooks/use-aria/index.js";
|
|
11
|
+
import "../../../hooks/use-model-toggle/index.js";
|
|
12
|
+
import "../../../hooks/use-empty-values/index.js";
|
|
13
|
+
import { TOOLTIP_INJECTION_KEY as q } from "./constants.js";
|
|
14
|
+
import { tooltipEmits as G, useTooltipModelToggle as Q } from "./tooltip.js";
|
|
15
|
+
import W from "./trigger.vue.js";
|
|
16
|
+
import X from "./content.vue.js";
|
|
17
|
+
import { useTooltipContentPropsDefaults as Z } from "./content.js";
|
|
18
|
+
import { useTooltipTriggerPropsDefaults as _ } from "./trigger.js";
|
|
19
|
+
import ee from "../../popper/src/arrow2.vue.js";
|
|
20
|
+
import { popperArrowPropsDefaults as te } from "../../popper/src/arrow.js";
|
|
21
|
+
const oe = ["innerHTML"], ne = { key: 1 }, ke = /* @__PURE__ */ x({
|
|
22
|
+
name: "ElTooltip",
|
|
23
|
+
__name: "tooltip",
|
|
24
|
+
props: /* @__PURE__ */ K({
|
|
25
|
+
showArrow: { type: Boolean },
|
|
26
|
+
"onUpdate:visible": { type: Function },
|
|
27
|
+
role: {},
|
|
28
|
+
appendTo: {},
|
|
29
|
+
content: {},
|
|
30
|
+
rawContent: { type: Boolean },
|
|
31
|
+
persistent: { type: Boolean },
|
|
32
|
+
visible: { type: [Boolean, null] },
|
|
33
|
+
transition: {},
|
|
34
|
+
teleported: { type: Boolean },
|
|
35
|
+
disabled: { type: Boolean },
|
|
36
|
+
ariaLabel: {},
|
|
37
|
+
showAfter: {},
|
|
38
|
+
hideAfter: {},
|
|
39
|
+
autoClose: {},
|
|
40
|
+
id: {},
|
|
41
|
+
style: { type: [Boolean, null, String, Object, Array] },
|
|
42
|
+
className: {},
|
|
43
|
+
effect: {},
|
|
44
|
+
enterable: { type: Boolean },
|
|
45
|
+
pure: { type: Boolean },
|
|
46
|
+
focusOnShow: { type: Boolean },
|
|
47
|
+
trapping: { type: Boolean },
|
|
48
|
+
popperClass: {},
|
|
49
|
+
popperStyle: { type: [Boolean, null, String, Object, Array] },
|
|
50
|
+
referenceEl: {},
|
|
51
|
+
triggerTargetEl: {},
|
|
52
|
+
stopPopperMouseEvent: { type: Boolean },
|
|
53
|
+
virtualTriggering: { type: Boolean },
|
|
54
|
+
zIndex: {},
|
|
55
|
+
loop: { type: Boolean },
|
|
56
|
+
boundariesPadding: {},
|
|
57
|
+
fallbackPlacements: {},
|
|
58
|
+
gpuAcceleration: { type: Boolean },
|
|
59
|
+
offset: {},
|
|
60
|
+
placement: {},
|
|
61
|
+
popperOptions: {},
|
|
62
|
+
strategy: {},
|
|
63
|
+
arrowOffset: {},
|
|
64
|
+
trigger: {},
|
|
65
|
+
triggerKeys: {},
|
|
66
|
+
focusOnTarget: { type: Boolean },
|
|
67
|
+
virtualRef: {},
|
|
68
|
+
onMouseenter: { type: Function },
|
|
69
|
+
onMouseleave: { type: Function },
|
|
70
|
+
onClick: { type: Function },
|
|
71
|
+
onKeydown: { type: Function },
|
|
72
|
+
onFocus: { type: Function },
|
|
73
|
+
onBlur: { type: Function },
|
|
74
|
+
onContextmenu: { type: Function },
|
|
75
|
+
open: { type: Boolean }
|
|
76
|
+
}, {
|
|
77
|
+
role: "tooltip",
|
|
78
|
+
...Z,
|
|
79
|
+
..._,
|
|
80
|
+
...te,
|
|
81
|
+
showArrow: !0
|
|
82
|
+
}),
|
|
83
|
+
emits: G,
|
|
84
|
+
setup(e, { expose: A, emit: O }) {
|
|
85
|
+
const o = e, i = O;
|
|
86
|
+
J();
|
|
87
|
+
const P = j("tooltip"), E = V(), c = l(), u = l(), v = () => {
|
|
88
|
+
var a;
|
|
89
|
+
const t = p(c);
|
|
90
|
+
t && ((a = t.popperInstanceRef) == null || a.update());
|
|
91
|
+
}, n = l(!1), r = l(), { show: F, hide: g, hasUpdateHandler: I } = Q({
|
|
92
|
+
indicator: n,
|
|
93
|
+
toggleReason: r
|
|
94
|
+
}), { onOpen: d, onClose: m } = Y({
|
|
95
|
+
showAfter: s(o, "showAfter"),
|
|
96
|
+
hideAfter: s(o, "hideAfter"),
|
|
97
|
+
autoClose: s(o, "autoClose"),
|
|
98
|
+
open: F,
|
|
99
|
+
close: g
|
|
100
|
+
}), R = b(
|
|
101
|
+
() => k(o.visible) && !I.value
|
|
102
|
+
), S = b(() => [P.b(), o.popperClass]);
|
|
103
|
+
M(q, {
|
|
104
|
+
controlled: R,
|
|
105
|
+
id: E,
|
|
106
|
+
open: N(n),
|
|
107
|
+
trigger: s(o, "trigger"),
|
|
108
|
+
onOpen: d,
|
|
109
|
+
onClose: m,
|
|
110
|
+
onToggle: (t) => {
|
|
111
|
+
p(n) ? m(t) : d(t);
|
|
112
|
+
},
|
|
113
|
+
onShow: () => {
|
|
114
|
+
i("show", r.value);
|
|
115
|
+
},
|
|
116
|
+
onHide: () => {
|
|
117
|
+
i("hide", r.value);
|
|
118
|
+
},
|
|
119
|
+
onBeforeShow: () => {
|
|
120
|
+
i("before-show", r.value);
|
|
121
|
+
},
|
|
122
|
+
onBeforeHide: () => {
|
|
123
|
+
i("before-hide", r.value);
|
|
124
|
+
},
|
|
125
|
+
updatePopper: v
|
|
126
|
+
}), $(
|
|
127
|
+
() => o.disabled,
|
|
128
|
+
(t) => {
|
|
129
|
+
t && n.value && (n.value = !1), !t && k(o.visible) && (n.value = o.visible);
|
|
130
|
+
}
|
|
131
|
+
);
|
|
132
|
+
const D = (t) => {
|
|
133
|
+
var a;
|
|
134
|
+
return (a = u.value) == null ? void 0 : a.isFocusInsideContent(t);
|
|
135
|
+
};
|
|
136
|
+
return H(() => n.value && g()), L(() => {
|
|
137
|
+
r.value = void 0;
|
|
138
|
+
}), A({
|
|
139
|
+
/**
|
|
140
|
+
* @description el-popper component instance
|
|
141
|
+
*/
|
|
142
|
+
popperRef: c,
|
|
143
|
+
/**
|
|
144
|
+
* @description el-tooltip-content component instance
|
|
145
|
+
*/
|
|
146
|
+
contentRef: u,
|
|
147
|
+
/**
|
|
148
|
+
* @description validate current focus event is trigger inside el-tooltip-content
|
|
149
|
+
*/
|
|
150
|
+
isFocusInsideContent: D,
|
|
151
|
+
/**
|
|
152
|
+
* @description update el-popper component instance
|
|
153
|
+
*/
|
|
154
|
+
updatePopper: v,
|
|
155
|
+
/**
|
|
156
|
+
* @description expose onOpen function to mange el-tooltip open state
|
|
157
|
+
*/
|
|
158
|
+
onOpen: d,
|
|
159
|
+
/**
|
|
160
|
+
* @description expose onClose function to manage el-tooltip close state
|
|
161
|
+
*/
|
|
162
|
+
onClose: m,
|
|
163
|
+
/**
|
|
164
|
+
* @description expose hide function
|
|
165
|
+
*/
|
|
166
|
+
hide: g
|
|
167
|
+
}), (t, a) => (f(), w(p(U), {
|
|
168
|
+
ref_key: "popperRef",
|
|
169
|
+
ref: c,
|
|
170
|
+
role: e.role
|
|
171
|
+
}, {
|
|
172
|
+
default: y(() => [
|
|
173
|
+
h(W, {
|
|
174
|
+
disabled: e.disabled,
|
|
175
|
+
trigger: e.trigger,
|
|
176
|
+
"trigger-keys": e.triggerKeys,
|
|
177
|
+
"virtual-ref": e.virtualRef,
|
|
178
|
+
"virtual-triggering": e.virtualTriggering,
|
|
179
|
+
"focus-on-target": e.focusOnTarget
|
|
180
|
+
}, {
|
|
181
|
+
default: y(() => [
|
|
182
|
+
t.$slots.default ? B(t.$slots, "default", {}, void 0, void 0, 0) : T("", !0)
|
|
183
|
+
]),
|
|
184
|
+
_: 3
|
|
185
|
+
}, 8, ["disabled", "trigger", "trigger-keys", "virtual-ref", "virtual-triggering", "focus-on-target"]),
|
|
186
|
+
h(X, {
|
|
187
|
+
ref_key: "contentRef",
|
|
188
|
+
ref: u,
|
|
189
|
+
"aria-label": e.ariaLabel,
|
|
190
|
+
"boundaries-padding": e.boundariesPadding,
|
|
191
|
+
content: e.content,
|
|
192
|
+
disabled: e.disabled,
|
|
193
|
+
effect: e.effect,
|
|
194
|
+
enterable: e.enterable,
|
|
195
|
+
"fallback-placements": e.fallbackPlacements,
|
|
196
|
+
"hide-after": e.hideAfter,
|
|
197
|
+
"gpu-acceleration": e.gpuAcceleration,
|
|
198
|
+
offset: e.offset,
|
|
199
|
+
persistent: e.persistent,
|
|
200
|
+
"popper-class": S.value,
|
|
201
|
+
"popper-style": e.popperStyle,
|
|
202
|
+
placement: e.placement,
|
|
203
|
+
"popper-options": e.popperOptions,
|
|
204
|
+
"arrow-offset": e.arrowOffset,
|
|
205
|
+
pure: e.pure,
|
|
206
|
+
"raw-content": e.rawContent,
|
|
207
|
+
"reference-el": e.referenceEl,
|
|
208
|
+
"trigger-target-el": e.triggerTargetEl,
|
|
209
|
+
"show-after": e.showAfter,
|
|
210
|
+
strategy: e.strategy,
|
|
211
|
+
teleported: e.teleported,
|
|
212
|
+
transition: e.transition,
|
|
213
|
+
"virtual-triggering": e.virtualTriggering,
|
|
214
|
+
"z-index": e.zIndex,
|
|
215
|
+
"append-to": e.appendTo,
|
|
216
|
+
loop: e.loop
|
|
217
|
+
}, {
|
|
218
|
+
default: y(() => [
|
|
219
|
+
B(t.$slots, "content", {}, () => [
|
|
220
|
+
e.rawContent ? (f(), C("span", {
|
|
221
|
+
key: 0,
|
|
222
|
+
innerHTML: e.content
|
|
223
|
+
}, null, 8, oe)) : (f(), C("span", ne, z(e.content), 1))
|
|
224
|
+
]),
|
|
225
|
+
e.showArrow ? (f(), w(p(ee), { key: 0 })) : T("", !0)
|
|
226
|
+
]),
|
|
227
|
+
_: 3
|
|
228
|
+
}, 8, ["aria-label", "boundaries-padding", "content", "disabled", "effect", "enterable", "fallback-placements", "hide-after", "gpu-acceleration", "offset", "persistent", "popper-class", "popper-style", "placement", "popper-options", "arrow-offset", "pure", "raw-content", "reference-el", "trigger-target-el", "show-after", "strategy", "teleported", "transition", "virtual-triggering", "z-index", "append-to", "loop"])
|
|
229
|
+
]),
|
|
230
|
+
_: 3
|
|
231
|
+
}, 8, ["role"]));
|
|
232
|
+
}
|
|
233
|
+
});
|
|
234
|
+
export {
|
|
235
|
+
ke as default
|
|
236
|
+
};
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import type { PopperTriggerProps } from '@element-plus/components/popper';
|
|
2
|
+
import type { Arrayable } from '@element-plus/utils';
|
|
3
|
+
import type { ExtractPublicPropTypes } from 'vue';
|
|
4
|
+
export type TooltipTriggerType = 'hover' | 'focus' | 'click' | 'contextmenu';
|
|
5
|
+
export interface UseTooltipTriggerProps extends PopperTriggerProps {
|
|
6
|
+
/**
|
|
7
|
+
* @description whether Tooltip is disabled
|
|
8
|
+
*/
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* @description How should the tooltip be triggered (to show), not valid in controlled mode
|
|
12
|
+
*/
|
|
13
|
+
trigger?: Arrayable<TooltipTriggerType>;
|
|
14
|
+
/**
|
|
15
|
+
* @description When you click the mouse to focus on the trigger element, you can define a set of keyboard codes to control the display of tooltip through the keyboard, not valid in controlled mode
|
|
16
|
+
*/
|
|
17
|
+
triggerKeys?: string[];
|
|
18
|
+
/**
|
|
19
|
+
* @description when triggering tooltips through hover, whether to focus the trigger element, which improves accessibility
|
|
20
|
+
*/
|
|
21
|
+
focusOnTarget?: boolean;
|
|
22
|
+
}
|
|
23
|
+
export declare const useTooltipTriggerPropsDefaults: {
|
|
24
|
+
readonly trigger: "hover";
|
|
25
|
+
readonly triggerKeys: () => string[];
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* @deprecated Removed after 3.0.0, Use `UseTooltipTriggerProps` instead.
|
|
29
|
+
*/
|
|
30
|
+
export declare const useTooltipTriggerProps: {
|
|
31
|
+
readonly disabled: BooleanConstructor;
|
|
32
|
+
readonly trigger: import("@element-plus/utils").EpPropFinalized<(new (...args: any[]) => "click" | "contextmenu" | "focus" | "hover" | TooltipTriggerType[]) | (() => Arrayable<TooltipTriggerType>) | (((new (...args: any[]) => "click" | "contextmenu" | "focus" | "hover" | TooltipTriggerType[]) | (() => Arrayable<TooltipTriggerType>)) | null)[], unknown, unknown, "hover", boolean>;
|
|
33
|
+
readonly triggerKeys: import("@element-plus/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | (((new (...args: any[]) => string[]) | (() => string[])) | null)[], unknown, unknown, () => string[], boolean>;
|
|
34
|
+
readonly focusOnTarget: BooleanConstructor;
|
|
35
|
+
readonly virtualRef: {
|
|
36
|
+
readonly type: import("vue").PropType<import("@element-plus/components/popper").Measurable>;
|
|
37
|
+
readonly required: false;
|
|
38
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
39
|
+
__epPropKey: true;
|
|
40
|
+
};
|
|
41
|
+
readonly virtualTriggering: BooleanConstructor;
|
|
42
|
+
readonly onMouseenter: {
|
|
43
|
+
readonly type: import("vue").PropType<(e: MouseEvent) => void>;
|
|
44
|
+
readonly required: false;
|
|
45
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
46
|
+
__epPropKey: true;
|
|
47
|
+
};
|
|
48
|
+
readonly onMouseleave: {
|
|
49
|
+
readonly type: import("vue").PropType<(e: MouseEvent) => void>;
|
|
50
|
+
readonly required: false;
|
|
51
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
52
|
+
__epPropKey: true;
|
|
53
|
+
};
|
|
54
|
+
readonly onClick: {
|
|
55
|
+
readonly type: import("vue").PropType<(e: PointerEvent) => void>;
|
|
56
|
+
readonly required: false;
|
|
57
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
58
|
+
__epPropKey: true;
|
|
59
|
+
};
|
|
60
|
+
readonly onKeydown: {
|
|
61
|
+
readonly type: import("vue").PropType<(e: KeyboardEvent) => void>;
|
|
62
|
+
readonly required: false;
|
|
63
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
64
|
+
__epPropKey: true;
|
|
65
|
+
};
|
|
66
|
+
readonly onFocus: {
|
|
67
|
+
readonly type: import("vue").PropType<(e: FocusEvent) => void>;
|
|
68
|
+
readonly required: false;
|
|
69
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
70
|
+
__epPropKey: true;
|
|
71
|
+
};
|
|
72
|
+
readonly onBlur: {
|
|
73
|
+
readonly type: import("vue").PropType<(e: FocusEvent) => void>;
|
|
74
|
+
readonly required: false;
|
|
75
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
76
|
+
__epPropKey: true;
|
|
77
|
+
};
|
|
78
|
+
readonly onContextmenu: {
|
|
79
|
+
readonly type: import("vue").PropType<(e: PointerEvent) => void>;
|
|
80
|
+
readonly required: false;
|
|
81
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
82
|
+
__epPropKey: true;
|
|
83
|
+
};
|
|
84
|
+
readonly id: StringConstructor;
|
|
85
|
+
readonly open: BooleanConstructor;
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* @deprecated Removed after 3.0.0, Use `UseTooltipTriggerProps` instead.
|
|
89
|
+
*/
|
|
90
|
+
export type ElTooltipTriggerProps = UseTooltipTriggerProps;
|
|
91
|
+
/**
|
|
92
|
+
* @deprecated Removed after 3.0.0, Use `UseTooltipTriggerProps` instead.
|
|
93
|
+
*/
|
|
94
|
+
export type ElTooltipTriggerPropsPublic = ExtractPublicPropTypes<typeof useTooltipTriggerProps>;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EVENT_CODE as r } from "../../../constants/aria.js";
|
|
2
|
+
import { buildProps as o, definePropType as e } from "../../../utils/vue/props/runtime.js";
|
|
3
|
+
import "vue";
|
|
4
|
+
import "../../popper/index.js";
|
|
5
|
+
import { popperTriggerProps as t } from "../../popper/src/trigger.js";
|
|
6
|
+
const n = {
|
|
7
|
+
trigger: "hover",
|
|
8
|
+
triggerKeys: () => [
|
|
9
|
+
r.enter,
|
|
10
|
+
r.numpadEnter,
|
|
11
|
+
r.space
|
|
12
|
+
]
|
|
13
|
+
}, m = o({
|
|
14
|
+
...t,
|
|
15
|
+
/**
|
|
16
|
+
* @description whether Tooltip is disabled
|
|
17
|
+
*/
|
|
18
|
+
disabled: Boolean,
|
|
19
|
+
/**
|
|
20
|
+
* @description How should the tooltip be triggered (to show), not valid in controlled mode
|
|
21
|
+
*/
|
|
22
|
+
trigger: {
|
|
23
|
+
type: e([String, Array]),
|
|
24
|
+
default: "hover"
|
|
25
|
+
},
|
|
26
|
+
/**
|
|
27
|
+
* @description When you click the mouse to focus on the trigger element, you can define a set of keyboard codes to control the display of tooltip through the keyboard, not valid in controlled mode
|
|
28
|
+
*/
|
|
29
|
+
triggerKeys: {
|
|
30
|
+
type: e(Array),
|
|
31
|
+
default: () => [r.enter, r.numpadEnter, r.space]
|
|
32
|
+
},
|
|
33
|
+
/**
|
|
34
|
+
* @description when triggering tooltips through hover, whether to focus the trigger element, which improves accessibility
|
|
35
|
+
*/
|
|
36
|
+
focusOnTarget: Boolean
|
|
37
|
+
});
|
|
38
|
+
export {
|
|
39
|
+
m as useTooltipTriggerProps,
|
|
40
|
+
n as useTooltipTriggerPropsDefaults
|
|
41
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { UseTooltipTriggerProps } from './trigger';
|
|
2
|
+
import type { OnlyChildExpose } from '@element-plus/components/slot';
|
|
3
|
+
declare var __VLS_16: {};
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
5
|
+
default?: (props: typeof __VLS_16) => any;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_component: import("vue").DefineComponent<UseTooltipTriggerProps, {
|
|
8
|
+
/**
|
|
9
|
+
* @description trigger element
|
|
10
|
+
*/
|
|
11
|
+
triggerRef: import("vue").Ref<{
|
|
12
|
+
forwardRef: HTMLElement;
|
|
13
|
+
} | null, OnlyChildExpose | {
|
|
14
|
+
forwardRef: HTMLElement;
|
|
15
|
+
} | null>;
|
|
16
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<UseTooltipTriggerProps> & Readonly<{}>, {
|
|
17
|
+
trigger: import("@element-plus/utils").Arrayable<import("./trigger").TooltipTriggerType>;
|
|
18
|
+
triggerKeys: string[];
|
|
19
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
21
|
+
export default _default;
|
|
22
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
23
|
+
new (): {
|
|
24
|
+
$slots: S;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { defineComponent as K, inject as O, ref as h, toRef as w, openBlock as E, createBlock as _, unref as e, normalizeClass as D, withCtx as b, renderSlot as R, mergeDefaults as I, nextTick as N } from "vue";
|
|
2
|
+
import "../../popper/index.js";
|
|
3
|
+
import { focusElement as P } from "../../../utils/dom/aria.js";
|
|
4
|
+
import { composeEventHandlers as n, getEventCode as S } from "../../../utils/dom/event.js";
|
|
5
|
+
import { useNamespace as $ } from "../../../hooks/use-namespace/index.js";
|
|
6
|
+
import "../../../hooks/use-size/index.js";
|
|
7
|
+
import "../../../hooks/use-z-index/index.js";
|
|
8
|
+
import "../../../hooks/use-delayed-toggle/index.js";
|
|
9
|
+
import "../../../hooks/use-aria/index.js";
|
|
10
|
+
import "../../../hooks/use-model-toggle/index.js";
|
|
11
|
+
import "../../../hooks/use-empty-values/index.js";
|
|
12
|
+
import { TOOLTIP_INJECTION_KEY as j } from "./constants.js";
|
|
13
|
+
import { whenTrigger as i } from "./utils.js";
|
|
14
|
+
import { useTooltipTriggerPropsDefaults as z } from "./trigger.js";
|
|
15
|
+
import H from "../../popper/src/trigger2.vue.js";
|
|
16
|
+
const no = /* @__PURE__ */ K({
|
|
17
|
+
name: "ElTooltipTrigger",
|
|
18
|
+
__name: "trigger",
|
|
19
|
+
props: /* @__PURE__ */ I({
|
|
20
|
+
disabled: { type: Boolean },
|
|
21
|
+
trigger: {},
|
|
22
|
+
triggerKeys: {},
|
|
23
|
+
focusOnTarget: { type: Boolean },
|
|
24
|
+
virtualRef: {},
|
|
25
|
+
virtualTriggering: { type: Boolean },
|
|
26
|
+
onMouseenter: { type: Function },
|
|
27
|
+
onMouseleave: { type: Function },
|
|
28
|
+
onClick: { type: Function },
|
|
29
|
+
onKeydown: { type: Function },
|
|
30
|
+
onFocus: { type: Function },
|
|
31
|
+
onBlur: { type: Function },
|
|
32
|
+
onContextmenu: { type: Function },
|
|
33
|
+
id: {},
|
|
34
|
+
open: { type: Boolean }
|
|
35
|
+
}, z),
|
|
36
|
+
setup(l, { expose: g }) {
|
|
37
|
+
const s = l, m = $("tooltip"), { controlled: f, id: d, open: v, onOpen: c, onClose: p, onToggle: u } = O(
|
|
38
|
+
j,
|
|
39
|
+
void 0
|
|
40
|
+
), y = h(null), t = () => {
|
|
41
|
+
if (e(f) || s.disabled)
|
|
42
|
+
return !0;
|
|
43
|
+
}, r = w(s, "trigger"), C = n(
|
|
44
|
+
t,
|
|
45
|
+
i(r, "hover", (o) => {
|
|
46
|
+
c(o), s.focusOnTarget && o.target && N(() => {
|
|
47
|
+
P(o.target, { preventScroll: !0 });
|
|
48
|
+
});
|
|
49
|
+
})
|
|
50
|
+
), T = n(
|
|
51
|
+
t,
|
|
52
|
+
i(r, "hover", p)
|
|
53
|
+
), F = n(
|
|
54
|
+
t,
|
|
55
|
+
i(r, "click", (o) => {
|
|
56
|
+
o.button === 0 && u(o);
|
|
57
|
+
})
|
|
58
|
+
), B = n(
|
|
59
|
+
t,
|
|
60
|
+
i(r, "focus", c)
|
|
61
|
+
), x = n(
|
|
62
|
+
t,
|
|
63
|
+
i(r, "focus", p)
|
|
64
|
+
), M = n(
|
|
65
|
+
t,
|
|
66
|
+
i(r, "contextmenu", (o) => {
|
|
67
|
+
o.preventDefault(), u(o);
|
|
68
|
+
})
|
|
69
|
+
), k = n(
|
|
70
|
+
t,
|
|
71
|
+
(o) => {
|
|
72
|
+
const a = S(o);
|
|
73
|
+
s.triggerKeys.includes(a) && (o.preventDefault(), u(o));
|
|
74
|
+
}
|
|
75
|
+
);
|
|
76
|
+
return g({
|
|
77
|
+
/**
|
|
78
|
+
* @description trigger element
|
|
79
|
+
*/
|
|
80
|
+
triggerRef: y
|
|
81
|
+
}), (o, a) => (E(), _(e(H), {
|
|
82
|
+
id: e(d),
|
|
83
|
+
"virtual-ref": l.virtualRef,
|
|
84
|
+
open: e(v),
|
|
85
|
+
"virtual-triggering": l.virtualTriggering,
|
|
86
|
+
class: D(e(m).e("trigger")),
|
|
87
|
+
onBlur: e(x),
|
|
88
|
+
onClick: e(F),
|
|
89
|
+
onContextmenu: e(M),
|
|
90
|
+
onFocus: e(B),
|
|
91
|
+
onMouseenter: e(C),
|
|
92
|
+
onMouseleave: e(T),
|
|
93
|
+
onKeydown: e(k)
|
|
94
|
+
}, {
|
|
95
|
+
default: b(() => [
|
|
96
|
+
R(o.$slots, "default")
|
|
97
|
+
]),
|
|
98
|
+
_: 3
|
|
99
|
+
}, 8, ["id", "virtual-ref", "open", "virtual-triggering", "class", "onBlur", "onClick", "onContextmenu", "onFocus", "onMouseenter", "onMouseleave", "onKeydown"]));
|
|
100
|
+
}
|
|
101
|
+
});
|
|
102
|
+
export {
|
|
103
|
+
no as default
|
|
104
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { Arrayable } from '@element-plus/utils';
|
|
2
|
+
import type { Ref } from 'vue';
|
|
3
|
+
import type { TooltipTriggerType } from './trigger';
|
|
4
|
+
export declare const isTriggerType: (trigger: Arrayable<TooltipTriggerType>, type: TooltipTriggerType) => boolean;
|
|
5
|
+
export declare const whenTrigger: (trigger: Ref<Arrayable<TooltipTriggerType>>, type: TooltipTriggerType, handler: (e: Event) => void) => (e: Event) => void;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { unref as i } from "vue";
|
|
2
|
+
import { isArray as s } from "../../../node_modules/.pnpm/@vue_shared@3.5.40/node_modules/@vue/shared/dist/shared.esm-bundler.js";
|
|
3
|
+
const t = (r, n) => s(r) ? r.includes(n) : r === n, m = (r, n, e) => (o) => {
|
|
4
|
+
t(i(r), n) && e(o);
|
|
5
|
+
};
|
|
6
|
+
export {
|
|
7
|
+
t as isTriggerType,
|
|
8
|
+
m as whenTrigger
|
|
9
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare const EVENT_CODE: {
|
|
2
|
+
tab: string;
|
|
3
|
+
enter: string;
|
|
4
|
+
space: string;
|
|
5
|
+
left: string;
|
|
6
|
+
up: string;
|
|
7
|
+
right: string;
|
|
8
|
+
down: string;
|
|
9
|
+
esc: string;
|
|
10
|
+
delete: string;
|
|
11
|
+
backspace: string;
|
|
12
|
+
numpadEnter: string;
|
|
13
|
+
pageUp: string;
|
|
14
|
+
pageDown: string;
|
|
15
|
+
home: string;
|
|
16
|
+
end: string;
|
|
17
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
tab: "Tab",
|
|
3
|
+
enter: "Enter",
|
|
4
|
+
space: "Space",
|
|
5
|
+
left: "ArrowLeft",
|
|
6
|
+
// 37
|
|
7
|
+
up: "ArrowUp",
|
|
8
|
+
// 38
|
|
9
|
+
right: "ArrowRight",
|
|
10
|
+
// 39
|
|
11
|
+
down: "ArrowDown",
|
|
12
|
+
// 40
|
|
13
|
+
esc: "Escape",
|
|
14
|
+
delete: "Delete",
|
|
15
|
+
backspace: "Backspace",
|
|
16
|
+
numpadEnter: "NumpadEnter",
|
|
17
|
+
pageUp: "PageUp",
|
|
18
|
+
pageDown: "PageDown",
|
|
19
|
+
home: "Home",
|
|
20
|
+
end: "End"
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
e as EVENT_CODE
|
|
24
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export declare const datePickTypes: readonly ["year", "years", "month", "months", "date", "dates", "week", "datetime", "datetimerange", "daterange", "monthrange", "yearrange"];
|
|
2
|
+
export declare const WEEK_DAYS: readonly ["sun", "mon", "tue", "wed", "thu", "fri", "sat"];
|
|
3
|
+
export type DatePickType = (typeof datePickTypes)[number];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const INSTALLED_KEY: unique symbol;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { ObjectDirective } from 'vue';
|
|
2
|
+
import type { NormalizedWheelEvent } from 'normalize-wheel-es';
|
|
3
|
+
export declare const SCOPE = "_Mousewheel";
|
|
4
|
+
export interface WheelElement extends HTMLElement {
|
|
5
|
+
[SCOPE]: null | {
|
|
6
|
+
wheelHandler?: (event: WheelEvent) => void;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export type MousewheelCallback = (e: WheelEvent, normalized: NormalizedWheelEvent) => void;
|
|
10
|
+
declare const Mousewheel: ObjectDirective<WheelElement, MousewheelCallback>;
|
|
11
|
+
export default Mousewheel;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { ObjectDirective } from 'vue';
|
|
2
|
+
export declare const REPEAT_INTERVAL = 100;
|
|
3
|
+
export declare const REPEAT_DELAY = 600;
|
|
4
|
+
declare const SCOPE = "_RepeatClick";
|
|
5
|
+
interface RepeatClickEl extends HTMLElement {
|
|
6
|
+
[SCOPE]: null | {
|
|
7
|
+
start?: (evt: MouseEvent) => void;
|
|
8
|
+
clear?: () => void;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
export interface RepeatClickOptions {
|
|
12
|
+
interval?: number;
|
|
13
|
+
delay?: number;
|
|
14
|
+
handler: (...args: unknown[]) => unknown;
|
|
15
|
+
}
|
|
16
|
+
export declare const vRepeatClick: ObjectDirective<RepeatClickEl, RepeatClickOptions | RepeatClickOptions['handler']>;
|
|
17
|
+
export {};
|