@brainfish-ai/components 0.17.0 → 0.17.2
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/components/ui/textarea.d.ts +4 -1
- package/dist/esm/chunks/{ChatSearch.B4QTqo-0.js → ChatSearch.D_vAxj0b.js} +2 -2
- package/dist/esm/chunks/{ChatSearch.B4QTqo-0.js.map → ChatSearch.D_vAxj0b.js.map} +1 -1
- package/dist/esm/chunks/{FormattedMessage.BcAkzCZt.js → FormattedMessage.C2OwhDXi.js} +24 -3
- package/dist/esm/chunks/FormattedMessage.C2OwhDXi.js.map +1 -0
- package/dist/esm/components/chat-search.js +1 -1
- package/dist/esm/components/convos.js +1 -1
- package/dist/esm/components/markdown.js +1 -1
- package/dist/esm/components/ui/textarea.js +26 -12
- package/dist/esm/components/ui/textarea.js.map +1 -1
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.js +112 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +33 -1
- package/dist/stats.html +1 -1
- package/dist/textarea.d.ts +5 -1
- package/package.json +2 -1
- package/dist/esm/chunks/FormattedMessage.BcAkzCZt.js.map +0 -1
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
|
|
2
|
+
export interface TextareaProps extends React.ComponentProps<"textarea"> {
|
|
3
|
+
autoResize?: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare const Textarea: React.ForwardRefExoticComponent<Omit<TextareaProps, "ref"> & React.RefAttributes<HTMLTextAreaElement>>;
|
|
3
6
|
export { Textarea };
|
|
@@ -5,7 +5,7 @@ import remarkGfm from 'remark-gfm';
|
|
|
5
5
|
import { TooltipProvider, Tooltip, TooltipTrigger, TooltipContent } from '../components/ui/tooltip.js';
|
|
6
6
|
import { Button } from '../components/ui/button.js';
|
|
7
7
|
import { XCircle, Check, Copy, CaretDown, ArrowSquareOut, CaretRight, ArrowsVertical, ArrowDown, Globe, LockSimple, MagnifyingGlass, X, Image, ArrowRight, ArrowLeft, ArrowsInSimple, ArrowsOutSimple } from '@phosphor-icons/react';
|
|
8
|
-
import { F as FormattedMessage, c as addPopupWidgetUtm, M as MemoizedReactMarkdown } from './FormattedMessage.
|
|
8
|
+
import { F as FormattedMessage, c as addPopupWidgetUtm, M as MemoizedReactMarkdown } from './FormattedMessage.C2OwhDXi.js';
|
|
9
9
|
import { appendErrors, useForm, Controller } from 'react-hook-form';
|
|
10
10
|
import { validateFieldsNatively, toNestErrors } from '@hookform/resolvers';
|
|
11
11
|
import require$$0 from 'ajv';
|
|
@@ -6478,4 +6478,4 @@ const ChatSearch = forwardRef(({ featureFlags, ...props }, ref) => /* @__PURE__
|
|
|
6478
6478
|
ChatSearch.displayName = "ChatSearch";
|
|
6479
6479
|
|
|
6480
6480
|
export { ChatSearch as C, ChatSearchProvider as a, useIsChatSearchDirty as b, useChatSearch as u };
|
|
6481
|
-
//# sourceMappingURL=ChatSearch.
|
|
6481
|
+
//# sourceMappingURL=ChatSearch.D_vAxj0b.js.map
|