@wallavi/widget 1.0.0 → 1.0.1
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/index.js +9 -10
- package/dist/index.mjs +9 -10
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -231,9 +231,9 @@ function useChat({
|
|
|
231
231
|
);
|
|
232
232
|
return { messages, input, setInput, streaming, threadId, send, reset };
|
|
233
233
|
}
|
|
234
|
-
var Avatar = ({
|
|
235
|
-
var AvatarImage = AvatarPrimitive__namespace.Image;
|
|
236
|
-
var AvatarFallback = ({
|
|
234
|
+
var Avatar = ({ style, ...p }) => /* @__PURE__ */ jsxRuntime.jsx(AvatarPrimitive__namespace.Root, { style: { position: "relative", display: "flex", flexShrink: 0, overflow: "hidden", borderRadius: "9999px", ...style }, ...p });
|
|
235
|
+
var AvatarImage = ({ style, ...p }) => /* @__PURE__ */ jsxRuntime.jsx(AvatarPrimitive__namespace.Image, { style: { position: "absolute", inset: 0, width: "100%", height: "100%", objectFit: "cover", ...style }, ...p });
|
|
236
|
+
var AvatarFallback = ({ style, ...p }) => /* @__PURE__ */ jsxRuntime.jsx(AvatarPrimitive__namespace.Fallback, { style: { display: "flex", width: "100%", height: "100%", alignItems: "center", justifyContent: "center", borderRadius: "9999px", ...style }, ...p });
|
|
237
237
|
function ChatHeader({
|
|
238
238
|
title,
|
|
239
239
|
profilePicture,
|
|
@@ -249,11 +249,10 @@ function ChatHeader({
|
|
|
249
249
|
style: { backgroundColor: headerBg, color: headerText },
|
|
250
250
|
children: [
|
|
251
251
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2.5 min-w-0", children: [
|
|
252
|
-
/* @__PURE__ */ jsxRuntime.jsx(Avatar, {
|
|
252
|
+
/* @__PURE__ */ jsxRuntime.jsx(Avatar, { style: { width: 32, height: 32, border: `2px solid ${headerText}30` }, children: profilePicture ? /* @__PURE__ */ jsxRuntime.jsx(AvatarImage, { src: profilePicture, alt: title }) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
253
253
|
AvatarFallback,
|
|
254
254
|
{
|
|
255
|
-
|
|
256
|
-
style: { backgroundColor: `${headerText}20`, color: headerText },
|
|
255
|
+
style: { backgroundColor: `${headerText}20`, color: headerText, fontSize: 11, fontWeight: 700 },
|
|
257
256
|
children: title.slice(0, 2).toUpperCase()
|
|
258
257
|
}
|
|
259
258
|
) }),
|
|
@@ -286,9 +285,9 @@ function ChatHeader({
|
|
|
286
285
|
}
|
|
287
286
|
);
|
|
288
287
|
}
|
|
289
|
-
var Avatar2 = ({
|
|
290
|
-
var AvatarImage2 = AvatarPrimitive__namespace.Image;
|
|
291
|
-
var AvatarFallback2 = ({
|
|
288
|
+
var Avatar2 = ({ style, ...p }) => /* @__PURE__ */ jsxRuntime.jsx(AvatarPrimitive__namespace.Root, { style: { position: "relative", display: "flex", flexShrink: 0, overflow: "hidden", borderRadius: "9999px", ...style }, ...p });
|
|
289
|
+
var AvatarImage2 = ({ style, ...p }) => /* @__PURE__ */ jsxRuntime.jsx(AvatarPrimitive__namespace.Image, { style: { position: "absolute", inset: 0, width: "100%", height: "100%", objectFit: "cover", ...style }, ...p });
|
|
290
|
+
var AvatarFallback2 = ({ style, ...p }) => /* @__PURE__ */ jsxRuntime.jsx(AvatarPrimitive__namespace.Fallback, { style: { display: "flex", width: "100%", height: "100%", alignItems: "center", justifyContent: "center", borderRadius: "9999px", ...style }, ...p });
|
|
292
291
|
var cn = (...inputs) => tailwindMerge.twMerge(clsx.clsx(inputs));
|
|
293
292
|
var ReactMarkdown = ReactMarkdownLib__default.default;
|
|
294
293
|
function ThinkingDots() {
|
|
@@ -384,7 +383,7 @@ function MessageBubble({
|
|
|
384
383
|
const visibleToolParts = showThinking ? toolParts : [];
|
|
385
384
|
const isEmpty = !textPart?.text && visibleToolParts.length === 0;
|
|
386
385
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex gap-2.5 items-start", children: [
|
|
387
|
-
/* @__PURE__ */ jsxRuntime.jsx(Avatar2, {
|
|
386
|
+
/* @__PURE__ */ jsxRuntime.jsx(Avatar2, { style: { width: 28, height: 28, marginTop: 2, border: "1px solid rgba(0,0,0,0.08)" }, children: profilePicture ? /* @__PURE__ */ jsxRuntime.jsx(AvatarImage2, { src: profilePicture, alt: agentName }) : /* @__PURE__ */ jsxRuntime.jsx(AvatarFallback2, { style: { fontSize: 10, fontWeight: 600, backgroundColor: "var(--primary, #19191c)", color: "var(--primary-foreground, #fff)" }, children: agentName.slice(0, 2).toUpperCase() }) }),
|
|
388
387
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-1.5 min-w-0 max-w-[82%]", children: [
|
|
389
388
|
showThinking && reasoningPart && /* @__PURE__ */ jsxRuntime.jsx(ReasoningBlock, { text: reasoningPart.text }),
|
|
390
389
|
visibleToolParts.map((t) => /* @__PURE__ */ jsxRuntime.jsx(ToolCallBadge, { part: t }, t.toolCallId)),
|
package/dist/index.mjs
CHANGED
|
@@ -205,9 +205,9 @@ function useChat({
|
|
|
205
205
|
);
|
|
206
206
|
return { messages, input, setInput, streaming, threadId, send, reset };
|
|
207
207
|
}
|
|
208
|
-
var Avatar = ({
|
|
209
|
-
var AvatarImage = AvatarPrimitive.Image;
|
|
210
|
-
var AvatarFallback = ({
|
|
208
|
+
var Avatar = ({ style, ...p }) => /* @__PURE__ */ jsx(AvatarPrimitive.Root, { style: { position: "relative", display: "flex", flexShrink: 0, overflow: "hidden", borderRadius: "9999px", ...style }, ...p });
|
|
209
|
+
var AvatarImage = ({ style, ...p }) => /* @__PURE__ */ jsx(AvatarPrimitive.Image, { style: { position: "absolute", inset: 0, width: "100%", height: "100%", objectFit: "cover", ...style }, ...p });
|
|
210
|
+
var AvatarFallback = ({ style, ...p }) => /* @__PURE__ */ jsx(AvatarPrimitive.Fallback, { style: { display: "flex", width: "100%", height: "100%", alignItems: "center", justifyContent: "center", borderRadius: "9999px", ...style }, ...p });
|
|
211
211
|
function ChatHeader({
|
|
212
212
|
title,
|
|
213
213
|
profilePicture,
|
|
@@ -223,11 +223,10 @@ function ChatHeader({
|
|
|
223
223
|
style: { backgroundColor: headerBg, color: headerText },
|
|
224
224
|
children: [
|
|
225
225
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2.5 min-w-0", children: [
|
|
226
|
-
/* @__PURE__ */ jsx(Avatar, {
|
|
226
|
+
/* @__PURE__ */ jsx(Avatar, { style: { width: 32, height: 32, border: `2px solid ${headerText}30` }, children: profilePicture ? /* @__PURE__ */ jsx(AvatarImage, { src: profilePicture, alt: title }) : /* @__PURE__ */ jsx(
|
|
227
227
|
AvatarFallback,
|
|
228
228
|
{
|
|
229
|
-
|
|
230
|
-
style: { backgroundColor: `${headerText}20`, color: headerText },
|
|
229
|
+
style: { backgroundColor: `${headerText}20`, color: headerText, fontSize: 11, fontWeight: 700 },
|
|
231
230
|
children: title.slice(0, 2).toUpperCase()
|
|
232
231
|
}
|
|
233
232
|
) }),
|
|
@@ -260,9 +259,9 @@ function ChatHeader({
|
|
|
260
259
|
}
|
|
261
260
|
);
|
|
262
261
|
}
|
|
263
|
-
var Avatar2 = ({
|
|
264
|
-
var AvatarImage2 = AvatarPrimitive.Image;
|
|
265
|
-
var AvatarFallback2 = ({
|
|
262
|
+
var Avatar2 = ({ style, ...p }) => /* @__PURE__ */ jsx(AvatarPrimitive.Root, { style: { position: "relative", display: "flex", flexShrink: 0, overflow: "hidden", borderRadius: "9999px", ...style }, ...p });
|
|
263
|
+
var AvatarImage2 = ({ style, ...p }) => /* @__PURE__ */ jsx(AvatarPrimitive.Image, { style: { position: "absolute", inset: 0, width: "100%", height: "100%", objectFit: "cover", ...style }, ...p });
|
|
264
|
+
var AvatarFallback2 = ({ style, ...p }) => /* @__PURE__ */ jsx(AvatarPrimitive.Fallback, { style: { display: "flex", width: "100%", height: "100%", alignItems: "center", justifyContent: "center", borderRadius: "9999px", ...style }, ...p });
|
|
266
265
|
var cn = (...inputs) => twMerge(clsx(inputs));
|
|
267
266
|
var ReactMarkdown = ReactMarkdownLib;
|
|
268
267
|
function ThinkingDots() {
|
|
@@ -358,7 +357,7 @@ function MessageBubble({
|
|
|
358
357
|
const visibleToolParts = showThinking ? toolParts : [];
|
|
359
358
|
const isEmpty = !textPart?.text && visibleToolParts.length === 0;
|
|
360
359
|
return /* @__PURE__ */ jsxs("div", { className: "flex gap-2.5 items-start", children: [
|
|
361
|
-
/* @__PURE__ */ jsx(Avatar2, {
|
|
360
|
+
/* @__PURE__ */ jsx(Avatar2, { style: { width: 28, height: 28, marginTop: 2, border: "1px solid rgba(0,0,0,0.08)" }, children: profilePicture ? /* @__PURE__ */ jsx(AvatarImage2, { src: profilePicture, alt: agentName }) : /* @__PURE__ */ jsx(AvatarFallback2, { style: { fontSize: 10, fontWeight: 600, backgroundColor: "var(--primary, #19191c)", color: "var(--primary-foreground, #fff)" }, children: agentName.slice(0, 2).toUpperCase() }) }),
|
|
362
361
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-1.5 min-w-0 max-w-[82%]", children: [
|
|
363
362
|
showThinking && reasoningPart && /* @__PURE__ */ jsx(ReasoningBlock, { text: reasoningPart.text }),
|
|
364
363
|
visibleToolParts.map((t) => /* @__PURE__ */ jsx(ToolCallBadge, { part: t }, t.toolCallId)),
|
package/package.json
CHANGED