@alxxsck/ai-assistant 3.4.3 → 3.5.1
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/{Avatar-wXovvIDQ.js → Avatar-Co1YIRi9.js} +310 -305
- package/dist/{ChatWidgetContent-BICh_AXq.js → ChatWidgetContent-CBRMYME2.js} +2143 -1959
- package/dist/ai-assistant.css +1 -0
- package/dist/api/messages.api.types.d.ts +1 -0
- package/dist/avatar/Avatar.d.ts +3 -0
- package/dist/bridge-ai-chat-widget.es.js +1 -1
- package/dist/domain/message/scenario-photo-content.d.ts +1 -0
- package/dist/domain/ui/widget-geometry.d.ts +9 -3
- package/dist/i18n/messages.d.ts +12 -1
- package/dist/index-BtmGp3v4.js +2913 -0
- package/dist/{mount-B4WZondG.js → mount-DknRh-fl.js} +6049 -5804
- package/dist/ui/components/AvatarRotationControl.d.ts +1 -0
- package/dist/ui/components/ChatSurfaceFrameContext.d.ts +4 -0
- package/dist/ui/components/ScenarioPhotoCard.d.ts +4 -0
- package/package.json +1 -1
- package/dist/index-Bxit2PO-.js +0 -2913
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function AvatarRotationControl(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
|
+
import { type PointerEvent as ReactPointerEvent } from "react";
|
|
1
2
|
export type ChatSurfacePresentation = "viewport" | "windowed";
|
|
2
3
|
export type ChatSurfaceFrameValue = {
|
|
3
4
|
presentation: ChatSurfacePresentation;
|
|
5
|
+
compactAssistantScale: number;
|
|
6
|
+
beginCompactAssistantResize: (event: ReactPointerEvent<HTMLElement>) => void;
|
|
7
|
+
setCompactAssistantScale: (scale: number) => void;
|
|
4
8
|
};
|
|
5
9
|
export declare const ChatSurfaceFrameContext: import("react").Context<ChatSurfaceFrameValue>;
|
|
6
10
|
export declare function useChatSurfaceFrame(): ChatSurfaceFrameValue;
|