impact-chatbot 2.0.0 → 2.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.
@@ -2,6 +2,7 @@ import './TextRenderer.scss';
2
2
  /**
3
3
  * Markdown renderer component with sanitization
4
4
  */
5
- export declare const TextRenderer: ({ text }: {
5
+ export declare const TextRenderer: ({ text, thinking }: {
6
6
  text: any;
7
+ thinking: any;
7
8
  }) => import("react/jsx-runtime").JSX.Element;
@@ -5,3 +5,4 @@ export function fetchApplicationCode(): string;
5
5
  export function fetchBaseUrl(): string;
6
6
  export function getFormattedApplicationName(applicationURL: any): "application access management" | "AssortSmart" | "module configurator" | "InventorySmart" | "ADA" | "PlanSmart" | "ADAConfigurator" | "ItemSmart" | "ItemSmart-New" | "SourceSmart" | "PriceSmart Markdown" | "PriceSmart Promo" | "workflow input center";
7
7
  export function fetchLegacyAgentScreen(): any;
8
+ export function replaceSpecialCharacter(str: any): any;
@@ -1,10 +1,31 @@
1
1
  /* Markdown Content Styling - Comprehensive styles for proper bullet point rendering */
2
2
  .markdown-content,
3
3
  .md-content {
4
+ font-family: Manrope;
5
+ font-size: 14px;
6
+ font-style: normal;
7
+ font-weight: 500;
8
+ line-height: 22.4px;
9
+ letter-spacing: 0.14px;
10
+ color: #1F2B4D;
11
+ overflow: visible !important;
12
+ background: linear-gradient(92deg, #F8F9FB -0.92%, #F6F7FA 98.11%);
13
+ border-radius: 12px;
14
+ padding: 16px 16px 8px 16px;
15
+ margin-bottom: 12px;
16
+ }
17
+ .markdown-content.thinking,
18
+ .md-content.thinking {
4
19
  font-family: inherit;
5
20
  font-size: inherit;
6
21
  color: inherit;
7
- overflow: visible !important;
22
+ background: transparent;
23
+ border-radius: 0;
24
+ padding: 0;
25
+ margin-bottom: 0px;
26
+ }
27
+ .markdown-content,
28
+ .md-content {
8
29
  /* Headings */
9
30
  }
10
31
  .markdown-content h1, .markdown-content h2, .markdown-content h3, .markdown-content h4, .markdown-content h5, .markdown-content h6,
@@ -52,7 +73,6 @@
52
73
  .md-content p,
53
74
  .md-content .markdown-paragraph {
54
75
  margin: 8px 0;
55
- line-height: 1.6;
56
76
  }
57
77
  .markdown-content,
58
78
  .md-content {
@@ -168,8 +188,22 @@
168
188
  .markdown-content strong, .markdown-content b,
169
189
  .md-content strong,
170
190
  .md-content b {
171
- font-weight: 600;
191
+ font-size: 14px;
192
+ font-style: normal;
193
+ font-weight: 700;
194
+ line-height: 22.4px;
195
+ letter-spacing: 0.14px;
196
+ color: inherit;
197
+ }
198
+ .markdown-content strong.thinking, .markdown-content b.thinking,
199
+ .md-content strong.thinking,
200
+ .md-content b.thinking {
201
+ font-family: inherit;
202
+ font-size: inherit;
172
203
  color: inherit;
204
+ font-weight: 600;
205
+ line-height: normal;
206
+ letter-spacing: normal;
173
207
  }
174
208
  .markdown-content em, .markdown-content i,
175
209
  .md-content em,
@@ -319,6 +353,9 @@
319
353
  align-items: center;
320
354
  justify-content: center;
321
355
  }
356
+ .stop-icon-button.ia-styles.ia-btn.ia-btn-contained {
357
+ background: #E15554;
358
+ }
322
359
 
323
360
  .mention-select-wrapper {
324
361
  position: absolute;