@voxket-ai/voxket-live 1.1.25 → 1.1.27
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 +1 -6
- package/dist/index.cjs +58 -58
- package/dist/index.css +1 -1
- package/dist/index.js +9595 -10750
- package/dist/shopify-entry.d.ts +38 -0
- package/package.json +2 -1
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { ThemeType } from '../../styles';
|
|
2
1
|
import * as React from 'react';
|
|
3
2
|
export type CommonPopupPosition = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
|
|
4
3
|
export interface CommonPopupTriggerProps {
|
|
@@ -16,14 +15,10 @@ export interface CommonPopupTriggerProps {
|
|
|
16
15
|
* When true, show a subtle pulsing ring to indicate an active running session.
|
|
17
16
|
*/
|
|
18
17
|
isRunning?: boolean;
|
|
19
|
-
/**
|
|
20
|
-
* Theme for button styling
|
|
21
|
-
*/
|
|
22
|
-
theme?: ThemeType;
|
|
23
18
|
}
|
|
24
19
|
/**
|
|
25
20
|
* CommonPopupTrigger
|
|
26
|
-
* A theme-
|
|
21
|
+
* A theme-agnostic popup trigger: black circular button with logo.png centered.
|
|
27
22
|
* Uses assets from public/logo.png, positioned in any corner.
|
|
28
23
|
*/
|
|
29
24
|
export declare const CommonPopupTrigger: React.FC<CommonPopupTriggerProps>;
|