@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 +1 -0
- package/index.d.ts +7 -1
- package/index.esm.js +1 -0
- package/package.json +1 -1
package/index.cjs.js
CHANGED
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:
|
|
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