@docyrus/ui-pro-ai-assistant 0.4.5 → 0.4.6

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.
@@ -234,6 +234,8 @@ export interface DocyAssistantProps {
234
234
  hideBorder?: boolean;
235
235
  /** Show the header bar (default true); when false the agent selector moves to the top of the sidebar */
236
236
  showHeader?: boolean;
237
+ /** Hide the header bar while the welcome view is active (default true, preserving the previous behavior). Set to false to keep the header visible on the welcome screen. */
238
+ hideHeaderOnWelcome?: boolean;
237
239
  agentSelectorUrl?: string;
238
240
  baseAgentSelectorUrl?: string;
239
241
  /** Called after agent selection is persisted internally, for external notification only */
@@ -62,6 +62,7 @@ export interface InlineModeProps extends AssistantViewCommonProps {
62
62
  hideAgentSelector?: boolean;
63
63
  hideBorder?: boolean;
64
64
  showHeader?: boolean;
65
+ hideHeaderOnWelcome?: boolean;
65
66
  agentSelectorUrl?: string;
66
67
  baseAgentSelectorUrl?: string;
67
68
  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.4.5",
3
+ "version": "0.4.6",
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",