@websolutespa/bom-llm 0.0.18 → 0.0.20

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/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @websolutespa/bom-llm
2
2
 
3
+ ## 0.0.20
4
+
5
+ ### Patch Changes
6
+
7
+ - Modified: hiding audio buttons when speechSynthesis disabled
8
+
9
+ ## 0.0.19
10
+
11
+ ### Patch Changes
12
+
13
+ - 114cbee: Added: theme variant for typography
14
+ - 114cbee: Added: LlmContents disableSpeechSynthesis flag
15
+
3
16
  ## 0.0.18
4
17
 
5
18
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -30,17 +30,18 @@ type LlmContents = {
30
30
  collapsedWelcomeText: string;
31
31
  collapsedWelcomeTextCta?: string;
32
32
  collapsedWelcomeTextHover?: string;
33
- extendedWelcomeText: string;
33
+ customIntro?: string;
34
+ customTheme?: DeepPartial<LlmTheme>;
35
+ disableSpeechSynthesis?: boolean;
34
36
  disclaimer?: string;
35
- promptPlaceholder?: string;
37
+ extendedWelcomeText: string;
38
+ intro?: string;
36
39
  layoutBuilder: LlmCard[];
37
40
  logo?: IMedia;
38
41
  logoMini?: IMedia;
42
+ promptPlaceholder?: string;
39
43
  sampleInputTexts: LlmSampleInputText[];
40
44
  shortWelcomeText: string;
41
- intro?: string;
42
- customIntro?: string;
43
- customTheme?: DeepPartial<LlmTheme>;
44
45
  };
45
46
  type LlmMode = 'site' | 'chat';
46
47
  type LlmMockApp = {