@docyrus/ui-pro-ai-assistant 0.7.3 → 0.7.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.
- package/README.md +6 -3
- package/dist/docy-assistant.d.ts +1 -1
- package/dist/index.js +13 -7
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +0 -2
- package/dist/views/assistant-view.d.ts +0 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -322,8 +322,6 @@ export interface DocyAssistantProps {
|
|
|
322
322
|
hideBorder?: boolean;
|
|
323
323
|
/** Show the header bar (default true). */
|
|
324
324
|
showHeader?: boolean;
|
|
325
|
-
/** 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. */
|
|
326
|
-
hideHeaderOnWelcome?: boolean;
|
|
327
325
|
/** URL listing deployed agents for the "+" tab dropdown (defaults to `/ai/agent-deployments`). */
|
|
328
326
|
agentSelectorUrl?: string;
|
|
329
327
|
/** Fired when the user opens a new agent tab from the "+" dropdown. */
|
|
@@ -92,7 +92,6 @@ export interface InlineModeProps extends AssistantViewCommonProps {
|
|
|
92
92
|
hideCloseButton?: boolean;
|
|
93
93
|
hideBorder?: boolean;
|
|
94
94
|
showHeader?: boolean;
|
|
95
|
-
hideHeaderOnWelcome?: boolean;
|
|
96
95
|
t: (key: string) => string;
|
|
97
96
|
}
|
|
98
97
|
export interface ConversationModeProps extends AssistantViewCommonProps {
|
package/package.json
CHANGED