@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.
- package/dist/embeddables/src/components/WidgetComponent.d.ts +4 -1
- package/dist/react.js +427 -427
- package/dist/stackable-widget.external.js +2 -2
- package/dist/stackable-widget.js +2 -2
- package/package.json +1 -1
- /package/dist/embeddables/src/components/{zendesk/CustomerProfile.d.ts → CustomerProfile.d.ts} +0 -0
|
@@ -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: {
|