@elia-assistant/chatui 2.0.3 → 2.0.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.
- 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 +272 -231
- package/dist/store.js +1 -1
- package/dist/types/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/store.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as e } from "./chunks/settingsStore-
|
|
1
|
+
import { t as e } from "./chunks/settingsStore-DvRsr-5I.js";
|
|
2
2
|
export { e as createSettingsStore };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -58,6 +58,8 @@ export interface ChatConfig {
|
|
|
58
58
|
showWelcomeScreen?: boolean;
|
|
59
59
|
/** Global fallback initial messages — per-language overrides live in i18n[lang].initialMessages */
|
|
60
60
|
initialMessages?: string[];
|
|
61
|
+
/** Render initial messages as clickable suggestions: clicking one sends its text as the user's message. Default: false. */
|
|
62
|
+
initialMessagesClickable?: boolean;
|
|
61
63
|
allowFileUploads?: boolean;
|
|
62
64
|
allowedFileExtensions?: string;
|
|
63
65
|
/** Per-language content: initial messages, CTA text, bot name, welcome subtitle */
|