bibot 1.0.70 → 1.0.72

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.
@@ -1,3 +1,3 @@
1
1
  import React from 'react';
2
- import { AvatarProps } from '../types/coreInterfaces';
2
+ import { AvatarProps } from '../../types/coreInterfaces';
3
3
  export declare const Avatar: React.FC<AvatarProps>;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { ChatBubbleContainerProps } from '../../types';
3
+ declare const ChatBubbleContainer: ({ messages, isLoading, showPredefinedQuestions, predefinedQuestions, userInput, handleUserInput, handleKeyPress, sendInputInquiry, handlePredefinedQuestionSelect, chatIsOpen, toggleChat, chatBubbleConfig, isGreetingVisible, greeting, handleCloseGreeting, isOnline, messageEndRef }: ChatBubbleContainerProps) => React.JSX.Element;
4
+ export default ChatBubbleContainer;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { ChatHeaderProps } from '../../types';
3
+ declare const ChatHeader: ({ chatBubbleConfig, isLoading, isOnline }: ChatHeaderProps) => React.JSX.Element;
4
+ export default ChatHeader;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { ChatWindowProps } from '../../types';
3
+ declare const ChatWindow: ({ chatBubbleConfig, messages, isLoading, aiFollowUpQs, showPredefinedQuestions, predefinedQuestions, userInput, handleUserInput, handleKeyPress, sendInputInquiry, handlePredefinedQuestionSelect, isOnline, messageEndRef }: ChatWindowProps) => React.JSX.Element;
4
+ export default ChatWindow;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { GreetingMessageProps } from '../../types';
3
+ declare const GreetingMessage: ({ greeting, chatBubbleConfig, handleCloseGreeting }: GreetingMessageProps) => React.JSX.Element;
4
+ export default GreetingMessage;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { iconColor } from '../types/coreInterfaces';
2
+ import { iconColor } from '../../types/coreInterfaces';
3
3
  declare function SendMessageIcon({ color }: iconColor): React.JSX.Element;
4
4
  declare function DefaultBotProfile(): React.JSX.Element;
5
5
  declare function ChatIcon(): React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { InputAreaProps } from '../../types';
3
+ declare const InputArea: ({ userInput, handleUserInput, handleKeyPress, sendInputInquiry, isLoading, chatBubbleConfig }: InputAreaProps) => React.JSX.Element;
4
+ export default InputArea;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ interface MarkdownViewProps {
3
+ content: string;
4
+ }
5
+ declare const MarkdownView: React.FC<MarkdownViewProps>;
6
+ export default MarkdownView;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { MessageListProps } from '../../types';
3
+ declare const MessageList: ({ messages, chatBubbleConfig }: MessageListProps) => React.JSX.Element;
4
+ export default MessageList;
@@ -1,4 +1,4 @@
1
1
  import * as React from 'react';
2
- import { PredefinedQuestionsProps } from '../types/coreInterfaces';
2
+ import { PredefinedQuestionsProps } from '../../types/coreInterfaces';
3
3
  declare const AiFollowUps: ({ questions, onSelect, chatBubbleConfig }: PredefinedQuestionsProps) => React.JSX.Element;
4
4
  export { AiFollowUps };
@@ -1,4 +1,4 @@
1
1
  import * as React from 'react';
2
- import { PredefinedQuestionsProps } from '../types/coreInterfaces';
2
+ import { PredefinedQuestionsProps } from '../../types/coreInterfaces';
3
3
  declare const PredefinedQuestions: ({ questions, onSelect, chatBubbleConfig }: PredefinedQuestionsProps) => React.JSX.Element;
4
4
  export { PredefinedQuestions };