@iblai/web-containers 1.1.20 → 1.1.21
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/next/index.d.ts +15 -3
- package/dist/next/index.esm.js +39877 -277
- package/dist/next/index.esm.js.map +1 -1
- package/dist/next/index.js +39885 -284
- package/dist/next/index.js.map +1 -1
- package/dist/next/web-containers/src/components/mentor-ui/welcome-chat/conversation-starters.d.ts +12 -0
- package/dist/next/web-containers/src/next/index.d.ts +1 -0
- package/dist/package.json +1 -1
- package/dist/sso/web-containers/src/components/mentor-ui/welcome-chat/conversation-starters.d.ts +12 -0
- package/dist/sso/web-containers/src/next/index.d.ts +1 -0
- package/dist/web-containers/src/components/mentor-ui/welcome-chat/conversation-starters.d.ts +12 -0
- package/dist/web-containers/src/next/index.d.ts +1 -0
- package/dist/web-containers/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/next/index.d.ts
CHANGED
|
@@ -62,7 +62,7 @@ interface ErrorPageProps {
|
|
|
62
62
|
}
|
|
63
63
|
declare function ErrorPage({ errorCode, customTitle, customDescription, customIcon, supportEmail, showSupportButton, supportButtonText, showReset, showHomeButton, homeButtonText, homeButtonHref, resetButtonText, reset, }: ErrorPageProps): react_jsx_runtime.JSX.Element;
|
|
64
64
|
|
|
65
|
-
type Props$
|
|
65
|
+
type Props$2 = {
|
|
66
66
|
header?: string;
|
|
67
67
|
message?: string;
|
|
68
68
|
errorCode?: string;
|
|
@@ -70,7 +70,7 @@ type Props$1 = {
|
|
|
70
70
|
supportEmail?: string;
|
|
71
71
|
handleError: (error: any) => void;
|
|
72
72
|
};
|
|
73
|
-
declare const ClientErrorPage: ({ header, message, supportEmail, errorCode, showHomeButton, handleError, }: Props$
|
|
73
|
+
declare const ClientErrorPage: ({ header, message, supportEmail, errorCode, showHomeButton, handleError, }: Props$2) => react_jsx_runtime.JSX.Element;
|
|
74
74
|
|
|
75
75
|
/**
|
|
76
76
|
* Model Manager installation and model status
|
|
@@ -290,6 +290,18 @@ declare function OrganizationTab({ platformKey, setOrganizationLogoFromOutside,
|
|
|
290
290
|
onTenantUpdate?: (tenant: Tenant) => void;
|
|
291
291
|
}): react_jsx_runtime.JSX.Element;
|
|
292
292
|
|
|
293
|
+
interface GuidedPrompt {
|
|
294
|
+
prompt: string;
|
|
295
|
+
icon?: string;
|
|
296
|
+
}
|
|
297
|
+
interface Props$1 {
|
|
298
|
+
onTemplateSelect: (template: string) => void;
|
|
299
|
+
guidedPrompts?: GuidedPrompt[];
|
|
300
|
+
disabled?: boolean;
|
|
301
|
+
className?: string;
|
|
302
|
+
}
|
|
303
|
+
declare function ConversationStarters({ onTemplateSelect, guidedPrompts, disabled, className, }: Props$1): react_jsx_runtime.JSX.Element | null;
|
|
304
|
+
|
|
293
305
|
interface UseTimeTrackerConfig {
|
|
294
306
|
intervalSeconds: number;
|
|
295
307
|
onTimeUpdate: (url: string, timeSpent: number) => void;
|
|
@@ -315,5 +327,5 @@ declare function useGetChatDetails({ mode, tenantKey, mentorId, username, errorH
|
|
|
315
327
|
refetchSessionIds: () => Promise<void>;
|
|
316
328
|
};
|
|
317
329
|
|
|
318
|
-
export { Account, ClientErrorPage, ErrorPage, OrganizationTab, SsoLogin, UserProfileDropdown, UserProfileModal, initializeLocalStorageWithObject, useGetChatDetails, useTimeTracker };
|
|
330
|
+
export { Account, ClientErrorPage, ConversationStarters, ErrorPage, OrganizationTab, SsoLogin, UserProfileDropdown, UserProfileModal, initializeLocalStorageWithObject, useGetChatDetails, useTimeTracker };
|
|
319
331
|
export type { UseTimeTrackerConfig, UseTimeTrackerReturn, UserMetadata, UserProfileDropdownProps };
|