@elia-assistant/chatui 1.0.24 → 1.0.25
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 +3 -1
- package/dist/assets/avatars/index.d.ts +4 -0
- package/dist/chatui.iife.js +24 -24
- package/dist/chunks/{i18n-i-innm6M.js → i18n-Vi-f1TFq.js} +3 -3
- package/dist/chunks/{settingsStore-ReOi8RP1.js → settingsStore-yU8h8KVJ.js} +2 -2
- package/dist/chunks/{translation-8S88rsh2.js → translation-B0QPZgVW.js} +4 -1
- package/dist/chunks/{translation-B2rvHkw2.js → translation-BYSHywcB.js} +4 -1
- package/dist/components/ChatView.d.ts +3 -1
- package/dist/components/CtaPopup.d.ts +2 -1
- package/dist/index.js +944 -836
- 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-yU8h8KVJ.js";
|
|
2
2
|
export { e as useSettingsStore };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -74,6 +74,8 @@ export interface ChatConfig {
|
|
|
74
74
|
ctaSound?: boolean;
|
|
75
75
|
/** Hide the built-in settings UI (gear button, theme picker, settings modal). */
|
|
76
76
|
hideSettings?: boolean;
|
|
77
|
+
/** Alignment of the floating widget (toggle button + chat window). Default: 'right'. */
|
|
78
|
+
position?: 'right' | 'left';
|
|
77
79
|
/** Bot avatar. Built-in id (e.g. 'amara'), URL, or data URL. */
|
|
78
80
|
botAvatar?: string;
|
|
79
81
|
/** Popup toggle button icon (window mode). Built-in id, URL, or data URL. */
|