@2uinc/frontend-component-xpert-chatbot 1.33.1 → 1.33.3
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/lib/index.min.js +39 -16
- package/package.json +1 -1
package/dist/lib/index.min.js
CHANGED
@@ -4286,6 +4286,7 @@ function Ni({
|
|
4286
4286
|
maxLength: "150",
|
4287
4287
|
onKeyDown: c,
|
4288
4288
|
style: {
|
4289
|
+
margin: "0",
|
4289
4290
|
borderRadius: "1rem",
|
4290
4291
|
boxSizing: "border-box",
|
4291
4292
|
fontFamily: "inherit",
|
@@ -21448,22 +21449,44 @@ function jT() {
|
|
21448
21449
|
"aria-labelledby": "delete-conversation-modal-title",
|
21449
21450
|
className: "xpert_chatbot__delete-conversation-modal",
|
21450
21451
|
role: "dialog",
|
21451
|
-
children: /* @__PURE__ */ v.jsxs(
|
21452
|
-
|
21453
|
-
|
21454
|
-
|
21455
|
-
|
21456
|
-
|
21457
|
-
|
21458
|
-
|
21459
|
-
|
21460
|
-
|
21461
|
-
|
21462
|
-
|
21463
|
-
|
21464
|
-
|
21465
|
-
|
21466
|
-
|
21452
|
+
children: /* @__PURE__ */ v.jsxs(
|
21453
|
+
"div",
|
21454
|
+
{
|
21455
|
+
className: "xpert_chatbot__delete-conversation-modal-container",
|
21456
|
+
style: { borderColor: r },
|
21457
|
+
children: [
|
21458
|
+
/* @__PURE__ */ v.jsx(
|
21459
|
+
"h2",
|
21460
|
+
{
|
21461
|
+
id: "delete-conversation-modal-title",
|
21462
|
+
className: "xpert_chatbot__delete-conversation-modal-h2",
|
21463
|
+
style: { color: r },
|
21464
|
+
children: "Delete chat?"
|
21465
|
+
}
|
21466
|
+
),
|
21467
|
+
/* @__PURE__ */ v.jsx("p", { className: "xpert_chatbot__delete-conversation-modal-p", children: "Are you sure you want to delete your conversation?" }),
|
21468
|
+
/* @__PURE__ */ v.jsx("p", { className: "xpert_chatbot__delete-conversation-modal-p", children: "This action cannot be undone." }),
|
21469
|
+
/* @__PURE__ */ v.jsxs("div", { className: "xpert_chatbot__delete-conversation-modal-buttons-container", children: [
|
21470
|
+
/* @__PURE__ */ v.jsx(
|
21471
|
+
"button",
|
21472
|
+
{
|
21473
|
+
className: "xpert_chatbot__delete-conversation-modal-button",
|
21474
|
+
onClick: () => n(!1),
|
21475
|
+
children: "Cancel"
|
21476
|
+
}
|
21477
|
+
),
|
21478
|
+
/* @__PURE__ */ v.jsx(
|
21479
|
+
"button",
|
21480
|
+
{
|
21481
|
+
className: "xpert_chatbot__delete-conversation-modal-button danger",
|
21482
|
+
onClick: t,
|
21483
|
+
children: "Delete"
|
21484
|
+
}
|
21485
|
+
)
|
21486
|
+
] })
|
21487
|
+
]
|
21488
|
+
}
|
21489
|
+
)
|
21467
21490
|
}
|
21468
21491
|
) : null;
|
21469
21492
|
}
|