@gendive/chatllm 0.21.6 → 0.21.8
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 +72 -52
- package/dist/react/index.d.ts +72 -52
- package/dist/react/index.js +339 -295
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +102 -60
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/react/index.d.mts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React$1 from 'react';
|
|
1
|
+
import * as React$1 from 'react';
|
|
2
|
+
import React__default from 'react';
|
|
2
3
|
|
|
3
4
|
type TaskStatus = 'pending' | 'in_progress' | 'completed' | 'failed';
|
|
4
5
|
interface ObservedTask {
|
|
@@ -215,7 +216,7 @@ interface MarkdownRendererProps {
|
|
|
215
216
|
*/
|
|
216
217
|
inline?: boolean;
|
|
217
218
|
}
|
|
218
|
-
declare const MarkdownRenderer:
|
|
219
|
+
declare const MarkdownRenderer: React__default.FC<MarkdownRendererProps>;
|
|
219
220
|
|
|
220
221
|
/**
|
|
221
222
|
* @description 메모리 시스템 타입 정의
|
|
@@ -500,7 +501,8 @@ interface ImageContentPart {
|
|
|
500
501
|
url: string;
|
|
501
502
|
alt?: string;
|
|
502
503
|
width?: number;
|
|
503
|
-
height?: number;
|
|
504
|
+
height?: number; /** @Todo vibecode - presigned URL 재발급용 파일 키 (#13) */
|
|
505
|
+
fileName?: string;
|
|
504
506
|
}
|
|
505
507
|
/** @Todo vibecode - 파일 콘텐츠 파트 */
|
|
506
508
|
interface FileContentPart {
|
|
@@ -1053,6 +1055,11 @@ interface ChatUIProps {
|
|
|
1053
1055
|
* localStorage 용량 초과 방지 + 백엔드에 경량 데이터 전달
|
|
1054
1056
|
*/
|
|
1055
1057
|
onUploadImage?: (dataUri: string, filename: string) => Promise<string>;
|
|
1058
|
+
/**
|
|
1059
|
+
* @description 이미지 로드 실패 시 콜백 (presigned URL 만료 대응)
|
|
1060
|
+
* @Todo vibecode - 새 URL 반환 시 img.src 갱신 + contentParts url 업데이트, null 반환 시 기본 에러 처리 (#13)
|
|
1061
|
+
*/
|
|
1062
|
+
onImageError?: (url: string, fileName?: string) => Promise<string | null>;
|
|
1056
1063
|
/**
|
|
1057
1064
|
* @description Thinking 블록 표시 여부
|
|
1058
1065
|
* @Todo vibecode - AI 추론 과정 표시 (기본: true)
|
|
@@ -1869,7 +1876,7 @@ interface ConversationSearchSkillOptions {
|
|
|
1869
1876
|
* @description ChatUI 메인 컴포넌트
|
|
1870
1877
|
* @Todo vibecode - chatState 제공 시 외부 상태 사용, 미제공 시 내부 useChatUI 호출
|
|
1871
1878
|
*/
|
|
1872
|
-
declare const ChatUI:
|
|
1879
|
+
declare const ChatUI: React__default.FC<ChatUIProps>;
|
|
1873
1880
|
|
|
1874
1881
|
/**
|
|
1875
1882
|
* @description ChatFloatingWidget — 채널톡 스타일 플로팅 위젯 메인 컴포넌트
|
|
@@ -1880,7 +1887,7 @@ declare const ChatUI: React$1.FC<ChatUIProps>;
|
|
|
1880
1887
|
* @description 채널톡 스타일 플로팅 위젯
|
|
1881
1888
|
* @Todo vibecode - FAB + 패널 + 탭(채팅 내장 + slot) + 드래그/리사이즈 조립
|
|
1882
1889
|
*/
|
|
1883
|
-
declare const ChatFloatingWidget:
|
|
1890
|
+
declare const ChatFloatingWidget: React__default.FC<ChatFloatingWidgetProps>;
|
|
1884
1891
|
|
|
1885
1892
|
interface UseChatUIOptions {
|
|
1886
1893
|
/** 사용 가능한 모델 목록 */
|
|
@@ -1941,6 +1948,11 @@ interface UseChatUIOptions {
|
|
|
1941
1948
|
}>) => Promise<PatternAnalysisResult>;
|
|
1942
1949
|
/** @Todo vibecode - 이미지 업로드 콜백 (data URI → URL 변환) */
|
|
1943
1950
|
onUploadImage?: (dataUri: string, filename: string) => Promise<string>;
|
|
1951
|
+
/**
|
|
1952
|
+
* @description 이미지 로드 실패 시 콜백 (presigned URL 만료 대응)
|
|
1953
|
+
* @Todo vibecode - 새 URL 반환 시 img.src 갱신, null 반환 시 기본 에러 처리 (#13)
|
|
1954
|
+
*/
|
|
1955
|
+
onImageError?: (url: string, fileName?: string) => Promise<string | null>;
|
|
1944
1956
|
/**
|
|
1945
1957
|
* @description 외부 스토리지 사용 여부
|
|
1946
1958
|
* @Todo vibecode - true 시 localStorage 대신 콜백 사용
|
|
@@ -2441,6 +2453,14 @@ declare const createAdvancedResearchSkill: (options: AdvancedResearchOptions) =>
|
|
|
2441
2453
|
*/
|
|
2442
2454
|
declare const createDeepResearchSkill: (callbacks: DeepResearchCallbacks) => SkillConfig;
|
|
2443
2455
|
|
|
2456
|
+
/**
|
|
2457
|
+
* @description 이미지 에러 핸들러 Context
|
|
2458
|
+
* @Todo vibecode - presigned URL 만료 시 재발급 콜백 전달 (#13)
|
|
2459
|
+
*/
|
|
2460
|
+
type ImageErrorHandler = (url: string, fileName?: string) => Promise<string | null>;
|
|
2461
|
+
declare const ImageErrorContext: React$1.Context<ImageErrorHandler | null>;
|
|
2462
|
+
declare const useImageError: () => ImageErrorHandler | null;
|
|
2463
|
+
|
|
2444
2464
|
/**
|
|
2445
2465
|
* @description 대화 검색 스킬 팩토리
|
|
2446
2466
|
* @Todo vibecode - 호스트 DB 검색을 SkillConfig로 래핑하여 LLM tool use로 과거 대화 검색
|
|
@@ -2482,7 +2502,7 @@ interface IconProps {
|
|
|
2482
2502
|
/** Additional CSS classes */
|
|
2483
2503
|
className?: string;
|
|
2484
2504
|
/** Additional inline styles */
|
|
2485
|
-
style?:
|
|
2505
|
+
style?: React__default.CSSProperties;
|
|
2486
2506
|
/** Click handler */
|
|
2487
2507
|
onClick?: () => void;
|
|
2488
2508
|
/** Accessibility label */
|
|
@@ -2492,53 +2512,53 @@ interface IconProps {
|
|
|
2492
2512
|
* Remix Icons component
|
|
2493
2513
|
* Uses CSS class-based icons (requires remixicon CSS)
|
|
2494
2514
|
*/
|
|
2495
|
-
declare const Icon:
|
|
2515
|
+
declare const Icon: React__default.FC<IconProps>;
|
|
2496
2516
|
/**
|
|
2497
2517
|
* SVG-based Icon component (no external CSS required)
|
|
2498
2518
|
* Icons are rendered inline as SVG
|
|
2499
2519
|
*/
|
|
2500
|
-
declare const IconSvg:
|
|
2520
|
+
declare const IconSvg: React__default.FC<IconProps>;
|
|
2501
2521
|
|
|
2502
2522
|
/**
|
|
2503
2523
|
* @description 채팅 사이드바 컴포넌트 - Modern Canvas 디자인
|
|
2504
2524
|
* @Todo vibecode - v0.11.0 새 디자인 시스템 적용
|
|
2505
2525
|
*/
|
|
2506
2526
|
|
|
2507
|
-
declare const ChatSidebar:
|
|
2527
|
+
declare const ChatSidebar: React__default.FC<SidebarProps>;
|
|
2508
2528
|
|
|
2509
2529
|
/**
|
|
2510
2530
|
* @description 채팅 입력창 컴포넌트 - Modern Canvas 디자인
|
|
2511
2531
|
* @Todo vibecode - v0.11.0 새 디자인 시스템 적용 (플로팅 스타일)
|
|
2512
2532
|
*/
|
|
2513
2533
|
|
|
2514
|
-
declare const ChatInput:
|
|
2534
|
+
declare const ChatInput: React__default.FC<InputProps>;
|
|
2515
2535
|
|
|
2516
2536
|
/**
|
|
2517
2537
|
* @description 채팅 헤더 컴포넌트
|
|
2518
2538
|
* 모델 선택, 설정 버튼
|
|
2519
2539
|
*/
|
|
2520
2540
|
|
|
2521
|
-
declare const ChatHeader:
|
|
2541
|
+
declare const ChatHeader: React__default.FC<HeaderProps>;
|
|
2522
2542
|
|
|
2523
2543
|
/**
|
|
2524
2544
|
* @description 메시지 버블 컴포넌트 - Modern Canvas 디자인
|
|
2525
2545
|
* @Todo vibecode - v0.11.0 새 디자인 시스템 적용
|
|
2526
2546
|
*/
|
|
2527
2547
|
|
|
2528
|
-
declare const MessageBubble:
|
|
2548
|
+
declare const MessageBubble: React__default.FC<MessageBubbleProps>;
|
|
2529
2549
|
|
|
2530
2550
|
/**
|
|
2531
2551
|
* @description 메시지 목록 컴포넌트
|
|
2532
2552
|
*/
|
|
2533
2553
|
|
|
2534
|
-
declare const MessageList:
|
|
2554
|
+
declare const MessageList: React__default.FC<MessageListProps>;
|
|
2535
2555
|
|
|
2536
2556
|
/**
|
|
2537
2557
|
* @description 빈 상태 컴포넌트 - Modern Canvas 디자인
|
|
2538
2558
|
* @Todo vibecode - v0.11.0 새 디자인 시스템 적용 (Landing 화면)
|
|
2539
2559
|
*/
|
|
2540
2560
|
|
|
2541
|
-
declare const EmptyState:
|
|
2561
|
+
declare const EmptyState: React__default.FC<EmptyStateProps>;
|
|
2542
2562
|
|
|
2543
2563
|
/**
|
|
2544
2564
|
* @description 메모리 패널 컴포넌트
|
|
@@ -2566,7 +2586,7 @@ interface MemoryPanelProps {
|
|
|
2566
2586
|
/** 패널 토글 */
|
|
2567
2587
|
onToggle: () => void;
|
|
2568
2588
|
}
|
|
2569
|
-
declare const MemoryPanel:
|
|
2589
|
+
declare const MemoryPanel: React__default.FC<MemoryPanelProps>;
|
|
2570
2590
|
|
|
2571
2591
|
/**
|
|
2572
2592
|
* @description 링크 칩 컴포넌트
|
|
@@ -2583,9 +2603,9 @@ interface LinkChipProps {
|
|
|
2583
2603
|
/** 번호 표시 */
|
|
2584
2604
|
index?: number;
|
|
2585
2605
|
/** 커스텀 스타일 */
|
|
2586
|
-
style?:
|
|
2606
|
+
style?: React__default.CSSProperties;
|
|
2587
2607
|
}
|
|
2588
|
-
declare const LinkChip:
|
|
2608
|
+
declare const LinkChip: React__default.FC<LinkChipProps>;
|
|
2589
2609
|
|
|
2590
2610
|
/**
|
|
2591
2611
|
* @description 설정 모달 컴포넌트
|
|
@@ -2644,7 +2664,7 @@ interface SettingsModalProps {
|
|
|
2644
2664
|
*/
|
|
2645
2665
|
importMemoryPrompt?: string;
|
|
2646
2666
|
}
|
|
2647
|
-
declare const SettingsModal:
|
|
2667
|
+
declare const SettingsModal: React__default.FC<SettingsModalProps>;
|
|
2648
2668
|
|
|
2649
2669
|
/**
|
|
2650
2670
|
* @description 심층연구 진행 상태 UI 컴포넌트
|
|
@@ -2657,7 +2677,7 @@ interface DeepResearchProgressUIProps {
|
|
|
2657
2677
|
/**
|
|
2658
2678
|
* @description 심층연구 진행 상태 UI
|
|
2659
2679
|
*/
|
|
2660
|
-
declare const DeepResearchProgressUI:
|
|
2680
|
+
declare const DeepResearchProgressUI: React__default.FC<DeepResearchProgressUIProps>;
|
|
2661
2681
|
|
|
2662
2682
|
/**
|
|
2663
2683
|
* @description AI 주도 선택지 (Poll) 컴포넌트
|
|
@@ -2676,7 +2696,7 @@ interface PollCardProps {
|
|
|
2676
2696
|
* @description 탭 형식 Poll 카드 컴포넌트
|
|
2677
2697
|
* @Todo vibecode - 여러 질문을 탭으로 표시, 모두 답변 후 제출
|
|
2678
2698
|
*/
|
|
2679
|
-
declare const PollCard:
|
|
2699
|
+
declare const PollCard: React__default.FC<PollCardProps>;
|
|
2680
2700
|
|
|
2681
2701
|
/**
|
|
2682
2702
|
* @description 스킬 실행 진행 상태 UI 컴포넌트
|
|
@@ -2691,7 +2711,7 @@ interface SkillProgressUIProps {
|
|
|
2691
2711
|
/** 아이콘 이름 */
|
|
2692
2712
|
skillIcon?: string;
|
|
2693
2713
|
}
|
|
2694
|
-
declare const SkillProgressUI:
|
|
2714
|
+
declare const SkillProgressUI: React__default.FC<SkillProgressUIProps>;
|
|
2695
2715
|
|
|
2696
2716
|
/**
|
|
2697
2717
|
* @description 멀티 콘텐츠 파트 렌더러
|
|
@@ -2713,7 +2733,7 @@ interface ContentPartRendererProps {
|
|
|
2713
2733
|
* @Todo vibecode - text, image, file, search_result, tool_loading, tool_result, error 지원
|
|
2714
2734
|
* tool_result → ToolStatusCard 기반 구조화 렌더링
|
|
2715
2735
|
*/
|
|
2716
|
-
declare const ContentPartRenderer:
|
|
2736
|
+
declare const ContentPartRenderer: React__default.FC<ContentPartRendererProps>;
|
|
2717
2737
|
|
|
2718
2738
|
/**
|
|
2719
2739
|
* @description 이미지 콘텐츠 카드 컴포넌트
|
|
@@ -2728,7 +2748,7 @@ interface ImageContentCardProps {
|
|
|
2728
2748
|
* @description 이미지 카드 렌더러 (확대 모달 + 다운로드)
|
|
2729
2749
|
* @Todo vibecode - 인라인 이미지 표시, 클릭 시 확대
|
|
2730
2750
|
*/
|
|
2731
|
-
declare const ImageContentCard:
|
|
2751
|
+
declare const ImageContentCard: React__default.FC<ImageContentCardProps>;
|
|
2732
2752
|
|
|
2733
2753
|
/**
|
|
2734
2754
|
* @description 파일 콘텐츠 카드 컴포넌트
|
|
@@ -2743,7 +2763,7 @@ interface FileContentCardProps {
|
|
|
2743
2763
|
* @description 파일 카드 렌더러 (파일명 + 아이콘 + 다운로드)
|
|
2744
2764
|
* @Todo vibecode - 파일 첨부 인라인 표시
|
|
2745
2765
|
*/
|
|
2746
|
-
declare const FileContentCard:
|
|
2766
|
+
declare const FileContentCard: React__default.FC<FileContentCardProps>;
|
|
2747
2767
|
|
|
2748
2768
|
/**
|
|
2749
2769
|
* @description 아티팩트 콘텐츠 카드 컴포넌트
|
|
@@ -2760,7 +2780,7 @@ interface ArtifactCardProps {
|
|
|
2760
2780
|
* @description 아티팩트 카드 (language별 렌더러 분기 + 타이틀 헤더 + 코드 보기)
|
|
2761
2781
|
* @Todo vibecode - html→iframe, svg→인라인, mermaid→mermaid.js 변환
|
|
2762
2782
|
*/
|
|
2763
|
-
declare const ArtifactCard:
|
|
2783
|
+
declare const ArtifactCard: React__default.FC<ArtifactCardProps>;
|
|
2764
2784
|
|
|
2765
2785
|
/**
|
|
2766
2786
|
* @description AI 자동 실행형 체크리스트 카드
|
|
@@ -2784,7 +2804,7 @@ interface ChecklistCardProps {
|
|
|
2784
2804
|
onStart?: () => void;
|
|
2785
2805
|
}
|
|
2786
2806
|
/** @Todo vibecode - 체크리스트 카드 컴포넌트 */
|
|
2787
|
-
declare const ChecklistCard:
|
|
2807
|
+
declare const ChecklistCard: React__default.FC<ChecklistCardProps>;
|
|
2788
2808
|
|
|
2789
2809
|
interface ChecklistMiniIndicatorProps {
|
|
2790
2810
|
/** 체크리스트 항목 배열 */
|
|
@@ -2800,7 +2820,7 @@ interface ChecklistMiniIndicatorProps {
|
|
|
2800
2820
|
onStart?: () => void;
|
|
2801
2821
|
}
|
|
2802
2822
|
/** @Todo vibecode - 메시지 버블 내 체크리스트 미니 인디케이터 (한 줄 컴팩트) */
|
|
2803
|
-
declare const ChecklistMiniIndicator:
|
|
2823
|
+
declare const ChecklistMiniIndicator: React__default.FC<ChecklistMiniIndicatorProps>;
|
|
2804
2824
|
|
|
2805
2825
|
/**
|
|
2806
2826
|
* @description 체크리스트 우측 패널 컴포넌트
|
|
@@ -2828,7 +2848,7 @@ interface ChecklistPanelProps {
|
|
|
2828
2848
|
isMobileOverlay?: boolean;
|
|
2829
2849
|
}
|
|
2830
2850
|
/** @Todo vibecode - 체크리스트 우측 패널 */
|
|
2831
|
-
declare const ChecklistPanel:
|
|
2851
|
+
declare const ChecklistPanel: React__default.FC<ChecklistPanelProps>;
|
|
2832
2852
|
|
|
2833
2853
|
/**
|
|
2834
2854
|
* @description 프로젝트 선택 드롭다운 - 사이드바 상단에 배치
|
|
@@ -2842,7 +2862,7 @@ interface ProjectSelectorProps {
|
|
|
2842
2862
|
onNewProject: () => void;
|
|
2843
2863
|
onProjectSettings: (id: string) => void;
|
|
2844
2864
|
}
|
|
2845
|
-
declare const ProjectSelector:
|
|
2865
|
+
declare const ProjectSelector: React__default.FC<ProjectSelectorProps>;
|
|
2846
2866
|
|
|
2847
2867
|
/**
|
|
2848
2868
|
* @description 프로젝트 설정 모달 - 일반/지침/파일 3탭 구조
|
|
@@ -2859,7 +2879,7 @@ interface ProjectSettingsModalProps {
|
|
|
2859
2879
|
/** @Todo vibecode - 프로젝트 삭제 핸들러 (기본 프로젝트 삭제 불가) */
|
|
2860
2880
|
onDeleteProject?: (projectId: string) => void;
|
|
2861
2881
|
}
|
|
2862
|
-
declare const ProjectSettingsModal:
|
|
2882
|
+
declare const ProjectSettingsModal: React__default.FC<ProjectSettingsModalProps>;
|
|
2863
2883
|
|
|
2864
2884
|
/**
|
|
2865
2885
|
* @description DevDive 캐릭터 컴포넌트 — FAB 인터랙티브 버전 + 메시지 정적 아바타 버전
|
|
@@ -2884,7 +2904,7 @@ interface DevDiveFabCharacterProps {
|
|
|
2884
2904
|
* @description FAB용 인터랙티브 캐릭터 — 눈 추적 + 깜빡임 + 감정 표현 + 졸림/놀람
|
|
2885
2905
|
* @Todo vibecode - 부모 [data-floating-fab] 요소의 이벤트를 감지하여 표정 전환
|
|
2886
2906
|
*/
|
|
2887
|
-
declare const DevDiveFabCharacter:
|
|
2907
|
+
declare const DevDiveFabCharacter: React__default.FC<DevDiveFabCharacterProps>;
|
|
2888
2908
|
interface DevDiveAvatarProps {
|
|
2889
2909
|
/** @Todo vibecode - 아바타 크기 (px, 기본: 32) */
|
|
2890
2910
|
size?: number;
|
|
@@ -2895,7 +2915,7 @@ interface DevDiveAvatarProps {
|
|
|
2895
2915
|
* @description 메시지용 정적 DevDive 캐릭터 아바타 — 눈 추적/깜빡임 없이 고정 표정
|
|
2896
2916
|
* @Todo vibecode - 작은 사이즈에 최적화, 눈 하이라이트 포함
|
|
2897
2917
|
*/
|
|
2898
|
-
declare const DevDiveAvatar:
|
|
2918
|
+
declare const DevDiveAvatar: React__default.FC<DevDiveAvatarProps>;
|
|
2899
2919
|
|
|
2900
2920
|
/**
|
|
2901
2921
|
* @description 플로팅 위젯 FAB(Floating Action Button) 컴포넌트
|
|
@@ -2909,21 +2929,21 @@ declare const DevDiveAvatar: React$1.FC<DevDiveAvatarProps>;
|
|
|
2909
2929
|
interface FloatingFabProps {
|
|
2910
2930
|
onClick: () => void;
|
|
2911
2931
|
isOpen: boolean;
|
|
2912
|
-
icon?:
|
|
2932
|
+
icon?: React__default.ReactNode;
|
|
2913
2933
|
label?: string;
|
|
2914
2934
|
badge?: number;
|
|
2915
2935
|
position: FloatingPosition;
|
|
2916
2936
|
zIndex: number;
|
|
2917
2937
|
/** @Todo vibecode - 드래그 시스템에서 주입하는 위치 오버라이드 스타일 */
|
|
2918
|
-
positionStyle?:
|
|
2938
|
+
positionStyle?: React__default.CSSProperties;
|
|
2919
2939
|
/** @Todo vibecode - 드래그 시작 포인터 이벤트 (document-level 리스너 등록) */
|
|
2920
|
-
onPointerDown?: (e:
|
|
2940
|
+
onPointerDown?: (e: React__default.PointerEvent) => void;
|
|
2921
2941
|
/** @Todo vibecode - 드래그 중 여부 */
|
|
2922
2942
|
isDragging?: boolean;
|
|
2923
2943
|
/** @Todo vibecode - FAB 옆 알림 말풍선 텍스트 (null/undefined 시 숨김) */
|
|
2924
2944
|
notification?: string | null;
|
|
2925
2945
|
/** @Todo vibecode - FAB 커스텀 스타일 (CSS 변수 오버라이드 등) */
|
|
2926
|
-
fabStyle?:
|
|
2946
|
+
fabStyle?: React__default.CSSProperties;
|
|
2927
2947
|
/** @Todo vibecode - 테마 설정 (캐릭터 색상 전환) */
|
|
2928
2948
|
theme?: ThemeConfig;
|
|
2929
2949
|
/** @Todo vibecode - 흔들기 과다 시 어지러운 표정 */
|
|
@@ -2939,7 +2959,7 @@ interface FloatingFabProps {
|
|
|
2939
2959
|
* @description 플로팅 FAB 버튼
|
|
2940
2960
|
* @Todo vibecode - 열림 시 X 아이콘 전환, 드래그 이동, 뱃지 카운트
|
|
2941
2961
|
*/
|
|
2942
|
-
declare const FloatingFab:
|
|
2962
|
+
declare const FloatingFab: React__default.FC<FloatingFabProps>;
|
|
2943
2963
|
|
|
2944
2964
|
/**
|
|
2945
2965
|
* @description 플로팅 위젯 패널 컨테이너
|
|
@@ -2959,20 +2979,20 @@ interface FloatingPanelProps {
|
|
|
2959
2979
|
theme?: ThemeConfig;
|
|
2960
2980
|
className?: string;
|
|
2961
2981
|
/** @Todo vibecode - useRef<HTMLDivElement>(null) 호환 타입 */
|
|
2962
|
-
panelRef:
|
|
2963
|
-
children:
|
|
2982
|
+
panelRef: React__default.Ref<HTMLDivElement>;
|
|
2983
|
+
children: React__default.ReactNode;
|
|
2964
2984
|
/** @Todo vibecode - 드래그 시스템에서 주입하는 위치/크기 오버라이드 */
|
|
2965
|
-
positionStyle?:
|
|
2985
|
+
positionStyle?: React__default.CSSProperties;
|
|
2966
2986
|
/** @Todo vibecode - 리사이즈 중 transition 비활성화 */
|
|
2967
2987
|
isResizing?: boolean;
|
|
2968
2988
|
/** @Todo vibecode - 리사이즈 핸들 (패널 내부 절대위치 배치) */
|
|
2969
|
-
resizeHandles?:
|
|
2989
|
+
resizeHandles?: React__default.ReactNode;
|
|
2970
2990
|
}
|
|
2971
2991
|
/**
|
|
2972
2992
|
* @description 플로팅 패널 컨테이너
|
|
2973
2993
|
* @Todo vibecode - slide-up 애니메이션, 모바일 전체화면, chatllm-root 래핑
|
|
2974
2994
|
*/
|
|
2975
|
-
declare const FloatingPanel:
|
|
2995
|
+
declare const FloatingPanel: React__default.FC<FloatingPanelProps>;
|
|
2976
2996
|
|
|
2977
2997
|
/**
|
|
2978
2998
|
* @description 플로팅 위젯 탭 네비게이션
|
|
@@ -2986,7 +3006,7 @@ declare const FloatingPanel: React$1.FC<FloatingPanelProps>;
|
|
|
2986
3006
|
interface FloatingTabItem {
|
|
2987
3007
|
key: string;
|
|
2988
3008
|
label: string;
|
|
2989
|
-
icon?:
|
|
3009
|
+
icon?: React__default.ReactNode;
|
|
2990
3010
|
badge?: number;
|
|
2991
3011
|
}
|
|
2992
3012
|
/**
|
|
@@ -3002,7 +3022,7 @@ interface FloatingTabBarProps {
|
|
|
3002
3022
|
* @description 탭 네비게이션 바
|
|
3003
3023
|
* @Todo vibecode - 균등 분배, 활성 탭 하이라이트, 뱃지 카운트
|
|
3004
3024
|
*/
|
|
3005
|
-
declare const FloatingTabBar:
|
|
3025
|
+
declare const FloatingTabBar: React__default.FC<FloatingTabBarProps>;
|
|
3006
3026
|
|
|
3007
3027
|
/**
|
|
3008
3028
|
* @description 컴팩트 채팅 뷰 — 플로팅 위젯용
|
|
@@ -3023,15 +3043,15 @@ interface CompactChatViewProps {
|
|
|
3023
3043
|
/** @Todo vibecode - "전체 화면으로 보기" 이동 경로 */
|
|
3024
3044
|
fullScreenPath?: string;
|
|
3025
3045
|
/** @Todo vibecode - 컴팩트 헤더 커스텀 콘텐츠 렌더링 슬롯 */
|
|
3026
|
-
renderHeaderExtra?: () =>
|
|
3046
|
+
renderHeaderExtra?: () => React__default.ReactNode;
|
|
3027
3047
|
/** @Todo vibecode - 메시지 커스텀 렌더러 슬롯 (래퍼 패턴) */
|
|
3028
|
-
renderMessage?: (message: ChatMessage, defaultRender:
|
|
3048
|
+
renderMessage?: (message: ChatMessage, defaultRender: React__default.ReactNode) => React__default.ReactNode;
|
|
3029
3049
|
}
|
|
3030
3050
|
/**
|
|
3031
3051
|
* @description 컴팩트 채팅 뷰
|
|
3032
3052
|
* @Todo vibecode - Full 모드 대비: 사이드바 없음, 모델셀렉터 없음, Welcome 간소화
|
|
3033
3053
|
*/
|
|
3034
|
-
declare const CompactChatView:
|
|
3054
|
+
declare const CompactChatView: React__default.FC<CompactChatViewProps>;
|
|
3035
3055
|
|
|
3036
3056
|
/**
|
|
3037
3057
|
* @description 패널 리사이즈 핸들 (투명 드래그 존)
|
|
@@ -3040,15 +3060,15 @@ declare const CompactChatView: React$1.FC<CompactChatViewProps>;
|
|
|
3040
3060
|
|
|
3041
3061
|
/** @Todo vibecode - ResizeHandles Props */
|
|
3042
3062
|
interface ResizeHandlesProps {
|
|
3043
|
-
onPointerDown: (edge: ResizeEdge, e:
|
|
3044
|
-
onPointerMove: (e:
|
|
3045
|
-
onPointerUp: (e:
|
|
3063
|
+
onPointerDown: (edge: ResizeEdge, e: React__default.PointerEvent) => void;
|
|
3064
|
+
onPointerMove: (e: React__default.PointerEvent) => void;
|
|
3065
|
+
onPointerUp: (e: React__default.PointerEvent) => void;
|
|
3046
3066
|
}
|
|
3047
3067
|
/**
|
|
3048
3068
|
* @description 리사이즈 핸들 렌더러
|
|
3049
3069
|
* @Todo vibecode - 패널 내부 절대위치 배치, hover 시 시각적 피드백
|
|
3050
3070
|
*/
|
|
3051
|
-
declare const ResizeHandles:
|
|
3071
|
+
declare const ResizeHandles: React__default.FC<ResizeHandlesProps>;
|
|
3052
3072
|
|
|
3053
3073
|
/**
|
|
3054
3074
|
* @description Tool → Skill 변환 어댑터
|
|
@@ -3082,4 +3102,4 @@ declare const DEFAULT_PROJECT_TITLE = "\uAE30\uBCF8 \uD504\uB85C\uC81D\uD2B8";
|
|
|
3082
3102
|
*/
|
|
3083
3103
|
declare const migrateSessionsToProjects: (storageKey: string) => void;
|
|
3084
3104
|
|
|
3085
|
-
export { type ActionItem, type ActionMenuProps, type AdvancedResearchOptions, type AlternativeResponse, ArtifactCard, type ArtifactCardProps, type ArtifactContentPart, type ChatAttachment, ChatFloatingWidget, type ChatFloatingWidgetProps, 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, CompactChatView, type CompactChatViewProps, ContentPartRenderer, type ContentPartRendererProps, type ConversationSearchOptions, type ConversationSearchSkillOptions, type ConversationSnippet, DEFAULT_PROJECT_ID, DEFAULT_PROJECT_TITLE, type DeepResearchCallbacks, type DeepResearchProgress, DeepResearchProgressUI, DevDiveAvatar, type DevDiveAvatarProps, DevDiveFabCharacter, type DevDiveFabCharacterProps, EmptyState, type EmptyStateProps, type ErrorContentPart, FileContentCard, type FileContentCardProps, type FileContentPart, FloatingFab, type FloatingFabProps, type FloatingNotification, FloatingPanel, type FloatingPanelProps, type FloatingPosition, FloatingTabBar, type FloatingTabBarProps, type FloatingTabItem, type FloatingWidgetTab, 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 OpenAITool, type PatternAnalysisResult, 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 ResizeEdge, ResizeHandles, type ResizeHandlesProps, type ResponseStyle, type SearchResult, type SearchResultContentPart, type SendMessageParams, type SendMessageResponse, type SendMessageResponseBase, type SendMessageResponseWithHeaders, type SessionContext, type SessionContextItem, 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 SystemPromptControl, type TextContentPart, type ThemeConfig, type ThemeMode, type ToolCallAccumulator, type ToolCallResult, type ToolLoadingContentPart, type ToolResultContentPart, type UseChatUIOptions, type UseChatUIReturn, type UseDeepResearchOptions, type UseDragResizeOptions, type UseDragResizeReturn, type UseFloatingWidgetOptions, type UseFloatingWidgetReturn, type UseObserverOptions, type UseObserverReturn, type UseProjectOptions, type UseProjectReturn, type UseSkillsOptions, type UseSkillsReturn, type UserProfile, type WorkflowSuggestion, convertSkillsToOpenAITools, convertToolsToSkills, createAdvancedResearchSkill, createConversationSearchSkill, createDeepResearchSkill, migrateSessionsToProjects, useChatUI, useDeepResearch, useDragResize, useFloatingWidget, useObserver, useProject, useSkills };
|
|
3105
|
+
export { type ActionItem, type ActionMenuProps, type AdvancedResearchOptions, type AlternativeResponse, ArtifactCard, type ArtifactCardProps, type ArtifactContentPart, type ChatAttachment, ChatFloatingWidget, type ChatFloatingWidgetProps, 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, CompactChatView, type CompactChatViewProps, ContentPartRenderer, type ContentPartRendererProps, type ConversationSearchOptions, type ConversationSearchSkillOptions, type ConversationSnippet, DEFAULT_PROJECT_ID, DEFAULT_PROJECT_TITLE, type DeepResearchCallbacks, type DeepResearchProgress, DeepResearchProgressUI, DevDiveAvatar, type DevDiveAvatarProps, DevDiveFabCharacter, type DevDiveFabCharacterProps, EmptyState, type EmptyStateProps, type ErrorContentPart, FileContentCard, type FileContentCardProps, type FileContentPart, FloatingFab, type FloatingFabProps, type FloatingNotification, FloatingPanel, type FloatingPanelProps, type FloatingPosition, FloatingTabBar, type FloatingTabBarProps, type FloatingTabItem, type FloatingWidgetTab, type HeaderProps, Icon, type IconName, type IconProps, IconSvg, ImageContentCard, type ImageContentCardProps, type ImageContentPart, ImageErrorContext, type ImageErrorHandler, 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 OpenAITool, type PatternAnalysisResult, 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 ResizeEdge, ResizeHandles, type ResizeHandlesProps, type ResponseStyle, type SearchResult, type SearchResultContentPart, type SendMessageParams, type SendMessageResponse, type SendMessageResponseBase, type SendMessageResponseWithHeaders, type SessionContext, type SessionContextItem, 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 SystemPromptControl, type TextContentPart, type ThemeConfig, type ThemeMode, type ToolCallAccumulator, type ToolCallResult, type ToolLoadingContentPart, type ToolResultContentPart, type UseChatUIOptions, type UseChatUIReturn, type UseDeepResearchOptions, type UseDragResizeOptions, type UseDragResizeReturn, type UseFloatingWidgetOptions, type UseFloatingWidgetReturn, type UseObserverOptions, type UseObserverReturn, type UseProjectOptions, type UseProjectReturn, type UseSkillsOptions, type UseSkillsReturn, type UserProfile, type WorkflowSuggestion, convertSkillsToOpenAITools, convertToolsToSkills, createAdvancedResearchSkill, createConversationSearchSkill, createDeepResearchSkill, migrateSessionsToProjects, useChatUI, useDeepResearch, useDragResize, useFloatingWidget, useImageError, useObserver, useProject, useSkills };
|