@gendive/chatllm 0.17.26 → 0.17.28
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/react/index.d.mts +38 -1
- package/dist/react/index.d.ts +38 -1
- package/dist/react/index.js +374 -78
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +372 -78
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/react/index.d.mts
CHANGED
|
@@ -1332,6 +1332,8 @@ interface UseChatUIReturn {
|
|
|
1332
1332
|
* @Todo vibecode - 항목을 done(건너뜀)으로 마킹 후 다음 단계 진행
|
|
1333
1333
|
*/
|
|
1334
1334
|
handleChecklistSkip: (messageId: string, stepIndex: number) => void;
|
|
1335
|
+
/** @Todo vibecode - 활성 체크리스트가 포함된 메시지 (패널 자동 열기 트리거용) */
|
|
1336
|
+
activeChecklistMessage: ChatMessage | null;
|
|
1335
1337
|
}
|
|
1336
1338
|
|
|
1337
1339
|
/**
|
|
@@ -2009,6 +2011,41 @@ interface ChecklistCardProps {
|
|
|
2009
2011
|
/** @Todo vibecode - 체크리스트 카드 컴포넌트 */
|
|
2010
2012
|
declare const ChecklistCard: React$1.FC<ChecklistCardProps>;
|
|
2011
2013
|
|
|
2014
|
+
interface ChecklistMiniIndicatorProps {
|
|
2015
|
+
/** 체크리스트 항목 배열 */
|
|
2016
|
+
items: ChecklistItem[];
|
|
2017
|
+
/** 전체 완료 여부 */
|
|
2018
|
+
completed: boolean;
|
|
2019
|
+
}
|
|
2020
|
+
/** @Todo vibecode - 메시지 버블 내 체크리스트 미니 인디케이터 (한 줄 컴팩트) */
|
|
2021
|
+
declare const ChecklistMiniIndicator: React$1.FC<ChecklistMiniIndicatorProps>;
|
|
2022
|
+
|
|
2023
|
+
/**
|
|
2024
|
+
* @description 체크리스트 우측 패널 컴포넌트
|
|
2025
|
+
* @Todo vibecode - 데스크탑: flex item (360px), 모바일: 슬라이드인 오버레이
|
|
2026
|
+
*/
|
|
2027
|
+
|
|
2028
|
+
interface ChecklistPanelProps {
|
|
2029
|
+
/** @Todo vibecode - 활성 체크리스트가 포함된 메시지 */
|
|
2030
|
+
message: ChatMessage | null;
|
|
2031
|
+
/** 패널 열림 여부 */
|
|
2032
|
+
isOpen: boolean;
|
|
2033
|
+
/** 패널 닫기 */
|
|
2034
|
+
onClose: () => void;
|
|
2035
|
+
/** 체크리스트 중단 */
|
|
2036
|
+
onAbort?: () => void;
|
|
2037
|
+
/** 실패 항목 재시도 */
|
|
2038
|
+
onRetry?: (stepIndex: number) => void;
|
|
2039
|
+
/** 항목 건너뛰기 */
|
|
2040
|
+
onSkip?: (stepIndex: number) => void;
|
|
2041
|
+
/** 패널 너비 (데스크탑) */
|
|
2042
|
+
width?: number | string;
|
|
2043
|
+
/** 모바일 오버레이 모드 */
|
|
2044
|
+
isMobileOverlay?: boolean;
|
|
2045
|
+
}
|
|
2046
|
+
/** @Todo vibecode - 체크리스트 우측 패널 */
|
|
2047
|
+
declare const ChecklistPanel: React$1.FC<ChecklistPanelProps>;
|
|
2048
|
+
|
|
2012
2049
|
/**
|
|
2013
2050
|
* @description 프로젝트 선택 드롭다운 - 사이드바 상단에 배치
|
|
2014
2051
|
* @Todo vibecode - 프로젝트 전환, 생성, 설정 접근
|
|
@@ -2072,4 +2109,4 @@ declare const DEFAULT_PROJECT_TITLE = "\uAE30\uBCF8 \uD504\uB85C\uC81D\uD2B8";
|
|
|
2072
2109
|
*/
|
|
2073
2110
|
declare const migrateSessionsToProjects: (storageKey: string) => void;
|
|
2074
2111
|
|
|
2075
|
-
export { type ActionItem, type ActionMenuProps, type AdvancedResearchOptions, type AlternativeResponse, type ChatAttachment, ChatHeader, ChatInput, type ChatMessage, type ChatProject, type ChatSession, ChatSidebar, type ChatToolDefinition, type ChatToolParameter, ChatUI, type ChatUIComponents, type ChatUIProps, type ChecklistBlock, ChecklistCard, type ChecklistCardProps, type ChecklistItem, ContentPartRenderer, type ContentPartRendererProps, DEFAULT_PROJECT_ID, DEFAULT_PROJECT_TITLE, type DeepResearchCallbacks, type DeepResearchProgress, DeepResearchProgressUI, EmptyState, type EmptyStateProps, type ErrorContentPart, FileContentCard, type FileContentCardProps, type FileContentPart, type HeaderProps, Icon, type IconName, type IconProps, IconSvg, ImageContentCard, type ImageContentCardProps, type ImageContentPart, type InputProps, LinkChip, type LinkChipProps, type ManualSkillItem, MarkdownRenderer, type MarkdownRendererProps, type MemoryItem, MemoryPanel, type MemoryPanelProps, MessageBubble, type MessageBubbleProps, type MessageContentPart, MessageList, type MessageListProps, type ModelConfig, type ModelSelectorProps, type PersonalizationConfig, type PollBlock, PollCard, type PollCardProps, type PollOption, type PollQuestion, type PollResponse, type PollState, type ProjectFile, ProjectSelector, type ProjectSelectorProps, ProjectSettingsModal, type ProjectSettingsModalProps, type PromptTemplate, type ProviderType, type ResponseStyle, type SearchResult, type SearchResultContentPart, type SendMessageParams, type SendMessageResponse, SettingsModal, type SettingsModalProps, type SettingsTab, type SidebarProps, type SkillConfig, type SkillExecuteCallbacks, type SkillExecution, type SkillExecutionResult, type SkillProgress, SkillProgressUI, type SkillProgressUIProps, type SkillTrigger, type SourceItem, type SubAgentProgress, type SuggestedPrompt, type TextContentPart, type ThemeConfig, type ThemeMode, type ToolCallResult, type ToolLoadingContentPart, type ToolResultContentPart, type UseChatUIOptions, type UseChatUIReturn, type UseDeepResearchOptions, type UseProjectOptions, type UseProjectReturn, type UseSkillsOptions, type UseSkillsReturn, type UserProfile, convertToolsToSkills, createAdvancedResearchSkill, createDeepResearchSkill, migrateSessionsToProjects, useChatUI, useDeepResearch, useProject, useSkills };
|
|
2112
|
+
export { type ActionItem, type ActionMenuProps, type AdvancedResearchOptions, type AlternativeResponse, type ChatAttachment, ChatHeader, ChatInput, type ChatMessage, type ChatProject, type ChatSession, ChatSidebar, type ChatToolDefinition, type ChatToolParameter, ChatUI, type ChatUIComponents, type ChatUIProps, type ChecklistBlock, ChecklistCard, type ChecklistCardProps, type ChecklistItem, ChecklistMiniIndicator, type ChecklistMiniIndicatorProps, ChecklistPanel, type ChecklistPanelProps, ContentPartRenderer, type ContentPartRendererProps, DEFAULT_PROJECT_ID, DEFAULT_PROJECT_TITLE, type DeepResearchCallbacks, type DeepResearchProgress, DeepResearchProgressUI, EmptyState, type EmptyStateProps, type ErrorContentPart, FileContentCard, type FileContentCardProps, type FileContentPart, type HeaderProps, Icon, type IconName, type IconProps, IconSvg, ImageContentCard, type ImageContentCardProps, type ImageContentPart, type InputProps, LinkChip, type LinkChipProps, type ManualSkillItem, MarkdownRenderer, type MarkdownRendererProps, type MemoryItem, MemoryPanel, type MemoryPanelProps, MessageBubble, type MessageBubbleProps, type MessageContentPart, MessageList, type MessageListProps, type ModelConfig, type ModelSelectorProps, type PersonalizationConfig, type PollBlock, PollCard, type PollCardProps, type PollOption, type PollQuestion, type PollResponse, type PollState, type ProjectFile, ProjectSelector, type ProjectSelectorProps, ProjectSettingsModal, type ProjectSettingsModalProps, type PromptTemplate, type ProviderType, type ResponseStyle, type SearchResult, type SearchResultContentPart, type SendMessageParams, type SendMessageResponse, SettingsModal, type SettingsModalProps, type SettingsTab, type SidebarProps, type SkillConfig, type SkillExecuteCallbacks, type SkillExecution, type SkillExecutionResult, type SkillProgress, SkillProgressUI, type SkillProgressUIProps, type SkillTrigger, type SourceItem, type SubAgentProgress, type SuggestedPrompt, type TextContentPart, type ThemeConfig, type ThemeMode, type ToolCallResult, type ToolLoadingContentPart, type ToolResultContentPart, type UseChatUIOptions, type UseChatUIReturn, type UseDeepResearchOptions, type UseProjectOptions, type UseProjectReturn, type UseSkillsOptions, type UseSkillsReturn, type UserProfile, convertToolsToSkills, createAdvancedResearchSkill, createDeepResearchSkill, migrateSessionsToProjects, useChatUI, useDeepResearch, useProject, useSkills };
|
package/dist/react/index.d.ts
CHANGED
|
@@ -1332,6 +1332,8 @@ interface UseChatUIReturn {
|
|
|
1332
1332
|
* @Todo vibecode - 항목을 done(건너뜀)으로 마킹 후 다음 단계 진행
|
|
1333
1333
|
*/
|
|
1334
1334
|
handleChecklistSkip: (messageId: string, stepIndex: number) => void;
|
|
1335
|
+
/** @Todo vibecode - 활성 체크리스트가 포함된 메시지 (패널 자동 열기 트리거용) */
|
|
1336
|
+
activeChecklistMessage: ChatMessage | null;
|
|
1335
1337
|
}
|
|
1336
1338
|
|
|
1337
1339
|
/**
|
|
@@ -2009,6 +2011,41 @@ interface ChecklistCardProps {
|
|
|
2009
2011
|
/** @Todo vibecode - 체크리스트 카드 컴포넌트 */
|
|
2010
2012
|
declare const ChecklistCard: React$1.FC<ChecklistCardProps>;
|
|
2011
2013
|
|
|
2014
|
+
interface ChecklistMiniIndicatorProps {
|
|
2015
|
+
/** 체크리스트 항목 배열 */
|
|
2016
|
+
items: ChecklistItem[];
|
|
2017
|
+
/** 전체 완료 여부 */
|
|
2018
|
+
completed: boolean;
|
|
2019
|
+
}
|
|
2020
|
+
/** @Todo vibecode - 메시지 버블 내 체크리스트 미니 인디케이터 (한 줄 컴팩트) */
|
|
2021
|
+
declare const ChecklistMiniIndicator: React$1.FC<ChecklistMiniIndicatorProps>;
|
|
2022
|
+
|
|
2023
|
+
/**
|
|
2024
|
+
* @description 체크리스트 우측 패널 컴포넌트
|
|
2025
|
+
* @Todo vibecode - 데스크탑: flex item (360px), 모바일: 슬라이드인 오버레이
|
|
2026
|
+
*/
|
|
2027
|
+
|
|
2028
|
+
interface ChecklistPanelProps {
|
|
2029
|
+
/** @Todo vibecode - 활성 체크리스트가 포함된 메시지 */
|
|
2030
|
+
message: ChatMessage | null;
|
|
2031
|
+
/** 패널 열림 여부 */
|
|
2032
|
+
isOpen: boolean;
|
|
2033
|
+
/** 패널 닫기 */
|
|
2034
|
+
onClose: () => void;
|
|
2035
|
+
/** 체크리스트 중단 */
|
|
2036
|
+
onAbort?: () => void;
|
|
2037
|
+
/** 실패 항목 재시도 */
|
|
2038
|
+
onRetry?: (stepIndex: number) => void;
|
|
2039
|
+
/** 항목 건너뛰기 */
|
|
2040
|
+
onSkip?: (stepIndex: number) => void;
|
|
2041
|
+
/** 패널 너비 (데스크탑) */
|
|
2042
|
+
width?: number | string;
|
|
2043
|
+
/** 모바일 오버레이 모드 */
|
|
2044
|
+
isMobileOverlay?: boolean;
|
|
2045
|
+
}
|
|
2046
|
+
/** @Todo vibecode - 체크리스트 우측 패널 */
|
|
2047
|
+
declare const ChecklistPanel: React$1.FC<ChecklistPanelProps>;
|
|
2048
|
+
|
|
2012
2049
|
/**
|
|
2013
2050
|
* @description 프로젝트 선택 드롭다운 - 사이드바 상단에 배치
|
|
2014
2051
|
* @Todo vibecode - 프로젝트 전환, 생성, 설정 접근
|
|
@@ -2072,4 +2109,4 @@ declare const DEFAULT_PROJECT_TITLE = "\uAE30\uBCF8 \uD504\uB85C\uC81D\uD2B8";
|
|
|
2072
2109
|
*/
|
|
2073
2110
|
declare const migrateSessionsToProjects: (storageKey: string) => void;
|
|
2074
2111
|
|
|
2075
|
-
export { type ActionItem, type ActionMenuProps, type AdvancedResearchOptions, type AlternativeResponse, type ChatAttachment, ChatHeader, ChatInput, type ChatMessage, type ChatProject, type ChatSession, ChatSidebar, type ChatToolDefinition, type ChatToolParameter, ChatUI, type ChatUIComponents, type ChatUIProps, type ChecklistBlock, ChecklistCard, type ChecklistCardProps, type ChecklistItem, ContentPartRenderer, type ContentPartRendererProps, DEFAULT_PROJECT_ID, DEFAULT_PROJECT_TITLE, type DeepResearchCallbacks, type DeepResearchProgress, DeepResearchProgressUI, EmptyState, type EmptyStateProps, type ErrorContentPart, FileContentCard, type FileContentCardProps, type FileContentPart, type HeaderProps, Icon, type IconName, type IconProps, IconSvg, ImageContentCard, type ImageContentCardProps, type ImageContentPart, type InputProps, LinkChip, type LinkChipProps, type ManualSkillItem, MarkdownRenderer, type MarkdownRendererProps, type MemoryItem, MemoryPanel, type MemoryPanelProps, MessageBubble, type MessageBubbleProps, type MessageContentPart, MessageList, type MessageListProps, type ModelConfig, type ModelSelectorProps, type PersonalizationConfig, type PollBlock, PollCard, type PollCardProps, type PollOption, type PollQuestion, type PollResponse, type PollState, type ProjectFile, ProjectSelector, type ProjectSelectorProps, ProjectSettingsModal, type ProjectSettingsModalProps, type PromptTemplate, type ProviderType, type ResponseStyle, type SearchResult, type SearchResultContentPart, type SendMessageParams, type SendMessageResponse, SettingsModal, type SettingsModalProps, type SettingsTab, type SidebarProps, type SkillConfig, type SkillExecuteCallbacks, type SkillExecution, type SkillExecutionResult, type SkillProgress, SkillProgressUI, type SkillProgressUIProps, type SkillTrigger, type SourceItem, type SubAgentProgress, type SuggestedPrompt, type TextContentPart, type ThemeConfig, type ThemeMode, type ToolCallResult, type ToolLoadingContentPart, type ToolResultContentPart, type UseChatUIOptions, type UseChatUIReturn, type UseDeepResearchOptions, type UseProjectOptions, type UseProjectReturn, type UseSkillsOptions, type UseSkillsReturn, type UserProfile, convertToolsToSkills, createAdvancedResearchSkill, createDeepResearchSkill, migrateSessionsToProjects, useChatUI, useDeepResearch, useProject, useSkills };
|
|
2112
|
+
export { type ActionItem, type ActionMenuProps, type AdvancedResearchOptions, type AlternativeResponse, type ChatAttachment, ChatHeader, ChatInput, type ChatMessage, type ChatProject, type ChatSession, ChatSidebar, type ChatToolDefinition, type ChatToolParameter, ChatUI, type ChatUIComponents, type ChatUIProps, type ChecklistBlock, ChecklistCard, type ChecklistCardProps, type ChecklistItem, ChecklistMiniIndicator, type ChecklistMiniIndicatorProps, ChecklistPanel, type ChecklistPanelProps, ContentPartRenderer, type ContentPartRendererProps, DEFAULT_PROJECT_ID, DEFAULT_PROJECT_TITLE, type DeepResearchCallbacks, type DeepResearchProgress, DeepResearchProgressUI, EmptyState, type EmptyStateProps, type ErrorContentPart, FileContentCard, type FileContentCardProps, type FileContentPart, type HeaderProps, Icon, type IconName, type IconProps, IconSvg, ImageContentCard, type ImageContentCardProps, type ImageContentPart, type InputProps, LinkChip, type LinkChipProps, type ManualSkillItem, MarkdownRenderer, type MarkdownRendererProps, type MemoryItem, MemoryPanel, type MemoryPanelProps, MessageBubble, type MessageBubbleProps, type MessageContentPart, MessageList, type MessageListProps, type ModelConfig, type ModelSelectorProps, type PersonalizationConfig, type PollBlock, PollCard, type PollCardProps, type PollOption, type PollQuestion, type PollResponse, type PollState, type ProjectFile, ProjectSelector, type ProjectSelectorProps, ProjectSettingsModal, type ProjectSettingsModalProps, type PromptTemplate, type ProviderType, type ResponseStyle, type SearchResult, type SearchResultContentPart, type SendMessageParams, type SendMessageResponse, SettingsModal, type SettingsModalProps, type SettingsTab, type SidebarProps, type SkillConfig, type SkillExecuteCallbacks, type SkillExecution, type SkillExecutionResult, type SkillProgress, SkillProgressUI, type SkillProgressUIProps, type SkillTrigger, type SourceItem, type SubAgentProgress, type SuggestedPrompt, type TextContentPart, type ThemeConfig, type ThemeMode, type ToolCallResult, type ToolLoadingContentPart, type ToolResultContentPart, type UseChatUIOptions, type UseChatUIReturn, type UseDeepResearchOptions, type UseProjectOptions, type UseProjectReturn, type UseSkillsOptions, type UseSkillsReturn, type UserProfile, convertToolsToSkills, createAdvancedResearchSkill, createDeepResearchSkill, migrateSessionsToProjects, useChatUI, useDeepResearch, useProject, useSkills };
|