@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.
package/dist/types/index.d.ts
CHANGED
|
@@ -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