teodor-new-chat-ui 3.0.169 → 3.0.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.
@@ -2,7 +2,7 @@
2
2
  * Chat App - Complete chat application with sidebar layout
3
3
  * Combines all chat components into a ready-to-use chat interface
4
4
  */
5
- import { ChatProviderProps } from './ChatProvider';
5
+ import { ChatProviderProps } from '@/context/ChatProvider';
6
6
  export interface ChatAppProps extends Omit<ChatProviderProps, 'children'> {
7
7
  layout?: 'sidebar' | 'fullscreen' | 'tabs';
8
8
  layoutSize?: 'phone' | 'tablet' | 'desktop' | 'half-screen';
@@ -21,7 +21,7 @@ export interface SimpleChatProps {
21
21
  onError?: (error: string) => void;
22
22
  }
23
23
  export declare function SimpleChat({ apiConfig, className, onError }: SimpleChatProps): import("react/jsx-runtime").JSX.Element;
24
- export * from './ChatProvider';
24
+ export * from '@/context/ChatProvider';
25
25
  export * from './ChatInterface';
26
26
  export * from './ThreadManager';
27
27
  export * from './MessageComponent';