@opentiny/tiny-robot 0.3.0-alpha.3 → 0.3.0-alpha.31
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/action-group/index.js +42 -39
- package/dist/attachments/index.js +526 -0
- package/dist/base-popper/index.js +4 -0
- package/dist/bubble/index.js +1613 -1624
- package/dist/container/index.js +44 -40
- package/dist/drag-overlay/index.js +57 -0
- package/dist/dropdown-menu/index.js +151 -64
- package/dist/feedback/index.js +73 -74
- package/dist/flow-layout-buttons/index.js +31 -28
- package/dist/history/index.js +2 -225
- package/dist/icon-button/index.js +18 -19
- package/dist/index.d.ts +1371 -934
- package/dist/index.js +218 -77
- package/dist/index2.js +277 -534
- package/dist/index3.js +693 -290
- package/dist/index4.js +146 -622
- package/dist/mcp-add-form/index.js +212 -0
- package/dist/mcp-server-picker/index.js +556 -0
- package/dist/no-data.js +4 -0
- package/dist/prompts/index.js +36 -39
- package/dist/sender/index.js +1140 -1217
- package/dist/style.css +1 -1
- package/dist/suggestion-pills/index.js +131 -155
- package/dist/suggestion-popover/index.js +253 -221
- package/dist/theme-provider/index.js +83 -0
- package/dist/useSlotRefs.js +36 -0
- package/dist/utils.js +8 -13
- package/package.json +4 -9
- package/dist/close.js +0 -29
- package/dist/index5.js +0 -2157
- package/dist/index6.js +0 -4752
- package/dist/question/index.js +0 -429
- package/dist/suggestion/index.js +0 -497
- package/dist/tiny-robot-svgs.js +0 -643
package/dist/index4.js
CHANGED
|
@@ -1,637 +1,161 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
const {
|
|
20
|
-
parent: t,
|
|
21
|
-
emit: n,
|
|
22
|
-
nextTick: r,
|
|
23
|
-
onBeforeUnmount: p,
|
|
24
|
-
onDeactivated: c,
|
|
25
|
-
props: o,
|
|
26
|
-
watch: y,
|
|
27
|
-
reactive: f,
|
|
28
|
-
vm: i,
|
|
29
|
-
slots: m,
|
|
30
|
-
toRefs: h,
|
|
31
|
-
popperVmRef: g
|
|
32
|
-
} = e, a = f({
|
|
33
|
-
popperJS: null,
|
|
34
|
-
appended: !1,
|
|
35
|
-
// arrow 是否添加
|
|
36
|
-
popperElm: null,
|
|
37
|
-
showPopper: o.manual ? !!o.modelValue : !1,
|
|
38
|
-
referenceElm: null,
|
|
39
|
-
currentPlacement: ""
|
|
40
|
-
}), s = (l) => {
|
|
41
|
-
if (a.appended)
|
|
42
|
-
return;
|
|
43
|
-
a.appended = !0;
|
|
44
|
-
const u = document.createElement("div");
|
|
45
|
-
u.setAttribute("x-arrow", ""), u.className = "popper__arrow", l.appendChild(u);
|
|
46
|
-
}, b = (l) => {
|
|
47
|
-
const { followReferenceHide: u = !0 } = (o == null ? void 0 : o.popperOptions) || {}, { _popper: v, _reference: d } = l;
|
|
48
|
-
u && H(d) && (v.style.display = "none");
|
|
49
|
-
}, P = (l) => o.zIndex === "relative" ? re(l) : I.nextZIndex(), B = (l) => {
|
|
50
|
-
if (z || (a.currentPlacement = a.currentPlacement || o.placement, !/^(top|bottom|left|right)(-start|-end)?$/g.test(a.currentPlacement)))
|
|
51
|
-
return;
|
|
52
|
-
const u = o.popperOptions || { gpuAcceleration: !1 };
|
|
53
|
-
a.popperElm = a.popperElm || o.popper || i.$refs.popper || g.popper || l;
|
|
54
|
-
const v = a.popperElm;
|
|
55
|
-
let d = V({ state: a, props: o, vm: i, slots: m });
|
|
56
|
-
!v || !d || d.nodeType !== Node.ELEMENT_NODE || (o.visibleArrow && s(v), o.appendToBody || o.popperAppendToBody ? document.body.appendChild(a.popperElm) : (t && t.$el && t.$el.appendChild(a.popperElm), u.forceAbsolute = !0), u.placement = a.currentPlacement, u.offset = o.offset || 0, u.arrowOffset = o.arrowOffset || 0, u.adjustArrow = o.adjustArrow || !1, u.appendToBody = o.appendToBody || o.popperAppendToBody, a.popperJS = new R(d, v, u), n("created", a), typeof u.onUpdate == "function" && a.popperJS.onUpdate(u.onUpdate), a.popperJS._popper.style.zIndex = P(a.popperJS._reference), b(a.popperJS), _(a.popperElm, "click", k));
|
|
57
|
-
}, S = (l) => {
|
|
58
|
-
l && l !== !0 && (a.popperElm = l);
|
|
59
|
-
const u = a.popperJS;
|
|
60
|
-
u ? (u._reference = V({ state: a, props: o, vm: i, slots: m }), u.update(), u._popper && l !== !0 && (u._popper.style.zIndex = P(u._reference), b(a.popperJS))) : B(l && l !== !0 ? l : void 0);
|
|
61
|
-
}, E = (l) => {
|
|
62
|
-
!a.popperJS || a.showPopper && !l || (a.popperJS.destroy(), a.popperJS = null);
|
|
63
|
-
}, x = (l) => {
|
|
64
|
-
l && a.popperElm && a.popperElm.parentNode === document.body && (w(a.popperElm, "click", k), a.popperElm.remove());
|
|
65
|
-
};
|
|
66
|
-
return y(
|
|
67
|
-
() => a.showPopper,
|
|
68
|
-
(l) => {
|
|
69
|
-
o.disabled || (l && r(S), o.trigger === "manual" && n("update:modelValue", l));
|
|
70
|
-
}
|
|
71
|
-
), y(
|
|
72
|
-
() => o.placement,
|
|
73
|
-
(l) => {
|
|
74
|
-
var u;
|
|
75
|
-
a.currentPlacement = l, (u = a.popperJS) == null || u.setOptions({ placement: l }), !o.disabled && (l && r(S), o.trigger === "manual" && n("update:modelValue", l));
|
|
76
|
-
}
|
|
77
|
-
), p(() => {
|
|
78
|
-
r(() => {
|
|
79
|
-
E(!0), (o.appendToBody || o.popperAppendToBody) && x("remove");
|
|
1
|
+
import { onMounted as U, nextTick as B, h as C, defineComponent as g, render as R, onBeforeUnmount as D, Teleport as W, computed as h, ref as E, createBlock as F, openBlock as _, Transition as j, normalizeProps as q, guardReactiveProps as L, withCtx as Z, createElementBlock as G, createCommentVNode as J, renderSlot as K, useSlots as Q, watch as X, useAttrs as Y, resolveDynamicComponent as ee, unref as S, mergeProps as k, createVNode as te } from "vue";
|
|
2
|
+
import { b as oe, a as re, d as ne } from "./index3.js";
|
|
3
|
+
import { t as u } from "./utils.js";
|
|
4
|
+
import { _ as N } from "./_plugin-vue_export-helper.js";
|
|
5
|
+
import { u as se } from "./useSlotRefs.js";
|
|
6
|
+
const pe = g({
|
|
7
|
+
setup: (r) => () => C(W, r.propsFactory(), r.vnodeFactory()),
|
|
8
|
+
props: ["propsFactory", "vnodeFactory"]
|
|
9
|
+
});
|
|
10
|
+
function ae(r, n) {
|
|
11
|
+
let e = null, t = null, s = !1;
|
|
12
|
+
U(() => {
|
|
13
|
+
B(() => {
|
|
14
|
+
s || (t = document.createElement("div"), e = C(pe, { propsFactory: r, vnodeFactory: n }), R(e, t));
|
|
15
|
+
});
|
|
16
|
+
}), D(() => {
|
|
17
|
+
s = !0, B(() => {
|
|
18
|
+
t && (R(null, t), t.remove(), e = null, t = null);
|
|
80
19
|
});
|
|
81
|
-
}), c(() => {
|
|
82
|
-
E(!0), (o.appendToBody || o.popperAppendToBody) && x("remove");
|
|
83
|
-
}), { updatePopper: S, destroyPopper: x, doDestroy: E, ...h(a) };
|
|
84
|
-
}, ae = ({ api: e, state: t, props: n }) => (r) => {
|
|
85
|
-
const c = r && r.type === "mouseenter" ? 200 : 0;
|
|
86
|
-
if (n.visible === "auto") {
|
|
87
|
-
const { clientWidth: o, scrollWidth: y } = t.referenceElm;
|
|
88
|
-
if (y <= o)
|
|
89
|
-
return;
|
|
90
|
-
}
|
|
91
|
-
e.setExpectedState(!0), e.handleShowPopper(c);
|
|
92
|
-
}, pe = (e) => () => {
|
|
93
|
-
e.setExpectedState(!1), e.debounceClose();
|
|
94
|
-
}, le = ({ api: e, state: t }) => () => {
|
|
95
|
-
t.focusing = !0, e.show();
|
|
96
|
-
}, ue = ({ api: e, state: t }) => () => {
|
|
97
|
-
t.focusing = !1, e.hide();
|
|
98
|
-
}, se = ({ api: e, state: t }) => () => {
|
|
99
|
-
t.focusing = !1, e.show();
|
|
100
|
-
}, ie = ({ props: e, state: t }) => (n) => {
|
|
101
|
-
!t.expectedState || e.manual || (clearTimeout(t.timeout), t.timeout = window.setTimeout(() => {
|
|
102
|
-
t.showPopper = !0;
|
|
103
|
-
}, e.openDelay || n), e.hideAfter > 0 && (t.timeoutPending = window.setTimeout(() => {
|
|
104
|
-
t.showPopper = !1;
|
|
105
|
-
}, e.hideAfter)));
|
|
106
|
-
}, de = ({ api: e, props: t, state: n }) => () => {
|
|
107
|
-
t.enterable && n.expectedState || t.manual || (clearTimeout(n.timeout), n.timeoutPending && clearTimeout(n.timeoutPending), n.showPopper = !1, t.disabled && e.doDestroy());
|
|
108
|
-
}, fe = ({ props: e, api: t, state: n, popperVmRef: r }) => (p) => {
|
|
109
|
-
if (e.manual)
|
|
110
|
-
return;
|
|
111
|
-
const c = n.referenceElm, o = r.popper;
|
|
112
|
-
!o || !c || o.contains(p.target) || c.contains(p.target) || n.showPopper && (t.setExpectedState(!1), t.debounceClose());
|
|
113
|
-
}, ce = ({ state: e }) => (t) => {
|
|
114
|
-
e.expectedState === !1 && clearTimeout(e.timeoutPending), e.expectedState = t;
|
|
115
|
-
}, me = ({ state: e, api: t, vm: n }) => () => {
|
|
116
|
-
const r = e.referenceElm;
|
|
117
|
-
e.showPopper = !1, r && r.nodeType === 1 && (w(document, "click", t.handleDocumentClick), w(r, "mouseenter", t.show), w(r, "mouseleave", t.hide), w(r, "focus", t.focusHandler), w(r, "blur", t.handleBlur), w(r, "click", t.removeFocusing)), n.popperVM && (typeof n.popperVM.$destroy == "function" && n.popperVM.$destroy(), n.popperVM = null);
|
|
118
|
-
}, ye = ({ api: e, props: t }) => W(t.closeDelay, () => {
|
|
119
|
-
e.handleClosePopper();
|
|
120
|
-
}), be = (e) => (t) => {
|
|
121
|
-
t ? U(e.referenceElm, "focusing") : L(e.referenceElm, "focusing");
|
|
122
|
-
}, he = ({ slots: e, api: t }) => () => {
|
|
123
|
-
if (!e.default || !e.default().length) {
|
|
124
|
-
t.handleFocus();
|
|
125
|
-
return;
|
|
126
|
-
}
|
|
127
|
-
let n = e.default()[0];
|
|
128
|
-
n = n.elm || n.el, n && n.focus ? n.focus() : t.handleFocus();
|
|
129
|
-
}, ge = ({ api: e, state: t, vm: n }) => (r) => {
|
|
130
|
-
let p = null;
|
|
131
|
-
n.$el.nodeType === 8 ? p = r : n.$el.nodeType === 1 && (p = n.$el), !(!p || p.nodeType === 8 || t.referenceElm) && (t.referenceElm = p, p.setAttribute("aria-describedby", t.tooltipId), p.setAttribute("tabindex", t.tabindex.toString()), _(document, "click", e.handleDocumentClick), _(p, "mouseenter", e.show), _(p, "mouseleave", e.hide), _(p, "focus", e.focusHandler), _(p, "blur", e.handleBlur), _(p, "click", e.removeFocusing));
|
|
132
|
-
}, ve = ({ state: e, popperVmRef: t }) => (n) => {
|
|
133
|
-
for (let r of n)
|
|
134
|
-
r.type === "attributes" && r.attributeName === "x-placement" && (e.xPlacement = t.popper.getAttribute("x-placement") || "bottom");
|
|
135
|
-
}, we = ({ vm: e, nextTick: t, popperVmRef: n }) => (r) => {
|
|
136
|
-
t(() => e.bindEvent(r));
|
|
137
|
-
let p = e.popperVM;
|
|
138
|
-
e.$refs.popper ? n.popper = e.$refs.popper : n.popper = p.$el, t(() => {
|
|
139
|
-
e.modelValue && e.updatePopper();
|
|
140
20
|
});
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
popperJS: o,
|
|
156
|
-
showPopper: t,
|
|
157
|
-
popperElm: n,
|
|
158
|
-
referenceElm: r,
|
|
159
|
-
currentPlacement: y,
|
|
160
|
-
timeout: null,
|
|
161
|
-
focusing: !1,
|
|
162
|
-
expectedState: void 0,
|
|
163
|
-
tooltipId: Q("tiny-tooltip-", 4),
|
|
164
|
-
tabindex: p.tabindex,
|
|
165
|
-
xPlacement: "bottom",
|
|
166
|
-
showContent: c("showContent", null),
|
|
167
|
-
tipsMaxWidth: c("tips-max-width", null)
|
|
168
|
-
}), Se = (e, {
|
|
169
|
-
watch: t,
|
|
170
|
-
toRefs: n,
|
|
171
|
-
reactive: r,
|
|
172
|
-
onBeforeUnmount: p,
|
|
173
|
-
onDeactivated: c,
|
|
174
|
-
onMounted: o,
|
|
175
|
-
onUnmounted: y,
|
|
176
|
-
inject: f
|
|
177
|
-
}, { vm: i, emit: m, slots: h, nextTick: g, parent: a }) => {
|
|
178
|
-
const s = {}, b = {}, P = { emit: m, props: e, nextTick: g, toRefs: n, reactive: r, parent: a.$parent, vm: i, popperVmRef: b };
|
|
179
|
-
Object.assign(P, { slots: h, onBeforeUnmount: p, onDeactivated: c, watch: t });
|
|
180
|
-
const { showPopper: B, updatePopper: S, popperElm: E, referenceElm: x, doDestroy: l, popperJS: u, currentPlacement: v } = oe(
|
|
181
|
-
P
|
|
182
|
-
), d = Pe({
|
|
183
|
-
reactive: r,
|
|
184
|
-
showPopper: B,
|
|
185
|
-
popperElm: E,
|
|
186
|
-
referenceElm: x,
|
|
187
|
-
props: e,
|
|
188
|
-
inject: f,
|
|
189
|
-
popperJS: u,
|
|
190
|
-
currentPlacement: v
|
|
21
|
+
}
|
|
22
|
+
function ce(r, n) {
|
|
23
|
+
return h(() => {
|
|
24
|
+
var v;
|
|
25
|
+
if (n instanceof HTMLElement)
|
|
26
|
+
return n;
|
|
27
|
+
const e = n, t = oe(r), s = (v = t == null ? void 0 : t.getRootNode) == null ? void 0 : v.call(t), i = s instanceof ShadowRoot, d = i ? s : document.body;
|
|
28
|
+
if (e) {
|
|
29
|
+
if (!i && e === "body")
|
|
30
|
+
return document.body;
|
|
31
|
+
const f = d.querySelector(e);
|
|
32
|
+
if (f instanceof Node) return f;
|
|
33
|
+
}
|
|
34
|
+
return d;
|
|
191
35
|
});
|
|
192
|
-
return Object.assign(s, {
|
|
193
|
-
state: d,
|
|
194
|
-
doDestroy: l,
|
|
195
|
-
updatePopper: S,
|
|
196
|
-
show: ae({ api: s, state: d, props: e }),
|
|
197
|
-
hide: pe(s),
|
|
198
|
-
destroyed: me({ state: d, api: s, vm: i }),
|
|
199
|
-
bindPopper: we({ vm: i, nextTick: g, popperVmRef: b }),
|
|
200
|
-
watchFocusing: be(d),
|
|
201
|
-
removeFocusing: se({ api: s, state: d }),
|
|
202
|
-
handleBlur: ue({ api: s, state: d }),
|
|
203
|
-
handleFocus: le({ api: s, state: d }),
|
|
204
|
-
debounceClose: ye({ api: s, props: e }),
|
|
205
|
-
setExpectedState: ce({ state: d }),
|
|
206
|
-
handleShowPopper: ie({ props: e, state: d }),
|
|
207
|
-
handleClosePopper: de({ api: s, props: e, state: d }),
|
|
208
|
-
bindEvent: ge({ api: s, state: d, vm: i }),
|
|
209
|
-
focusHandler: he({ slots: h, api: s }),
|
|
210
|
-
handleDocumentClick: fe({ props: e, api: s, state: d, popperVmRef: b }),
|
|
211
|
-
observeCallback: ve({ state: d, popperVmRef: b })
|
|
212
|
-
}), t(() => d.focusing, s.watchFocusing), t(
|
|
213
|
-
() => e.modelValue,
|
|
214
|
-
(T) => g(() => e.manual && (d.showPopper = T))
|
|
215
|
-
), o(() => {
|
|
216
|
-
if (s.bindPopper(), e.genArrowByHtml) {
|
|
217
|
-
const T = { attributes: !0, childList: !1, subtree: !1 };
|
|
218
|
-
s.observer = new MutationObserver(s.observeCallback), s.observer.observe(b.popper, T);
|
|
219
|
-
}
|
|
220
|
-
}), i.$on("tooltip-update", s.bindPopper), y(() => {
|
|
221
|
-
s.destroyed(), s.observer && s.observer.disconnect(), i.$off("tooltip-update");
|
|
222
|
-
}), s;
|
|
223
|
-
};
|
|
224
|
-
function O() {
|
|
225
|
-
return O = Object.assign ? Object.assign.bind() : function(e) {
|
|
226
|
-
for (var t = 1; t < arguments.length; t++) {
|
|
227
|
-
var n = arguments[t];
|
|
228
|
-
for (var r in n) ({}).hasOwnProperty.call(n, r) && (e[r] = n[r]);
|
|
229
|
-
}
|
|
230
|
-
return e;
|
|
231
|
-
}, O.apply(null, arguments);
|
|
232
36
|
}
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
},
|
|
264
|
-
boundariesPadding: {
|
|
265
|
-
type: Number,
|
|
266
|
-
default: function() {
|
|
267
|
-
return 5;
|
|
268
|
-
}
|
|
269
|
-
},
|
|
270
|
-
closeDelay: {
|
|
271
|
-
type: Number,
|
|
272
|
-
default: function() {
|
|
273
|
-
return 300;
|
|
274
|
-
}
|
|
275
|
-
},
|
|
276
|
-
content: {
|
|
277
|
-
type: [String, Object]
|
|
278
|
-
},
|
|
279
|
-
disabled: {
|
|
280
|
-
type: Boolean
|
|
281
|
-
},
|
|
282
|
-
effect: {
|
|
283
|
-
type: String,
|
|
284
|
-
default: function() {
|
|
285
|
-
return "dark";
|
|
286
|
-
}
|
|
287
|
-
},
|
|
288
|
-
enterable: {
|
|
289
|
-
type: Boolean,
|
|
290
|
-
default: function() {
|
|
291
|
-
return !0;
|
|
292
|
-
}
|
|
293
|
-
},
|
|
294
|
-
hideAfter: {
|
|
295
|
-
type: Number,
|
|
296
|
-
default: function() {
|
|
297
|
-
return 0;
|
|
298
|
-
}
|
|
299
|
-
},
|
|
300
|
-
manual: {
|
|
301
|
-
type: Boolean
|
|
302
|
-
},
|
|
303
|
-
modelValue: {
|
|
304
|
-
type: Boolean
|
|
305
|
-
},
|
|
306
|
-
offset: {
|
|
307
|
-
default: function() {
|
|
308
|
-
return 0;
|
|
309
|
-
}
|
|
310
|
-
},
|
|
311
|
-
openDelay: {
|
|
312
|
-
type: Number,
|
|
313
|
-
default: function() {
|
|
314
|
-
return 0;
|
|
315
|
-
}
|
|
316
|
-
},
|
|
37
|
+
const ie = /* @__PURE__ */ g({
|
|
38
|
+
__name: "Popper",
|
|
39
|
+
props: {
|
|
40
|
+
show: { type: Boolean },
|
|
41
|
+
transitionProps: {}
|
|
42
|
+
},
|
|
43
|
+
setup(r, { expose: n }) {
|
|
44
|
+
const e = E(null);
|
|
45
|
+
return n({
|
|
46
|
+
popperRef: e
|
|
47
|
+
}), (t, s) => (_(), F(j, q(L(t.transitionProps)), {
|
|
48
|
+
default: Z(() => [
|
|
49
|
+
t.show ? (_(), G("div", {
|
|
50
|
+
key: 0,
|
|
51
|
+
class: "tr-base-popper",
|
|
52
|
+
ref_key: "popperRef",
|
|
53
|
+
ref: e
|
|
54
|
+
}, [
|
|
55
|
+
K(t.$slots, "default", {}, void 0, !0)
|
|
56
|
+
], 512)) : J("", !0)
|
|
57
|
+
]),
|
|
58
|
+
_: 3
|
|
59
|
+
}, 16));
|
|
60
|
+
}
|
|
61
|
+
}), le = /* @__PURE__ */ N(ie, [["__scopeId", "data-v-25c13ab7"]]), ue = /* @__PURE__ */ g({
|
|
62
|
+
inheritAttrs: !1,
|
|
63
|
+
__name: "index",
|
|
64
|
+
props: {
|
|
65
|
+
appendTo: {},
|
|
66
|
+
offset: {},
|
|
317
67
|
placement: {
|
|
318
|
-
|
|
319
|
-
default: function() {
|
|
320
|
-
return "bottom";
|
|
321
|
-
}
|
|
322
|
-
},
|
|
323
|
-
popper: {},
|
|
324
|
-
popperClass: {
|
|
325
|
-
type: String
|
|
326
|
-
},
|
|
327
|
-
popperOptions: {
|
|
328
|
-
default: function() {
|
|
329
|
-
return {
|
|
330
|
-
gpuAcceleration: !1,
|
|
331
|
-
boundariesPadding: 10
|
|
332
|
-
};
|
|
333
|
-
}
|
|
68
|
+
default: "top-center"
|
|
334
69
|
},
|
|
335
|
-
|
|
70
|
+
preventOverflow: {
|
|
336
71
|
type: Boolean
|
|
337
72
|
},
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
type: Function
|
|
341
|
-
},
|
|
342
|
-
tabindex: {
|
|
343
|
-
type: Number,
|
|
344
|
-
default: function() {
|
|
345
|
-
return 0;
|
|
346
|
-
}
|
|
347
|
-
},
|
|
348
|
-
transition: {
|
|
349
|
-
type: String,
|
|
350
|
-
default: function() {
|
|
351
|
-
return "tiny-fade-in-linear";
|
|
352
|
-
}
|
|
353
|
-
},
|
|
354
|
-
type: {
|
|
355
|
-
type: String,
|
|
356
|
-
validator: function(t) {
|
|
357
|
-
return !!~["normal", "warning", "error", "info", "success"].indexOf(t);
|
|
358
|
-
}
|
|
359
|
-
},
|
|
360
|
-
visibleArrow: {
|
|
361
|
-
type: Boolean,
|
|
362
|
-
default: function() {
|
|
363
|
-
return !0;
|
|
364
|
-
}
|
|
365
|
-
},
|
|
366
|
-
zIndex: {
|
|
367
|
-
type: String,
|
|
368
|
-
default: function() {
|
|
369
|
-
return "next";
|
|
370
|
-
}
|
|
73
|
+
show: {
|
|
74
|
+
type: Boolean
|
|
371
75
|
},
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
})
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
76
|
+
transitionProps: {},
|
|
77
|
+
triggerEvents: {}
|
|
78
|
+
},
|
|
79
|
+
setup(r, {
|
|
80
|
+
expose: n
|
|
81
|
+
}) {
|
|
82
|
+
const e = r, t = Q(), {
|
|
83
|
+
vnodes: s,
|
|
84
|
+
ref: i,
|
|
85
|
+
setRef: d
|
|
86
|
+
} = se(t.trigger), v = (o = {}) => {
|
|
87
|
+
const p = {};
|
|
88
|
+
for (const [c, a] of Object.entries(o))
|
|
89
|
+
/^on[A-Z]/.test(c) && typeof a == "function" && (p[c] = a);
|
|
90
|
+
return p;
|
|
91
|
+
}, f = E(null), b = h(() => {
|
|
92
|
+
var o;
|
|
93
|
+
return ((o = f.value) == null ? void 0 : o.popperRef) || null;
|
|
94
|
+
}), m = h(() => {
|
|
95
|
+
var o, p;
|
|
96
|
+
return typeof e.offset == "number" ? {
|
|
97
|
+
mainAxis: e.offset,
|
|
98
|
+
crossAxis: 0
|
|
99
|
+
} : {
|
|
100
|
+
mainAxis: ((o = e.offset) == null ? void 0 : o.mainAxis) ?? 0,
|
|
101
|
+
crossAxis: ((p = e.offset) == null ? void 0 : p.crossAxis) ?? 0
|
|
395
102
|
};
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
return t.$nextTick(function() {
|
|
417
|
-
!t.disabled && t.state.showPopper && i && t.updatePopper();
|
|
418
|
-
}), $("transition", h, [te(M("div", {
|
|
419
|
-
ref: "popper",
|
|
420
|
-
id: t.state.tooltipId,
|
|
421
|
-
class: ["tiny-tooltip", "tiny-tooltip__popper", g, t.popperClass, {
|
|
422
|
-
"tiny-tooltip__show-tips": t.state.showContent
|
|
423
|
-
}],
|
|
424
|
-
style: "max-width:" + t.state.tipsMaxWidth + "px",
|
|
425
|
-
role: "tooltip",
|
|
426
|
-
"aria-hidden": t.disabled || !t.state.showPopper ? "true" : "false",
|
|
427
|
-
onMouseenter: function() {
|
|
428
|
-
return a();
|
|
429
|
-
},
|
|
430
|
-
onMouseleave: function() {
|
|
431
|
-
return s();
|
|
432
|
-
}
|
|
433
|
-
}, [m ? M("div", {
|
|
434
|
-
class: "tiny-tooltip__content-wrapper",
|
|
435
|
-
style: "max-height:" + t.contentMaxHeight + ";"
|
|
436
|
-
}, [i]) : i]), [[ne, !t.disabled && t.state.showPopper && i]])]);
|
|
437
|
-
}
|
|
438
|
-
}
|
|
439
|
-
})), r.value;
|
|
440
|
-
},
|
|
441
|
-
set: function(f) {
|
|
442
|
-
return r.value = f;
|
|
443
|
-
}
|
|
103
|
+
}), {
|
|
104
|
+
top: $,
|
|
105
|
+
bottom: O,
|
|
106
|
+
left: w,
|
|
107
|
+
right: V,
|
|
108
|
+
width: z,
|
|
109
|
+
update: A
|
|
110
|
+
} = re(i), {
|
|
111
|
+
width: y,
|
|
112
|
+
height: P
|
|
113
|
+
} = ne(b, void 0, {
|
|
114
|
+
box: "border-box"
|
|
115
|
+
}), H = h(() => {
|
|
116
|
+
const {
|
|
117
|
+
placement: o,
|
|
118
|
+
preventOverflow: p
|
|
119
|
+
} = e, c = {}, a = (l, x) => {
|
|
120
|
+
if (!p) {
|
|
121
|
+
c[l] = x;
|
|
122
|
+
return;
|
|
444
123
|
}
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
if (!Array.isArray(f)) return null;
|
|
450
|
-
for (var i = null, m = 0; m < f.length; m++) {
|
|
451
|
-
var h = K(f[m]);
|
|
452
|
-
if (!X(h)) {
|
|
453
|
-
i = h;
|
|
454
|
-
break;
|
|
455
|
-
}
|
|
456
|
-
}
|
|
457
|
-
return i;
|
|
458
|
-
}, c = p();
|
|
459
|
-
if (!c) return null;
|
|
460
|
-
var o = c.data || c.props || (c.props = {});
|
|
461
|
-
return o.class = q("tiny-tooltip " + G(o.class)), c;
|
|
462
|
-
}
|
|
463
|
-
});
|
|
464
|
-
function D() {
|
|
465
|
-
return D = Object.assign ? Object.assign.bind() : function(e) {
|
|
466
|
-
for (var t = 1; t < arguments.length; t++) {
|
|
467
|
-
var n = arguments[t];
|
|
468
|
-
for (var r in n) ({}).hasOwnProperty.call(n, r) && (e[r] = n[r]);
|
|
469
|
-
}
|
|
470
|
-
return e;
|
|
471
|
-
}, D.apply(null, arguments);
|
|
472
|
-
}
|
|
473
|
-
var Ee = function(t) {
|
|
474
|
-
var n, r = typeof process == "object" ? (n = process.env) == null ? void 0 : n.TINY_MODE : null;
|
|
475
|
-
return A;
|
|
476
|
-
}, xe = D({}, J, {
|
|
477
|
-
visible: {
|
|
478
|
-
type: String,
|
|
479
|
-
default: function() {
|
|
480
|
-
return "always";
|
|
481
|
-
},
|
|
482
|
-
validator: function(t) {
|
|
483
|
-
return ["always", "auto"].includes(t);
|
|
484
|
-
}
|
|
485
|
-
},
|
|
486
|
-
adjustArrow: {
|
|
487
|
-
type: Boolean,
|
|
488
|
-
default: function() {
|
|
489
|
-
return !1;
|
|
490
|
-
}
|
|
491
|
-
},
|
|
492
|
-
appendToBody: {
|
|
493
|
-
type: Boolean,
|
|
494
|
-
default: function() {
|
|
495
|
-
return !0;
|
|
496
|
-
}
|
|
497
|
-
},
|
|
498
|
-
arrowOffset: {
|
|
499
|
-
type: Number,
|
|
500
|
-
default: function() {
|
|
501
|
-
return 0;
|
|
502
|
-
}
|
|
503
|
-
},
|
|
504
|
-
content: {
|
|
505
|
-
type: [String, Object]
|
|
506
|
-
},
|
|
507
|
-
disabled: {
|
|
508
|
-
type: Boolean
|
|
509
|
-
},
|
|
510
|
-
enterable: {
|
|
511
|
-
type: Boolean,
|
|
512
|
-
default: function() {
|
|
513
|
-
return !0;
|
|
514
|
-
}
|
|
515
|
-
},
|
|
516
|
-
hideAfter: {
|
|
517
|
-
type: Number,
|
|
518
|
-
default: function() {
|
|
519
|
-
return 0;
|
|
520
|
-
}
|
|
521
|
-
},
|
|
522
|
-
manual: {
|
|
523
|
-
type: Boolean
|
|
524
|
-
},
|
|
525
|
-
modelValue: {
|
|
526
|
-
type: Boolean
|
|
527
|
-
},
|
|
528
|
-
offset: {
|
|
529
|
-
default: function() {
|
|
530
|
-
return 0;
|
|
531
|
-
}
|
|
532
|
-
},
|
|
533
|
-
effect: {
|
|
534
|
-
type: String,
|
|
535
|
-
default: function() {
|
|
536
|
-
return "";
|
|
537
|
-
}
|
|
538
|
-
},
|
|
539
|
-
openDelay: {
|
|
540
|
-
type: Number,
|
|
541
|
-
default: function() {
|
|
542
|
-
return 0;
|
|
543
|
-
}
|
|
544
|
-
},
|
|
545
|
-
closeDelay: {
|
|
546
|
-
type: Number,
|
|
547
|
-
default: function() {
|
|
548
|
-
return 100;
|
|
549
|
-
}
|
|
550
|
-
},
|
|
551
|
-
placement: {
|
|
552
|
-
type: String,
|
|
553
|
-
default: function() {
|
|
554
|
-
return "bottom";
|
|
555
|
-
}
|
|
556
|
-
},
|
|
557
|
-
popper: {},
|
|
558
|
-
popperClass: {
|
|
559
|
-
type: String
|
|
560
|
-
},
|
|
561
|
-
popperOptions: {
|
|
562
|
-
default: function() {
|
|
563
|
-
return {};
|
|
564
|
-
}
|
|
565
|
-
},
|
|
566
|
-
pre: {
|
|
567
|
-
type: Boolean
|
|
568
|
-
},
|
|
569
|
-
reference: {},
|
|
570
|
-
renderContent: {
|
|
571
|
-
type: Function
|
|
572
|
-
},
|
|
573
|
-
tabindex: {
|
|
574
|
-
type: Number,
|
|
575
|
-
default: function() {
|
|
576
|
-
return 0;
|
|
577
|
-
}
|
|
578
|
-
},
|
|
579
|
-
transition: {
|
|
580
|
-
type: String,
|
|
581
|
-
default: function() {
|
|
582
|
-
return "tiny-fade-in-linear";
|
|
583
|
-
}
|
|
584
|
-
},
|
|
585
|
-
type: {
|
|
586
|
-
type: String,
|
|
587
|
-
validator: function(t) {
|
|
588
|
-
return !!~["normal", "warning", "error", "info", "success"].indexOf(t);
|
|
589
|
-
}
|
|
590
|
-
},
|
|
591
|
-
visibleArrow: {
|
|
592
|
-
type: Boolean,
|
|
593
|
-
default: function() {
|
|
594
|
-
return !0;
|
|
595
|
-
}
|
|
596
|
-
},
|
|
597
|
-
genArrowByHtml: {
|
|
598
|
-
type: Boolean,
|
|
599
|
-
default: function() {
|
|
600
|
-
return !0;
|
|
601
|
-
}
|
|
602
|
-
},
|
|
603
|
-
zIndex: {
|
|
604
|
-
type: String,
|
|
605
|
-
default: function() {
|
|
606
|
-
return "next";
|
|
607
|
-
}
|
|
608
|
-
},
|
|
609
|
-
contentMaxHeight: {
|
|
610
|
-
type: String,
|
|
611
|
-
default: function() {
|
|
612
|
-
return "80vh";
|
|
613
|
-
}
|
|
614
|
-
}
|
|
615
|
-
}), C = F({
|
|
616
|
-
name: j + "Tooltip",
|
|
617
|
-
componentName: "Tooltip",
|
|
618
|
-
props: xe,
|
|
619
|
-
setup: function(t, n) {
|
|
620
|
-
return ee({
|
|
621
|
-
props: t,
|
|
622
|
-
context: n,
|
|
623
|
-
template: Ee
|
|
124
|
+
const T = u(l === "top" ? P.value : y.value);
|
|
125
|
+
l === "top" ? c[l] = `clamp(var(--tr-base-popper-min-top), ${x}, calc(var(--tr-base-popper-max-bottom) - ${T}))` : l === "left" && (c[l] = `clamp(var(--tr-base-popper-min-left), ${x}, calc(var(--tr-base-popper-max-right) - ${T}))`);
|
|
126
|
+
};
|
|
127
|
+
return o.includes("top") && a("top", u($.value - P.value - m.value.mainAxis)), o.includes("bottom") && a("top", u(O.value + m.value.mainAxis)), o.includes("left") && a("left", u(w.value + m.value.crossAxis)), o.includes("right") && a("left", u(V.value - y.value + m.value.crossAxis)), o.includes("center") && a("left", u(w.value + z.value / 2 - y.value / 2 + m.value.crossAxis)), c;
|
|
624
128
|
});
|
|
129
|
+
X(() => e.show, (o) => {
|
|
130
|
+
o && A();
|
|
131
|
+
}, {
|
|
132
|
+
flush: "post"
|
|
133
|
+
});
|
|
134
|
+
const I = ce(i, e.appendTo), M = Y();
|
|
135
|
+
return ae(() => ({
|
|
136
|
+
to: I.value
|
|
137
|
+
}), () => te(le, k({
|
|
138
|
+
ref: f,
|
|
139
|
+
show: e.show,
|
|
140
|
+
transitionProps: e.transitionProps,
|
|
141
|
+
style: H.value
|
|
142
|
+
}, M), {
|
|
143
|
+
default: () => {
|
|
144
|
+
var o;
|
|
145
|
+
return [(o = t.content) == null ? void 0 : o.call(t)];
|
|
146
|
+
}
|
|
147
|
+
})), n({
|
|
148
|
+
triggerRef: i,
|
|
149
|
+
popperRef: b,
|
|
150
|
+
update: A
|
|
151
|
+
}), (o, p) => (_(), F(ee(S(s)[0]), k({
|
|
152
|
+
ref: S(d)
|
|
153
|
+
}, v(e.triggerEvents)), null, 16));
|
|
625
154
|
}
|
|
626
|
-
}),
|
|
627
|
-
|
|
628
|
-
prop: "modelValue",
|
|
629
|
-
event: "update:modelValue"
|
|
630
|
-
};
|
|
631
|
-
C.install = function(e) {
|
|
632
|
-
e.component(C.name, C);
|
|
633
|
-
};
|
|
634
|
-
C.version = Ce;
|
|
155
|
+
}), fe = /* @__PURE__ */ N(ue, [["__scopeId", "data-v-f1e25842"]]);
|
|
156
|
+
fe.name = "TrBasePopper";
|
|
635
157
|
export {
|
|
636
|
-
|
|
158
|
+
fe as B,
|
|
159
|
+
ae as c,
|
|
160
|
+
ce as u
|
|
637
161
|
};
|