randmarcomps 1.443.0 → 1.447.0
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/randmarcomps.d.ts +2 -3
- package/dist/randmarcomps.js +29595 -29099
- package/dist/randmarcomps.umd.cjs +96 -96
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -233,11 +233,10 @@ declare interface ChatContextType {
|
|
|
233
233
|
setHasUnreads: (value: boolean) => void;
|
|
234
234
|
}
|
|
235
235
|
|
|
236
|
-
export declare function ChatLayout({
|
|
236
|
+
export declare function ChatLayout({ appID, inputRef: externalInputRef, className }: ChatLayoutProps): JSX.Element;
|
|
237
237
|
|
|
238
238
|
export declare interface ChatLayoutProps {
|
|
239
|
-
|
|
240
|
-
userEmail: string;
|
|
239
|
+
appID: string;
|
|
241
240
|
inputRef?: React.RefObject<HTMLTextAreaElement | null>;
|
|
242
241
|
className?: string;
|
|
243
242
|
initialPrompt?: string;
|