@voxket-ai/voxket-live 1.1.45 → 1.1.46
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 +0 -3
- package/dist/components/common/common-popup-trigger.d.ts +3 -3
- package/dist/index.cjs +56 -62
- package/dist/index.js +6997 -7008
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -207,9 +207,6 @@ Floating chat bubble that can be positioned anywhere:
|
|
|
207
207
|
popupPosition="bottom-right" // top-left, top-right, bottom-left, bottom-right
|
|
208
208
|
popupTriggerText="Need Help?"
|
|
209
209
|
onPopupToggle={(isOpen) => console.log('Popup:', isOpen)}
|
|
210
|
-
// Optional: Use your own popup icon (URL to PNG, SVG, etc)
|
|
211
|
-
popupTriggerLogoUrl="https://yourdomain.com/mylogo.png"
|
|
212
|
-
// If not provided, Voxket will show its default logo. If your image fails to load, a built-in Voxket icon is always shown as fallback.
|
|
213
210
|
// ... other props
|
|
214
211
|
/>
|
|
215
212
|
```
|
|
@@ -16,14 +16,14 @@ export interface CommonPopupTriggerProps {
|
|
|
16
16
|
*/
|
|
17
17
|
isRunning?: boolean;
|
|
18
18
|
/**
|
|
19
|
-
* Custom logo URL. If not provided,
|
|
19
|
+
* Custom logo URL. If not provided, uses the bundled Voxket logo
|
|
20
20
|
*/
|
|
21
21
|
logoUrl?: string;
|
|
22
22
|
}
|
|
23
23
|
/**
|
|
24
24
|
* CommonPopupTrigger
|
|
25
|
-
* A theme-agnostic popup trigger: black circular button with logo
|
|
26
|
-
* Uses
|
|
25
|
+
* A theme-agnostic popup trigger: black circular button with bundled Voxket logo centered.
|
|
26
|
+
* Uses the logo bundled with the SDK, positioned in any corner.
|
|
27
27
|
*/
|
|
28
28
|
export declare const CommonPopupTrigger: React.FC<CommonPopupTriggerProps>;
|
|
29
29
|
export default CommonPopupTrigger;
|