@walkspan/chatbot 0.2.4 → 0.2.5

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.
Files changed (2) hide show
  1. package/README.md +89 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,89 @@
1
+ # @walkspan/chatbot
2
+
3
+ A floating chatbot component for React applications with Tailwind CSS styling.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @walkspan/chatbot
9
+ ```
10
+
11
+ or with yarn:
12
+
13
+ ```bash
14
+ yarn add @walkspan/chatbot
15
+ ```
16
+
17
+ or with pnpm:
18
+
19
+ ```bash
20
+ pnpm add @walkspan/chatbot
21
+ ```
22
+
23
+ ## Peer Dependencies
24
+
25
+ This package requires the following peer dependencies:
26
+
27
+ ```bash
28
+ npm install react react-dom react-icons tailwindcss
29
+ ```
30
+
31
+ | Package | Version |
32
+ |---------|---------|
33
+ | react | >= 17 |
34
+ | react-dom | >= 17 |
35
+ | react-icons | >= 4 |
36
+ | tailwindcss | >= 3 |
37
+
38
+ ## Usage
39
+
40
+ ```jsx
41
+ import FloatingChatbot from '@walkspan/chatbot';
42
+
43
+ function App() {
44
+ return (
45
+ <div>
46
+ <FloatingChatbot
47
+ apiUrl="https://your-api-endpoint.com/chat"
48
+ position="bottom-right"
49
+ title="AI Assistant"
50
+ placeholder="Ask something..."
51
+ />
52
+ </div>
53
+ );
54
+ }
55
+
56
+ export default App;
57
+ ```
58
+
59
+ ## Props
60
+
61
+ | Prop | Type | Default | Description |
62
+ |------|------|---------|-------------|
63
+ | `apiUrl` | `string` | **required** | The API endpoint URL for the chatbot backend |
64
+ | `position` | `"bottom-right"` \| `"bottom-left"` | `"bottom-right"` | Position of the floating chatbot button |
65
+ | `title` | `string` | `"AI Assistant"` | Title displayed in the chat window header |
66
+ | `placeholder` | `string` | `"Ask something..."` | Placeholder text for the input field |
67
+
68
+ ## API Response Format
69
+
70
+ Your API endpoint should accept POST requests with the following body:
71
+
72
+ ```json
73
+ {
74
+ "text": "user message"
75
+ }
76
+ ```
77
+
78
+ And return a response in this format:
79
+
80
+ ```json
81
+ {
82
+ "message": "Bot response message",
83
+ "link": "https://optional-link.com"
84
+ }
85
+ ```
86
+
87
+ ## License
88
+
89
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@walkspan/chatbot",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "files": [