@servicetitan/titan-chat-ui-anvil2 4.3.0 → 4.3.1
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,3 +1,15 @@
|
|
|
1
|
+
# v4.3.1 (Fri Oct 17 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- SPA-7194: Fixed agent message size [#64](https://github.com/servicetitan/titan-chatbot-client/pull/64) ([@AlexYarmolchuk](https://github.com/AlexYarmolchuk))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Alexandr Yarmolchuk ([@AlexYarmolchuk](https://github.com/AlexYarmolchuk))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.3.0 (Wed Oct 08 2025)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -9,20 +9,9 @@
|
|
|
9
9
|
max-width: 100%;
|
|
10
10
|
column-gap: @spacing-2;
|
|
11
11
|
row-gap: @spacing-1;
|
|
12
|
-
grid-template-areas: 'avatar content
|
|
12
|
+
grid-template-areas: 'avatar content';
|
|
13
13
|
grid-template-rows: auto;
|
|
14
|
-
grid-template-columns: minmax(@spacing-5, auto) 1fr
|
|
15
|
-
|
|
16
|
-
&.fullWidth {
|
|
17
|
-
//width: 100%;
|
|
18
|
-
grid-template-areas: 'avatar content';
|
|
19
|
-
grid-template-rows: auto;
|
|
20
|
-
grid-template-columns: minmax(@spacing-5, auto) 1fr;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.messageAvatar {
|
|
24
|
-
grid-area: avatar;
|
|
25
|
-
}
|
|
14
|
+
grid-template-columns: minmax(@spacing-5, auto) 1fr;
|
|
26
15
|
|
|
27
16
|
.messageContent {
|
|
28
17
|
max-width: 100%;
|
|
@@ -31,6 +20,17 @@
|
|
|
31
20
|
justify-self: flex-start;
|
|
32
21
|
}
|
|
33
22
|
|
|
23
|
+
&.fullWidth {
|
|
24
|
+
width: 100%;
|
|
25
|
+
.messageContent {
|
|
26
|
+
width: 100%;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.messageAvatar {
|
|
31
|
+
grid-area: avatar;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
34
|
.messageBubble {
|
|
35
35
|
color: @color-neutral-200;
|
|
36
36
|
padding: @spacing-2 @spacing-3;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@servicetitan/titan-chat-ui-anvil2",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"description": "Chat experience UI package (Anvil2 version)",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"push:local": "yalc push"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@servicetitan/titan-chat-ui-common": "^4.3.
|
|
20
|
+
"@servicetitan/titan-chat-ui-common": "^4.3.1",
|
|
21
21
|
"dompurify": "^3.2.6",
|
|
22
22
|
"lodash": "4.17.21",
|
|
23
23
|
"nanoid": "^5.1.5",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"react-dom": ">=18"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@servicetitan/cypress-shared": "^4.3.
|
|
41
|
+
"@servicetitan/cypress-shared": "^4.3.1",
|
|
42
42
|
"cypress": "^15.2.0"
|
|
43
43
|
},
|
|
44
44
|
"keywords": [
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"cli": {
|
|
52
52
|
"webpack": false
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "7cce005ccee14dcf26a03e9643bcf582a13031ed"
|
|
55
55
|
}
|
|
@@ -9,20 +9,9 @@
|
|
|
9
9
|
max-width: 100%;
|
|
10
10
|
column-gap: @spacing-2;
|
|
11
11
|
row-gap: @spacing-1;
|
|
12
|
-
grid-template-areas: 'avatar content
|
|
12
|
+
grid-template-areas: 'avatar content';
|
|
13
13
|
grid-template-rows: auto;
|
|
14
|
-
grid-template-columns: minmax(@spacing-5, auto) 1fr
|
|
15
|
-
|
|
16
|
-
&.fullWidth {
|
|
17
|
-
//width: 100%;
|
|
18
|
-
grid-template-areas: 'avatar content';
|
|
19
|
-
grid-template-rows: auto;
|
|
20
|
-
grid-template-columns: minmax(@spacing-5, auto) 1fr;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.messageAvatar {
|
|
24
|
-
grid-area: avatar;
|
|
25
|
-
}
|
|
14
|
+
grid-template-columns: minmax(@spacing-5, auto) 1fr;
|
|
26
15
|
|
|
27
16
|
.messageContent {
|
|
28
17
|
max-width: 100%;
|
|
@@ -31,6 +20,17 @@
|
|
|
31
20
|
justify-self: flex-start;
|
|
32
21
|
}
|
|
33
22
|
|
|
23
|
+
&.fullWidth {
|
|
24
|
+
width: 100%;
|
|
25
|
+
.messageContent {
|
|
26
|
+
width: 100%;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.messageAvatar {
|
|
31
|
+
grid-area: avatar;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
34
|
.messageBubble {
|
|
35
35
|
color: @color-neutral-200;
|
|
36
36
|
padding: @spacing-2 @spacing-3;
|