@cuekit-ai/react 1.3.0 → 1.3.2
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/{chunk-6TG2XY2P.mjs → chunk-H44FBEX3.mjs} +459 -699
- package/dist/chunk-R7POPVJR.mjs +35 -0
- package/dist/chunk-Y2Q57RZJ.mjs +764 -0
- package/dist/index.d.mts +4 -5
- package/dist/index.d.ts +4 -5
- package/dist/index.js +786 -345
- package/dist/index.mjs +31 -147
- package/dist/livekit-client.esm-33GHDCYA.mjs +219 -0
- package/dist/{webrtc-service-O4JWXTIF.mjs → webrtc-service-TL73OATV.mjs} +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -265,6 +265,10 @@ type FullDOMStructure = {
|
|
|
265
265
|
components: DOMNodeData[];
|
|
266
266
|
};
|
|
267
267
|
|
|
268
|
+
/**
|
|
269
|
+
* Capture the full DOM structure as a flat list of interactive elements
|
|
270
|
+
*/
|
|
271
|
+
declare function captureFullDOMStructure(): FullDOMStructure;
|
|
268
272
|
interface ElementAction {
|
|
269
273
|
action_type: 'click' | 'navigate' | 'input' | 'focus' | 'toggle';
|
|
270
274
|
target_element?: string;
|
|
@@ -274,9 +278,4 @@ interface ElementAction {
|
|
|
274
278
|
declare function executeAction(action: ElementAction): boolean;
|
|
275
279
|
declare function getFullDOMStructure(): FullDOMStructure;
|
|
276
280
|
|
|
277
|
-
/**
|
|
278
|
-
* Capture the full DOM structure as a flat list of interactive elements
|
|
279
|
-
*/
|
|
280
|
-
declare function captureFullDOMStructure(): FullDOMStructure;
|
|
281
|
-
|
|
282
281
|
export { BorderGlow, ChatPopup, type ChatPopupProps, CuekitProvider, type DOMNodeData, type ElementAction, type FullDOMStructure, InitCuekit, MicButton, type MicButtonProps, type MicState$1 as MicState, type NavigationCommand, type ServerConfig, type TokenRequest, type TokenResponse, VoiceIntensityVisualizer, type WebRTCServerConfig, captureFullDOMStructure, configureWebRTCServer, executeAction, getFullDOMStructure, getWebRTCServerConfig, initWebRTC, initWebRTCWithDeployedBackend, useCuekit, useQubeContext, useWebRTC };
|
package/dist/index.d.ts
CHANGED
|
@@ -265,6 +265,10 @@ type FullDOMStructure = {
|
|
|
265
265
|
components: DOMNodeData[];
|
|
266
266
|
};
|
|
267
267
|
|
|
268
|
+
/**
|
|
269
|
+
* Capture the full DOM structure as a flat list of interactive elements
|
|
270
|
+
*/
|
|
271
|
+
declare function captureFullDOMStructure(): FullDOMStructure;
|
|
268
272
|
interface ElementAction {
|
|
269
273
|
action_type: 'click' | 'navigate' | 'input' | 'focus' | 'toggle';
|
|
270
274
|
target_element?: string;
|
|
@@ -274,9 +278,4 @@ interface ElementAction {
|
|
|
274
278
|
declare function executeAction(action: ElementAction): boolean;
|
|
275
279
|
declare function getFullDOMStructure(): FullDOMStructure;
|
|
276
280
|
|
|
277
|
-
/**
|
|
278
|
-
* Capture the full DOM structure as a flat list of interactive elements
|
|
279
|
-
*/
|
|
280
|
-
declare function captureFullDOMStructure(): FullDOMStructure;
|
|
281
|
-
|
|
282
281
|
export { BorderGlow, ChatPopup, type ChatPopupProps, CuekitProvider, type DOMNodeData, type ElementAction, type FullDOMStructure, InitCuekit, MicButton, type MicButtonProps, type MicState$1 as MicState, type NavigationCommand, type ServerConfig, type TokenRequest, type TokenResponse, VoiceIntensityVisualizer, type WebRTCServerConfig, captureFullDOMStructure, configureWebRTCServer, executeAction, getFullDOMStructure, getWebRTCServerConfig, initWebRTC, initWebRTCWithDeployedBackend, useCuekit, useQubeContext, useWebRTC };
|