@intelliweave/embedded 1.9.69-beta.3 → 1.9.69-beta.4

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.
@@ -889,6 +889,18 @@ interface WebWeaverGPTConfig {
889
889
  background?: string;
890
890
  /** Text color for the chat UI */
891
891
  textColor?: string;
892
+ /** Display mode: 'closed' (default - starts minimized) or 'open' (always open) */
893
+ displayMode?: 'closed' | 'open';
894
+ /** Positioning mode: 'fixed' (default - floats on page) or 'container' (fills parent container) */
895
+ positioningMode?: 'fixed' | 'container';
896
+ /** Horizontal position: 'left' or 'right' (default: 'right') - only used when positioningMode is 'fixed' */
897
+ positionX?: 'left' | 'right';
898
+ /** Vertical position: 'top' or 'bottom' (default: 'bottom') - only used when positioningMode is 'fixed' */
899
+ positionY?: 'top' | 'bottom';
900
+ /** Horizontal offset from edge in pixels (default: 20) - only used when positioningMode is 'fixed' */
901
+ offsetX?: number;
902
+ /** Vertical offset from edge in pixels (default: 20) - only used when positioningMode is 'fixed' */
903
+ offsetY?: number;
892
904
  /** Voice information */
893
905
  voice?: {
894
906
  /** Provider ID */
@@ -1100,6 +1112,12 @@ declare class WebWeaverEmbed extends BaseComponent {
1100
1112
  private _lastLogo?;
1101
1113
  private _lastBackground?;
1102
1114
  private _lastTextColor?;
1115
+ private _lastDisplayMode?;
1116
+ private _lastPositioningMode?;
1117
+ private _lastPositionX?;
1118
+ private _lastPositionY?;
1119
+ private _lastOffsetX?;
1120
+ private _lastOffsetY?;
1103
1121
  /** Apply UI styles from config and attributes, prioritizing attributes */
1104
1122
  private applyConfigStylesAndAttributes;
1105
1123
  /** Called on update */