@stackable-labs/embeddables 1.26.0 → 1.27.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.
@@ -6,7 +6,10 @@ export interface WidgetComponentProps {
6
6
  theme?: WidgetTheme;
7
7
  }
8
8
  /**
9
- * Container component that manages widget visibility and positioning
9
+ * Container component that manages widget visibility and positioning.
10
+ * Listens for ext-action-* events from extensions to control visibility:
11
+ * open/close — toggle the widget panel
12
+ * show/hide — toggle the launcher button
10
13
  */
11
14
  export declare const WidgetComponent: ({ children, icon, theme }: WidgetComponentProps) => import("react/jsx-runtime").JSX.Element;
12
15
  export declare const Widget: {