qt-ui-kit 1.0.78 → 1.0.79
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 +10 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -1
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -16553,7 +16553,16 @@ function EventCard({
|
|
|
16553
16553
|
eventType == "message" /* MESSAGE */ ? "bg-qtneutral-200" : "bg-white py-4 pl-4 pr-2"
|
|
16554
16554
|
),
|
|
16555
16555
|
children: [
|
|
16556
|
-
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
16556
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
16557
|
+
"div",
|
|
16558
|
+
{
|
|
16559
|
+
className: (0, import_clsx8.default)(
|
|
16560
|
+
eventType == "message" /* MESSAGE */ ? "flex-col-reverse" : "flex-col",
|
|
16561
|
+
"overflow-y-auto flex gap-4 w-full"
|
|
16562
|
+
),
|
|
16563
|
+
children: getEventBody()
|
|
16564
|
+
}
|
|
16565
|
+
),
|
|
16557
16566
|
eventType == "message" /* MESSAGE */ && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
16558
16567
|
IntelCard,
|
|
16559
16568
|
{
|