@gendive/chatllm 0.17.7 → 0.17.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 +5 -0
- package/dist/react/index.d.ts +5 -0
- package/dist/react/index.js +543 -540
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +543 -540
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/react/index.d.mts
CHANGED
|
@@ -1046,6 +1046,11 @@ interface InputProps {
|
|
|
1046
1046
|
* @Todo vibecode - accept 속성 ('image/*', 'application/pdf' 등)
|
|
1047
1047
|
*/
|
|
1048
1048
|
acceptedFileTypes?: string[];
|
|
1049
|
+
/**
|
|
1050
|
+
* @description AI 면책조항 클릭 핸들러
|
|
1051
|
+
* @Todo vibecode - 하단 "AI는 실수를 할 수 있습니다" 클릭 시 모달 열기
|
|
1052
|
+
*/
|
|
1053
|
+
onDisclaimerClick?: () => void;
|
|
1049
1054
|
}
|
|
1050
1055
|
interface HeaderProps {
|
|
1051
1056
|
title: string;
|
package/dist/react/index.d.ts
CHANGED
|
@@ -1046,6 +1046,11 @@ interface InputProps {
|
|
|
1046
1046
|
* @Todo vibecode - accept 속성 ('image/*', 'application/pdf' 등)
|
|
1047
1047
|
*/
|
|
1048
1048
|
acceptedFileTypes?: string[];
|
|
1049
|
+
/**
|
|
1050
|
+
* @description AI 면책조항 클릭 핸들러
|
|
1051
|
+
* @Todo vibecode - 하단 "AI는 실수를 할 수 있습니다" 클릭 시 모달 열기
|
|
1052
|
+
*/
|
|
1053
|
+
onDisclaimerClick?: () => void;
|
|
1049
1054
|
}
|
|
1050
1055
|
interface HeaderProps {
|
|
1051
1056
|
title: string;
|