@copilotz/chat-ui 0.2.0 → 0.2.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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5373,7 +5373,7 @@ var ChatUI = ({
|
|
|
5373
5373
|
children: state.showSidebar && /* @__PURE__ */ jsx25(
|
|
5374
5374
|
"div",
|
|
5375
5375
|
{
|
|
5376
|
-
className: "
|
|
5376
|
+
className: "h-full overflow-hidden border-l bg-background animate-in slide-in-from-right-4 duration-300",
|
|
5377
5377
|
style: { width: config.customComponent.panelWidth ?? 320 },
|
|
5378
5378
|
children: renderCustomComponent()
|
|
5379
5379
|
}
|
|
@@ -5396,7 +5396,7 @@ var ChatUI = ({
|
|
|
5396
5396
|
{
|
|
5397
5397
|
className: `absolute top-0 right-0 h-full w-full bg-background transform-gpu transition-transform duration-200 ease-out ${isCustomVisible ? "translate-x-0" : "translate-x-full"}`,
|
|
5398
5398
|
style: { willChange: "transform" },
|
|
5399
|
-
children: /* @__PURE__ */ jsx25("div", { className: "h-full
|
|
5399
|
+
children: /* @__PURE__ */ jsx25("div", { className: "h-full overflow-hidden", children: renderCustomComponent() })
|
|
5400
5400
|
}
|
|
5401
5401
|
)
|
|
5402
5402
|
] }),
|