@brainfish-ai/components 0.19.4 → 0.19.6
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/convos.d.ts +4 -0
- package/dist/esm/chunks/{ChatSearch.DOH90EUx.js → ChatSearch.DzEHRqRZ.js} +3 -2
- package/dist/esm/chunks/{ChatSearch.DOH90EUx.js.map → ChatSearch.DzEHRqRZ.js.map} +1 -1
- package/dist/esm/components/chat-search.js +1 -1
- package/dist/esm/components/convos.js +5 -1
- package/dist/esm/components/convos.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/stats.html +1 -1
- package/package.json +1 -1
package/dist/convos.d.ts
CHANGED
|
@@ -95,6 +95,10 @@ declare enum DiscardReason {
|
|
|
95
95
|
OTHER = "other"
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
+
export declare const EmptyConvos: ({ children }: {
|
|
99
|
+
children: default_2.ReactNode;
|
|
100
|
+
}) => default_2.JSX.Element;
|
|
101
|
+
|
|
98
102
|
declare interface EvidenceFromContext {
|
|
99
103
|
supporting_quote?: string;
|
|
100
104
|
url?: string;
|
|
@@ -6123,7 +6123,8 @@ const ChatSearchComponent = forwardRef(
|
|
|
6123
6123
|
"div",
|
|
6124
6124
|
{
|
|
6125
6125
|
className: cn(
|
|
6126
|
-
"w-full relative
|
|
6126
|
+
"w-full relative flex flex-col justify-between @container",
|
|
6127
|
+
isSearchWidget ? "h-auto" : "h-dvh",
|
|
6127
6128
|
"md:h-auto md:p-4 md:bg-dark-100",
|
|
6128
6129
|
className
|
|
6129
6130
|
),
|
|
@@ -6341,4 +6342,4 @@ const ChatSearch = forwardRef(({ featureFlags, ...props }, ref) => /* @__PURE__
|
|
|
6341
6342
|
ChatSearch.displayName = "ChatSearch";
|
|
6342
6343
|
|
|
6343
6344
|
export { ChatSearch as C, ChatSearchProvider as a, useIsChatSearchDirty as b, useChatSearch as u };
|
|
6344
|
-
//# sourceMappingURL=ChatSearch.
|
|
6345
|
+
//# sourceMappingURL=ChatSearch.DzEHRqRZ.js.map
|