@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docyrus/ui-pro-ai-assistant",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
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",