@clikvn/agent-widget-embedded 0.0.2-dev → 0.0.3-dev
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/package.json
CHANGED
|
@@ -33,7 +33,7 @@ export const Chat: FC<PropsType> = ({ id, agentId, initialMessages = [] }) => {
|
|
|
33
33
|
|
|
34
34
|
return (
|
|
35
35
|
<>
|
|
36
|
-
<div className="flex flex-col min-w-0 h-
|
|
36
|
+
<div className="flex flex-col min-w-0 h-full bg-background">
|
|
37
37
|
<div
|
|
38
38
|
ref={messagesContainerRef}
|
|
39
39
|
className="flex flex-col min-w-0 gap-6 flex-1 overflow-y-scroll pt-4"
|
|
@@ -20,7 +20,7 @@ export type AgentWidgetType = {
|
|
|
20
20
|
};
|
|
21
21
|
const AgentWidget: FC<AgentWidgetType> = (props: AgentWidgetType) => {
|
|
22
22
|
return (
|
|
23
|
-
<div className="w-full h-full
|
|
23
|
+
<div className="w-full h-full">
|
|
24
24
|
<style>{styles}</style>
|
|
25
25
|
<style>{commonStyles}</style>
|
|
26
26
|
<ConfigurationProvider
|