@skippr/live-agent-sdk 0.51.0 → 0.53.0
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 +1 -0
- package/dist/esm/lib-exports.js +1961 -1748
- package/dist/skippr-sdk.css +1 -1
- package/dist/skippr-sdk.js +144 -144
- package/dist/types/capture/cursorController.d.ts +7 -0
- package/dist/types/capture/ringGeometry.d.ts +14 -0
- package/dist/types/capture/useAgentCursor.d.ts +2 -0
- package/dist/types/components/AgentCursor.d.ts +11 -0
- package/dist/types/components/HighlightOverlay.d.ts +1 -1
- package/dist/types/components/LiveAgent.d.ts +1 -0
- package/dist/types/components/PageActionHandler.d.ts +1 -1
- package/dist/types/context/LiveAgentContext.d.ts +5 -0
- package/dist/types/hooks/useLauncherDrag.d.ts +1 -1
- package/package.json +1 -1
- package/dist/types/components/AgentActivityIndicator.d.ts +0 -7
package/README.md
CHANGED
|
@@ -218,6 +218,7 @@ Self-contained widget component. Renders a floating button that opens a sidebar
|
|
|
218
218
|
| `autoFocusChat` | `boolean` | `true` | Whether the chat input auto-focuses when opened |
|
|
219
219
|
| `captureMode` | `'screenshare' \| 'auto'` | `'screenshare'` | How the agent sees the page — `'screenshare'` prompts the user to share, `'auto'` uses DOM capture (no permission prompt) |
|
|
220
220
|
| `agentControls` | `{ highlight?: boolean; actions?: boolean }` | — | Opt-in agent capabilities — `highlight` (element highlighting) and `actions` (on-screen actions). **Requires `captureMode: 'auto'`** and only applies when `agentId` is pinned. In picker mode, controls are configured per module in the dashboard. |
|
|
221
|
+
| `animateAgentCursor` | `boolean` | `false` | Animate the agent's cursor as it points to elements on the page. Primarily configured per agent in the dashboard; this prop is a fallback when the agent has no preference set. |
|
|
221
222
|
|
|
222
223
|
### `useLiveAgent()`
|
|
223
224
|
|