nucleus-core-ts 0.9.169 → 0.9.170
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.
|
@@ -21,11 +21,11 @@ export declare const chatPanelTheme: {
|
|
|
21
21
|
readonly badge: "ml-2 inline-flex h-5 min-w-5 items-center justify-center rounded-full bg-emerald-500 px-1.5 text-[11px] font-semibold text-white";
|
|
22
22
|
};
|
|
23
23
|
readonly thread: {
|
|
24
|
-
readonly base: "flex flex-1 flex-col";
|
|
24
|
+
readonly base: "flex min-h-0 flex-1 flex-col";
|
|
25
25
|
readonly header: "flex items-center gap-3 border-b border-zinc-200 px-5 py-3 dark:border-zinc-800";
|
|
26
26
|
readonly headerTitle: "text-sm font-semibold";
|
|
27
27
|
readonly headerSubtitle: "text-xs text-zinc-400";
|
|
28
|
-
readonly messages: "flex flex-1 flex-col gap-2 overflow-y-auto px-5 py-4";
|
|
28
|
+
readonly messages: "flex min-h-0 flex-1 flex-col gap-2 overflow-y-auto px-5 py-4";
|
|
29
29
|
readonly loadMore: "mx-auto mb-2 rounded-full border border-zinc-200 px-3 py-1 text-xs text-zinc-500 transition hover:bg-zinc-50 dark:border-zinc-800 dark:hover:bg-zinc-900";
|
|
30
30
|
readonly empty: "flex flex-1 items-center justify-center text-sm text-zinc-400";
|
|
31
31
|
readonly placeholder: "flex flex-1 items-center justify-center px-6 text-center text-sm text-zinc-400";
|
|
@@ -20,11 +20,11 @@ export const chatPanelTheme = {
|
|
|
20
20
|
badge: 'ml-2 inline-flex h-5 min-w-5 items-center justify-center rounded-full bg-emerald-500 px-1.5 text-[11px] font-semibold text-white'
|
|
21
21
|
},
|
|
22
22
|
thread: {
|
|
23
|
-
base: 'flex flex-1 flex-col',
|
|
23
|
+
base: 'flex min-h-0 flex-1 flex-col',
|
|
24
24
|
header: 'flex items-center gap-3 border-b border-zinc-200 px-5 py-3 dark:border-zinc-800',
|
|
25
25
|
headerTitle: 'text-sm font-semibold',
|
|
26
26
|
headerSubtitle: 'text-xs text-zinc-400',
|
|
27
|
-
messages: 'flex flex-1 flex-col gap-2 overflow-y-auto px-5 py-4',
|
|
27
|
+
messages: 'flex min-h-0 flex-1 flex-col gap-2 overflow-y-auto px-5 py-4',
|
|
28
28
|
loadMore: 'mx-auto mb-2 rounded-full border border-zinc-200 px-3 py-1 text-xs text-zinc-500 transition hover:bg-zinc-50 dark:border-zinc-800 dark:hover:bg-zinc-900',
|
|
29
29
|
empty: 'flex flex-1 items-center justify-center text-sm text-zinc-400',
|
|
30
30
|
placeholder: 'flex flex-1 items-center justify-center px-6 text-center text-sm text-zinc-400'
|