chatnest 3.4.2 → 3.4.3
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/{readme.md → README.md} +3 -3
- package/dist/chatnest.min.js +1 -1
- package/package.json +1 -1
package/{readme.md → README.md}
RENAMED
|
@@ -12,7 +12,7 @@ A lightweight, customizable AI chat widget. Drop it into any website in minutes.
|
|
|
12
12
|
|
|
13
13
|
**CDN**
|
|
14
14
|
```html
|
|
15
|
-
<script src="https://cdn.jsdelivr.net/npm/chatnest@3.4.
|
|
15
|
+
<script src="https://cdn.jsdelivr.net/npm/chatnest@3.4.3/dist/chatnest.min.js"></script>
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
**npm**
|
|
@@ -28,7 +28,7 @@ import Chatnest from 'chatnest';
|
|
|
28
28
|
## Quick Start
|
|
29
29
|
|
|
30
30
|
```html
|
|
31
|
-
<script src="https://cdn.jsdelivr.net/npm/chatnest@3.4.
|
|
31
|
+
<script src="https://cdn.jsdelivr.net/npm/chatnest@3.4.3/dist/chatnest.min.js"></script>
|
|
32
32
|
<script>
|
|
33
33
|
document.addEventListener('DOMContentLoaded', () => {
|
|
34
34
|
new Chatnest({
|
|
@@ -128,7 +128,7 @@ import Chatnest from 'chatnest';
|
|
|
128
128
|
| `chatBackgroundColor` | `string` | `'#ffffff'` | Chat panel background color |
|
|
129
129
|
| `chatBackgroundImage` | `string` | `null` | CSS background-image for the chat panel |
|
|
130
130
|
| `sendButtonIconSize` | `number` | `24` | Send button icon size in px |
|
|
131
|
-
| `showPrivacyNotice` | `boolean` | `
|
|
131
|
+
| `showPrivacyNotice` | `boolean` | `false` | Show a small privacy notice below the input |
|
|
132
132
|
| `privacyNoticeText` | `string` | `'Messages may be stored to improve responses.'` | Privacy notice copy |
|
|
133
133
|
|
|
134
134
|
### Toggle Button
|