@docyrus/ui-pro-ai-assistant 0.3.4 → 0.3.5

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,6 +1,7 @@
1
1
  import { type FC } from 'react';
2
2
  interface MemoriesPanelProps {
3
3
  t: (key: string, params?: Record<string, string>) => string;
4
+ sidebarOffset?: boolean;
4
5
  }
5
6
  export declare const MemoriesPanel: FC<MemoriesPanelProps>;
6
7
  export {};
@@ -26,6 +26,7 @@ interface AssistantProjectDetailViewProps {
26
26
  isRecording: boolean;
27
27
  recognition: SpeechRecognitionInstance | null;
28
28
  onMicrophoneClick: () => void;
29
+ sidebarOffset?: boolean;
29
30
  }
30
31
  export declare const AssistantProjectDetailView: FC<AssistantProjectDetailViewProps>;
31
32
  export {};
@@ -10,6 +10,7 @@ interface SessionsListViewProps {
10
10
  onEditSession: (session: AssistantSession) => void;
11
11
  onDeleteSession: (session: AssistantSession) => void;
12
12
  t: (key: string, params?: Record<string, string>) => string;
13
+ sidebarOffset?: boolean;
13
14
  }
14
15
  export declare const SessionsListView: FC<SessionsListViewProps>;
15
16
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docyrus/ui-pro-ai-assistant",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "Docyrus AI Assistant component — full-featured chat UI with canvas, projects, and i18n support.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",