@servicetitan/titan-chat-ui 1.1.0 → 1.1.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 +14 -4
- package/README.md +15 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.1.1 (Tue May 13 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- SPA-5484: Move chatbot stores into the package [#8](https://github.com/servicetitan/titan-chatbot-client/pull/8) ([@AlexYarmolchuk](https://github.com/AlexYarmolchuk))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Alexandr Yarmolchuk ([@AlexYarmolchuk](https://github.com/AlexYarmolchuk))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.1.0 (Tue May 13 2025)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -10,13 +22,11 @@
|
|
|
10
22
|
|
|
11
23
|
---
|
|
12
24
|
|
|
13
|
-
# v0.0.
|
|
25
|
+
# v0.0.0 (Mon May 12 2025)
|
|
14
26
|
|
|
15
27
|
#### ⚠️ Pushed to `master`
|
|
16
28
|
|
|
17
|
-
|
|
18
|
-
- SPA-5484: Updated package.json ([@AlexYarmolchuk](https://github.com/AlexYarmolchuk))
|
|
19
|
-
- SPA-5484: Move chatbot stores into the package ([@AlexYarmolchuk](https://github.com/AlexYarmolchuk))
|
|
29
|
+
Initial commit!
|
|
20
30
|
|
|
21
31
|
#### Authors: 1
|
|
22
32
|
|
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# ServiceTitan Chat UI
|
|
2
|
+
|
|
3
|
+
This package contains the React components and hooks for the ServiceTitan Chat UI.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @servicetitan/titan-chat-ui
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Description
|
|
12
|
+
|
|
13
|
+
This package provides a set of React components and hooks for building chat interfaces in ServiceTitan applications. It is designed to be used with the ServiceTitan Chatbot Client and provides a consistent look and feel across different chat interfaces.
|
|
14
|
+
|
|
15
|
+
The components are based on the ServiceTitan design system and are built to be easily customizable and extensible.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@servicetitan/titan-chat-ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Chat experience UI package",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"cli": {
|
|
49
49
|
"webpack": false
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "d2c4035c00367dcd8e83062df272047284c8fade"
|
|
52
52
|
}
|