@tagit/ai-client-react 1.3.0-beta.34.1 → 1.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/package.json +3 -3
- package/src/chat-widget.css +15 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tagit/ai-client-react",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Self-contained React chat widget and hooks for TagIt AI client",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -37,13 +37,13 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@tagit/ai-client-core": "1.3.0-beta.34.1",
|
|
41
40
|
"highlight.js": "^11.11.1",
|
|
42
41
|
"lucide-react": "^0.539.0",
|
|
43
42
|
"react-markdown": "^10.1.0",
|
|
44
43
|
"recharts": "^2.15.4",
|
|
45
44
|
"rehype-highlight": "^7.0.2",
|
|
46
|
-
"remark-gfm": "^4.0.1"
|
|
45
|
+
"remark-gfm": "^4.0.1",
|
|
46
|
+
"@tagit/ai-client-core": "1.3.1"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"react": "^18.0.0",
|
package/src/chat-widget.css
CHANGED
|
@@ -1422,6 +1422,16 @@
|
|
|
1422
1422
|
}
|
|
1423
1423
|
}
|
|
1424
1424
|
|
|
1425
|
+
@keyframes tagItChatTypingPulse {
|
|
1426
|
+
0%,
|
|
1427
|
+
100% {
|
|
1428
|
+
opacity: 0.45;
|
|
1429
|
+
}
|
|
1430
|
+
50% {
|
|
1431
|
+
opacity: 1;
|
|
1432
|
+
}
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1425
1435
|
.tagIt-chat-error-row {
|
|
1426
1436
|
display: flex;
|
|
1427
1437
|
align-items: center;
|
|
@@ -1643,11 +1653,14 @@
|
|
|
1643
1653
|
|
|
1644
1654
|
@media (prefers-reduced-motion: reduce) {
|
|
1645
1655
|
.tagIt-chat-streaming-cursor,
|
|
1646
|
-
.tagIt-chat-loading-spinner
|
|
1647
|
-
.tagIt-chat-typing-indicator span {
|
|
1656
|
+
.tagIt-chat-loading-spinner {
|
|
1648
1657
|
animation: none;
|
|
1649
1658
|
}
|
|
1650
1659
|
|
|
1660
|
+
.tagIt-chat-typing-indicator span {
|
|
1661
|
+
animation: tagItChatTypingPulse 1.4s infinite ease-in-out;
|
|
1662
|
+
}
|
|
1663
|
+
|
|
1651
1664
|
.tagIt-chat-recent-conversation,
|
|
1652
1665
|
.tagIt-chat-panel,
|
|
1653
1666
|
.tagIt-chat-tooltip,
|