lua-ai-chat 0.0.22 → 0.0.23

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/index.d.mts CHANGED
@@ -179,8 +179,11 @@ type ToolbarProps = {
179
179
  onLocationClick: () => void;
180
180
  onSendClick: () => void;
181
181
  uploadProgress: number;
182
+ isAgentResponseDisabled?: boolean;
183
+ onToggleAgentResponseClick?: () => void;
184
+ showAgentResponseToggle?: boolean;
182
185
  };
183
- declare function Toolbar({ loading, onFileClick, onCameraClick, onVideoClick, onAudioClick, onLocationClick, onSendClick, }: ToolbarProps): react_jsx_runtime.JSX.Element;
186
+ declare function Toolbar({ loading, onFileClick, onCameraClick, onVideoClick, onAudioClick, onLocationClick, onSendClick, isAgentResponseDisabled, onToggleAgentResponseClick, showAgentResponseToggle, }: ToolbarProps): react_jsx_runtime.JSX.Element;
184
187
 
185
188
  declare const parseActions: (content: string) => ActionButton[];
186
189
 
package/dist/index.d.ts CHANGED
@@ -179,8 +179,11 @@ type ToolbarProps = {
179
179
  onLocationClick: () => void;
180
180
  onSendClick: () => void;
181
181
  uploadProgress: number;
182
+ isAgentResponseDisabled?: boolean;
183
+ onToggleAgentResponseClick?: () => void;
184
+ showAgentResponseToggle?: boolean;
182
185
  };
183
- declare function Toolbar({ loading, onFileClick, onCameraClick, onVideoClick, onAudioClick, onLocationClick, onSendClick, }: ToolbarProps): react_jsx_runtime.JSX.Element;
186
+ declare function Toolbar({ loading, onFileClick, onCameraClick, onVideoClick, onAudioClick, onLocationClick, onSendClick, isAgentResponseDisabled, onToggleAgentResponseClick, showAgentResponseToggle, }: ToolbarProps): react_jsx_runtime.JSX.Element;
184
187
 
185
188
  declare const parseActions: (content: string) => ActionButton[];
186
189