@elia-assistant/chatui 2.0.3 → 2.0.4
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 +1 -0
- package/dist/chatui.iife.js +8 -8
- package/dist/chunks/{settingsStore-ClKc5xeV.js → settingsStore-DvRsr-5I.js} +2 -1
- package/dist/chunks/{translation-BYSHywcB.js → translation-D4orT_2p.js} +2 -1
- package/dist/chunks/{translation-B0QPZgVW.js → translation-DOt84G52.js} +2 -1
- package/dist/chunks/{translation-BL8dP5qm.js → translation-JVK7ONqI.js} +2 -1
- package/dist/components/MessageBubble.d.ts +8 -0
- package/dist/index.js +264 -224
- package/dist/store.js +1 -1
- package/dist/types/index.d.ts +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -228,6 +228,7 @@ A tab is shown only if its block has `feedUrl` or `items`. If neither tab is con
|
|
|
228
228
|
| Parameter | Type | Description |
|
|
229
229
|
|---|---|---|
|
|
230
230
|
| `initialMessages` | `string[]` | Global fallback initial bot messages |
|
|
231
|
+
| `initialMessagesClickable` | `boolean` | Render initial messages as clickable suggestions; clicking one sends its text to the webhook (default `false`) |
|
|
231
232
|
| `i18n[lang]` | `LangOverride` | Per-language content overrides |
|
|
232
233
|
|
|
233
234
|
To set the initial UI language, pass `language: 'sk'` to `createChat()` (or call `instance.setLanguage('sk')` later). On a fresh browser, the default falls back to `navigator.language` then `'en'`.
|