@factorialco/agent-chat 0.1.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.
@@ -0,0 +1,8 @@
1
+
2
+ interface BreathingLoaderProps {
3
+ agentName?: string;
4
+ className?: string;
5
+ }
6
+ export declare const BreathingLoader: ({ agentName, className }: BreathingLoaderProps) => import("react/jsx-runtime").JSX.Element;
7
+ export {};
8
+ //# sourceMappingURL=BreathingLoader.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BreathingLoader.d.ts","sourceRoot":"","sources":["../../src/components/BreathingLoader.tsx"],"names":[],"mappings":"AAEA,OAAO,mCAAmC,CAAA;AAE1C,UAAU,oBAAoB;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAWD,eAAO,MAAM,eAAe,GAAI,0BAA0B,oBAAoB,4CA+C7E,CAAA"}
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ import { ChatInterfaceProps } from '../types';
3
+
4
+ export declare const ChatInterface: React.FC<ChatInterfaceProps>;
5
+ //# sourceMappingURL=ChatInterface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChatInterface.d.ts","sourceRoot":"","sources":["../../src/components/ChatInterface.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAA;AAM1D,OAAO,KAAK,EAAE,kBAAkB,EAAW,MAAM,SAAS,CAAA;AAG1D,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAwKtD,CAAA"}
@@ -0,0 +1,9 @@
1
+ interface TypewriterMessageProps {
2
+ content: string;
3
+ agentName?: string;
4
+ onComplete?: () => void;
5
+ onChange?: (text: string) => void;
6
+ }
7
+ export declare const TypewriterMessage: ({ content, agentName, onComplete, onChange }: TypewriterMessageProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
9
+ //# sourceMappingURL=TypewriterMessage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TypewriterMessage.d.ts","sourceRoot":"","sources":["../../src/components/TypewriterMessage.tsx"],"names":[],"mappings":"AAGA,UAAU,sBAAsB;IAC9B,OAAO,EAAE,MAAM,CAAA;IACf,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,UAAU,CAAC,EAAE,MAAM,IAAI,CAAA;IACvB,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAA;CAClC;AAED,eAAO,MAAM,iBAAiB,GAAI,8CAA8C,sBAAsB,4CAqBrG,CAAA"}
@@ -0,0 +1,13 @@
1
+ import { default as React } from 'react';
2
+ import { VariantProps } from 'class-variance-authority';
3
+
4
+ declare const buttonVariants: (props?: ({
5
+ variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
6
+ size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
7
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
8
+ export interface ButtonComponentProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
9
+ asChild?: boolean;
10
+ }
11
+ export declare const Button: React.ForwardRefExoticComponent<ButtonComponentProps & React.RefAttributes<HTMLButtonElement>>;
12
+ export {};
13
+ //# sourceMappingURL=Button.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../src/components/ui/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAGjE,QAAA,MAAM,cAAc;;;8EA8BnB,CAAA;AAED,MAAM,WAAW,oBACf,SAAQ,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EACnD,YAAY,CAAC,OAAO,cAAc,CAAC;IACrC,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB;AAED,eAAO,MAAM,MAAM,gGAUlB,CAAA"}
@@ -0,0 +1,7 @@
1
+ interface MarkdownProps {
2
+ children: string;
3
+ className?: string;
4
+ }
5
+ export declare function Markdown({ children, className }: MarkdownProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
7
+ //# sourceMappingURL=Markdown.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Markdown.d.ts","sourceRoot":"","sources":["../../../src/components/ui/Markdown.tsx"],"names":[],"mappings":"AAMA,UAAU,aAAa;IACrB,QAAQ,EAAE,MAAM,CAAA;IAChB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,wBAAgB,QAAQ,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,EAAE,aAAa,2CA+G9D"}
@@ -0,0 +1,16 @@
1
+ interface UseTypewriterProps {
2
+ text: string;
3
+ speed?: number;
4
+ startDelay?: number;
5
+ onComplete?: () => void;
6
+ onChange?: (text: string) => void;
7
+ }
8
+ export declare function useTypewriter({ text, speed, startDelay, onComplete, onChange }: UseTypewriterProps): {
9
+ displayText: string;
10
+ isTyping: boolean;
11
+ isComplete: boolean;
12
+ startTyping: () => void;
13
+ resetTyping: () => void;
14
+ };
15
+ export {};
16
+ //# sourceMappingURL=useTypewriter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useTypewriter.d.ts","sourceRoot":"","sources":["../../src/hooks/useTypewriter.ts"],"names":[],"mappings":"AAEA,UAAU,kBAAkB;IAC1B,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,UAAU,CAAC,EAAE,MAAM,IAAI,CAAA;IACvB,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAA;CAClC;AAED,wBAAgB,aAAa,CAAC,EAC5B,IAAI,EACJ,KAAU,EACV,UAAgB,EAChB,UAAU,EACV,QAAQ,EACT,EAAE,kBAAkB;;;;;;EA4DpB"}