@paramms/chat-widget 1.0.37 → 1.0.38
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/chatlist.js +115 -92
- package/dist/chatlist.js.map +1 -1
- package/dist/embed.js +32 -14
- package/dist/embed.js.map +1 -1
- package/dist/index.js +446 -392
- package/dist/index.js.map +1 -1
- package/dist/react.d.ts +2 -1
- package/dist/react.js +330 -309
- package/dist/react.js.map +1 -1
- package/dist/renderer.d.ts +9 -7
- package/package.json +1 -1
package/dist/react.d.ts
CHANGED
|
@@ -270,7 +270,8 @@ export interface ChatAppLauncherProps {
|
|
|
270
270
|
floating?: boolean;
|
|
271
271
|
/** Only used when floating=true. Default: 'bottom-right' */
|
|
272
272
|
position?: 'bottom-right' | 'bottom-left';
|
|
273
|
-
/** Label shown on the button. Default:
|
|
273
|
+
/** Label shown on the button. Default: a chat-bubble icon for floating,
|
|
274
|
+
* 'Messages' for inline. */
|
|
274
275
|
label?: string;
|
|
275
276
|
/** Width of the chat panel. Default: '420px' (floating) or '100%' (inline) */
|
|
276
277
|
panelWidth?: string;
|