bstp-agent-widget 0.2.62 → 0.2.64
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/agent-widget.js +1841 -1556
- package/dist/agent-widget.js.map +1 -1
- package/dist/bstp-agent-widget.css +1 -1
- package/package.json +1 -1
- package/src/lib/index.d.ts +6 -0
package/package.json
CHANGED
package/src/lib/index.d.ts
CHANGED
|
@@ -51,6 +51,12 @@ export type AgentChatWidgetUiOptions = {
|
|
|
51
51
|
panelTitle?: string;
|
|
52
52
|
/** Accent color used by widget surfaces */
|
|
53
53
|
accentColor?: string;
|
|
54
|
+
/** FAB button bottom offset in px */
|
|
55
|
+
fabBottomOffset?: number;
|
|
56
|
+
/** FAB button right offset in px */
|
|
57
|
+
fabRightOffset?: number;
|
|
58
|
+
/** FAB button label text */
|
|
59
|
+
fabButtonLabel?: string;
|
|
54
60
|
};
|
|
55
61
|
|
|
56
62
|
export type AgentChatWidgetProps = {
|