react-grab 0.0.96 → 0.0.98

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.
@@ -1 +1 @@
1
- 'use strict';var chunkXW3PUYC2_cjs=require('../chunk-XW3PUYC2.cjs');Object.defineProperty(exports,"DEFAULT_THEME",{enumerable:true,get:function(){return chunkXW3PUYC2_cjs.f}});Object.defineProperty(exports,"copyContent",{enumerable:true,get:function(){return chunkXW3PUYC2_cjs.d}});Object.defineProperty(exports,"formatElementInfo",{enumerable:true,get:function(){return chunkXW3PUYC2_cjs.c}});Object.defineProperty(exports,"generateSnippet",{enumerable:true,get:function(){return chunkXW3PUYC2_cjs.e}});Object.defineProperty(exports,"getStack",{enumerable:true,get:function(){return chunkXW3PUYC2_cjs.b}});Object.defineProperty(exports,"init",{enumerable:true,get:function(){return chunkXW3PUYC2_cjs.g}});Object.defineProperty(exports,"isInstrumentationActive",{enumerable:true,get:function(){return chunkXW3PUYC2_cjs.a}});
1
+ 'use strict';var chunkH4U7EPBM_cjs=require('../chunk-H4U7EPBM.cjs');Object.defineProperty(exports,"DEFAULT_THEME",{enumerable:true,get:function(){return chunkH4U7EPBM_cjs.f}});Object.defineProperty(exports,"copyContent",{enumerable:true,get:function(){return chunkH4U7EPBM_cjs.d}});Object.defineProperty(exports,"formatElementInfo",{enumerable:true,get:function(){return chunkH4U7EPBM_cjs.c}});Object.defineProperty(exports,"generateSnippet",{enumerable:true,get:function(){return chunkH4U7EPBM_cjs.e}});Object.defineProperty(exports,"getStack",{enumerable:true,get:function(){return chunkH4U7EPBM_cjs.b}});Object.defineProperty(exports,"init",{enumerable:true,get:function(){return chunkH4U7EPBM_cjs.g}});Object.defineProperty(exports,"isInstrumentationActive",{enumerable:true,get:function(){return chunkH4U7EPBM_cjs.a}});
@@ -1,3 +1,3 @@
1
- export { o as AgentCompleteResult, A as AgentContext, n as AgentOptions, l as AgentProvider, k as AgentSession, m as AgentSessionStorage, D as DEFAULT_THEME, O as Options, d as OverlayBounds, R as ReactGrabAPI, q as ReactGrabRendererProps, U as UpdatableOptions, r as copyContent, a as formatElementInfo, b as generateSnippet, g as getStack, i as init } from '../index-RhgdSH9U.cjs';
1
+ export { o as AgentCompleteResult, A as AgentContext, n as AgentOptions, l as AgentProvider, k as AgentSession, m as AgentSessionStorage, D as DEFAULT_THEME, O as Options, d as OverlayBounds, R as ReactGrabAPI, q as ReactGrabRendererProps, U as UpdatableOptions, r as copyContent, a as formatElementInfo, b as generateSnippet, g as getStack, i as init } from '../index-r1odQUH0.cjs';
2
2
  export { isInstrumentationActive } from 'bippy';
3
3
  import 'bippy/source';
@@ -1,3 +1,3 @@
1
- export { o as AgentCompleteResult, A as AgentContext, n as AgentOptions, l as AgentProvider, k as AgentSession, m as AgentSessionStorage, D as DEFAULT_THEME, O as Options, d as OverlayBounds, R as ReactGrabAPI, q as ReactGrabRendererProps, U as UpdatableOptions, r as copyContent, a as formatElementInfo, b as generateSnippet, g as getStack, i as init } from '../index-RhgdSH9U.js';
1
+ export { o as AgentCompleteResult, A as AgentContext, n as AgentOptions, l as AgentProvider, k as AgentSession, m as AgentSessionStorage, D as DEFAULT_THEME, O as Options, d as OverlayBounds, R as ReactGrabAPI, q as ReactGrabRendererProps, U as UpdatableOptions, r as copyContent, a as formatElementInfo, b as generateSnippet, g as getStack, i as init } from '../index-r1odQUH0.js';
2
2
  export { isInstrumentationActive } from 'bippy';
3
3
  import 'bippy/source';
