@_solaris/messenger-widget 0.5.62 → 0.5.63
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/iframe/iframe.css +1 -1
- package/dist/iframe/iframe.js +4 -4
- package/dist/messenger.cjs +1 -1
- package/dist/messenger.js +362 -357
- package/dist/snippet.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/messenger.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { reactive as Ve, openBlock as c, createElementBlock as d, normalizeStyle as z, normalizeClass as R, toDisplayString as v, resolveComponent as B, createVNode as V, Transition as Ne, withCtx as je, Fragment as I, renderList as j, withKeys as ge, withModifiers as J, createElementVNode as o, createCommentVNode as
|
|
1
|
+
import { reactive as Ve, openBlock as c, createElementBlock as d, normalizeStyle as z, normalizeClass as R, toDisplayString as v, resolveComponent as B, createVNode as V, Transition as Ne, withCtx as je, Fragment as I, renderList as j, withKeys as ge, withModifiers as J, createElementVNode as o, createCommentVNode as w, createBlock as U, resolveDynamicComponent as Ae, mergeProps as Fe, withDirectives as G, vModelText as te, createTextVNode as Se, renderSlot as Ke, vModelCheckbox as We, vModelSelect as Ge, markRaw as Re } from "vue";
|
|
2
2
|
const Ye = [
|
|
3
3
|
"connected",
|
|
4
4
|
"message",
|
|
@@ -150,7 +150,7 @@ function Ze(e) {
|
|
|
150
150
|
console.error("[transport] initial /conversations failed", u);
|
|
151
151
|
}
|
|
152
152
|
}
|
|
153
|
-
async function
|
|
153
|
+
async function b() {
|
|
154
154
|
const u = await i("GET", "/customers/me");
|
|
155
155
|
return (u == null ? void 0 : u.customer) ?? null;
|
|
156
156
|
}
|
|
@@ -335,7 +335,7 @@ function Ze(e) {
|
|
|
335
335
|
update: y,
|
|
336
336
|
context: C,
|
|
337
337
|
// REST
|
|
338
|
-
getCustomer:
|
|
338
|
+
getCustomer: b,
|
|
339
339
|
patchCustomer: T,
|
|
340
340
|
listConversations: E,
|
|
341
341
|
createConversation: A,
|
|
@@ -493,7 +493,7 @@ function st(e) {
|
|
|
493
493
|
async function g(h) {
|
|
494
494
|
const m = t.paginationByConv[h];
|
|
495
495
|
if (!(m != null && m.loaded || m != null && m.loading)) {
|
|
496
|
-
|
|
496
|
+
b(h, { nextCursor: null, loading: !0, loaded: !1 });
|
|
497
497
|
try {
|
|
498
498
|
const f = await e.listMessages(h, {
|
|
499
499
|
limit: l
|
|
@@ -503,13 +503,13 @@ function st(e) {
|
|
|
503
503
|
const _ = C.filter((p) => !((p == null ? void 0 : p.id) != null && u.has(`id:${String(p.id)}`) || p != null && p.client_msg_id && u.has(`c:${p.client_msg_id}`)));
|
|
504
504
|
t.messagesByConv[h] = [...y, ..._].sort(
|
|
505
505
|
me
|
|
506
|
-
),
|
|
506
|
+
), b(h, {
|
|
507
507
|
nextCursor: (f == null ? void 0 : f.next_cursor) ?? null,
|
|
508
508
|
loading: !1,
|
|
509
509
|
loaded: !0
|
|
510
510
|
});
|
|
511
511
|
} catch (f) {
|
|
512
|
-
console.error("[store] openConversation failed", f),
|
|
512
|
+
console.error("[store] openConversation failed", f), b(h, {
|
|
513
513
|
nextCursor: null,
|
|
514
514
|
loading: !1,
|
|
515
515
|
loaded: !1
|
|
@@ -523,7 +523,7 @@ function st(e) {
|
|
|
523
523
|
if (!m || m.loading || !m.nextCursor) return;
|
|
524
524
|
const y = (C = (t.messagesByConv[h] || []).find((u) => u == null ? void 0 : u.created_at)) == null ? void 0 : C.created_at;
|
|
525
525
|
if (y) {
|
|
526
|
-
|
|
526
|
+
b(h, { ...m, loading: !0 });
|
|
527
527
|
try {
|
|
528
528
|
const u = await e.listMessages(h, {
|
|
529
529
|
before: y,
|
|
@@ -532,17 +532,17 @@ function st(e) {
|
|
|
532
532
|
for (const x of p)
|
|
533
533
|
(x == null ? void 0 : x.id) != null && S.add(`id:${String(x.id)}`), x != null && x.client_msg_id && S.add(`c:${x.client_msg_id}`);
|
|
534
534
|
const O = _.filter((x) => !((x == null ? void 0 : x.id) != null && S.has(`id:${String(x.id)}`) || x != null && x.client_msg_id && S.has(`c:${x.client_msg_id}`)));
|
|
535
|
-
t.messagesByConv[h] = [...O, ...p],
|
|
535
|
+
t.messagesByConv[h] = [...O, ...p], b(h, {
|
|
536
536
|
nextCursor: (u == null ? void 0 : u.next_cursor) ?? null,
|
|
537
537
|
loading: !1,
|
|
538
538
|
loaded: !0
|
|
539
539
|
});
|
|
540
540
|
} catch (u) {
|
|
541
|
-
console.error("[store] loadMore failed", u),
|
|
541
|
+
console.error("[store] loadMore failed", u), b(h, { ...m, loading: !1 });
|
|
542
542
|
}
|
|
543
543
|
}
|
|
544
544
|
}
|
|
545
|
-
function
|
|
545
|
+
function b(h, m) {
|
|
546
546
|
t.paginationByConv = { ...t.paginationByConv, [h]: m };
|
|
547
547
|
}
|
|
548
548
|
async function T(h, m) {
|
|
@@ -1249,22 +1249,22 @@ function ft(e) {
|
|
|
1249
1249
|
if (!T) break;
|
|
1250
1250
|
k.push(T[1]), r++;
|
|
1251
1251
|
}
|
|
1252
|
-
const
|
|
1252
|
+
const b = k.map((T) => `<li>${de(T)}</li>`).join("");
|
|
1253
1253
|
n.push({
|
|
1254
1254
|
type: "block",
|
|
1255
|
-
html: `<ul class="wm-md-ul">${
|
|
1255
|
+
html: `<ul class="wm-md-ul">${b}</ul>`
|
|
1256
1256
|
});
|
|
1257
1257
|
continue;
|
|
1258
1258
|
}
|
|
1259
1259
|
const l = /^\s*(\d+)\.\s+(.*)$/.exec(s);
|
|
1260
1260
|
if (l) {
|
|
1261
|
-
const k = parseInt(l[1], 10),
|
|
1261
|
+
const k = parseInt(l[1], 10), b = [l[2]];
|
|
1262
1262
|
for (r++; r < t.length; ) {
|
|
1263
1263
|
const A = /^\s*\d+\.\s+(.*)$/.exec(t[r]);
|
|
1264
1264
|
if (!A) break;
|
|
1265
|
-
|
|
1265
|
+
b.push(A[1]), r++;
|
|
1266
1266
|
}
|
|
1267
|
-
const T =
|
|
1267
|
+
const T = b.map((A) => `<li>${de(A)}</li>`).join(""), E = k !== 1 ? ` start="${k}"` : "";
|
|
1268
1268
|
n.push({
|
|
1269
1269
|
type: "block",
|
|
1270
1270
|
html: `<ol class="wm-md-ol"${E}>${T}</ol>`
|
|
@@ -1664,10 +1664,10 @@ const yt = {
|
|
|
1664
1664
|
this.nextRevealAt + n.pauseBetweenMs
|
|
1665
1665
|
) + s;
|
|
1666
1666
|
this.nextRevealAt = l;
|
|
1667
|
-
const g = Math.max(0, l - r), k = e.id,
|
|
1668
|
-
this.revealedAt = { ...this.revealedAt, [k]: Date.now() }, this.revealTimers = this.revealTimers.filter((T) => T !==
|
|
1667
|
+
const g = Math.max(0, l - r), k = e.id, b = setTimeout(() => {
|
|
1668
|
+
this.revealedAt = { ...this.revealedAt, [k]: Date.now() }, this.revealTimers = this.revealTimers.filter((T) => T !== b), typeof this.onMessageRevealed == "function" && this.onMessageRevealed(e, t);
|
|
1669
1669
|
}, g);
|
|
1670
|
-
this.revealTimers.push(
|
|
1670
|
+
this.revealTimers.push(b);
|
|
1671
1671
|
},
|
|
1672
1672
|
// Walk the message list and queue / instantly-reveal every new
|
|
1673
1673
|
// entry according to its origin. Used by the `currentConvMessages`
|
|
@@ -1941,7 +1941,7 @@ function zt(e, t, n, r, a, s) {
|
|
|
1941
1941
|
key: 0,
|
|
1942
1942
|
class: "wm-peek__avatarBadge",
|
|
1943
1943
|
"aria-label": s.t("launcher.unreadMessages", { count: l.count })
|
|
1944
|
-
}, v(l.count > 9 ? "9+" : l.count), 9, Et)) :
|
|
1944
|
+
}, v(l.count > 9 ? "9+" : l.count), 9, Et)) : w("", !0)
|
|
1945
1945
|
]),
|
|
1946
1946
|
o("div", Bt, [
|
|
1947
1947
|
o("div", Pt, [
|
|
@@ -1956,7 +1956,7 @@ function zt(e, t, n, r, a, s) {
|
|
|
1956
1956
|
onClick: J((k) => e.$emit("open", l.convId), ["stop"])
|
|
1957
1957
|
}, v(s.t("common.open")), 9, jt)
|
|
1958
1958
|
], 44, Rt))), 128))
|
|
1959
|
-
], 2)) :
|
|
1959
|
+
], 2)) : w("", !0)
|
|
1960
1960
|
]),
|
|
1961
1961
|
_: 1
|
|
1962
1962
|
}),
|
|
@@ -1987,7 +1987,7 @@ function zt(e, t, n, r, a, s) {
|
|
|
1987
1987
|
}) : s.t("launcher.unreadConversationsOne", {
|
|
1988
1988
|
count: n.unreadCount
|
|
1989
1989
|
})
|
|
1990
|
-
}, v(n.unreadCount > 9 ? "9+" : n.unreadCount), 9, Ht)) :
|
|
1990
|
+
}, v(n.unreadCount > 9 ? "9+" : n.unreadCount), 9, Ht)) : w("", !0)
|
|
1991
1991
|
], 8, Ft)
|
|
1992
1992
|
], 32);
|
|
1993
1993
|
}
|
|
@@ -2033,7 +2033,7 @@ function Gt(e, t, n, r, a, s) {
|
|
|
2033
2033
|
"--wm-avr": n.size * 0.32 + "px"
|
|
2034
2034
|
})
|
|
2035
2035
|
}, [
|
|
2036
|
-
n.pulse ? (c(), d("div", Vt)) :
|
|
2036
|
+
n.pulse ? (c(), d("div", Vt)) : w("", !0),
|
|
2037
2037
|
o("div", {
|
|
2038
2038
|
class: R(["wm-aiav__inner", {
|
|
2039
2039
|
"wm-aiav__inner--glow": n.pulse,
|
|
@@ -2133,8 +2133,8 @@ function en(e, t, n, r, a, s) {
|
|
|
2133
2133
|
}, null, 8, Xt)) : (c(), d("span", Qt, v(s.initialsFor(i)), 1))
|
|
2134
2134
|
], 4))), 128))
|
|
2135
2135
|
], 4),
|
|
2136
|
-
n.responseLabel ? (c(), d("span", Zt, v(n.responseLabel), 1)) :
|
|
2137
|
-
])) :
|
|
2136
|
+
n.responseLabel ? (c(), d("span", Zt, v(n.responseLabel), 1)) : w("", !0)
|
|
2137
|
+
])) : w("", !0);
|
|
2138
2138
|
}
|
|
2139
2139
|
const tn = /* @__PURE__ */ P(Yt, [["render", en], ["__scopeId", "data-v-e49a9063"]]), nn = {
|
|
2140
2140
|
name: "WmHeader",
|
|
@@ -2221,7 +2221,7 @@ function fn(e, t, n, r, a, s) {
|
|
|
2221
2221
|
key: 0,
|
|
2222
2222
|
members: s.displayedTeamMembers,
|
|
2223
2223
|
"response-label": ""
|
|
2224
|
-
}, null, 8, ["members"])) :
|
|
2224
|
+
}, null, 8, ["members"])) : w("", !0)
|
|
2225
2225
|
], 64)) : (c(), d("div", dn)),
|
|
2226
2226
|
o("div", un, [
|
|
2227
2227
|
n.showMore ? (c(), d("button", {
|
|
@@ -2255,7 +2255,7 @@ function fn(e, t, n, r, a, s) {
|
|
|
2255
2255
|
r: "1.6"
|
|
2256
2256
|
})
|
|
2257
2257
|
], -1)
|
|
2258
|
-
])], 10, hn)) :
|
|
2258
|
+
])], 10, hn)) : w("", !0),
|
|
2259
2259
|
n.showClose ? (c(), d("button", {
|
|
2260
2260
|
key: 1,
|
|
2261
2261
|
type: "button",
|
|
@@ -2277,7 +2277,7 @@ function fn(e, t, n, r, a, s) {
|
|
|
2277
2277
|
}, [
|
|
2278
2278
|
o("path", { d: "M18 6L6 18M6 6l12 12" })
|
|
2279
2279
|
], -1)
|
|
2280
|
-
])], 8, mn)) :
|
|
2280
|
+
])], 8, mn)) : w("", !0)
|
|
2281
2281
|
])
|
|
2282
2282
|
]);
|
|
2283
2283
|
}
|
|
@@ -2532,18 +2532,18 @@ function Yn(e, t, n, r, a, s) {
|
|
|
2532
2532
|
o("span", Mn, [
|
|
2533
2533
|
o("span", Tn, v(l.title), 1),
|
|
2534
2534
|
o("span", xn, [
|
|
2535
|
-
s.senderLabel(l) ? (c(), d("span", On, v(s.senderLabel(l)) + " · ", 1)) :
|
|
2535
|
+
s.senderLabel(l) ? (c(), d("span", On, v(s.senderLabel(l)) + " · ", 1)) : w("", !0),
|
|
2536
2536
|
o("span", {
|
|
2537
2537
|
innerHTML: s.renderPreview(l.preview)
|
|
2538
2538
|
}, null, 8, Rn)
|
|
2539
2539
|
])
|
|
2540
2540
|
]),
|
|
2541
2541
|
o("span", Ln, [
|
|
2542
|
-
s.formatTs(l._ts) ? (c(), d("span", In, v(s.formatTs(l._ts)), 1)) :
|
|
2542
|
+
s.formatTs(l._ts) ? (c(), d("span", In, v(s.formatTs(l._ts)), 1)) : w("", !0),
|
|
2543
2543
|
o("span", En, v(s.t("onboarding.resume")), 1)
|
|
2544
2544
|
])
|
|
2545
2545
|
], 8, Cn))), 128))
|
|
2546
|
-
])) :
|
|
2546
|
+
])) : w("", !0),
|
|
2547
2547
|
o("div", Bn, [
|
|
2548
2548
|
o("button", {
|
|
2549
2549
|
type: "button",
|
|
@@ -2590,7 +2590,7 @@ function Yn(e, t, n, r, a, s) {
|
|
|
2590
2590
|
o("span", zn, v(l.label), 1),
|
|
2591
2591
|
s.isExternalLink(l) ? (c(), d("svg", qn, [...t[5] || (t[5] = [
|
|
2592
2592
|
o("path", { d: "M7 17L17 7M9 7h8v8" }, null, -1)
|
|
2593
|
-
])])) :
|
|
2593
|
+
])])) : w("", !0)
|
|
2594
2594
|
], 8, Dn))), 128)),
|
|
2595
2595
|
n.openThreads.length ? (c(), d("button", {
|
|
2596
2596
|
key: 0,
|
|
@@ -2621,7 +2621,7 @@ function Yn(e, t, n, r, a, s) {
|
|
|
2621
2621
|
}, [
|
|
2622
2622
|
o("path", { d: "M9 18l6-6-6-6" })
|
|
2623
2623
|
], -1))
|
|
2624
|
-
])) :
|
|
2624
|
+
])) : w("", !0)
|
|
2625
2625
|
])
|
|
2626
2626
|
]);
|
|
2627
2627
|
}
|
|
@@ -2763,7 +2763,7 @@ function us(e, t, n, r, a, s) {
|
|
|
2763
2763
|
key: 2,
|
|
2764
2764
|
class: "wm-hist__thread-dot",
|
|
2765
2765
|
"aria-label": s.t("onboarding.unread")
|
|
2766
|
-
}, null, 8, rs)) :
|
|
2766
|
+
}, null, 8, rs)) : w("", !0)
|
|
2767
2767
|
], 2),
|
|
2768
2768
|
o("span", is, [
|
|
2769
2769
|
o("span", as, v(i.title), 1),
|
|
@@ -2773,7 +2773,7 @@ function us(e, t, n, r, a, s) {
|
|
|
2773
2773
|
}, null, 8, os)
|
|
2774
2774
|
]),
|
|
2775
2775
|
o("span", ls, [
|
|
2776
|
-
s.formatTs(i._ts) ? (c(), d("span", cs, v(s.formatTs(i._ts)), 1)) :
|
|
2776
|
+
s.formatTs(i._ts) ? (c(), d("span", cs, v(s.formatTs(i._ts)), 1)) : w("", !0),
|
|
2777
2777
|
t[3] || (t[3] = o("svg", {
|
|
2778
2778
|
width: "14",
|
|
2779
2779
|
height: "14",
|
|
@@ -2790,7 +2790,7 @@ function us(e, t, n, r, a, s) {
|
|
|
2790
2790
|
], -1))
|
|
2791
2791
|
])
|
|
2792
2792
|
], 10, ns))), 128)),
|
|
2793
|
-
s.filteredThreads.length ?
|
|
2793
|
+
s.filteredThreads.length ? w("", !0) : (c(), d("div", ds, v(a.query ? s.t("onboarding.noResults", { query: a.query }) : s.t("onboarding.noConversations")), 1))
|
|
2794
2794
|
])
|
|
2795
2795
|
]);
|
|
2796
2796
|
}
|
|
@@ -2895,7 +2895,7 @@ function Cs(e, t, n, r, a, s) {
|
|
|
2895
2895
|
"aria-hidden": "true"
|
|
2896
2896
|
}, " · ", -1)),
|
|
2897
2897
|
o("span", ks, v(s.detailText), 1)
|
|
2898
|
-
], 64)) :
|
|
2898
|
+
], 64)) : w("", !0)
|
|
2899
2899
|
])
|
|
2900
2900
|
], 2);
|
|
2901
2901
|
}
|
|
@@ -2989,11 +2989,11 @@ function Vs(e, t, n, r, a, s) {
|
|
|
2989
2989
|
alt: n.data.title || "",
|
|
2990
2990
|
loading: "lazy"
|
|
2991
2991
|
}, null, 8, Ds)
|
|
2992
|
-
])) :
|
|
2992
|
+
])) : w("", !0),
|
|
2993
2993
|
o("div", Ns, [
|
|
2994
2994
|
o("div", js, [
|
|
2995
2995
|
o("div", Fs, v(n.data.title), 1),
|
|
2996
|
-
n.data.subtitle ? (c(), d("div", Hs, v(n.data.subtitle), 1)) :
|
|
2996
|
+
n.data.subtitle ? (c(), d("div", Hs, v(n.data.subtitle), 1)) : w("", !0)
|
|
2997
2997
|
]),
|
|
2998
2998
|
n.data.badge && n.data.badge.label ? (c(), d("span", {
|
|
2999
2999
|
key: 0,
|
|
@@ -3001,10 +3001,10 @@ function Vs(e, t, n, r, a, s) {
|
|
|
3001
3001
|
"wm-art__badge",
|
|
3002
3002
|
`wm-art__badge--${n.data.badge.tone || "neutral"}`
|
|
3003
3003
|
])
|
|
3004
|
-
}, v(n.data.badge.label), 3)) :
|
|
3004
|
+
}, v(n.data.badge.label), 3)) : w("", !0)
|
|
3005
3005
|
]),
|
|
3006
3006
|
s.hasBody ? (c(), d("div", zs, [
|
|
3007
|
-
n.data.body ? (c(), d("div", qs, v(n.data.body), 1)) :
|
|
3007
|
+
n.data.body ? (c(), d("div", qs, v(n.data.body), 1)) : w("", !0),
|
|
3008
3008
|
s.fields.length ? (c(!0), d(I, { key: 1 }, j(s.fields, (i, l) => (c(), d("div", {
|
|
3009
3009
|
key: l,
|
|
3010
3010
|
class: "wm-art__field"
|
|
@@ -3016,8 +3016,8 @@ function Vs(e, t, n, r, a, s) {
|
|
|
3016
3016
|
{ "wm-art__fieldValue--multi": i.multiline }
|
|
3017
3017
|
])
|
|
3018
3018
|
}, v(i.value), 3)
|
|
3019
|
-
]))), 128)) :
|
|
3020
|
-
])) :
|
|
3019
|
+
]))), 128)) : w("", !0)
|
|
3020
|
+
])) : w("", !0)
|
|
3021
3021
|
]);
|
|
3022
3022
|
}
|
|
3023
3023
|
const Ks = /* @__PURE__ */ P(Bs, [["render", Vs], ["__scopeId", "data-v-7eae0e4a"]]);
|
|
@@ -3139,7 +3139,7 @@ function ar(e, t, n, r, a, s) {
|
|
|
3139
3139
|
Se(" " + v(n.data.status.label), 1)
|
|
3140
3140
|
], 2)
|
|
3141
3141
|
]),
|
|
3142
|
-
n.data.body ? (c(), d("div", er, v(n.data.body), 1)) :
|
|
3142
|
+
n.data.body ? (c(), d("div", er, v(n.data.body), 1)) : w("", !0)
|
|
3143
3143
|
]),
|
|
3144
3144
|
s.fields.length ? (c(), d("div", tr, [
|
|
3145
3145
|
(c(!0), d(I, null, j(s.fields, (i, l) => (c(), d("div", {
|
|
@@ -3192,11 +3192,11 @@ function ar(e, t, n, r, a, s) {
|
|
|
3192
3192
|
rx: "2"
|
|
3193
3193
|
}, null, -1),
|
|
3194
3194
|
o("path", { d: "M16 2v4M8 2v4M3 10h18" }, null, -1)
|
|
3195
|
-
])])) :
|
|
3195
|
+
])])) : w("", !0),
|
|
3196
3196
|
o("span", null, v(i.value), 1)
|
|
3197
3197
|
], 2)
|
|
3198
3198
|
]))), 128))
|
|
3199
|
-
])) :
|
|
3199
|
+
])) : w("", !0),
|
|
3200
3200
|
n.data.created_at ? (c(), d("div", ir, [
|
|
3201
3201
|
t[4] || (t[4] = o("svg", {
|
|
3202
3202
|
width: "11",
|
|
@@ -3219,7 +3219,7 @@ function ar(e, t, n, r, a, s) {
|
|
|
3219
3219
|
o("path", { d: "M16 2v4M8 2v4M3 10h18" })
|
|
3220
3220
|
], -1)),
|
|
3221
3221
|
o("span", null, v(s.formattedDate), 1)
|
|
3222
|
-
])) :
|
|
3222
|
+
])) : w("", !0)
|
|
3223
3223
|
]);
|
|
3224
3224
|
}
|
|
3225
3225
|
const or = /* @__PURE__ */ P(Gs, [["render", ar], ["__scopeId", "data-v-5f30c914"]]), lr = {
|
|
@@ -3245,7 +3245,7 @@ function dr(e, t, n, r, a, s) {
|
|
|
3245
3245
|
return s.component ? (c(), U(Ae(s.component), {
|
|
3246
3246
|
key: 0,
|
|
3247
3247
|
data: n.artifact.data
|
|
3248
|
-
}, null, 8, ["data"])) :
|
|
3248
|
+
}, null, 8, ["data"])) : w("", !0);
|
|
3249
3249
|
}
|
|
3250
3250
|
const ur = /* @__PURE__ */ P(cr, [["render", dr]]), hr = {
|
|
3251
3251
|
name: "WmAttachmentPreview",
|
|
@@ -3376,13 +3376,13 @@ function kr(e, t, n, r, a, s) {
|
|
|
3376
3376
|
], -1)),
|
|
3377
3377
|
o("span", vr, [
|
|
3378
3378
|
o("span", yr, v(s.displayName), 1),
|
|
3379
|
-
s.sizeLabel ? (c(), d("span", wr, v(s.sizeLabel), 1)) :
|
|
3379
|
+
s.sizeLabel ? (c(), d("span", wr, v(s.sizeLabel), 1)) : w("", !0)
|
|
3380
3380
|
]),
|
|
3381
|
-
a.loading ? (c(), d("span", br)) :
|
|
3381
|
+
a.loading ? (c(), d("span", br)) : w("", !0)
|
|
3382
3382
|
], 8, pr))
|
|
3383
3383
|
], 2);
|
|
3384
3384
|
}
|
|
3385
|
-
const Cr = /* @__PURE__ */ P(hr, [["render", kr], ["__scopeId", "data-v-
|
|
3385
|
+
const Cr = /* @__PURE__ */ P(hr, [["render", kr], ["__scopeId", "data-v-0c3d5983"]]), Ar = {
|
|
3386
3386
|
name: "WmBubble",
|
|
3387
3387
|
props: {
|
|
3388
3388
|
role: { type: String, default: "ai" },
|
|
@@ -3507,8 +3507,8 @@ const Ir = {
|
|
|
3507
3507
|
const l = this.roleOf(i);
|
|
3508
3508
|
if (l === "system") {
|
|
3509
3509
|
if (((n = i == null ? void 0 : i.payload) == null ? void 0 : n.event) === "action_admin_pending") {
|
|
3510
|
-
const
|
|
3511
|
-
|
|
3510
|
+
const b = e[e.length - 1];
|
|
3511
|
+
b && b.role === "ai" ? b.messages.push(i) : e.push({
|
|
3512
3512
|
key: `g-${ee(i)}`,
|
|
3513
3513
|
role: "ai",
|
|
3514
3514
|
agentName: "",
|
|
@@ -3827,9 +3827,9 @@ const Ir = {
|
|
|
3827
3827
|
// doit garder son arrondi.
|
|
3828
3828
|
cornersFor(e, t) {
|
|
3829
3829
|
var Q, se, re;
|
|
3830
|
-
const n = e.items, r = (Q = n[t]) == null ? void 0 : Q.kind, a = (se = n[t - 1]) == null ? void 0 : se.kind, s = (re = n[t + 1]) == null ? void 0 : re.kind, i = e.role === "user", l = 14, g = 4, k = a == null ? void 0 : a.bottom,
|
|
3830
|
+
const n = e.items, r = (Q = n[t]) == null ? void 0 : Q.kind, a = (se = n[t - 1]) == null ? void 0 : se.kind, s = (re = n[t + 1]) == null ? void 0 : re.kind, i = e.role === "user", l = 14, g = 4, k = a == null ? void 0 : a.bottom, b = s == null ? void 0 : s.top, T = this.widthByKey[this.rowKeyOf(e, t)], E = this.widthByKey[this.rowKeyOf(e, t - 1)], A = this.widthByKey[this.rowKeyOf(e, t + 1)], q = 0.5, M = (W, ie, X) => W != null && T != null ? W + q >= T : ie === X || ie === "card" && X === "bubble";
|
|
3831
3831
|
let D = l, N = l, L = l, K = l;
|
|
3832
|
-
return i ? (k && (N = g), (
|
|
3832
|
+
return i ? (k && (N = g), (b || !s) && (L = g), k && M(E, k, r == null ? void 0 : r.top) && (D = g), b && M(A, b, r == null ? void 0 : r.bottom) && (K = g)) : (k && (D = g), (b || !s) && (K = g), k && M(E, k, r == null ? void 0 : r.top) && (N = g), b && M(A, b, r == null ? void 0 : r.bottom) && (L = g)), { tl: D, tr: N, br: L, bl: K };
|
|
3833
3833
|
},
|
|
3834
3834
|
// Inline style emitting the four corner CSS variables. Set on
|
|
3835
3835
|
// `.wm-list__row` so they cascade to Bubble/ActionResult/
|
|
@@ -3999,21 +3999,18 @@ const Ir = {
|
|
|
3999
3999
|
}, Vr = { class: "wm-list__sysep-label" }, Kr = ["data-row-key", "onPointerdown"], Wr = {
|
|
4000
4000
|
key: 0,
|
|
4001
4001
|
class: "wm-list__avatarSlot"
|
|
4002
|
-
}, Gr = {
|
|
4003
|
-
key: 5,
|
|
4004
|
-
class: "wm-list__body"
|
|
4005
|
-
}, Yr = { key: 0 }, Jr = {
|
|
4002
|
+
}, Gr = { key: 0 }, Yr = {
|
|
4006
4003
|
key: 1,
|
|
4007
4004
|
"aria-hidden": "true"
|
|
4008
|
-
},
|
|
4005
|
+
}, Jr = { key: 2 }, Xr = { key: 0 }, Qr = {
|
|
4009
4006
|
key: 1,
|
|
4010
4007
|
"aria-hidden": "true"
|
|
4011
|
-
},
|
|
4008
|
+
}, Zr = { key: 2 }, ei = {
|
|
4012
4009
|
key: 3,
|
|
4013
4010
|
class: "wm-list__row wm-list__row--ai fade-up"
|
|
4014
|
-
},
|
|
4015
|
-
function
|
|
4016
|
-
const i = B("AIAvatar"), l = B("HumanAvatar"), g = B("ActionResult"), k = B("ArtifactRenderer"),
|
|
4011
|
+
}, ti = { class: "wm-list__avatarSlot" }, ni = ["aria-label", "title"];
|
|
4012
|
+
function si(e, t, n, r, a, s) {
|
|
4013
|
+
const i = B("AIAvatar"), l = B("HumanAvatar"), g = B("ActionResult"), k = B("ArtifactRenderer"), b = B("Bubble"), T = B("AttachmentPreview"), E = B("Typing");
|
|
4017
4014
|
return c(), d("div", Ur, [
|
|
4018
4015
|
o("div", {
|
|
4019
4016
|
ref: "scrollEl",
|
|
@@ -4026,12 +4023,12 @@ function ri(e, t, n, r, a, s) {
|
|
|
4026
4023
|
"aria-hidden": "true"
|
|
4027
4024
|
}, null, -1)),
|
|
4028
4025
|
o("span", Nr, v(s.t("messageList.loadingHistory")), 1)
|
|
4029
|
-
])) : s.historyExhausted ? (c(), d("div", jr, v(s.t("messageList.conversationStart")), 1)) :
|
|
4026
|
+
])) : s.historyExhausted ? (c(), d("div", jr, v(s.t("messageList.conversationStart")), 1)) : w("", !0),
|
|
4030
4027
|
n.dateLabel ? (c(), d("div", Fr, [
|
|
4031
4028
|
t[7] || (t[7] = o("div", { class: "wm-list__line" }, null, -1)),
|
|
4032
4029
|
o("span", Hr, v(n.dateLabel), 1),
|
|
4033
4030
|
t[8] || (t[8] = o("div", { class: "wm-list__line" }, null, -1))
|
|
4034
|
-
])) :
|
|
4031
|
+
])) : w("", !0),
|
|
4035
4032
|
(c(!0), d(I, null, j(s.groups, (A, q) => (c(), d(I, {
|
|
4036
4033
|
key: A.key
|
|
4037
4034
|
}, [
|
|
@@ -4039,7 +4036,7 @@ function ri(e, t, n, r, a, s) {
|
|
|
4039
4036
|
t[9] || (t[9] = o("div", { class: "wm-list__line wm-list__line--unread" }, null, -1)),
|
|
4040
4037
|
o("span", qr, v(s.t("messageList.unread")), 1),
|
|
4041
4038
|
t[10] || (t[10] = o("div", { class: "wm-list__line wm-list__line--unread" }, null, -1))
|
|
4042
|
-
])) :
|
|
4039
|
+
])) : w("", !0),
|
|
4043
4040
|
A.role === "system" || A.items.length ? (c(), d("div", {
|
|
4044
4041
|
key: 1,
|
|
4045
4042
|
class: R(["wm-list__group", "wm-list__group--" + A.role])
|
|
@@ -4084,8 +4081,8 @@ function ri(e, t, n, r, a, s) {
|
|
|
4084
4081
|
size: 26,
|
|
4085
4082
|
tail: !0
|
|
4086
4083
|
}, null, 8, ["name", "avatar-url"]))
|
|
4087
|
-
], 64)) :
|
|
4088
|
-
])) :
|
|
4084
|
+
], 64)) : w("", !0)
|
|
4085
|
+
])) : w("", !0),
|
|
4089
4086
|
M.renderAs === "action" ? (c(), U(g, {
|
|
4090
4087
|
key: 1,
|
|
4091
4088
|
state: M.message.payload.state,
|
|
@@ -4102,12 +4099,17 @@ function ri(e, t, n, r, a, s) {
|
|
|
4102
4099
|
}, null, 8, ["artifact"])) : M.renderAs === "artifact" ? (c(), U(k, {
|
|
4103
4100
|
key: 4,
|
|
4104
4101
|
artifact: s.artifactOf(M.message)
|
|
4105
|
-
}, null, 8, ["artifact"])) : (c(), d("div",
|
|
4106
|
-
|
|
4102
|
+
}, null, 8, ["artifact"])) : (c(), d("div", {
|
|
4103
|
+
key: 5,
|
|
4104
|
+
class: R(["wm-list__body", {
|
|
4105
|
+
"wm-list__body--mixed": !!M.message.text_md && s.attachmentsOf(M.message).length > 0
|
|
4106
|
+
}])
|
|
4107
|
+
}, [
|
|
4108
|
+
M.message.text_md ? (c(), U(b, {
|
|
4107
4109
|
key: 0,
|
|
4108
4110
|
role: A.role,
|
|
4109
4111
|
text: M.message.text_md
|
|
4110
|
-
}, null, 8, ["role", "text"])) :
|
|
4112
|
+
}, null, 8, ["role", "text"])) : w("", !0),
|
|
4111
4113
|
s.attachmentsOf(M.message).length ? (c(), d("div", {
|
|
4112
4114
|
key: 1,
|
|
4113
4115
|
class: R(["wm-list__atts", {
|
|
@@ -4120,31 +4122,31 @@ function ri(e, t, n, r, a, s) {
|
|
|
4120
4122
|
key: `${s.messageKey(M.message)}-att-${L}`,
|
|
4121
4123
|
attachment: N
|
|
4122
4124
|
}, null, 8, ["attachment"]))), 128))
|
|
4123
|
-
], 2)) :
|
|
4124
|
-
]))
|
|
4125
|
+
], 2)) : w("", !0)
|
|
4126
|
+
], 2))
|
|
4125
4127
|
], 46, Kr),
|
|
4126
4128
|
D < A.items.length - 1 && a.pressedItemKey === `${s.messageKey(M.message)}-${M.partKey}` && (A.role !== "user" || s.timeOf(M.message)) ? (c(), d("div", {
|
|
4127
4129
|
key: 0,
|
|
4128
4130
|
class: R(["wm-list__meta wm-list__meta--press", { "wm-list__meta--right": A.role === "user" }])
|
|
4129
4131
|
}, [
|
|
4130
|
-
A.role !== "user" ? (c(), d("span",
|
|
4131
|
-
A.role !== "user" && s.timeOf(M.message) ? (c(), d("span",
|
|
4132
|
-
s.timeOf(M.message) ? (c(), d("span",
|
|
4133
|
-
], 2)) :
|
|
4132
|
+
A.role !== "user" ? (c(), d("span", Gr, v(s.roleLabel(A)), 1)) : w("", !0),
|
|
4133
|
+
A.role !== "user" && s.timeOf(M.message) ? (c(), d("span", Yr, "•")) : w("", !0),
|
|
4134
|
+
s.timeOf(M.message) ? (c(), d("span", Jr, v(s.timeOf(M.message)), 1)) : w("", !0)
|
|
4135
|
+
], 2)) : w("", !0)
|
|
4134
4136
|
], 64))), 128)),
|
|
4135
4137
|
(A.role !== "user" || s.lastTimeOf(A)) && !s.hasTrailingOverlay(A) ? (c(), d("div", {
|
|
4136
4138
|
key: 0,
|
|
4137
4139
|
class: R(["wm-list__meta", { "wm-list__meta--right": A.role === "user" }])
|
|
4138
4140
|
}, [
|
|
4139
|
-
A.role !== "user" ? (c(), d("span",
|
|
4140
|
-
A.role !== "user" && s.lastTimeOf(A) ? (c(), d("span",
|
|
4141
|
-
s.lastTimeOf(A) ? (c(), d("span",
|
|
4142
|
-
], 2)) :
|
|
4141
|
+
A.role !== "user" ? (c(), d("span", Xr, v(s.roleLabel(A)), 1)) : w("", !0),
|
|
4142
|
+
A.role !== "user" && s.lastTimeOf(A) ? (c(), d("span", Qr, "•")) : w("", !0),
|
|
4143
|
+
s.lastTimeOf(A) ? (c(), d("span", Zr, v(s.lastTimeOf(A)), 1)) : w("", !0)
|
|
4144
|
+
], 2)) : w("", !0)
|
|
4143
4145
|
], 64))
|
|
4144
|
-
], 2)) :
|
|
4146
|
+
], 2)) : w("", !0)
|
|
4145
4147
|
], 64))), 128)),
|
|
4146
|
-
n.streamingActive ? (c(), d("div",
|
|
4147
|
-
o("div",
|
|
4148
|
+
n.streamingActive ? (c(), d("div", ei, [
|
|
4149
|
+
o("div", ti, [
|
|
4148
4150
|
V(i, {
|
|
4149
4151
|
size: 26,
|
|
4150
4152
|
tail: !0,
|
|
@@ -4153,7 +4155,7 @@ function ri(e, t, n, r, a, s) {
|
|
|
4153
4155
|
}, null, 8, ["name", "image-url"])
|
|
4154
4156
|
]),
|
|
4155
4157
|
V(E)
|
|
4156
|
-
])) :
|
|
4158
|
+
])) : w("", !0)
|
|
4157
4159
|
], 34),
|
|
4158
4160
|
V(Ne, { name: "wm-scrollDown" }, {
|
|
4159
4161
|
default: je(() => [
|
|
@@ -4178,14 +4180,14 @@ function ri(e, t, n, r, a, s) {
|
|
|
4178
4180
|
}, [
|
|
4179
4181
|
o("path", { d: "M6 9l6 6 6-6" })
|
|
4180
4182
|
], -1)
|
|
4181
|
-
])], 8,
|
|
4183
|
+
])], 8, ni)) : w("", !0)
|
|
4182
4184
|
]),
|
|
4183
4185
|
_: 1
|
|
4184
4186
|
})
|
|
4185
4187
|
]);
|
|
4186
4188
|
}
|
|
4187
|
-
const
|
|
4188
|
-
function
|
|
4189
|
+
const ri = /* @__PURE__ */ P(Pr, [["render", si], ["__scopeId", "data-v-7486891c"]]), pe = typeof navigator < "u" && !!navigator.mediaDevices && typeof navigator.mediaDevices.getDisplayMedia == "function", Oe = typeof window < "u" && typeof window.MediaRecorder < "u";
|
|
4190
|
+
function ii() {
|
|
4189
4191
|
return Oe && [
|
|
4190
4192
|
"video/webm;codecs=vp9,opus",
|
|
4191
4193
|
"video/webm;codecs=vp8,opus",
|
|
@@ -4205,10 +4207,10 @@ function $e({ audio: e }) {
|
|
|
4205
4207
|
systemAudio: e ? "include" : "exclude"
|
|
4206
4208
|
};
|
|
4207
4209
|
}
|
|
4208
|
-
function
|
|
4210
|
+
function vo(e) {
|
|
4209
4211
|
return e ? e.startsWith("image/") ? "image" : e.startsWith("video/") ? "video" : "file" : "file";
|
|
4210
4212
|
}
|
|
4211
|
-
async function
|
|
4213
|
+
async function ai() {
|
|
4212
4214
|
if (!pe) return null;
|
|
4213
4215
|
let e;
|
|
4214
4216
|
try {
|
|
@@ -4219,7 +4221,7 @@ async function oi() {
|
|
|
4219
4221
|
return (t == null ? void 0 : t.name) !== "NotAllowedError" && console.error("[media] screenshot picker", t), null;
|
|
4220
4222
|
}
|
|
4221
4223
|
try {
|
|
4222
|
-
return await
|
|
4224
|
+
return await oi(e);
|
|
4223
4225
|
} catch (t) {
|
|
4224
4226
|
return console.error("[media] screenshot capture", t), null;
|
|
4225
4227
|
} finally {
|
|
@@ -4228,7 +4230,7 @@ async function oi() {
|
|
|
4228
4230
|
});
|
|
4229
4231
|
}
|
|
4230
4232
|
}
|
|
4231
|
-
async function
|
|
4233
|
+
async function oi(e) {
|
|
4232
4234
|
const t = document.createElement("video");
|
|
4233
4235
|
t.muted = !0, t.playsInline = !0, t.srcObject = e, await t.play(), await new Promise((l) => requestAnimationFrame(l));
|
|
4234
4236
|
const n = t.videoWidth || 1280, r = t.videoHeight || 720, a = document.createElement("canvas");
|
|
@@ -4241,7 +4243,7 @@ async function li(e) {
|
|
|
4241
4243
|
}), i = (/* @__PURE__ */ new Date()).toISOString().replace(/[:.]/g, "-").slice(0, 19);
|
|
4242
4244
|
return new File([s], `capture-${i}.png`, { type: "image/png" });
|
|
4243
4245
|
}
|
|
4244
|
-
async function
|
|
4246
|
+
async function li(e = {}) {
|
|
4245
4247
|
var k;
|
|
4246
4248
|
if (!pe || !Oe) return null;
|
|
4247
4249
|
let t;
|
|
@@ -4249,56 +4251,56 @@ async function ci(e = {}) {
|
|
|
4249
4251
|
t = await navigator.mediaDevices.getDisplayMedia(
|
|
4250
4252
|
$e({ audio: !0 })
|
|
4251
4253
|
);
|
|
4252
|
-
} catch (
|
|
4253
|
-
return (
|
|
4254
|
+
} catch (b) {
|
|
4255
|
+
return (b == null ? void 0 : b.name) !== "NotAllowedError" && console.error("[media] record picker", b), null;
|
|
4254
4256
|
}
|
|
4255
|
-
const n =
|
|
4257
|
+
const n = ii();
|
|
4256
4258
|
let r;
|
|
4257
4259
|
try {
|
|
4258
4260
|
r = n ? new window.MediaRecorder(t, { mimeType: n }) : new window.MediaRecorder(t);
|
|
4259
|
-
} catch (
|
|
4260
|
-
return console.error("[media] recorder init",
|
|
4261
|
+
} catch (b) {
|
|
4262
|
+
return console.error("[media] recorder init", b), t.getTracks().forEach((T) => {
|
|
4261
4263
|
T.stop();
|
|
4262
4264
|
}), null;
|
|
4263
4265
|
}
|
|
4264
4266
|
const a = [];
|
|
4265
4267
|
let s = null, i = !1;
|
|
4266
|
-
r.addEventListener("dataavailable", (
|
|
4267
|
-
|
|
4268
|
+
r.addEventListener("dataavailable", (b) => {
|
|
4269
|
+
b.data && b.data.size > 0 && a.push(b.data);
|
|
4268
4270
|
}), r.addEventListener("stop", () => {
|
|
4269
|
-
var
|
|
4271
|
+
var b, T;
|
|
4270
4272
|
if (s && clearInterval(s), t.getTracks().forEach((E) => {
|
|
4271
4273
|
E.stop();
|
|
4272
4274
|
}), a.length) {
|
|
4273
4275
|
const E = r.mimeType || n || "video/webm", A = new Blob(a, { type: E }), q = /mp4/.test(E) ? "mp4" : "webm", M = (/* @__PURE__ */ new Date()).toISOString().replace(/[:.]/g, "-").slice(0, 19), D = new File([A], `ecran-${M}.${q}`, {
|
|
4274
4276
|
type: E
|
|
4275
4277
|
});
|
|
4276
|
-
(
|
|
4278
|
+
(b = e.onfinalize) == null || b.call(e, D);
|
|
4277
4279
|
} else
|
|
4278
4280
|
(T = e.oncancel) == null || T.call(e);
|
|
4279
|
-
}), t.getVideoTracks().forEach((
|
|
4280
|
-
|
|
4281
|
+
}), t.getVideoTracks().forEach((b) => {
|
|
4282
|
+
b.addEventListener("ended", () => l(), { once: !0 });
|
|
4281
4283
|
});
|
|
4282
4284
|
function l() {
|
|
4283
4285
|
if (!i && (i = !0, r.state !== "inactive"))
|
|
4284
4286
|
try {
|
|
4285
4287
|
r.stop();
|
|
4286
|
-
} catch (
|
|
4287
|
-
console.error("[media] recorder stop",
|
|
4288
|
+
} catch (b) {
|
|
4289
|
+
console.error("[media] recorder stop", b);
|
|
4288
4290
|
}
|
|
4289
4291
|
}
|
|
4290
4292
|
try {
|
|
4291
4293
|
r.start(1e3);
|
|
4292
|
-
} catch (
|
|
4293
|
-
return console.error("[media] recorder start",
|
|
4294
|
+
} catch (b) {
|
|
4295
|
+
return console.error("[media] recorder start", b), t.getTracks().forEach((T) => {
|
|
4294
4296
|
T.stop();
|
|
4295
4297
|
}), null;
|
|
4296
4298
|
}
|
|
4297
4299
|
(k = e.onstart) == null || k.call(e);
|
|
4298
4300
|
const g = Date.now();
|
|
4299
4301
|
return s = setInterval(() => {
|
|
4300
|
-
var
|
|
4301
|
-
(
|
|
4302
|
+
var b;
|
|
4303
|
+
(b = e.ontick) == null || b.call(e, Date.now() - g);
|
|
4302
4304
|
}, 500), {
|
|
4303
4305
|
stop: l,
|
|
4304
4306
|
get state() {
|
|
@@ -4306,7 +4308,7 @@ async function ci(e = {}) {
|
|
|
4306
4308
|
}
|
|
4307
4309
|
};
|
|
4308
4310
|
}
|
|
4309
|
-
const
|
|
4311
|
+
const ci = [
|
|
4310
4312
|
{
|
|
4311
4313
|
action: "file",
|
|
4312
4314
|
labelKey: "composer.attachFile",
|
|
@@ -4322,7 +4324,7 @@ const di = [
|
|
|
4322
4324
|
labelKey: "composer.recordScreen",
|
|
4323
4325
|
path: "M23 7l-7 5 7 5V7z M1 5a2 2 0 012-2h12a2 2 0 012 2v14a2 2 0 01-2 2H3a2 2 0 01-2-2V5z"
|
|
4324
4326
|
}
|
|
4325
|
-
],
|
|
4327
|
+
], di = {
|
|
4326
4328
|
name: "WmComposer",
|
|
4327
4329
|
inject: {
|
|
4328
4330
|
// Translator shared by the Messenger shell; French fallback when
|
|
@@ -4356,7 +4358,7 @@ const di = [
|
|
|
4356
4358
|
return !this.disabled && !!this.local.trim();
|
|
4357
4359
|
},
|
|
4358
4360
|
attachItems() {
|
|
4359
|
-
return
|
|
4361
|
+
return ci.map((e) => ({
|
|
4360
4362
|
...e,
|
|
4361
4363
|
label: this.t(e.labelKey),
|
|
4362
4364
|
disabled: e.action === "screenshot" && !pe || e.action === "record" && (!pe || !Oe)
|
|
@@ -4430,13 +4432,13 @@ const di = [
|
|
|
4430
4432
|
},
|
|
4431
4433
|
async captureScreenshot() {
|
|
4432
4434
|
if (this.disabled) return;
|
|
4433
|
-
const e = await
|
|
4435
|
+
const e = await ai();
|
|
4434
4436
|
e && this.$emit("attach", e);
|
|
4435
4437
|
},
|
|
4436
4438
|
async startRecording() {
|
|
4437
4439
|
if (this.recording || this.disabled) return;
|
|
4438
4440
|
this.recordingElapsed = 0;
|
|
4439
|
-
const e = await
|
|
4441
|
+
const e = await li({
|
|
4440
4442
|
onstart: () => {
|
|
4441
4443
|
this.recording = !0;
|
|
4442
4444
|
},
|
|
@@ -4478,36 +4480,36 @@ const di = [
|
|
|
4478
4480
|
!e || !this._vvHandler || (e.removeEventListener("resize", this._vvHandler), e.removeEventListener("scroll", this._vvHandler), this._vvHandler = null);
|
|
4479
4481
|
}
|
|
4480
4482
|
}
|
|
4481
|
-
},
|
|
4483
|
+
}, ui = {
|
|
4482
4484
|
key: 0,
|
|
4483
4485
|
class: "wm-rec"
|
|
4484
|
-
},
|
|
4486
|
+
}, hi = { class: "wm-rec__lbl" }, mi = {
|
|
4485
4487
|
key: 1,
|
|
4486
4488
|
class: "wm-compose__menu",
|
|
4487
4489
|
role: "menu"
|
|
4488
|
-
},
|
|
4490
|
+
}, fi = ["disabled", "onClick"], _i = { class: "wm-compose__menuIcon" }, gi = {
|
|
4489
4491
|
viewBox: "0 0 24 24",
|
|
4490
4492
|
width: "14",
|
|
4491
4493
|
height: "14",
|
|
4492
4494
|
"aria-hidden": "true"
|
|
4493
|
-
},
|
|
4494
|
-
function
|
|
4495
|
+
}, pi = ["d"], vi = ["placeholder", "disabled"], yi = { class: "wm-compose__actions" }, wi = ["title", "aria-label", "disabled"], bi = ["disabled", "aria-label"];
|
|
4496
|
+
function ki(e, t, n, r, a, s) {
|
|
4495
4497
|
return c(), d("div", {
|
|
4496
4498
|
class: R(["wm-compose-wrap", { "wm-compose-wrap--sheet": n.displayMode === "sheet" }]),
|
|
4497
4499
|
style: z(a.kbOffset ? { transform: `translateY(-${a.kbOffset}px)` } : null)
|
|
4498
4500
|
}, [
|
|
4499
|
-
a.recording ? (c(), d("div",
|
|
4501
|
+
a.recording ? (c(), d("div", ui, [
|
|
4500
4502
|
t[8] || (t[8] = o("span", {
|
|
4501
4503
|
class: "wm-rec__dot",
|
|
4502
4504
|
"aria-hidden": "true"
|
|
4503
4505
|
}, null, -1)),
|
|
4504
|
-
o("span",
|
|
4506
|
+
o("span", hi, v(s.t("composer.recording", { time: s.recordingElapsedLabel })), 1),
|
|
4505
4507
|
o("button", {
|
|
4506
4508
|
type: "button",
|
|
4507
4509
|
class: "wm-rec__stop",
|
|
4508
4510
|
onClick: t[0] || (t[0] = (...i) => s.stopRecording && s.stopRecording(...i))
|
|
4509
4511
|
}, v(s.t("composer.stop")), 1)
|
|
4510
|
-
])) :
|
|
4512
|
+
])) : w("", !0),
|
|
4511
4513
|
o("form", {
|
|
4512
4514
|
class: R(["wm-compose", { "has-attach": a.attachOpen }]),
|
|
4513
4515
|
onSubmit: t[7] || (t[7] = J((...i) => s.onSubmit && s.onSubmit(...i), ["prevent"]))
|
|
@@ -4523,8 +4525,8 @@ function Ci(e, t, n, r, a, s) {
|
|
|
4523
4525
|
key: 0,
|
|
4524
4526
|
class: "wm-compose__overlay",
|
|
4525
4527
|
onClick: t[2] || (t[2] = (i) => a.attachOpen = !1)
|
|
4526
|
-
})) :
|
|
4527
|
-
a.attachOpen ? (c(), d("div",
|
|
4528
|
+
})) : w("", !0),
|
|
4529
|
+
a.attachOpen ? (c(), d("div", mi, [
|
|
4528
4530
|
(c(!0), d(I, null, j(s.attachItems, (i) => (c(), d("button", {
|
|
4529
4531
|
key: i.action,
|
|
4530
4532
|
type: "button",
|
|
@@ -4532,8 +4534,8 @@ function Ci(e, t, n, r, a, s) {
|
|
|
4532
4534
|
disabled: i.disabled,
|
|
4533
4535
|
onClick: (l) => s.onAttachAction(i.action)
|
|
4534
4536
|
}, [
|
|
4535
|
-
o("span",
|
|
4536
|
-
(c(), d("svg",
|
|
4537
|
+
o("span", _i, [
|
|
4538
|
+
(c(), d("svg", gi, [
|
|
4537
4539
|
o("path", {
|
|
4538
4540
|
d: i.path,
|
|
4539
4541
|
stroke: "currentColor",
|
|
@@ -4541,12 +4543,12 @@ function Ci(e, t, n, r, a, s) {
|
|
|
4541
4543
|
"stroke-linecap": "round",
|
|
4542
4544
|
"stroke-linejoin": "round",
|
|
4543
4545
|
fill: "none"
|
|
4544
|
-
}, null, 8,
|
|
4546
|
+
}, null, 8, pi)
|
|
4545
4547
|
]))
|
|
4546
4548
|
]),
|
|
4547
4549
|
o("span", null, v(i.label), 1)
|
|
4548
|
-
], 8,
|
|
4549
|
-
])) :
|
|
4550
|
+
], 8, fi))), 128))
|
|
4551
|
+
])) : w("", !0),
|
|
4550
4552
|
G(o("textarea", {
|
|
4551
4553
|
ref: "inputEl",
|
|
4552
4554
|
"onUpdate:modelValue": t[3] || (t[3] = (i) => a.local = i),
|
|
@@ -4556,10 +4558,10 @@ function Ci(e, t, n, r, a, s) {
|
|
|
4556
4558
|
disabled: n.disabled,
|
|
4557
4559
|
onKeydown: t[4] || (t[4] = (...i) => s.onKeydown && s.onKeydown(...i)),
|
|
4558
4560
|
onInput: t[5] || (t[5] = (...i) => s.autosize && s.autosize(...i))
|
|
4559
|
-
}, null, 40,
|
|
4561
|
+
}, null, 40, vi), [
|
|
4560
4562
|
[te, a.local]
|
|
4561
4563
|
]),
|
|
4562
|
-
o("div",
|
|
4564
|
+
o("div", yi, [
|
|
4563
4565
|
o("button", {
|
|
4564
4566
|
type: "button",
|
|
4565
4567
|
class: R(["wm-compose__icon", { "is-open": a.attachOpen }]),
|
|
@@ -4581,7 +4583,7 @@ function Ci(e, t, n, r, a, s) {
|
|
|
4581
4583
|
}, [
|
|
4582
4584
|
o("path", { d: "M21.44 11.05l-9.19 9.19a6 6 0 01-8.49-8.49l9.19-9.19a4 4 0 015.66 5.66l-9.2 9.19a2 2 0 01-2.83-2.83l8.49-8.48" })
|
|
4583
4585
|
], -1)
|
|
4584
|
-
])], 10,
|
|
4586
|
+
])], 10, wi),
|
|
4585
4587
|
o("button", {
|
|
4586
4588
|
type: "submit",
|
|
4587
4589
|
class: R(["wm-compose__send", { "is-empty": !s.canSend }]),
|
|
@@ -4601,12 +4603,12 @@ function Ci(e, t, n, r, a, s) {
|
|
|
4601
4603
|
}, [
|
|
4602
4604
|
o("path", { d: "M22 2L11 13M22 2l-7 20-4-9-9-4 20-7z" })
|
|
4603
4605
|
], -1)
|
|
4604
|
-
])], 10,
|
|
4606
|
+
])], 10, bi)
|
|
4605
4607
|
])
|
|
4606
4608
|
], 34)
|
|
4607
4609
|
], 6);
|
|
4608
4610
|
}
|
|
4609
|
-
const
|
|
4611
|
+
const Ci = /* @__PURE__ */ P(di, [["render", ki], ["__scopeId", "data-v-01e81a27"]]), Ai = {
|
|
4610
4612
|
name: "WmSuggestionChips",
|
|
4611
4613
|
props: {
|
|
4612
4614
|
items: { type: Array, default: () => [] },
|
|
@@ -4623,8 +4625,8 @@ const Ai = /* @__PURE__ */ P(ui, [["render", Ci], ["__scopeId", "data-v-01e81a27
|
|
|
4623
4625
|
return this.items.map((e) => (e == null ? void 0 : e.label) || (e == null ? void 0 : e.text) || "").join("§");
|
|
4624
4626
|
}
|
|
4625
4627
|
}
|
|
4626
|
-
},
|
|
4627
|
-
function
|
|
4628
|
+
}, Si = ["onClick"];
|
|
4629
|
+
function Mi(e, t, n, r, a, s) {
|
|
4628
4630
|
return n.items.length ? (c(), d("div", {
|
|
4629
4631
|
key: s.batchKey,
|
|
4630
4632
|
class: "wm-chips"
|
|
@@ -4635,10 +4637,10 @@ function Ti(e, t, n, r, a, s) {
|
|
|
4635
4637
|
class: "wm-chip",
|
|
4636
4638
|
style: z({ animationDelay: n.baseDelay + l * n.stepDelay + "ms" }),
|
|
4637
4639
|
onClick: (g) => e.$emit("select", i)
|
|
4638
|
-
}, v(i.label), 13,
|
|
4639
|
-
])) :
|
|
4640
|
+
}, v(i.label), 13, Si))), 128))
|
|
4641
|
+
])) : w("", !0);
|
|
4640
4642
|
}
|
|
4641
|
-
const
|
|
4643
|
+
const Ti = /* @__PURE__ */ P(Ai, [["render", Mi], ["__scopeId", "data-v-47ad8085"]]), xi = {
|
|
4642
4644
|
name: "WmApprovalCard",
|
|
4643
4645
|
components: { AIAvatar: oe },
|
|
4644
4646
|
inject: {
|
|
@@ -4682,45 +4684,45 @@ const xi = /* @__PURE__ */ P(Si, [["render", Ti], ["__scopeId", "data-v-47ad8085
|
|
|
4682
4684
|
return ((e = this.rejectCallback) == null ? void 0 : e.label) || this.t("approval.reject");
|
|
4683
4685
|
}
|
|
4684
4686
|
}
|
|
4685
|
-
},
|
|
4687
|
+
}, Oi = { class: "wm-approval" }, Ri = { class: "wm-approval__head" }, Li = { class: "wm-approval__icon" }, Ii = { class: "wm-approval__main" }, Ei = { class: "wm-approval__title" }, Bi = {
|
|
4686
4688
|
key: 0,
|
|
4687
4689
|
class: "wm-approval__detail"
|
|
4688
|
-
},
|
|
4689
|
-
function
|
|
4690
|
+
}, Pi = { class: "wm-approval__actions" };
|
|
4691
|
+
function Ui(e, t, n, r, a, s) {
|
|
4690
4692
|
const i = B("AIAvatar");
|
|
4691
|
-
return c(), d("div",
|
|
4692
|
-
o("div",
|
|
4693
|
-
o("div",
|
|
4693
|
+
return c(), d("div", Oi, [
|
|
4694
|
+
o("div", Ri, [
|
|
4695
|
+
o("div", Li, [
|
|
4694
4696
|
V(i, {
|
|
4695
4697
|
size: 24,
|
|
4696
4698
|
name: n.agentName,
|
|
4697
4699
|
"image-url": n.agentAvatarUrl
|
|
4698
4700
|
}, null, 8, ["name", "image-url"])
|
|
4699
4701
|
]),
|
|
4700
|
-
o("div",
|
|
4701
|
-
o("div",
|
|
4702
|
-
n.detail ? (c(), d("div",
|
|
4702
|
+
o("div", Ii, [
|
|
4703
|
+
o("div", Ei, v(n.action), 1),
|
|
4704
|
+
n.detail ? (c(), d("div", Bi, v(n.detail), 1)) : w("", !0)
|
|
4703
4705
|
])
|
|
4704
4706
|
]),
|
|
4705
|
-
o("div",
|
|
4707
|
+
o("div", Pi, [
|
|
4706
4708
|
s.rejectId ? (c(), d("button", {
|
|
4707
4709
|
key: 0,
|
|
4708
4710
|
type: "button",
|
|
4709
4711
|
class: "wm-approval__btn wm-approval__btn--neutral",
|
|
4710
4712
|
onClick: t[0] || (t[0] = (l) => e.$emit("callback", s.rejectId))
|
|
4711
|
-
}, v(s.rejectLabel), 1)) :
|
|
4713
|
+
}, v(s.rejectLabel), 1)) : w("", !0),
|
|
4712
4714
|
s.approveId ? (c(), d("button", {
|
|
4713
4715
|
key: 1,
|
|
4714
4716
|
type: "button",
|
|
4715
4717
|
class: "wm-approval__btn wm-approval__btn--primary",
|
|
4716
4718
|
onClick: t[1] || (t[1] = (l) => e.$emit("callback", s.approveId))
|
|
4717
|
-
}, v(s.approveLabel), 1)) :
|
|
4719
|
+
}, v(s.approveLabel), 1)) : w("", !0)
|
|
4718
4720
|
])
|
|
4719
4721
|
]);
|
|
4720
4722
|
}
|
|
4721
|
-
const
|
|
4723
|
+
const Di = /* @__PURE__ */ P(xi, [["render", Ui], ["__scopeId", "data-v-a2bed37e"]]);
|
|
4722
4724
|
let Ue = 0;
|
|
4723
|
-
const
|
|
4725
|
+
const Ni = /* @__PURE__ */ new Set([
|
|
4724
4726
|
"text",
|
|
4725
4727
|
"textarea",
|
|
4726
4728
|
"number",
|
|
@@ -4728,7 +4730,7 @@ const ji = /* @__PURE__ */ new Set([
|
|
|
4728
4730
|
"select",
|
|
4729
4731
|
"multiselect",
|
|
4730
4732
|
"date"
|
|
4731
|
-
]),
|
|
4733
|
+
]), ji = {
|
|
4732
4734
|
name: "WmFormCard",
|
|
4733
4735
|
components: { AIAvatar: oe },
|
|
4734
4736
|
inject: {
|
|
@@ -4758,7 +4760,7 @@ const ji = /* @__PURE__ */ new Set([
|
|
|
4758
4760
|
// douteux.
|
|
4759
4761
|
normalizedFields() {
|
|
4760
4762
|
var t;
|
|
4761
|
-
return (Array.isArray((t = this.form) == null ? void 0 : t.fields) ? this.form.fields : []).filter((n) => !(!(n != null && n.key) || !(n != null && n.label) || !
|
|
4763
|
+
return (Array.isArray((t = this.form) == null ? void 0 : t.fields) ? this.form.fields : []).filter((n) => !(!(n != null && n.key) || !(n != null && n.label) || !Ni.has(n == null ? void 0 : n.type) || (n.type === "select" || n.type === "multiselect") && (!Array.isArray(n.options) || n.options.length === 0)));
|
|
4762
4764
|
}
|
|
4763
4765
|
},
|
|
4764
4766
|
created() {
|
|
@@ -4811,47 +4813,47 @@ const ji = /* @__PURE__ */ new Set([
|
|
|
4811
4813
|
}
|
|
4812
4814
|
}
|
|
4813
4815
|
}
|
|
4814
|
-
},
|
|
4816
|
+
}, Fi = { class: "wm-form" }, Hi = { class: "wm-form__head" }, zi = { class: "wm-form__icon" }, qi = { class: "wm-form__main" }, $i = { class: "wm-form__title" }, Vi = {
|
|
4815
4817
|
key: 0,
|
|
4816
4818
|
class: "wm-form__detail"
|
|
4817
|
-
},
|
|
4819
|
+
}, Ki = ["for"], Wi = {
|
|
4818
4820
|
key: 0,
|
|
4819
4821
|
class: "wm-form__req",
|
|
4820
4822
|
"aria-hidden": "true"
|
|
4821
|
-
},
|
|
4823
|
+
}, Gi = ["id", "onUpdate:modelValue", "placeholder", "required", "disabled"], Yi = ["id", "onUpdate:modelValue", "placeholder", "required", "disabled"], Ji = ["id", "onUpdate:modelValue", "placeholder", "required", "disabled"], Xi = ["id", "onUpdate:modelValue", "required", "disabled"], Qi = {
|
|
4822
4824
|
key: 4,
|
|
4823
4825
|
class: "wm-form__bool"
|
|
4824
|
-
},
|
|
4826
|
+
}, Zi = ["id", "onUpdate:modelValue", "disabled"], ea = ["id", "onUpdate:modelValue", "required", "disabled"], ta = {
|
|
4825
4827
|
value: "",
|
|
4826
4828
|
disabled: ""
|
|
4827
|
-
},
|
|
4829
|
+
}, na = ["value"], sa = {
|
|
4828
4830
|
key: 6,
|
|
4829
4831
|
class: "wm-form__multi"
|
|
4830
|
-
},
|
|
4832
|
+
}, ra = ["value", "checked", "disabled", "onChange"], ia = {
|
|
4831
4833
|
key: 0,
|
|
4832
4834
|
class: "wm-form__err"
|
|
4833
|
-
},
|
|
4835
|
+
}, aa = ["disabled"], oa = {
|
|
4834
4836
|
key: 0,
|
|
4835
4837
|
class: "wm-form__spinner",
|
|
4836
4838
|
"aria-hidden": "true"
|
|
4837
|
-
},
|
|
4839
|
+
}, la = {
|
|
4838
4840
|
key: 2,
|
|
4839
4841
|
class: "wm-form__doneLbl"
|
|
4840
4842
|
};
|
|
4841
|
-
function
|
|
4843
|
+
function ca(e, t, n, r, a, s) {
|
|
4842
4844
|
const i = B("AIAvatar");
|
|
4843
|
-
return c(), d("div",
|
|
4844
|
-
o("div",
|
|
4845
|
-
o("div",
|
|
4845
|
+
return c(), d("div", Fi, [
|
|
4846
|
+
o("div", Hi, [
|
|
4847
|
+
o("div", zi, [
|
|
4846
4848
|
V(i, {
|
|
4847
4849
|
size: 24,
|
|
4848
4850
|
name: n.agentName,
|
|
4849
4851
|
"image-url": n.agentAvatarUrl
|
|
4850
4852
|
}, null, 8, ["name", "image-url"])
|
|
4851
4853
|
]),
|
|
4852
|
-
o("div",
|
|
4853
|
-
o("div",
|
|
4854
|
-
n.form.description ? (c(), d("div",
|
|
4854
|
+
o("div", qi, [
|
|
4855
|
+
o("div", $i, v(n.form.title || s.t("form.title")), 1),
|
|
4856
|
+
n.form.description ? (c(), d("div", Vi, v(n.form.description), 1)) : w("", !0)
|
|
4855
4857
|
])
|
|
4856
4858
|
]),
|
|
4857
4859
|
o("form", {
|
|
@@ -4867,8 +4869,8 @@ function da(e, t, n, r, a, s) {
|
|
|
4867
4869
|
class: "wm-form__label"
|
|
4868
4870
|
}, [
|
|
4869
4871
|
Se(v(l.label), 1),
|
|
4870
|
-
l.required ? (c(), d("span",
|
|
4871
|
-
], 8,
|
|
4872
|
+
l.required ? (c(), d("span", Wi, "*")) : w("", !0)
|
|
4873
|
+
], 8, Ki),
|
|
4872
4874
|
l.type === "text" ? G((c(), d("input", {
|
|
4873
4875
|
key: 0,
|
|
4874
4876
|
id: `wm-f-${a._uid}-${l.key}`,
|
|
@@ -4878,7 +4880,7 @@ function da(e, t, n, r, a, s) {
|
|
|
4878
4880
|
placeholder: l.placeholder || "",
|
|
4879
4881
|
required: l.required,
|
|
4880
4882
|
disabled: n.readOnly || a.busy
|
|
4881
|
-
}, null, 8,
|
|
4883
|
+
}, null, 8, Gi)), [
|
|
4882
4884
|
[te, a.values[l.key]]
|
|
4883
4885
|
]) : l.type === "textarea" ? G((c(), d("textarea", {
|
|
4884
4886
|
key: 1,
|
|
@@ -4889,7 +4891,7 @@ function da(e, t, n, r, a, s) {
|
|
|
4889
4891
|
placeholder: l.placeholder || "",
|
|
4890
4892
|
required: l.required,
|
|
4891
4893
|
disabled: n.readOnly || a.busy
|
|
4892
|
-
}, null, 8,
|
|
4894
|
+
}, null, 8, Yi)), [
|
|
4893
4895
|
[te, a.values[l.key]]
|
|
4894
4896
|
]) : l.type === "number" ? G((c(), d("input", {
|
|
4895
4897
|
key: 2,
|
|
@@ -4900,7 +4902,7 @@ function da(e, t, n, r, a, s) {
|
|
|
4900
4902
|
placeholder: l.placeholder || "",
|
|
4901
4903
|
required: l.required,
|
|
4902
4904
|
disabled: n.readOnly || a.busy
|
|
4903
|
-
}, null, 8,
|
|
4905
|
+
}, null, 8, Ji)), [
|
|
4904
4906
|
[
|
|
4905
4907
|
te,
|
|
4906
4908
|
a.values[l.key],
|
|
@@ -4915,15 +4917,15 @@ function da(e, t, n, r, a, s) {
|
|
|
4915
4917
|
class: "wm-form__input",
|
|
4916
4918
|
required: l.required,
|
|
4917
4919
|
disabled: n.readOnly || a.busy
|
|
4918
|
-
}, null, 8,
|
|
4920
|
+
}, null, 8, Xi)), [
|
|
4919
4921
|
[te, a.values[l.key]]
|
|
4920
|
-
]) : l.type === "boolean" ? (c(), d("label",
|
|
4922
|
+
]) : l.type === "boolean" ? (c(), d("label", Qi, [
|
|
4921
4923
|
G(o("input", {
|
|
4922
4924
|
id: `wm-f-${a._uid}-${l.key}`,
|
|
4923
4925
|
"onUpdate:modelValue": (g) => a.values[l.key] = g,
|
|
4924
4926
|
type: "checkbox",
|
|
4925
4927
|
disabled: n.readOnly || a.busy
|
|
4926
|
-
}, null, 8,
|
|
4928
|
+
}, null, 8, Zi), [
|
|
4927
4929
|
[We, a.values[l.key]]
|
|
4928
4930
|
]),
|
|
4929
4931
|
o("span", null, v(l.placeholder || s.t("common.yes")), 1)
|
|
@@ -4935,14 +4937,14 @@ function da(e, t, n, r, a, s) {
|
|
|
4935
4937
|
required: l.required,
|
|
4936
4938
|
disabled: n.readOnly || a.busy
|
|
4937
4939
|
}, [
|
|
4938
|
-
o("option",
|
|
4940
|
+
o("option", ta, v(l.placeholder || s.t("form.choose")), 1),
|
|
4939
4941
|
(c(!0), d(I, null, j(l.options, (g) => (c(), d("option", {
|
|
4940
4942
|
key: g.value,
|
|
4941
4943
|
value: g.value
|
|
4942
|
-
}, v(g.label), 9,
|
|
4943
|
-
], 8,
|
|
4944
|
+
}, v(g.label), 9, na))), 128))
|
|
4945
|
+
], 8, ea)), [
|
|
4944
4946
|
[Ge, a.values[l.key]]
|
|
4945
|
-
]) : l.type === "multiselect" ? (c(), d("div",
|
|
4947
|
+
]) : l.type === "multiselect" ? (c(), d("div", sa, [
|
|
4946
4948
|
(c(!0), d(I, null, j(l.options, (g) => (c(), d("label", {
|
|
4947
4949
|
key: g.value,
|
|
4948
4950
|
class: "wm-form__multiItem"
|
|
@@ -4957,25 +4959,25 @@ function da(e, t, n, r, a, s) {
|
|
|
4957
4959
|
g.value,
|
|
4958
4960
|
k.target.checked
|
|
4959
4961
|
)
|
|
4960
|
-
}, null, 40,
|
|
4962
|
+
}, null, 40, ra),
|
|
4961
4963
|
o("span", null, v(g.label), 1)
|
|
4962
4964
|
]))), 128))
|
|
4963
|
-
])) :
|
|
4965
|
+
])) : w("", !0)
|
|
4964
4966
|
]))), 128)),
|
|
4965
|
-
a.error ? (c(), d("div",
|
|
4966
|
-
n.readOnly ? (c(), d("div",
|
|
4967
|
+
a.error ? (c(), d("div", ia, v(a.error), 1)) : w("", !0),
|
|
4968
|
+
n.readOnly ? (c(), d("div", la, v(s.t("form.responseSent")), 1)) : (c(), d("button", {
|
|
4967
4969
|
key: 1,
|
|
4968
4970
|
type: "submit",
|
|
4969
4971
|
class: "wm-form__submit",
|
|
4970
4972
|
disabled: a.busy
|
|
4971
4973
|
}, [
|
|
4972
|
-
a.busy ? (c(), d("span",
|
|
4974
|
+
a.busy ? (c(), d("span", oa)) : w("", !0),
|
|
4973
4975
|
o("span", null, v(a.busy ? s.t("common.sending") : n.form.submit_label || s.t("common.send")), 1)
|
|
4974
|
-
], 8,
|
|
4976
|
+
], 8, aa))
|
|
4975
4977
|
], 32)
|
|
4976
4978
|
]);
|
|
4977
4979
|
}
|
|
4978
|
-
const
|
|
4980
|
+
const da = /* @__PURE__ */ P(ji, [["render", ca], ["__scopeId", "data-v-fe65cc56"]]), ua = {
|
|
4979
4981
|
name: "WmFeedback",
|
|
4980
4982
|
inject: {
|
|
4981
4983
|
// Translator shared by the Messenger shell; French fallback when
|
|
@@ -5009,13 +5011,13 @@ const ua = /* @__PURE__ */ P(Fi, [["render", da], ["__scopeId", "data-v-fe65cc56
|
|
|
5009
5011
|
!this.sel || this.busy || this.$emit("submit", { rating: this.sel });
|
|
5010
5012
|
}
|
|
5011
5013
|
}
|
|
5012
|
-
},
|
|
5014
|
+
}, ha = { class: "wm-fb" }, ma = { class: "wm-fb__title" }, fa = { class: "wm-fb__sub" }, _a = { class: "wm-fb__row" }, ga = ["onClick"], pa = { class: "wm-fb__emoji" }, va = { class: "wm-fb__label" }, ya = ["disabled"], wa = {
|
|
5013
5015
|
key: 1,
|
|
5014
5016
|
class: "wm-fb__done"
|
|
5015
|
-
},
|
|
5016
|
-
function
|
|
5017
|
-
return c(), d("div",
|
|
5018
|
-
n.done ? (c(), d("div",
|
|
5017
|
+
}, ba = { class: "wm-fb__doneTitle" }, ka = { class: "wm-fb__doneSub" };
|
|
5018
|
+
function Ca(e, t, n, r, a, s) {
|
|
5019
|
+
return c(), d("div", ha, [
|
|
5020
|
+
n.done ? (c(), d("div", wa, [
|
|
5019
5021
|
t[1] || (t[1] = o("div", { class: "wm-fb__check" }, [
|
|
5020
5022
|
o("svg", {
|
|
5021
5023
|
width: "16",
|
|
@@ -5031,32 +5033,32 @@ function Aa(e, t, n, r, a, s) {
|
|
|
5031
5033
|
o("path", { d: "M20 6L9 17l-5-5" })
|
|
5032
5034
|
])
|
|
5033
5035
|
], -1)),
|
|
5034
|
-
o("div",
|
|
5035
|
-
o("div",
|
|
5036
|
+
o("div", ba, v(s.t("feedback.doneTitle")), 1),
|
|
5037
|
+
o("div", ka, v(s.t("feedback.doneSubtitle")), 1)
|
|
5036
5038
|
])) : (c(), d(I, { key: 0 }, [
|
|
5037
|
-
o("div",
|
|
5038
|
-
o("div",
|
|
5039
|
-
o("div",
|
|
5039
|
+
o("div", ma, v(s.t("feedback.question")), 1),
|
|
5040
|
+
o("div", fa, v(s.t("feedback.subtitle")), 1),
|
|
5041
|
+
o("div", _a, [
|
|
5040
5042
|
(c(!0), d(I, null, j(s.options, (i) => (c(), d("button", {
|
|
5041
5043
|
key: i.v,
|
|
5042
5044
|
type: "button",
|
|
5043
5045
|
class: R(["wm-fb__opt", { "is-selected": a.sel === i.v }]),
|
|
5044
5046
|
onClick: (l) => a.sel = i.v
|
|
5045
5047
|
}, [
|
|
5046
|
-
o("span",
|
|
5047
|
-
o("span",
|
|
5048
|
-
], 10,
|
|
5048
|
+
o("span", pa, v(i.e), 1),
|
|
5049
|
+
o("span", va, v(i.l), 1)
|
|
5050
|
+
], 10, ga))), 128))
|
|
5049
5051
|
]),
|
|
5050
5052
|
o("button", {
|
|
5051
5053
|
type: "button",
|
|
5052
5054
|
class: "wm-fb__send",
|
|
5053
5055
|
disabled: !a.sel || n.busy,
|
|
5054
5056
|
onClick: t[0] || (t[0] = (...i) => s.onSend && s.onSend(...i))
|
|
5055
|
-
}, v(n.busy ? s.t("common.sending") : s.t("feedback.submit")), 9,
|
|
5057
|
+
}, v(n.busy ? s.t("common.sending") : s.t("feedback.submit")), 9, ya)
|
|
5056
5058
|
], 64))
|
|
5057
5059
|
]);
|
|
5058
5060
|
}
|
|
5059
|
-
const
|
|
5061
|
+
const Aa = /* @__PURE__ */ P(ua, [["render", Ca], ["__scopeId", "data-v-9b630564"]]), Sa = {
|
|
5060
5062
|
name: "WmMoreMenu",
|
|
5061
5063
|
inject: {
|
|
5062
5064
|
// Translator shared by the Messenger shell; French fallback when
|
|
@@ -5091,24 +5093,24 @@ const Sa = /* @__PURE__ */ P(ha, [["render", Aa], ["__scopeId", "data-v-9b630564
|
|
|
5091
5093
|
this.soundOn = !this.soundOn, this.$emit("sound-toggle", this.soundOn);
|
|
5092
5094
|
}
|
|
5093
5095
|
}
|
|
5094
|
-
},
|
|
5096
|
+
}, Ma = { class: "wm-mm" }, Ta = {
|
|
5095
5097
|
class: "wm-mm__pop",
|
|
5096
5098
|
role: "menu"
|
|
5097
|
-
},
|
|
5099
|
+
}, xa = {
|
|
5098
5100
|
key: 0,
|
|
5099
5101
|
class: "wm-mm__section"
|
|
5100
|
-
},
|
|
5102
|
+
}, Oa = { class: "wm-mm__label" }, Ra = { class: "wm-mm__label" }, La = {
|
|
5101
5103
|
key: 1,
|
|
5102
5104
|
class: "wm-mm__sep"
|
|
5103
|
-
},
|
|
5104
|
-
function
|
|
5105
|
-
return c(), d("div",
|
|
5105
|
+
}, Ia = { class: "wm-mm__section" }, Ea = { class: "wm-mm__label" }, Ba = { class: "wm-mm__section" }, Pa = { class: "wm-mm__label" }, Ua = { class: "wm-mm__label" };
|
|
5106
|
+
function Da(e, t, n, r, a, s) {
|
|
5107
|
+
return c(), d("div", Ma, [
|
|
5106
5108
|
o("div", {
|
|
5107
5109
|
class: "wm-mm__scrim",
|
|
5108
5110
|
onClick: t[0] || (t[0] = (i) => e.$emit("close"))
|
|
5109
5111
|
}),
|
|
5110
|
-
o("div",
|
|
5111
|
-
n.canRename || n.canExport ? (c(), d("div",
|
|
5112
|
+
o("div", Ta, [
|
|
5113
|
+
n.canRename || n.canExport ? (c(), d("div", xa, [
|
|
5112
5114
|
n.canRename ? (c(), d("button", {
|
|
5113
5115
|
key: 0,
|
|
5114
5116
|
type: "button",
|
|
@@ -5131,8 +5133,8 @@ function Na(e, t, n, r, a, s) {
|
|
|
5131
5133
|
o("path", { d: "M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4 12.5-12.5z" })
|
|
5132
5134
|
])
|
|
5133
5135
|
], -1)),
|
|
5134
|
-
o("span",
|
|
5135
|
-
])) :
|
|
5136
|
+
o("span", Oa, v(s.t("moreMenu.editTitle")), 1)
|
|
5137
|
+
])) : w("", !0),
|
|
5136
5138
|
n.canExport ? (c(), d("button", {
|
|
5137
5139
|
key: 1,
|
|
5138
5140
|
type: "button",
|
|
@@ -5154,12 +5156,12 @@ function Na(e, t, n, r, a, s) {
|
|
|
5154
5156
|
o("path", { d: "M4 12v8a2 2 0 002 2h12a2 2 0 002-2v-8M16 6l-4-4-4 4M12 2v13" })
|
|
5155
5157
|
])
|
|
5156
5158
|
], -1)),
|
|
5157
|
-
o("span",
|
|
5159
|
+
o("span", Ra, v(s.t("moreMenu.exportTranscript")), 1),
|
|
5158
5160
|
t[8] || (t[8] = o("span", { class: "wm-mm__hint" }, ".txt", -1))
|
|
5159
|
-
])) :
|
|
5160
|
-
])) :
|
|
5161
|
-
n.canRename || n.canExport ? (c(), d("div",
|
|
5162
|
-
o("div",
|
|
5161
|
+
])) : w("", !0)
|
|
5162
|
+
])) : w("", !0),
|
|
5163
|
+
n.canRename || n.canExport ? (c(), d("div", La)) : w("", !0),
|
|
5164
|
+
o("div", Ia, [
|
|
5163
5165
|
o("button", {
|
|
5164
5166
|
type: "button",
|
|
5165
5167
|
class: "wm-mm__item",
|
|
@@ -5181,7 +5183,7 @@ function Na(e, t, n, r, a, s) {
|
|
|
5181
5183
|
o("path", { d: "M15.54 8.46a5 5 0 010 7.07M19.07 4.93a10 10 0 010 14.14" })
|
|
5182
5184
|
])
|
|
5183
5185
|
], -1)),
|
|
5184
|
-
o("span",
|
|
5186
|
+
o("span", Ea, v(s.t("moreMenu.sound")), 1),
|
|
5185
5187
|
o("span", {
|
|
5186
5188
|
class: R(["wm-mm__toggle", { "wm-mm__toggle--on": a.soundOn }])
|
|
5187
5189
|
}, [...t[9] || (t[9] = [
|
|
@@ -5190,7 +5192,7 @@ function Na(e, t, n, r, a, s) {
|
|
|
5190
5192
|
])
|
|
5191
5193
|
]),
|
|
5192
5194
|
t[13] || (t[13] = o("div", { class: "wm-mm__sep" }, null, -1)),
|
|
5193
|
-
o("div",
|
|
5195
|
+
o("div", Ba, [
|
|
5194
5196
|
n.statusUrl ? (c(), d("button", {
|
|
5195
5197
|
key: 0,
|
|
5196
5198
|
type: "button",
|
|
@@ -5212,8 +5214,8 @@ function Na(e, t, n, r, a, s) {
|
|
|
5212
5214
|
o("path", { d: "M18 10a8 8 0 11-16 0 8 8 0 0116 0zM10 6v4l3 2" })
|
|
5213
5215
|
])
|
|
5214
5216
|
], -1)),
|
|
5215
|
-
o("span",
|
|
5216
|
-
])) :
|
|
5217
|
+
o("span", Pa, v(s.t("moreMenu.serviceStatus")), 1)
|
|
5218
|
+
])) : w("", !0),
|
|
5217
5219
|
n.helpUrl ? (c(), d("button", {
|
|
5218
5220
|
key: 1,
|
|
5219
5221
|
type: "button",
|
|
@@ -5235,13 +5237,13 @@ function Na(e, t, n, r, a, s) {
|
|
|
5235
5237
|
o("path", { d: "M9 11a3 3 0 116 0c0 2-3 2-3 5M12 19h.01M12 22a10 10 0 110-20 10 10 0 010 20z" })
|
|
5236
5238
|
])
|
|
5237
5239
|
], -1)),
|
|
5238
|
-
o("span",
|
|
5239
|
-
])) :
|
|
5240
|
+
o("span", Ua, v(s.t("moreMenu.helpCenter")), 1)
|
|
5241
|
+
])) : w("", !0)
|
|
5240
5242
|
])
|
|
5241
5243
|
])
|
|
5242
5244
|
]);
|
|
5243
5245
|
}
|
|
5244
|
-
const
|
|
5246
|
+
const Na = /* @__PURE__ */ P(Sa, [["render", Da], ["__scopeId", "data-v-4cf6d578"]]), ja = {
|
|
5245
5247
|
name: "WmRenameDialog",
|
|
5246
5248
|
inject: {
|
|
5247
5249
|
// Translator shared by the Messenger shell; French fallback when
|
|
@@ -5283,20 +5285,20 @@ const ja = /* @__PURE__ */ P(Ma, [["render", Na], ["__scopeId", "data-v-4cf6d578
|
|
|
5283
5285
|
this.canSubmit && this.$emit("submit", this.value.trim());
|
|
5284
5286
|
}
|
|
5285
5287
|
}
|
|
5286
|
-
},
|
|
5288
|
+
}, Fa = { class: "wm-dialog" }, Ha = {
|
|
5287
5289
|
class: "wm-dialog__card",
|
|
5288
5290
|
role: "dialog",
|
|
5289
5291
|
"aria-modal": "true"
|
|
5290
|
-
},
|
|
5291
|
-
function
|
|
5292
|
-
return c(), d("div",
|
|
5292
|
+
}, za = { class: "wm-dialog__head" }, qa = { class: "wm-dialog__title" }, $a = ["aria-label"], Va = { class: "wm-dialog__body" }, Ka = ["placeholder"], Wa = { class: "wm-dialog__actions" }, Ga = ["disabled"];
|
|
5293
|
+
function Ya(e, t, n, r, a, s) {
|
|
5294
|
+
return c(), d("div", Fa, [
|
|
5293
5295
|
o("div", {
|
|
5294
5296
|
class: "wm-dialog__scrim",
|
|
5295
5297
|
onClick: t[0] || (t[0] = (i) => e.$emit("close"))
|
|
5296
5298
|
}),
|
|
5297
|
-
o("div",
|
|
5298
|
-
o("div",
|
|
5299
|
-
o("div",
|
|
5299
|
+
o("div", Ha, [
|
|
5300
|
+
o("div", za, [
|
|
5301
|
+
o("div", qa, v(n.title || s.t("rename.title")), 1),
|
|
5300
5302
|
o("button", {
|
|
5301
5303
|
type: "button",
|
|
5302
5304
|
class: "wm-dialog__close",
|
|
@@ -5316,9 +5318,9 @@ function Ja(e, t, n, r, a, s) {
|
|
|
5316
5318
|
}, [
|
|
5317
5319
|
o("path", { d: "M18 6L6 18M6 6l12 12" })
|
|
5318
5320
|
], -1)
|
|
5319
|
-
])], 8,
|
|
5321
|
+
])], 8, $a)
|
|
5320
5322
|
]),
|
|
5321
|
-
o("div",
|
|
5323
|
+
o("div", Va, [
|
|
5322
5324
|
G(o("input", {
|
|
5323
5325
|
ref: "input",
|
|
5324
5326
|
"onUpdate:modelValue": t[2] || (t[2] = (i) => a.value = i),
|
|
@@ -5330,11 +5332,11 @@ function Ja(e, t, n, r, a, s) {
|
|
|
5330
5332
|
t[3] || (t[3] = ge(J((...i) => s.onSubmit && s.onSubmit(...i), ["prevent"]), ["enter"])),
|
|
5331
5333
|
t[4] || (t[4] = ge(J((i) => e.$emit("close"), ["prevent"]), ["esc"]))
|
|
5332
5334
|
]
|
|
5333
|
-
}, null, 40,
|
|
5335
|
+
}, null, 40, Ka), [
|
|
5334
5336
|
[te, a.value]
|
|
5335
5337
|
])
|
|
5336
5338
|
]),
|
|
5337
|
-
o("div",
|
|
5339
|
+
o("div", Wa, [
|
|
5338
5340
|
o("button", {
|
|
5339
5341
|
type: "button",
|
|
5340
5342
|
class: "wm-dialog__btn",
|
|
@@ -5345,26 +5347,26 @@ function Ja(e, t, n, r, a, s) {
|
|
|
5345
5347
|
class: "wm-dialog__btn wm-dialog__btn--primary",
|
|
5346
5348
|
disabled: !s.canSubmit,
|
|
5347
5349
|
onClick: t[6] || (t[6] = (...i) => s.onSubmit && s.onSubmit(...i))
|
|
5348
|
-
}, v(s.t("common.save")), 9,
|
|
5350
|
+
}, v(s.t("common.save")), 9, Ga)
|
|
5349
5351
|
])
|
|
5350
5352
|
])
|
|
5351
5353
|
]);
|
|
5352
5354
|
}
|
|
5353
|
-
const
|
|
5355
|
+
const Ja = /* @__PURE__ */ P(ja, [["render", Ya], ["__scopeId", "data-v-6d5f94a8"]]), De = "ww-messenger-tokens", Xa = {
|
|
5354
5356
|
name: "Messenger",
|
|
5355
5357
|
components: {
|
|
5356
5358
|
Launcher: qt,
|
|
5357
5359
|
Header: _n,
|
|
5358
5360
|
Onboarding: Jn,
|
|
5359
5361
|
History: hs,
|
|
5360
|
-
MessageList:
|
|
5361
|
-
Composer:
|
|
5362
|
-
SuggestionChips:
|
|
5363
|
-
ApprovalCard:
|
|
5364
|
-
FormCard:
|
|
5365
|
-
Feedback:
|
|
5366
|
-
MoreMenu:
|
|
5367
|
-
RenameDialog:
|
|
5362
|
+
MessageList: ri,
|
|
5363
|
+
Composer: Ci,
|
|
5364
|
+
SuggestionChips: Ti,
|
|
5365
|
+
ApprovalCard: Di,
|
|
5366
|
+
FormCard: da,
|
|
5367
|
+
Feedback: Aa,
|
|
5368
|
+
MoreMenu: Na,
|
|
5369
|
+
RenameDialog: Ja
|
|
5368
5370
|
},
|
|
5369
5371
|
mixins: [
|
|
5370
5372
|
yt,
|
|
@@ -5575,8 +5577,8 @@ const Xa = /* @__PURE__ */ P(Fa, [["render", Ja], ["__scopeId", "data-v-6d5f94a8
|
|
|
5575
5577
|
var k;
|
|
5576
5578
|
const a = e[r.id] || [], s = Y(r.last_read_message_id);
|
|
5577
5579
|
let i = 0, l = null;
|
|
5578
|
-
for (let
|
|
5579
|
-
const T = a[
|
|
5580
|
+
for (let b = a.length - 1; b >= 0; b--) {
|
|
5581
|
+
const T = a[b];
|
|
5580
5582
|
if (!T) continue;
|
|
5581
5583
|
if (((k = T.author) == null ? void 0 : k.type) === "user") break;
|
|
5582
5584
|
const E = Y(T.id);
|
|
@@ -5586,11 +5588,11 @@ const Xa = /* @__PURE__ */ P(Fa, [["render", Ja], ["__scopeId", "data-v-6d5f94a8
|
|
|
5586
5588
|
}
|
|
5587
5589
|
}
|
|
5588
5590
|
if (!a.length) {
|
|
5589
|
-
const
|
|
5590
|
-
|
|
5591
|
+
const b = Y(r.last_message_id);
|
|
5592
|
+
b != null && (s == null || b > s) && (i = 1, l = r.last_message_author || null);
|
|
5591
5593
|
}
|
|
5592
5594
|
const g = a.filter(
|
|
5593
|
-
(
|
|
5595
|
+
(b) => !((b == null ? void 0 : b.id) != null && t[b.id] === 0)
|
|
5594
5596
|
);
|
|
5595
5597
|
return {
|
|
5596
5598
|
...r,
|
|
@@ -5797,8 +5799,8 @@ const Xa = /* @__PURE__ */ P(Fa, [["render", Ja], ["__scopeId", "data-v-6d5f94a8
|
|
|
5797
5799
|
if (!(i != null && i.loaded)) return t;
|
|
5798
5800
|
}
|
|
5799
5801
|
const n = this.revealedAt, r = (this.s.messagesByConv[e.id] || []).filter((i) => {
|
|
5800
|
-
var l, g, k,
|
|
5801
|
-
return (i == null ? void 0 : i.type) === "action" && ((l = i == null ? void 0 : i.payload) == null ? void 0 : l.state) === "pending" || he(i) && !(n[i.id] > 0) ? !1 : (i == null ? void 0 : i.type) === "action" || (i == null ? void 0 : i.type) === "system" || ((g = i == null ? void 0 : i.payload) == null ? void 0 : g.type) === "system" || Array.isArray((k = i == null ? void 0 : i.payload) == null ? void 0 : k.attachments) && i.payload.attachments.length || (
|
|
5802
|
+
var l, g, k, b, T;
|
|
5803
|
+
return (i == null ? void 0 : i.type) === "action" && ((l = i == null ? void 0 : i.payload) == null ? void 0 : l.state) === "pending" || he(i) && !(n[i.id] > 0) ? !1 : (i == null ? void 0 : i.type) === "action" || (i == null ? void 0 : i.type) === "system" || ((g = i == null ? void 0 : i.payload) == null ? void 0 : g.type) === "system" || Array.isArray((k = i == null ? void 0 : i.payload) == null ? void 0 : k.attachments) && i.payload.attachments.length || (b = i == null ? void 0 : i.metadata) != null && b.artifact || (T = i == null ? void 0 : i.metadata) != null && T.form ? !0 : typeof (i == null ? void 0 : i.text_md) == "string" && i.text_md.trim().length > 0;
|
|
5802
5804
|
});
|
|
5803
5805
|
return t.length ? [...t, ...r] : r;
|
|
5804
5806
|
},
|
|
@@ -5842,7 +5844,7 @@ const Xa = /* @__PURE__ */ P(Fa, [["render", Ja], ["__scopeId", "data-v-6d5f94a8
|
|
|
5842
5844
|
const t = (g = (l = (i = this.pendingApproval) == null ? void 0 : i.payload) == null ? void 0 : l.pending) == null ? void 0 : g.prepared_params;
|
|
5843
5845
|
if (!t || typeof t != "object") return "";
|
|
5844
5846
|
const n = Object.entries(t);
|
|
5845
|
-
return n.length ? n.slice(0, 2).map(([k,
|
|
5847
|
+
return n.length ? n.slice(0, 2).map(([k, b]) => `${k}: ${b}`).join(" · ") : "";
|
|
5846
5848
|
},
|
|
5847
5849
|
actionInFlight() {
|
|
5848
5850
|
var e, t;
|
|
@@ -6199,9 +6201,9 @@ const Xa = /* @__PURE__ */ P(Fa, [["render", Ja], ["__scopeId", "data-v-6d5f94a8
|
|
|
6199
6201
|
this.launcherHovered = e, this.sendCurrentLauncherSize();
|
|
6200
6202
|
},
|
|
6201
6203
|
sendCurrentLauncherSize() {
|
|
6202
|
-
var
|
|
6204
|
+
var b, T, E, A, q, M, D;
|
|
6203
6205
|
if (this.isOpen) return;
|
|
6204
|
-
const e = (T = (
|
|
6206
|
+
const e = (T = (b = this.$el) == null ? void 0 : b.querySelector) == null ? void 0 : T.call(b, ".wm-launcherWrap");
|
|
6205
6207
|
if (!e) return;
|
|
6206
6208
|
const t = e.getBoundingClientRect();
|
|
6207
6209
|
if (!t.width || !t.height) return;
|
|
@@ -6592,35 +6594,35 @@ const Xa = /* @__PURE__ */ P(Fa, [["render", Ja], ["__scopeId", "data-v-6d5f94a8
|
|
|
6592
6594
|
}
|
|
6593
6595
|
}
|
|
6594
6596
|
}
|
|
6595
|
-
},
|
|
6597
|
+
}, Qa = {
|
|
6596
6598
|
key: 0,
|
|
6597
6599
|
class: "wm-loading",
|
|
6598
6600
|
"aria-busy": "true",
|
|
6599
6601
|
"aria-live": "polite"
|
|
6600
|
-
},
|
|
6602
|
+
}, Za = ["aria-label"], eo = {
|
|
6601
6603
|
key: 0,
|
|
6602
6604
|
class: "wm-state"
|
|
6603
|
-
},
|
|
6605
|
+
}, to = { class: "wm-state__err" }, no = { class: "wm-state__errTitle" }, so = { class: "wm-state__errSub" }, ro = { class: "wm-bottom" }, io = {
|
|
6604
6606
|
key: 0,
|
|
6605
6607
|
ref: "floatEl",
|
|
6606
6608
|
class: "wm-float"
|
|
6607
|
-
},
|
|
6609
|
+
}, ao = {
|
|
6608
6610
|
key: 1,
|
|
6609
6611
|
class: "wm-actionWait",
|
|
6610
6612
|
role: "status",
|
|
6611
6613
|
"aria-live": "polite"
|
|
6612
|
-
},
|
|
6614
|
+
}, oo = { class: "wm-actionWait__lbl" }, lo = {
|
|
6613
6615
|
key: 2,
|
|
6614
6616
|
class: "wm-attached"
|
|
6615
|
-
},
|
|
6617
|
+
}, co = ["src", "alt"], uo = {
|
|
6616
6618
|
key: 1,
|
|
6617
6619
|
class: "wm-attached__file"
|
|
6618
|
-
},
|
|
6620
|
+
}, ho = { class: "wm-attached__fileMeta" }, mo = { class: "wm-attached__fileName" }, fo = {
|
|
6619
6621
|
key: 0,
|
|
6620
6622
|
class: "wm-attached__fileSize"
|
|
6621
|
-
},
|
|
6622
|
-
function
|
|
6623
|
-
const i = B("Launcher"), l = B("Header"), g = B("History"), k = B("Onboarding"),
|
|
6623
|
+
}, _o = ["aria-label", "onClick"];
|
|
6624
|
+
function go(e, t, n, r, a, s) {
|
|
6625
|
+
const i = B("Launcher"), l = B("Header"), g = B("History"), k = B("Onboarding"), b = B("MessageList"), T = B("ApprovalCard"), E = B("FormCard"), A = B("Feedback"), q = B("SuggestionChips"), M = B("Composer"), D = B("MoreMenu"), N = B("RenameDialog");
|
|
6624
6626
|
return c(), d("div", {
|
|
6625
6627
|
class: R(["wm-root", `wm-root--${n.displayMode}`]),
|
|
6626
6628
|
style: z(s.rootStyle)
|
|
@@ -6632,7 +6634,7 @@ function po(e, t, n, r, a, s) {
|
|
|
6632
6634
|
onOpen: s.openFromPeek,
|
|
6633
6635
|
onDismiss: s.dismissPeek,
|
|
6634
6636
|
onHover: s.onLauncherHover
|
|
6635
|
-
}, null, 8, ["unread-count", "peeks", "onOpen", "onDismiss", "onHover"])) :
|
|
6637
|
+
}, null, 8, ["unread-count", "peeks", "onOpen", "onDismiss", "onHover"])) : w("", !0),
|
|
6636
6638
|
a.isOpen || s.isEmbedded ? (c(), d("section", {
|
|
6637
6639
|
key: 1,
|
|
6638
6640
|
class: R([
|
|
@@ -6645,8 +6647,8 @@ function po(e, t, n, r, a, s) {
|
|
|
6645
6647
|
"aria-label": "Messenger",
|
|
6646
6648
|
onClick: t[6] || (t[6] = (...L) => s.onPanelClick && s.onPanelClick(...L))
|
|
6647
6649
|
}, [
|
|
6648
|
-
!s.ready && !s.error ? (c(), d("div",
|
|
6649
|
-
s.isEmbedded ?
|
|
6650
|
+
!s.ready && !s.error ? (c(), d("div", Qa, [
|
|
6651
|
+
s.isEmbedded ? w("", !0) : (c(), d("button", {
|
|
6650
6652
|
key: 0,
|
|
6651
6653
|
type: "button",
|
|
6652
6654
|
class: "wm-loading__close",
|
|
@@ -6666,7 +6668,7 @@ function po(e, t, n, r, a, s) {
|
|
|
6666
6668
|
}, [
|
|
6667
6669
|
o("path", { d: "M18 6L6 18M6 6l12 12" })
|
|
6668
6670
|
], -1)
|
|
6669
|
-
])], 8,
|
|
6671
|
+
])], 8, Za)),
|
|
6670
6672
|
t[8] || (t[8] = o("div", {
|
|
6671
6673
|
class: "wm-loading__spinner",
|
|
6672
6674
|
"aria-hidden": "true"
|
|
@@ -6686,8 +6688,8 @@ function po(e, t, n, r, a, s) {
|
|
|
6686
6688
|
onMore: s.toggleMore,
|
|
6687
6689
|
onClose: s.close
|
|
6688
6690
|
}, null, 8, ["title", "team-members", "response-label", "show-identity", "show-back", "show-close", "more-active", "agent-name", "agent-avatar-url", "onBack", "onMore", "onClose"]),
|
|
6689
|
-
s.error ? (c(), d("div",
|
|
6690
|
-
o("div",
|
|
6691
|
+
s.error ? (c(), d("div", eo, [
|
|
6692
|
+
o("div", to, [
|
|
6691
6693
|
t[9] || (t[9] = o("div", { class: "wm-state__errIcon" }, [
|
|
6692
6694
|
o("svg", {
|
|
6693
6695
|
width: "14",
|
|
@@ -6704,8 +6706,8 @@ function po(e, t, n, r, a, s) {
|
|
|
6704
6706
|
])
|
|
6705
6707
|
], -1)),
|
|
6706
6708
|
o("div", null, [
|
|
6707
|
-
o("div",
|
|
6708
|
-
o("div",
|
|
6709
|
+
o("div", no, v(s.t("error.connectionFailed")), 1),
|
|
6710
|
+
o("div", so, v(s.error), 1)
|
|
6709
6711
|
])
|
|
6710
6712
|
])
|
|
6711
6713
|
])) : !s.currentConv && a.showHistory ? (c(), U(g, {
|
|
@@ -6713,7 +6715,7 @@ function po(e, t, n, r, a, s) {
|
|
|
6713
6715
|
threads: s.openThreads,
|
|
6714
6716
|
onResume: s.onDrawerPick
|
|
6715
6717
|
}, null, 8, ["threads", "onResume"])) : s.currentConv ? (c(), d(I, { key: 3 }, [
|
|
6716
|
-
V(
|
|
6718
|
+
V(b, {
|
|
6717
6719
|
ref: "messageList",
|
|
6718
6720
|
messages: s.displayedMessages,
|
|
6719
6721
|
"streaming-active": s.streamingActive,
|
|
@@ -6727,8 +6729,8 @@ function po(e, t, n, r, a, s) {
|
|
|
6727
6729
|
"ai-agent-avatar-url": s.agentAvatarUrl,
|
|
6728
6730
|
onLoadMore: s.onLoadMore
|
|
6729
6731
|
}, null, 8, ["messages", "streaming-active", "date-label", "conversation-id", "loading-more", "has-more", "unread-anchor-id", "unread-boundary-ts", "ai-agent-name", "ai-agent-avatar-url", "onLoadMore"]),
|
|
6730
|
-
o("div",
|
|
6731
|
-
s.floatVisible ? (c(), d("div",
|
|
6732
|
+
o("div", ro, [
|
|
6733
|
+
s.floatVisible ? (c(), d("div", io, [
|
|
6732
6734
|
s.approvalReady ? (c(), U(T, {
|
|
6733
6735
|
key: 0,
|
|
6734
6736
|
action: s.approvalTitle,
|
|
@@ -6753,17 +6755,74 @@ function po(e, t, n, r, a, s) {
|
|
|
6753
6755
|
items: s.suggestions,
|
|
6754
6756
|
onSelect: s.onSuggestion
|
|
6755
6757
|
}, null, 8, ["items", "onSelect"]))
|
|
6756
|
-
], 512)) :
|
|
6757
|
-
s.actionInFlight ? (c(), d("div",
|
|
6758
|
+
], 512)) : w("", !0),
|
|
6759
|
+
s.actionInFlight ? (c(), d("div", ao, [
|
|
6758
6760
|
t[10] || (t[10] = o("span", {
|
|
6759
6761
|
class: "wm-actionWait__spinner",
|
|
6760
6762
|
"aria-hidden": "true"
|
|
6761
6763
|
}, null, -1)),
|
|
6762
|
-
o("span",
|
|
6764
|
+
o("span", oo, v(s.t("action.inProgress", {
|
|
6763
6765
|
name: s.actionInFlightName
|
|
6764
6766
|
})), 1)
|
|
6765
|
-
])) : (
|
|
6766
|
-
|
|
6767
|
+
])) : w("", !0),
|
|
6768
|
+
a.pendingAttachments.length ? (c(), d("div", lo, [
|
|
6769
|
+
(c(!0), d(I, null, j(a.pendingAttachments, (L, K) => (c(), d("div", {
|
|
6770
|
+
key: L.path || K,
|
|
6771
|
+
class: "wm-attached__item"
|
|
6772
|
+
}, [
|
|
6773
|
+
s.isPendingImage(L) && L._previewUrl ? (c(), d("img", {
|
|
6774
|
+
key: 0,
|
|
6775
|
+
class: "wm-attached__thumb",
|
|
6776
|
+
src: L._previewUrl,
|
|
6777
|
+
alt: L.name
|
|
6778
|
+
}, null, 8, co)) : (c(), d("div", uo, [
|
|
6779
|
+
t[11] || (t[11] = o("span", { class: "wm-attached__fileIcon" }, [
|
|
6780
|
+
o("svg", {
|
|
6781
|
+
width: "16",
|
|
6782
|
+
height: "16",
|
|
6783
|
+
viewBox: "0 0 24 24",
|
|
6784
|
+
fill: "none",
|
|
6785
|
+
stroke: "currentColor",
|
|
6786
|
+
"stroke-width": "1.7",
|
|
6787
|
+
"stroke-linecap": "round",
|
|
6788
|
+
"stroke-linejoin": "round",
|
|
6789
|
+
"aria-hidden": "true"
|
|
6790
|
+
}, [
|
|
6791
|
+
o("path", { d: "M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z" }),
|
|
6792
|
+
o("path", { d: "M14 2v6h6" })
|
|
6793
|
+
])
|
|
6794
|
+
], -1)),
|
|
6795
|
+
o("span", ho, [
|
|
6796
|
+
o("span", mo, v(L.name), 1),
|
|
6797
|
+
s.formatAttachmentSize(L.size_bytes) ? (c(), d("span", fo, v(s.formatAttachmentSize(
|
|
6798
|
+
L.size_bytes
|
|
6799
|
+
)), 1)) : w("", !0)
|
|
6800
|
+
])
|
|
6801
|
+
])),
|
|
6802
|
+
o("button", {
|
|
6803
|
+
type: "button",
|
|
6804
|
+
class: "wm-attached__remove",
|
|
6805
|
+
"aria-label": s.t("attachment.remove"),
|
|
6806
|
+
onClick: (Q) => s.removePendingAttachment(K)
|
|
6807
|
+
}, [...t[12] || (t[12] = [
|
|
6808
|
+
o("svg", {
|
|
6809
|
+
width: "10",
|
|
6810
|
+
height: "10",
|
|
6811
|
+
viewBox: "0 0 24 24",
|
|
6812
|
+
fill: "none",
|
|
6813
|
+
stroke: "currentColor",
|
|
6814
|
+
"stroke-width": "2.4",
|
|
6815
|
+
"stroke-linecap": "round",
|
|
6816
|
+
"stroke-linejoin": "round",
|
|
6817
|
+
"aria-hidden": "true"
|
|
6818
|
+
}, [
|
|
6819
|
+
o("path", { d: "M18 6L6 18M6 6l12 12" })
|
|
6820
|
+
], -1)
|
|
6821
|
+
])], 8, _o)
|
|
6822
|
+
]))), 128))
|
|
6823
|
+
])) : w("", !0),
|
|
6824
|
+
s.actionInFlight ? w("", !0) : (c(), U(M, {
|
|
6825
|
+
key: 3,
|
|
6767
6826
|
ref: "composer",
|
|
6768
6827
|
modelValue: a.draft,
|
|
6769
6828
|
"onUpdate:modelValue": t[2] || (t[2] = (L) => a.draft = L),
|
|
@@ -6785,68 +6844,14 @@ function po(e, t, n, r, a, s) {
|
|
|
6785
6844
|
onClose: t[3] || (t[3] = (L) => a.moreOpen = !1),
|
|
6786
6845
|
onSoundToggle: e.onSoundToggle,
|
|
6787
6846
|
onAction: s.onMoreAction
|
|
6788
|
-
}, null, 8, ["can-rename", "can-export", "sound-enabled", "status-url", "help-url", "onSoundToggle", "onAction"])) :
|
|
6847
|
+
}, null, 8, ["can-rename", "can-export", "sound-enabled", "status-url", "help-url", "onSoundToggle", "onAction"])) : w("", !0),
|
|
6789
6848
|
a.renameDialogOpen && s.currentConv && !s.currentConv._draft ? (c(), U(N, {
|
|
6790
6849
|
key: 1,
|
|
6791
6850
|
"initial-value": s.currentConv.name || "",
|
|
6792
6851
|
title: s.t("rename.dialogTitle"),
|
|
6793
6852
|
onClose: t[4] || (t[4] = (L) => a.renameDialogOpen = !1),
|
|
6794
6853
|
onSubmit: s.onRenameSubmit
|
|
6795
|
-
}, null, 8, ["initial-value", "title", "onSubmit"])) :
|
|
6796
|
-
a.pendingAttachments.length ? (c(), d("div", co, [
|
|
6797
|
-
(c(!0), d(I, null, j(a.pendingAttachments, (L, K) => (c(), d("div", {
|
|
6798
|
-
key: K,
|
|
6799
|
-
class: "wm-attached__item"
|
|
6800
|
-
}, [
|
|
6801
|
-
s.isPendingImage(L) && L._previewUrl ? (c(), d("img", {
|
|
6802
|
-
key: 0,
|
|
6803
|
-
class: "wm-attached__thumb",
|
|
6804
|
-
src: L._previewUrl,
|
|
6805
|
-
alt: L.name
|
|
6806
|
-
}, null, 8, uo)) : (c(), d("div", ho, [
|
|
6807
|
-
t[11] || (t[11] = o("span", { class: "wm-attached__fileIcon" }, [
|
|
6808
|
-
o("svg", {
|
|
6809
|
-
width: "16",
|
|
6810
|
-
height: "16",
|
|
6811
|
-
viewBox: "0 0 24 24",
|
|
6812
|
-
fill: "none",
|
|
6813
|
-
stroke: "currentColor",
|
|
6814
|
-
"stroke-width": "1.7",
|
|
6815
|
-
"stroke-linecap": "round",
|
|
6816
|
-
"stroke-linejoin": "round",
|
|
6817
|
-
"aria-hidden": "true"
|
|
6818
|
-
}, [
|
|
6819
|
-
o("path", { d: "M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z" }),
|
|
6820
|
-
o("path", { d: "M14 2v6h6" })
|
|
6821
|
-
])
|
|
6822
|
-
], -1)),
|
|
6823
|
-
o("span", mo, [
|
|
6824
|
-
o("span", fo, v(L.name), 1),
|
|
6825
|
-
s.formatAttachmentSize(L.size_bytes) ? (c(), d("span", _o, v(s.formatAttachmentSize(L.size_bytes)), 1)) : b("", !0)
|
|
6826
|
-
])
|
|
6827
|
-
])),
|
|
6828
|
-
o("button", {
|
|
6829
|
-
type: "button",
|
|
6830
|
-
class: "wm-attached__remove",
|
|
6831
|
-
"aria-label": s.t("attachment.remove"),
|
|
6832
|
-
onClick: (Q) => s.removePendingAttachment(K)
|
|
6833
|
-
}, [...t[12] || (t[12] = [
|
|
6834
|
-
o("svg", {
|
|
6835
|
-
width: "10",
|
|
6836
|
-
height: "10",
|
|
6837
|
-
viewBox: "0 0 24 24",
|
|
6838
|
-
fill: "none",
|
|
6839
|
-
stroke: "currentColor",
|
|
6840
|
-
"stroke-width": "2.4",
|
|
6841
|
-
"stroke-linecap": "round",
|
|
6842
|
-
"stroke-linejoin": "round",
|
|
6843
|
-
"aria-hidden": "true"
|
|
6844
|
-
}, [
|
|
6845
|
-
o("path", { d: "M18 6L6 18M6 6l12 12" })
|
|
6846
|
-
], -1)
|
|
6847
|
-
])], 8, go)
|
|
6848
|
-
]))), 128))
|
|
6849
|
-
])) : b("", !0)
|
|
6854
|
+
}, null, 8, ["initial-value", "title", "onSubmit"])) : w("", !0)
|
|
6850
6855
|
], 64)) : (c(), U(k, {
|
|
6851
6856
|
key: 2,
|
|
6852
6857
|
title: s.widgetTitle,
|
|
@@ -6871,58 +6876,58 @@ function po(e, t, n, r, a, s) {
|
|
|
6871
6876
|
onClose: t[5] || (t[5] = (L) => a.moreOpen = !1),
|
|
6872
6877
|
onSoundToggle: e.onSoundToggle,
|
|
6873
6878
|
onAction: s.onMoreAction
|
|
6874
|
-
}, null, 8, ["sound-enabled", "status-url", "help-url", "onSoundToggle", "onAction"])) :
|
|
6879
|
+
}, null, 8, ["sound-enabled", "status-url", "help-url", "onSoundToggle", "onAction"])) : w("", !0)
|
|
6875
6880
|
], 64))
|
|
6876
|
-
], 6)) :
|
|
6881
|
+
], 6)) : w("", !0)
|
|
6877
6882
|
], 6);
|
|
6878
6883
|
}
|
|
6879
|
-
const
|
|
6884
|
+
const yo = /* @__PURE__ */ P(Xa, [["render", go], ["__scopeId", "data-v-b87f85e6"]]), wo = "0.5.63";
|
|
6880
6885
|
export {
|
|
6881
6886
|
oe as AIAvatar,
|
|
6882
6887
|
be as AVATAR_COLORS,
|
|
6883
6888
|
As as ActionResult,
|
|
6884
|
-
|
|
6889
|
+
Di as ApprovalCard,
|
|
6885
6890
|
Es as ArtifactFormResponse,
|
|
6886
6891
|
Ks as ArtifactInfoCard,
|
|
6887
6892
|
ur as ArtifactRenderer,
|
|
6888
6893
|
or as ArtifactTicket,
|
|
6889
6894
|
Cr as AttachmentPreview,
|
|
6890
6895
|
Tr as Bubble,
|
|
6891
|
-
|
|
6896
|
+
Ci as Composer,
|
|
6892
6897
|
it as DEFAULT_BASE_URL,
|
|
6893
6898
|
ue as DEFAULT_LANGUAGE,
|
|
6894
|
-
|
|
6895
|
-
|
|
6899
|
+
Aa as Feedback,
|
|
6900
|
+
da as FormCard,
|
|
6896
6901
|
_n as Header,
|
|
6897
6902
|
ve as HumanAvatar,
|
|
6898
6903
|
qt as Launcher,
|
|
6899
6904
|
Oe as MEDIA_RECORDER_SUPPORTED,
|
|
6900
|
-
|
|
6901
|
-
|
|
6902
|
-
|
|
6905
|
+
ri as MessageList,
|
|
6906
|
+
yo as Messenger,
|
|
6907
|
+
Na as MoreMenu,
|
|
6903
6908
|
Jn as Onboarding,
|
|
6904
6909
|
pe as SCREEN_CAPTURE_SUPPORTED,
|
|
6905
6910
|
ut as SUPPORTED_LANGUAGES,
|
|
6906
|
-
|
|
6911
|
+
Ti as SuggestionChips,
|
|
6907
6912
|
tn as TeamAvatars,
|
|
6908
6913
|
Lr as Typing,
|
|
6909
|
-
|
|
6914
|
+
wo as VERSION,
|
|
6910
6915
|
Me as avatarColor,
|
|
6911
6916
|
Te as avatarInitials,
|
|
6912
|
-
|
|
6917
|
+
ai as captureScreenshotFile,
|
|
6913
6918
|
H as colors,
|
|
6914
6919
|
st as createStore,
|
|
6915
6920
|
F as createTranslator,
|
|
6916
6921
|
Ze as createTransport,
|
|
6917
6922
|
ne as dateLocale,
|
|
6918
|
-
|
|
6923
|
+
yo as default,
|
|
6919
6924
|
Ce as formatTime,
|
|
6920
|
-
|
|
6921
|
-
|
|
6925
|
+
vo as guessAttachmentKind,
|
|
6926
|
+
ii as pickRecorderMime,
|
|
6922
6927
|
qe as renderInlineMarkdown,
|
|
6923
6928
|
ft as renderMarkdown,
|
|
6924
6929
|
xe as resolveLanguage,
|
|
6925
|
-
|
|
6930
|
+
li as startScreenRecording,
|
|
6926
6931
|
rt as tokensCss,
|
|
6927
6932
|
nt as uuid,
|
|
6928
6933
|
nt as v4
|