@namiruai/chat 1.1.0 → 1.2.0

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.
@@ -4,6 +4,7 @@ export interface MessageBubbleOptions {
4
4
  bubbleStyle?: "modern" | "rounded" | "square" | "classic";
5
5
  agentAvatar?: string;
6
6
  presetTheme?: "light" | "dark" | "custom";
7
+ iconColor?: string;
7
8
  }
8
9
  export declare function createMessageBubbleFactory(opts: MessageBubbleOptions): {
9
10
  createBubble(message: ChatMessage): HTMLElement;
@@ -9,6 +9,9 @@ export interface StyleOptions {
9
9
  fontSize?: "small" | "medium" | "large";
10
10
  userMessageColor?: string;
11
11
  agentMessageColor?: string;
12
+ borderColor?: string;
13
+ inputColor?: string;
14
+ buttonColor?: string;
12
15
  }
13
16
  /**
14
17
  * Inject widget styles into the given render root (Shadow DOM or fallback element).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@namiruai/chat",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "Namiru AI chat widget - embeddable customer support chat",
5
5
  "main": "dist/namiru-chat.umd.js",
6
6
  "module": "dist/namiru-chat.esm.js",