bstp-agent-widget 0.2.63 → 0.2.65

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bstp-agent-widget",
3
- "version": "0.2.63",
3
+ "version": "0.2.65",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/agent-widget.js",
@@ -40,17 +40,7 @@ export type AgentChatRuntimeGetter = {
40
40
 
41
41
  export type AgentChatRuntime = AgentChatRuntimeValue | AgentChatRuntimeGetter;
42
42
 
43
- /** Display mode enum */
44
- export const AgentChatDisplayMode: {
45
- readonly Panel: 'panel';
46
- readonly Fab: 'fab';
47
- };
48
-
49
- export type AgentChatDisplayMode = (typeof AgentChatDisplayMode)[keyof typeof AgentChatDisplayMode];
50
-
51
43
  export type AgentChatWidgetUiOptions = {
52
- /** Display mode: 'panel' (always visible) or 'fab' (toggle with FAB button) - defaults to 'fab' */
53
- displayMode?: AgentChatDisplayMode;
54
44
  /** Panel width in px */
55
45
  panelWidth?: number;
56
46
  /** Panel height in px or CSS value */
@@ -67,6 +57,8 @@ export type AgentChatWidgetUiOptions = {
67
57
  fabRightOffset?: number;
68
58
  /** FAB button label text */
69
59
  fabButtonLabel?: string;
60
+ /** Widget z-index (affects both FAB and panel) */
61
+ zIndex?: number;
70
62
  };
71
63
 
72
64
  export type AgentChatWidgetProps = {