@intelliweave/embedded 1.7.57 → 1.7.58

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.
@@ -393,6 +393,12 @@ interface WebWeaverGPTConfig {
393
393
  instructions?: string;
394
394
  /** Introduction message, used in the automatic UI */
395
395
  introductionMessage?: string;
396
+ /** URL to the logo image to display in the chat UI */
397
+ logo?: string;
398
+ /** Background color or gradient or image for the chat UI */
399
+ background?: string;
400
+ /** Text color for the chat UI */
401
+ textColor?: string;
396
402
  /** Voice information */
397
403
  voice?: {
398
404
  /** Provider ID */
@@ -1330,6 +1336,8 @@ declare class WebWeaverEmbed extends BaseComponent {
1330
1336
  html: () => string;
1331
1337
  /** On create */
1332
1338
  onCreate(): void;
1339
+ /** Apply UI styles from config in a batched operation */
1340
+ private applyConfigStyles;
1333
1341
  /** Called on update */
1334
1342
  onUpdate(): void;
1335
1343
  /** Called when the component is created */
@@ -1371,6 +1379,10 @@ declare const WebWeaverUI: (props: {
1371
1379
  analytics?: boolean;
1372
1380
  /** The URL of the logo to use */
1373
1381
  logo?: string;
1382
+ /** Background color or gradient or image for the WebWeaver UI */
1383
+ background?: string;
1384
+ /** Text color for the WebWeaver UI */
1385
+ textColor?: string;
1374
1386
  /** If true, shows debug information in the console */
1375
1387
  debug?: boolean;
1376
1388
  /** Customize the context passed to the AI. Not needed since it's pulled from the Persona on the hub. */