@@ -1 +1 @@
1
- export{f as DEFAULT_THEME,d as copyContent,c as formatElementInfo,e as generateSnippet,b as getStack,g as init,a as isInstrumentationActive}from'../chunk-FEC5X6DJ.js';
1
+ export{f as DEFAULT_THEME,d as copyContent,c as formatElementInfo,e as generateSnippet,b as getStack,g as init,a as isInstrumentationActive}from'../chunk-D2FWI6AP.js';
@@ -80,12 +80,12 @@ interface ReactGrabState {
80
80
  isActive: boolean;
81
81
  isDragging: boolean;
82
82
  isCopying: boolean;
83
- isInputMode: boolean;
83
+ isPromptMode: boolean;
84
84
  targetElement: Element | null;
85
85
  dragBounds: DragRect | null;
86
86
  }
87
87
  type ElementLabelVariant = "hover" | "processing" | "success";
88
- interface InputModeContext {
88
+ interface PromptModeContext {
89
89
  x: number;
90
90
  y: number;
91
91
  targetElement: Element | null;
@@ -117,6 +117,7 @@ interface AgentSession {
117
117
  context: AgentContext;
118
118
  lastStatus: string;
119
119
  isStreaming: boolean;
120
+ isFading?: boolean;
120
121
  createdAt: number;
121
122
  lastUpdatedAt: number;
122
123
  position: {
@@ -185,16 +186,20 @@ interface Options {
185
186
  onCopySuccess?: (elements: Element[], content: string) => void;
186
187
  onCopyError?: (error: Error) => void;
187
188
  onStateChange?: (state: ReactGrabState) => void;
188
- onInputModeChange?: (isInputMode: boolean, context: InputModeContext) => void;
189
+ onPromptModeChange?: (isPromptMode: boolean, context: PromptModeContext) => void;
189
190
  onSelectionBox?: (visible: boolean, bounds: OverlayBounds | null, element: Element | null) => void;
190
191
  onDragBox?: (visible: boolean, bounds: OverlayBounds | null) => void;
191
192
  onGrabbedBox?: (bounds: OverlayBounds, element: Element) => void;
192
193
  onElementLabel?: (visible: boolean, variant: ElementLabelVariant, context: ElementLabelContext) => void;
193
194
  onCrosshair?: (visible: boolean, context: CrosshairContext) => void;
195
+ onContextMenu?: (element: Element, position: {
196
+ x: number;
197
+ y: number;
198
+ }) => void;
194
199
  onOpenFile?: (filePath: string, lineNumber?: number) => void;
195
200
  agent?: AgentOptions;
196
201
  }
197
- type UpdatableOptions = Pick<Options, "onActivate" | "onDeactivate" | "onElementHover" | "onElementSelect" | "onDragStart" | "onDragEnd" | "onBeforeCopy" | "onAfterCopy" | "onCopySuccess" | "onCopyError" | "onStateChange" | "onInputModeChange" | "onSelectionBox" | "onDragBox" | "onGrabbedBox" | "onElementLabel" | "onCrosshair" | "onOpenFile">;
202
+ type UpdatableOptions = Pick<Options, "onActivate" | "onDeactivate" | "onElementHover" | "onElementSelect" | "onDragStart" | "onDragEnd" | "onBeforeCopy" | "onAfterCopy" | "onCopySuccess" | "onCopyError" | "onStateChange" | "onPromptModeChange" | "onSelectionBox" | "onDragBox" | "onGrabbedBox" | "onElementLabel" | "onCrosshair" | "onContextMenu" | "onOpenFile">;
198
203
  interface ReactGrabAPI {
199
204
  activate: () => void;
200
205
  deactivate: () => void;
@@ -216,16 +221,19 @@ interface OverlayBounds {
216
221
  x: number;
217
222
  y: number;
218
223
  }
219
- type SelectionLabelStatus = "idle" | "copying" | "copied" | "fading";
224
+ type SelectionLabelStatus = "idle" | "copying" | "copied" | "fading" | "error";
220
225
  interface SelectionLabelInstance {
221
226
  id: string;
222
227
  bounds: OverlayBounds;
228
+ boundsMultiple?: OverlayBounds[];
223
229
  tagName: string;
224
230
  componentName?: string;
225
231
  status: SelectionLabelStatus;
226
232
  createdAt: number;
227
233
  element?: Element;
234
+ elements?: Element[];
228
235
  mouseX?: number;
236
+ errorMessage?: string;
229
237
  }
230
238
  interface ReactGrabRendererProps {
231
239
  selectionVisible?: boolean;
@@ -251,7 +259,7 @@ interface ReactGrabRendererProps {
251
259
  mouseY?: number;
252
260
  crosshairVisible?: boolean;
253
261
  inputValue?: string;
254
- isInputMode?: boolean;
262
+ isPromptMode?: boolean;
255
263
  replyToPrompt?: string;
256
264
  hasAgent?: boolean;
257
265
  isAgentConnected?: boolean;
@@ -266,6 +274,8 @@ interface ReactGrabRendererProps {
266
274
  onFollowUpSubmitSession?: (sessionId: string, prompt: string) => void;
267
275
  onAcknowledgeSessionError?: (sessionId: string) => void;
268
276
  onRetrySession?: (sessionId: string) => void;
277
+ onShowContextMenuSession?: (sessionId: string) => void;
278
+ onShowContextMenuInstance?: (instanceId: string) => void;
269
279
  onInputChange?: (value: string) => void;
270
280
  onInputSubmit?: () => void;
271
281
  onInputCancel?: () => void;
@@ -278,6 +288,20 @@ interface ReactGrabRendererProps {
278
288
  toolbarVisible?: boolean;
279
289
  isActive?: boolean;
280
290
  onToggleActive?: () => void;
291
+ contextMenuPosition?: {
292
+ x: number;
293
+ y: number;
294
+ } | null;
295
+ contextMenuBounds?: OverlayBounds | null;
296
+ contextMenuTagName?: string;
297
+ contextMenuComponentName?: string;
298
+ contextMenuHasFilePath?: boolean;
299
+ contextMenuHasAgent?: boolean;
300
+ onContextMenuCopy?: () => void;
301
+ onContextMenuCopyScreenshot?: () => void;
302
+ onContextMenuOpen?: () => void;
303
+ onContextMenuEdit?: () => void;
304
+ onContextMenuDismiss?: () => void;
281
305
  }
282
306
  interface GrabbedBox {
283
307
  id: string;
@@ -319,4 +343,4 @@ declare const copyContent: (content: string, options?: CopyContentOptions) => bo
319
343
 
320
344
  declare const init: (rawOptions?: Options) => ReactGrabAPI;
321
345
 
322
- export { type AgentContext as A, type CrosshairContext as C, DEFAULT_THEME as D, type ElementLabelVariant as E, type GrabbedBox as G, type InputModeContext as I, type Options as O, type ReactGrabAPI as R, type Theme as T, type UpdatableOptions as U, getElementContext as a, generateSnippet as b, type ReactGrabState as c, type OverlayBounds as d, type DragRect as e, type Rect as f, getStack as g, type DeepPartial as h, init as i, type ElementLabelContext as j, type AgentSession as k, type AgentProvider as l, type AgentSessionStorage as m, type AgentOptions as n, type AgentCompleteResult as o, type ActivationMode as p, type ReactGrabRendererProps as q, copyContent as r };
346
+ export { type AgentContext as A, type CrosshairContext as C, DEFAULT_THEME as D, type ElementLabelVariant as E, type GrabbedBox as G, type Options as O, type PromptModeContext as P, type ReactGrabAPI as R, type Theme as T, type UpdatableOptions as U, getElementContext as a, generateSnippet as b, type ReactGrabState as c, type OverlayBounds as d, type DragRect as e, type Rect as f, getStack as g, type DeepPartial as h, init as i, type ElementLabelContext as j, type AgentSession as k, type AgentProvider as l, type AgentSessionStorage as m, type AgentOptions as n, type AgentCompleteResult as o, type ActivationMode as p, type ReactGrabRendererProps as q, copyContent as r };
@@ -80,12 +80,12 @@ interface ReactGrabState {
80
80
  isActive: boolean;
81
81
  isDragging: boolean;
82
82
  isCopying: boolean;
83
- isInputMode: boolean;
83
+ isPromptMode: boolean;
84
84
  targetElement: Element | null;
85
85
  dragBounds: DragRect | null;
86
86
  }
87
87
  type ElementLabelVariant = "hover" | "processing" | "success";
88
- interface InputModeContext {
88
+ interface PromptModeContext {
89
89
  x: number;
90
90
  y: number;
91
91
  targetElement: Element | null;
@@ -117,6 +117,7 @@ interface AgentSession {
117
117
  context: AgentContext;
118
118
  lastStatus: string;
119
119
  isStreaming: boolean;
120
+ isFading?: boolean;
120
121
  createdAt: number;
121
122
  lastUpdatedAt: number;
122
123
  position: {
@@ -185,16 +186,20 @@ interface Options {
185
186
  onCopySuccess?: (elements: Element[], content: string) => void;
186
187
  onCopyError?: (error: Error) => void;
187
188
  onStateChange?: (state: ReactGrabState) => void;
188
- onInputModeChange?: (isInputMode: boolean, context: InputModeContext) => void;
189
+ onPromptModeChange?: (isPromptMode: boolean, context: PromptModeContext) => void;
189
190
  onSelectionBox?: (visible: boolean, bounds: OverlayBounds | null, element: Element | null) => void;
190
191
  onDragBox?: (visible: boolean, bounds: OverlayBounds | null) => void;
191
192
  onGrabbedBox?: (bounds: OverlayBounds, element: Element) => void;
192
193
  onElementLabel?: (visible: boolean, variant: ElementLabelVariant, context: ElementLabelContext) => void;
193
194
  onCrosshair?: (visible: boolean, context: CrosshairContext) => void;
195
+ onContextMenu?: (element: Element, position: {
196
+ x: number;
197
+ y: number;
198
+ }) => void;
194
199
  onOpenFile?: (filePath: string, lineNumber?: number) => void;
195
200
  agent?: AgentOptions;
196
201
  }
197
- type UpdatableOptions = Pick<Options, "onActivate" | "onDeactivate" | "onElementHover" | "onElementSelect" | "onDragStart" | "onDragEnd" | "onBeforeCopy" | "onAfterCopy" | "onCopySuccess" | "onCopyError" | "onStateChange" | "onInputModeChange" | "onSelectionBox" | "onDragBox" | "onGrabbedBox" | "onElementLabel" | "onCrosshair" | "onOpenFile">;
202
+ type UpdatableOptions = Pick<Options, "onActivate" | "onDeactivate" | "onElementHover" | "onElementSelect" | "onDragStart" | "onDragEnd" | "onBeforeCopy" | "onAfterCopy" | "onCopySuccess" | "onCopyError" | "onStateChange" | "onPromptModeChange" | "onSelectionBox" | "onDragBox" | "onGrabbedBox" | "onElementLabel" | "onCrosshair" | "onContextMenu" | "onOpenFile">;
198
203
  interface ReactGrabAPI {
199
204
  activate: () => void;
200
205
  deactivate: () => void;
@@ -216,16 +221,19 @@ interface OverlayBounds {
216
221
  x: number;
217
222
  y: number;
218
223
  }
219
- type SelectionLabelStatus = "idle" | "copying" | "copied" | "fading";
224
+ type SelectionLabelStatus = "idle" | "copying" | "copied" | "fading" | "error";
220
225
  interface SelectionLabelInstance {
221
226
  id: string;
222
227
  bounds: OverlayBounds;
228
+ boundsMultiple?: OverlayBounds[];
223
229
  tagName: string;
224
230
  componentName?: string;
225
231
  status: SelectionLabelStatus;
226
232
  createdAt: number;
227
233
  element?: Element;
234
+ elements?: Element[];
228
235
  mouseX?: number;
236
+ errorMessage?: string;
229
237
  }
230
238
  interface ReactGrabRendererProps {
231
239
  selectionVisible?: boolean;
@@ -251,7 +259,7 @@ interface ReactGrabRendererProps {
251
259
  mouseY?: number;
252
260
  crosshairVisible?: boolean;
253
261
  inputValue?: string;
254
- isInputMode?: boolean;
262
+ isPromptMode?: boolean;
255
263
  replyToPrompt?: string;
256
264
  hasAgent?: boolean;
257
265
  isAgentConnected?: boolean;
@@ -266,6 +274,8 @@ interface ReactGrabRendererProps {
266
274
  onFollowUpSubmitSession?: (sessionId: string, prompt: string) => void;
267
275
  onAcknowledgeSessionError?: (sessionId: string) => void;
268
276
  onRetrySession?: (sessionId: string) => void;
277
+ onShowContextMenuSession?: (sessionId: string) => void;
278
+ onShowContextMenuInstance?: (instanceId: string) => void;
269
279
  onInputChange?: (value: string) => void;
270
280
  onInputSubmit?: () => void;
271
281
  onInputCancel?: () => void;
@@ -278,6 +288,20 @@ interface ReactGrabRendererProps {
278
288
  toolbarVisible?: boolean;
279
289
  isActive?: boolean;
280
290
  onToggleActive?: () => void;
291
+ contextMenuPosition?: {
292
+ x: number;
293
+ y: number;
294
+ } | null;
295
+ contextMenuBounds?: OverlayBounds | null;
296
+ contextMenuTagName?: string;
297
+ contextMenuComponentName?: string;
298
+ contextMenuHasFilePath?: boolean;
299
+ contextMenuHasAgent?: boolean;
300
+ onContextMenuCopy?: () => void;
301
+ onContextMenuCopyScreenshot?: () => void;
302
+ onContextMenuOpen?: () => void;
303
+ onContextMenuEdit?: () => void;
304
+ onContextMenuDismiss?: () => void;
281
305
  }
282
306
  interface GrabbedBox {
283
307
  id: string;
@@ -319,4 +343,4 @@ declare const copyContent: (content: string, options?: CopyContentOptions) => bo
319
343
 
320
344
  declare const init: (rawOptions?: Options) => ReactGrabAPI;
321
345
 
322
- export { type AgentContext as A, type CrosshairContext as C, DEFAULT_THEME as D, type ElementLabelVariant as E, type GrabbedBox as G, type InputModeContext as I, type Options as O, type ReactGrabAPI as R, type Theme as T, type UpdatableOptions as U, getElementContext as a, generateSnippet as b, type ReactGrabState as c, type OverlayBounds as d, type DragRect as e, type Rect as f, getStack as g, type DeepPartial as h, init as i, type ElementLabelContext as j, type AgentSession as k, type AgentProvider as l, type AgentSessionStorage as m, type AgentOptions as n, type AgentCompleteResult as o, type ActivationMode as p, type ReactGrabRendererProps as q, copyContent as r };
346
+ export { type AgentContext as A, type CrosshairContext as C, DEFAULT_THEME as D, type ElementLabelVariant as E, type GrabbedBox as G, type Options as O, type PromptModeContext as P, type ReactGrabAPI as R, type Theme as T, type UpdatableOptions as U, getElementContext as a, generateSnippet as b, type ReactGrabState as c, type OverlayBounds as d, type DragRect as e, type Rect as f, getStack as g, type DeepPartial as h, init as i, type ElementLabelContext as j, type AgentSession as k, type AgentProvider as l, type AgentSessionStorage as m, type AgentOptions as n, type AgentCompleteResult as o, type ActivationMode as p, type ReactGrabRendererProps as q, copyContent as r };
package/dist/index.cjs CHANGED
@@ -1,4 +1,4 @@
1
- 'use strict';var chunkXW3PUYC2_cjs=require('./chunk-XW3PUYC2.cjs');/**
1
+ 'use strict';var chunkH4U7EPBM_cjs=require('./chunk-H4U7EPBM.cjs');/**
2
2
  * @license MIT
3
3
  *
4
4
  * Copyright (c) 2025 Aiden Bai
@@ -6,4 +6,4 @@
6
6
  * This source code is licensed under the MIT license found in the
7
7
  * LICENSE file in the root directory of this source tree.
8
8
  */
9
- var e=null,A=()=>typeof window>"u"?e:window.__REACT_GRAB__??e??null,d=t=>{e=t,typeof window<"u"&&(t?window.__REACT_GRAB__=t:delete window.__REACT_GRAB__);};typeof window<"u"&&(window.__REACT_GRAB__?e=window.__REACT_GRAB__:(e=chunkXW3PUYC2_cjs.g(),window.__REACT_GRAB__=e),window.dispatchEvent(new CustomEvent("react-grab:init",{detail:e})));Object.defineProperty(exports,"DEFAULT_THEME",{enumerable:true,get:function(){return chunkXW3PUYC2_cjs.f}});Object.defineProperty(exports,"formatElementInfo",{enumerable:true,get:function(){return chunkXW3PUYC2_cjs.c}});Object.defineProperty(exports,"generateSnippet",{enumerable:true,get:function(){return chunkXW3PUYC2_cjs.e}});Object.defineProperty(exports,"getStack",{enumerable:true,get:function(){return chunkXW3PUYC2_cjs.b}});Object.defineProperty(exports,"init",{enumerable:true,get:function(){return chunkXW3PUYC2_cjs.g}});Object.defineProperty(exports,"isInstrumentationActive",{enumerable:true,get:function(){return chunkXW3PUYC2_cjs.a}});exports.getGlobalApi=A;exports.setGlobalApi=d;
9
+ var e=null,A=()=>typeof window>"u"?e:window.__REACT_GRAB__??e??null,d=t=>{e=t,typeof window<"u"&&(t?window.__REACT_GRAB__=t:delete window.__REACT_GRAB__);};typeof window<"u"&&(window.__REACT_GRAB__?e=window.__REACT_GRAB__:(e=chunkH4U7EPBM_cjs.g(),window.__REACT_GRAB__=e),window.dispatchEvent(new CustomEvent("react-grab:init",{detail:e})));Object.defineProperty(exports,"DEFAULT_THEME",{enumerable:true,get:function(){return chunkH4U7EPBM_cjs.f}});Object.defineProperty(exports,"formatElementInfo",{enumerable:true,get:function(){return chunkH4U7EPBM_cjs.c}});Object.defineProperty(exports,"generateSnippet",{enumerable:true,get:function(){return chunkH4U7EPBM_cjs.e}});Object.defineProperty(exports,"getStack",{enumerable:true,get:function(){return chunkH4U7EPBM_cjs.b}});Object.defineProperty(exports,"init",{enumerable:true,get:function(){return chunkH4U7EPBM_cjs.g}});Object.defineProperty(exports,"isInstrumentationActive",{enumerable:true,get:function(){return chunkH4U7EPBM_cjs.a}});exports.getGlobalApi=A;exports.setGlobalApi=d;
package/dist/index.d.cts CHANGED
@@ -1,5 +1,5 @@
1
- import { R as ReactGrabAPI } from './index-RhgdSH9U.cjs';
2
- export { p as ActivationMode, o as AgentCompleteResult, A as AgentContext, n as AgentOptions, l as AgentProvider, k as AgentSession, m as AgentSessionStorage, C as CrosshairContext, D as DEFAULT_THEME, h as DeepPartial, e as DragRect, j as ElementLabelContext, E as ElementLabelVariant, G as GrabbedBox, I as InputModeContext, O as Options, d as OverlayBounds, c as ReactGrabState, f as Rect, T as Theme, U as UpdatableOptions, a as formatElementInfo, b as generateSnippet, g as getStack, i as init } from './index-RhgdSH9U.cjs';
1
+ import { R as ReactGrabAPI } from './index-r1odQUH0.cjs';
2
+ export { p as ActivationMode, o as AgentCompleteResult, A as AgentContext, n as AgentOptions, l as AgentProvider, k as AgentSession, m as AgentSessionStorage, C as CrosshairContext, D as DEFAULT_THEME, h as DeepPartial, e as DragRect, j as ElementLabelContext, E as ElementLabelVariant, G as GrabbedBox, O as Options, d as OverlayBounds, P as PromptModeContext, c as ReactGrabState, f as Rect, T as Theme, U as UpdatableOptions, a as formatElementInfo, b as generateSnippet, g as getStack, i as init } from './index-r1odQUH0.cjs';
3
3
  export { isInstrumentationActive } from 'bippy';
4
4
  import 'bippy/source';
5
5
 
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { R as ReactGrabAPI } from './index-RhgdSH9U.js';
2
- export { p as ActivationMode, o as AgentCompleteResult, A as AgentContext, n as AgentOptions, l as AgentProvider, k as AgentSession, m as AgentSessionStorage, C as CrosshairContext, D as DEFAULT_THEME, h as DeepPartial, e as DragRect, j as ElementLabelContext, E as ElementLabelVariant, G as GrabbedBox, I as InputModeContext, O as Options, d as OverlayBounds, c as ReactGrabState, f as Rect, T as Theme, U as UpdatableOptions, a as formatElementInfo, b as generateSnippet, g as getStack, i as init } from './index-RhgdSH9U.js';
1
+ import { R as ReactGrabAPI } from './index-r1odQUH0.js';
2
+ export { p as ActivationMode, o as AgentCompleteResult, A as AgentContext, n as AgentOptions, l as AgentProvider, k as AgentSession, m as AgentSessionStorage, C as CrosshairContext, D as DEFAULT_THEME, h as DeepPartial, e as DragRect, j as ElementLabelContext, E as ElementLabelVariant, G as GrabbedBox, O as Options, d as OverlayBounds, P as PromptModeContext, c as ReactGrabState, f as Rect, T as Theme, U as UpdatableOptions, a as formatElementInfo, b as generateSnippet, g as getStack, i as init } from './index-r1odQUH0.js';
3
3
  export { isInstrumentationActive } from 'bippy';
4
4
  import 'bippy/source';
5
5