@docyrus/ui-pro-ai-assistant 0.1.6 → 0.1.7
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/types/index.d.ts
CHANGED
|
@@ -207,6 +207,10 @@ export interface DocyAssistantProps {
|
|
|
207
207
|
className?: string;
|
|
208
208
|
defaultFullscreen?: boolean;
|
|
209
209
|
hideExpand?: boolean;
|
|
210
|
+
/** Hide the close (X) button in the header */
|
|
211
|
+
hideCloseButton?: boolean;
|
|
212
|
+
/** Hide the agent selector dropdown in the input area; shows agent name as static text instead */
|
|
213
|
+
hideAgentSelector?: boolean;
|
|
210
214
|
agentSelectorUrl?: string;
|
|
211
215
|
baseAgentSelectorUrl?: string;
|
|
212
216
|
/** Called after agent selection is persisted internally, for external notification only */
|
|
@@ -53,6 +53,8 @@ export interface InlineModeProps extends AssistantViewCommonProps {
|
|
|
53
53
|
renderWorksView?: () => ReactNode;
|
|
54
54
|
renderMemoriesView?: () => ReactNode;
|
|
55
55
|
renderThreadHeader?: () => ReactNode;
|
|
56
|
+
hideCloseButton?: boolean;
|
|
57
|
+
hideAgentSelector?: boolean;
|
|
56
58
|
agentSelectorUrl?: string;
|
|
57
59
|
baseAgentSelectorUrl?: string;
|
|
58
60
|
onAgentChange?: (agentId: string, agentType: 'base' | 'deployment') => void;
|
package/package.json
CHANGED