@mamiy/chatbot 1.0.0 → 1.0.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/dist/index.js CHANGED
@@ -201,7 +201,9 @@ function Chatbot({
201
201
  padding: "8px 10px",
202
202
  border: "1px solid #ddd",
203
203
  borderRadius: "8px",
204
- outline: "none"
204
+ outline: "none",
205
+ backgroundColor: "#ffffff",
206
+ color: "#000000"
205
207
  }
206
208
  }
207
209
  ),
package/dist/index.mjs CHANGED
@@ -175,7 +175,9 @@ function Chatbot({
175
175
  padding: "8px 10px",
176
176
  border: "1px solid #ddd",
177
177
  borderRadius: "8px",
178
- outline: "none"
178
+ outline: "none",
179
+ backgroundColor: "#ffffff",
180
+ color: "#000000"
179
181
  }
180
182
  }
181
183
  ),
package/package.json CHANGED
@@ -1,15 +1,22 @@
1
1
  {
2
2
  "name": "@mamiy/chatbot",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Embeddable React chatbot widget",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",
8
- "files": ["dist"],
8
+ "files": [
9
+ "dist"
10
+ ],
9
11
  "scripts": {
10
12
  "build": "tsup src/index.ts --format esm,cjs --dts"
11
13
  },
12
- "keywords": ["chatbot", "react", "widget", "support"],
14
+ "keywords": [
15
+ "chatbot",
16
+ "react",
17
+ "widget",
18
+ "support"
19
+ ],
13
20
  "author": "Your Name",
14
21
  "license": "MIT",
15
22
  "peerDependencies": {
@@ -22,4 +29,4 @@
22
29
  "tsup": "^8.5.1",
23
30
  "typescript": "^5.9.3"
24
31
  }
25
- }
32
+ }