@voxket-ai/voxket-live 1.1.48 → 1.1.49
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/components/common/common-popup-trigger.d.ts +6 -1
- package/dist/index.cjs +35 -35
- package/dist/index.css +1 -1
- package/dist/index.js +1497 -1495
- package/package.json +1 -1
|
@@ -19,12 +19,17 @@ export interface CommonPopupTriggerProps {
|
|
|
19
19
|
* Custom logo URL. If not provided, uses the bundled Voxket logo
|
|
20
20
|
*/
|
|
21
21
|
logoUrl?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Theme for styling. 'light' uses white background with indigo border, others use black background.
|
|
24
|
+
*/
|
|
25
|
+
theme?: 'dark' | 'light' | 'vox' | 'midnight' | 'levish';
|
|
22
26
|
}
|
|
23
27
|
/**
|
|
24
28
|
* CommonPopupTrigger
|
|
25
|
-
* A theme-
|
|
29
|
+
* A theme-aware popup trigger: circular button with bundled Voxket logo centered.
|
|
26
30
|
* Uses the logo bundled with the SDK, positioned in any corner.
|
|
27
31
|
* When session is active (isRunning=true), shows an elegant glowing border animation.
|
|
32
|
+
* In light theme, uses white background with indigo border. In dark themes, uses black background.
|
|
28
33
|
*/
|
|
29
34
|
export declare const CommonPopupTrigger: React.FC<CommonPopupTriggerProps>;
|
|
30
35
|
export default CommonPopupTrigger;
|