@elevo-ai/plugin-sdk 0.5.0-alpha.0 → 0.5.0-alpha.1

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/index.cjs.js CHANGED
@@ -7,3 +7,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
7
7
  exports.usePluginSDK = _a.usePluginSDK;
8
8
  exports.useInjectCSS = _a.useInjectCSS;
9
9
  exports.WorkspaceFileManagement = _a.WorkspaceFileManagement;
10
+ exports.ConversationPanel = _a.ConversationPanel;
package/index.d.ts CHANGED
@@ -207,7 +207,8 @@ export interface ElevoPluginSDK {
207
207
 
208
208
  export declare function usePluginSDK(): ElevoPluginSDK;
209
209
  export declare function useInjectCSS(cssText: string): void;
210
- export declare function WorkspaceFileManagement(props: WorkspaceFileTreeProps): React.ReactNode;
210
+ export declare function WorkspaceFileManagement(props: WorkspaceFileManagementProps): React.ReactNode;
211
+ export declare function ConversationPanel(props: ConversationPanelProps): React.ReactNode;
211
212
 
212
213
  export interface WorkspaceFileManagementProps {
213
214
  /** Header label. Default: 'Files' */
@@ -221,3 +222,8 @@ export interface WorkspaceFileManagementProps {
221
222
  /** Optional className for the root element */
222
223
  className?: string;
223
224
  }
225
+
226
+ export interface ConversationPanelProps {
227
+ workspaceId: string;
228
+ onCollapse?: () => void;
229
+ }
package/index.esm.js CHANGED
@@ -3,3 +3,4 @@ var _a = window.__ELEVO_PLUGIN_API__ || {};
3
3
  export const usePluginSDK = _a.usePluginSDK;
4
4
  export const useInjectCSS = _a.useInjectCSS;
5
5
  export const WorkspaceFileManagement = _a.WorkspaceFileManagement;
6
+ export const ConversationPanel = _a.ConversationPanel;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevo-ai/plugin-sdk",
3
- "version": "0.5.0-alpha.0",
3
+ "version": "0.5.0-alpha.1",
4
4
  "description": "Elevo Plugin SDK - Build plugins for the Elevo platform",
5
5
  "type": "module",
6
6
  "main": "./index.cjs.js",