diff --git a/src/services/BotOptionsService.tsx b/src/services/BotOptionsService.tsx index dbd8c654..3861fb87 100644 --- a/src/services/BotOptionsService.tsx +++ b/src/services/BotOptionsService.tsx @@ -156,6 +156,8 @@ const defaultOptions = { bodyStyle: {}, chatInputContainerStyle: {}, chatInputAreaStyle: {}, + chatInputAreaFocusedStyle: {}, + chatInputAreaDisabledStyle: {}, userBubbleStyle: {}, botBubbleStyle: {}, botOptionStyle: {}, diff --git a/src/types/Options.tsx b/src/types/Options.tsx index 5ebc6803..a6603cb8 100644 --- a/src/types/Options.tsx +++ b/src/types/Options.tsx @@ -141,6 +141,12 @@ export type Options = { chatInputAreaStyle?: { [key: string]: string | number; }, + chatInputAreaFocusedStyle?: { + [key: string]: string | number; + }, + chatInputAreaDisabledStyle?: { + [key: string]: string | number; + }, userBubbleStyle?: { [key: string]: string | number; },