@eka-care/medassist-widget 0.1.119-dev.2 → 0.1.119
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/medassist-widget.js +11 -5
- package/package.json +1 -1
package/dist/medassist-widget.js
CHANGED
|
@@ -11435,11 +11435,14 @@ function Sf({
|
|
|
11435
11435
|
"data-collapsed": o,
|
|
11436
11436
|
className: P(
|
|
11437
11437
|
"flex flex-col shrink-0 h-full overflow-hidden transition-[width] duration-200",
|
|
11438
|
+
// Opaque surface that follows the theme (black in dark / white in light).
|
|
11439
|
+
// Was hardcoded white, which made the foreground text unreadable on a
|
|
11440
|
+
// dark or background-image theme.
|
|
11441
|
+
"bg-elicitationBg",
|
|
11438
11442
|
o ? "w-[72px]" : "w-[280px]"
|
|
11439
11443
|
),
|
|
11440
11444
|
style: {
|
|
11441
|
-
borderRight: "1px solid var(--
|
|
11442
|
-
backgroundColor: "var(--white-1000)",
|
|
11445
|
+
borderRight: "1px solid hsl(var(--border-subtle))",
|
|
11443
11446
|
backgroundImage: "linear-gradient(hsl(var(--primary) / 0.02), hsl(var(--primary) / 0.02))"
|
|
11444
11447
|
},
|
|
11445
11448
|
children: [
|
|
@@ -11447,7 +11450,7 @@ function Sf({
|
|
|
11447
11450
|
"div",
|
|
11448
11451
|
{
|
|
11449
11452
|
className: "flex flex-col gap-2 p-4 shrink-0",
|
|
11450
|
-
style: { borderBottom: "1px solid var(--
|
|
11453
|
+
style: { borderBottom: "1px solid hsl(var(--border-subtle))" },
|
|
11451
11454
|
children: /* @__PURE__ */ a(
|
|
11452
11455
|
"div",
|
|
11453
11456
|
{
|
|
@@ -11479,7 +11482,7 @@ function Sf({
|
|
|
11479
11482
|
"div",
|
|
11480
11483
|
{
|
|
11481
11484
|
className: "flex flex-col gap-2 p-4 shrink-0",
|
|
11482
|
-
style: o ? void 0 : { borderBottom: "1px solid var(--
|
|
11485
|
+
style: o ? void 0 : { borderBottom: "1px solid hsl(var(--border-subtle))" },
|
|
11483
11486
|
children: o ? /* @__PURE__ */ a(
|
|
11484
11487
|
"button",
|
|
11485
11488
|
{
|
|
@@ -11578,7 +11581,10 @@ function Cf({
|
|
|
11578
11581
|
{
|
|
11579
11582
|
className: P(
|
|
11580
11583
|
"absolute top-0 bottom-0 right-0 z-[61] w-[280px] flex flex-col",
|
|
11581
|
-
|
|
11584
|
+
// Opaque surface (black in dark / white in light) — `bg-background` is
|
|
11585
|
+
// transparent under a background-image theme, which let the chat bleed
|
|
11586
|
+
// through the drawer.
|
|
11587
|
+
"bg-elicitationBg transition-transform duration-200",
|
|
11582
11588
|
e ? "translate-x-0" : "translate-x-full"
|
|
11583
11589
|
),
|
|
11584
11590
|
style: { borderLeft: "1px solid hsl(var(--border-subtle))" },
|