@inkeep/agents-ui 0.15.13 → 0.15.14
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/index.cjs +1 -1
- package/dist/index.js +230 -222
- package/dist/primitives/atoms/icons/built-in-icons.cjs +1 -1
- package/dist/primitives/atoms/icons/built-in-icons.d.ts +2 -0
- package/dist/primitives/atoms/icons/built-in-icons.js +33 -31
- package/dist/primitives/atoms/icons/inkeep-default-icons.cjs +1 -1
- package/dist/primitives/atoms/icons/inkeep-default-icons.js +4 -1
- package/dist/primitives/components/chat-history/index.cjs +1 -0
- package/dist/primitives/components/chat-history/index.d.ts +27 -0
- package/dist/primitives/components/chat-history/index.js +105 -0
- package/dist/primitives/components/embedded-chat/use-captcha.cjs +1 -0
- package/dist/primitives/components/embedded-chat/use-captcha.d.ts +23 -6
- package/dist/primitives/components/embedded-chat/use-captcha.js +67 -0
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.cjs +2 -2
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.d.ts +12 -3
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.js +252 -144
- package/dist/primitives/components/embedded-chat/use-stream-processor.cjs +1 -1
- package/dist/primitives/components/embedded-chat/use-stream-processor.d.ts +2 -0
- package/dist/primitives/components/embedded-chat/use-stream-processor.js +120 -70
- package/dist/primitives/components/embedded-chat.cjs +3 -3
- package/dist/primitives/components/embedded-chat.d.ts +5 -2
- package/dist/primitives/components/embedded-chat.js +1010 -967
- package/dist/primitives/components/index.cjs +1 -1
- package/dist/primitives/components/index.d.ts +1 -0
- package/dist/primitives/components/index.js +20 -18
- package/dist/primitives/hooks/use-anonymous-session.cjs +1 -0
- package/dist/primitives/hooks/use-anonymous-session.d.ts +12 -0
- package/dist/primitives/hooks/use-anonymous-session.js +57 -0
- package/dist/primitives/hooks/use-conversation-loader.cjs +1 -0
- package/dist/primitives/hooks/use-conversation-loader.d.ts +13 -0
- package/dist/primitives/hooks/use-conversation-loader.js +36 -0
- package/dist/primitives/hooks/use-inkeep-api-client.cjs +1 -0
- package/dist/primitives/hooks/use-inkeep-api-client.d.ts +33 -0
- package/dist/primitives/hooks/use-inkeep-api-client.js +87 -0
- package/dist/primitives/hooks/use-local-storage.cjs +1 -0
- package/dist/primitives/hooks/use-local-storage.d.ts +8 -0
- package/dist/primitives/hooks/use-local-storage.js +26 -0
- package/dist/primitives/index.cjs +1 -1
- package/dist/primitives/index.js +157 -151
- package/dist/primitives/providers/base-events-provider.cjs +1 -1
- package/dist/primitives/providers/base-events-provider.js +1 -1
- package/dist/primitives/providers/chat-history-provider.cjs +1 -0
- package/dist/primitives/providers/chat-history-provider.d.ts +32 -0
- package/dist/primitives/providers/chat-history-provider.js +105 -0
- package/dist/primitives/providers/index.cjs +1 -1
- package/dist/primitives/providers/index.d.ts +1 -0
- package/dist/primitives/providers/index.js +55 -52
- package/dist/primitives/utils/component-ids.cjs +1 -1
- package/dist/primitives/utils/component-ids.d.ts +32 -0
- package/dist/primitives/utils/component-ids.js +19 -1
- package/dist/primitives/utils/default-settings.cjs +1 -1
- package/dist/primitives/utils/default-settings.d.ts +2 -0
- package/dist/primitives/utils/default-settings.js +6 -4
- package/dist/react/chat-button.cjs +1 -1
- package/dist/react/chat-button.js +42 -38
- package/dist/react/embedded-chat.cjs +1 -1
- package/dist/react/embedded-chat.js +256 -230
- package/dist/react/index.cjs +1 -1
- package/dist/react/index.js +230 -222
- package/dist/react/sidebar-chat.cjs +1 -1
- package/dist/react/sidebar-chat.js +26 -22
- package/dist/styled/components/chat-bubble.cjs +1 -1
- package/dist/styled/components/chat-bubble.js +1 -1
- package/dist/styled/components/chat-history.cjs +1 -0
- package/dist/styled/components/chat-history.d.ts +15 -0
- package/dist/styled/components/chat-history.js +197 -0
- package/dist/styled/components/data-summary-group.cjs +1 -1
- package/dist/styled/components/data-summary-group.js +24 -24
- package/dist/styled/components/embedded-chat/session-loading.cjs +1 -0
- package/dist/styled/components/embedded-chat/session-loading.d.ts +1 -0
- package/dist/styled/components/embedded-chat/session-loading.js +26 -0
- package/dist/styled/components/embedded-chat.cjs +1 -1
- package/dist/styled/components/embedded-chat.d.ts +7 -1
- package/dist/styled/components/embedded-chat.js +615 -563
- package/dist/styled/components/embedded-search.cjs +1 -1
- package/dist/styled/components/embedded-search.js +1 -1
- package/dist/styled/components/index.cjs +1 -1
- package/dist/styled/components/index.d.ts +1 -0
- package/dist/styled/components/index.js +22 -20
- package/dist/styled/components/sidebar-chat.cjs +1 -1
- package/dist/styled/components/sidebar-chat.js +1 -1
- package/dist/styled/components/ui/recipes/ai-chat-page-wrapper.cjs +1 -1
- package/dist/styled/components/ui/recipes/ai-chat-page-wrapper.js +3 -2
- package/dist/styled/index.cjs +1 -1
- package/dist/styled/index.js +193 -185
- package/dist/styled/inkeep.css.cjs +146 -4
- package/dist/styled/inkeep.css.js +146 -4
- package/dist/types/config/ai.d.ts +17 -1
- package/dist/types/config/base.d.ts +21 -0
- package/dist/types/icons/built-in.d.ts +1 -1
- package/dist/types/icons/custom.d.ts +3 -0
- package/package.json +1 -1
|
@@ -18,6 +18,9 @@ declare const EmbeddedChatHeader: ({ className, ...props }: React.ComponentProps
|
|
|
18
18
|
declare const EmbeddedChatHeaderToolbar: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.HeaderToolbar>) => import("react/jsx-runtime").JSX.Element;
|
|
19
19
|
declare const EmbeddedChatHeaderToolbarWrapper: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.HeaderToolbarWrapper>) => import("react/jsx-runtime").JSX.Element;
|
|
20
20
|
declare const EmbeddedChatToolbarHeader: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.ToolbarHeader>) => import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
declare const EmbeddedChatChatHistoryButtonIcon: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.ChatHistoryButtonIcon>) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
declare const EmbeddedChatChatHistoryButton: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.ChatHistoryButton>) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
declare const EmbeddedChatChatHistoryTrigger: () => import("react/jsx-runtime").JSX.Element | null;
|
|
21
24
|
declare const EmbeddedChatContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.Content>) => import("react/jsx-runtime").JSX.Element;
|
|
22
25
|
declare const EmbeddedChatContentScrollArea: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.ContentScrollArea>) => import("react/jsx-runtime").JSX.Element;
|
|
23
26
|
declare const EmbeddedChatContentScrollAreaViewport: ForwardRefExoticComponent<Omit<Omit< PolymorphicProps & Omit< ScrollAreaViewportProps & RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick< ScrollAreaViewportProps & RefAttributes<HTMLDivElement>, "_id">>, "ref"> & RefAttributes<HTMLDivElement>, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
@@ -44,6 +47,9 @@ declare const EmbeddedChatMessageWrapper: ({ className, ...props }: React.Compon
|
|
|
44
47
|
declare const EmbeddedChatIntroMessageWrapper: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.IntroMessageWrapper>) => import("react/jsx-runtime").JSX.Element;
|
|
45
48
|
declare const EmbeddedChatMessageHeader: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageHeader>) => import("react/jsx-runtime").JSX.Element;
|
|
46
49
|
declare const EmbeddedChatMessageLoading: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageLoading>) => import("react/jsx-runtime").JSX.Element;
|
|
50
|
+
declare const EmbeddedChatMessagesSessionLoading: ({ className }: {
|
|
51
|
+
className?: string;
|
|
52
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
47
53
|
declare const EmbeddedChatMessageAvatar: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageAvatar>) => import("react/jsx-runtime").JSX.Element;
|
|
48
54
|
declare const EmbeddedChatMessageAvatarContent: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageAvatarContent>) => import("react/jsx-runtime").JSX.Element;
|
|
49
55
|
declare const EmbeddedChatMessageAvatarFallback: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.MessageAvatarFallback>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -202,4 +208,4 @@ declare const EmbeddedChatFormSuccess: ({ className, ...props }: React.Component
|
|
|
202
208
|
declare const EmbeddedChatFormSuccessHeading: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormSuccessHeading>) => import("react/jsx-runtime").JSX.Element;
|
|
203
209
|
declare const EmbeddedChatFormSuccessMessage: (props: ComponentPropsWithRef<ForwardRefExoticComponent< PolymorphicProps & Omit< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & MarkdownProps, "_id"> & Partial<Pick< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & MarkdownProps, "_id">>>>) => import("react/jsx-runtime").JSX.Element;
|
|
204
210
|
declare const EmbeddedChatFormSuccessButton: ({ className, ...props }: React.ComponentPropsWithRef<typeof EmbeddedChatPrimitive.FormSuccessButton>) => import("react/jsx-runtime").JSX.Element;
|
|
205
|
-
export { EmbeddedChatProvider as Provider, EmbeddedChatWrapper as Wrapper, EmbeddedChatRoot as Root, EmbeddedChatHeader as Header, EmbeddedChatHeaderToolbar as HeaderToolbar, EmbeddedChatHeaderToolbarWrapper as HeaderToolbarWrapper, EmbeddedChatToolbarHeader as ToolbarHeader, EmbeddedChatContent as Content, EmbeddedChatContentScrollArea as ContentScrollArea, EmbeddedChatContentScrollAreaViewport as ContentScrollAreaViewport, EmbeddedChatContentScrollAreaScrollbar as ContentScrollAreaScrollbar, EmbeddedChatContentScrollAreaThumb as ContentScrollAreaThumb, EmbeddedChatContentScrollAreaCorner as ContentScrollAreaCorner, EmbeddedChatMessages as Messages, EmbeddedChatMessageWrapper as MessageWrapper, EmbeddedChatIntroMessageWrapper as IntroMessageWrapper, EmbeddedChatDisclaimer as Disclaimer, EmbeddedChatDisclaimerLabel as DisclaimerLabel, EmbeddedChatDisclaimerTrigger as DisclaimerTrigger, EmbeddedChatDisclaimerContent as DisclaimerContent, EmbeddedChatDisclaimerText as DisclaimerText, EmbeddedChatDisclaimerArrow as DisclaimerArrow, EmbeddedChatExampleQuestions as ExampleQuestions, EmbeddedChatExampleQuestionsLabel as ExampleQuestionsLabel, EmbeddedChatExampleQuestionsList as ExampleQuestionsList, EmbeddedChatExampleQuestion as ExampleQuestion, EmbeddedChatExampleQuestionButton as ExampleQuestionButton, EmbeddedChatWorkflows as Workflows, EmbeddedChatWorkflowsLabel as WorkflowsLabel, EmbeddedChatWorkflowsList as WorkflowsList, EmbeddedChatWorkflow as Workflow, EmbeddedChatMessageHeader as MessageHeader, EmbeddedChatMessageLoading as MessageLoading, EmbeddedChatMessageAvatar as MessageAvatar, EmbeddedChatMessageAvatarContent as MessageAvatarContent, EmbeddedChatMessageAvatarFallback as MessageAvatarFallback, EmbeddedChatMessageAvatarImage as MessageAvatarImage, EmbeddedChatMessageName as MessageName, EmbeddedChatMessageContentWrapper as MessageContentWrapper, EmbeddedChatMessageContent as MessageContent, EmbeddedChatMessageAttachments as MessageAttachments, EmbeddedChatMessageAttachmentsList as MessageAttachmentsList, EmbeddedChatMessageAttachmentsItem as MessageAttachmentsItem, EmbeddedChatMessageAttachmentsItemIcon as MessageAttachmentsItemIcon, EmbeddedChatMessageAttachmentsItemTitle as MessageAttachmentsItemTitle, EmbeddedChatMessageAttachmentsPreview as MessageAttachmentsPreview, EmbeddedChatMessageAttachmentsPreviewOverlay as MessageAttachmentsPreviewOverlay, EmbeddedChatMessageAttachmentsPreviewContent as MessageAttachmentsPreviewContent, EmbeddedChatMessageAttachmentsPreviewHeader as MessageAttachmentsPreviewHeader, EmbeddedChatMessageAttachmentsPreviewClose as MessageAttachmentsPreviewClose, EmbeddedChatMessageAttachmentsPreviewBody as MessageAttachmentsPreviewBody, EmbeddedChatMarkdown as Markdown, EmbeddedChatDynamicComponent as DynamicComponent, EmbeddedChatMessagePart as MessagePart, EmbeddedChatMessageToolbar as MessageToolbar, EmbeddedChatMessageCustomActions as MessageCustomActions, EmbeddedChatMessageCustomAction as MessageCustomAction, EmbeddedChatMessageAction as MessageAction, EmbeddedChatMessageSources as MessageSources, EmbeddedChatMessageSourcesHeader as MessageSourcesHeader, EmbeddedChatMessageSourcesList as MessageSourcesList, EmbeddedChatMessageSourceItem as MessageSourceItem, EmbeddedChatMessageSourceItemBreadcrumbs as MessageSourceItemBreadcrumbs, EmbeddedChatMessageSourceItemBreadcrumbIcon as MessageSourceItemBreadcrumbIcon, EmbeddedChatMessageSourceItemIcon as MessageSourceItemIcon, EmbeddedChatMessageSourceItemTitle as MessageSourceItemTitle, EmbeddedChatMessageSourceItemTag as MessageSourceItemTag, EmbeddedChatMessageSourceItemDescription as MessageSourceItemDescription, EmbeddedChatMessageSourceItemDescriptionPart as MessageSourceItemDescriptionPart, EmbeddedChatMessageSourceItemIndicator as MessageSourceItemIndicator, EmbeddedChatFooter as Footer, EmbeddedChatInputFieldset as InputFieldset, EmbeddedChatInputGroup as InputGroup, EmbeddedChatInput as Input, EmbeddedChatSendButton as SendButton, EmbeddedChatSendButtonIcon as SendButtonIcon, EmbeddedChatAttachmentsBar as AttachmentsBar, EmbeddedChatAttachmentsBarList as AttachmentsBarList, EmbeddedChatAttachmentsBarAttachment as AttachmentsBarAttachment, EmbeddedChatAttachmentsBarAttachmentIcon as AttachmentsBarAttachmentIcon, EmbeddedChatAttachmentsBarAttachmentTitle as AttachmentsBarAttachmentTitle, EmbeddedChatAttachmentsBarAttachmentDelete as AttachmentsBarAttachmentDelete, EmbeddedChatAttachmentsBarActions as AttachmentsBarActions, EmbeddedChatAttachmentsBarInfoTip as AttachmentsBarInfoTip, EmbeddedChatAttachmentsBarInfoTipIcon as AttachmentsBarInfoTipIcon, EmbeddedChatAttachmentsBarInfoTipText as AttachmentsBarInfoTipText, EmbeddedChatAttachmentsBarInfoTipArrow as AttachmentsBarInfoTipArrow, EmbeddedChatAttachmentsBarInputs as AttachmentsBarInputs, EmbeddedChatAttachmentsBarInput as AttachmentsBarInput, EmbeddedChatAttachmentsBarModal as AttachmentsBarModal, EmbeddedChatAttachmentsBarModalOverlay as AttachmentsBarModalOverlay, EmbeddedChatAttachmentsBarModalContent as AttachmentsBarModalContent, EmbeddedChatAttachmentsBarModalHeader as AttachmentsBarModalHeader, EmbeddedChatAttachmentsBarModalHeading as AttachmentsBarModalHeading, EmbeddedChatAttachmentsBarModalDescription as AttachmentsBarModalDescription, EmbeddedChatAttachmentsBarModalHelp as AttachmentsBarModalHelp, EmbeddedChatAttachmentsBarModalClose as AttachmentsBarModalClose, EmbeddedChatAttachmentsBarModalBody as AttachmentsBarModalBody, EmbeddedChatAttachmentsBarForm as AttachmentsBarForm, EmbeddedChatAttachmentsBarFormTitle as AttachmentsBarFormTitle, EmbeddedChatAttachmentsBarFormTitleLabel as AttachmentsBarFormTitleLabel, EmbeddedChatAttachmentsBarFormTitleInput as AttachmentsBarFormTitleInput, EmbeddedChatAttachmentsBarFormTitleError as AttachmentsBarFormTitleError, EmbeddedChatAttachmentsBarFormContent as AttachmentsBarFormContent, EmbeddedChatAttachmentsBarFormContentLabel as AttachmentsBarFormContentLabel, EmbeddedChatAttachmentsBarFormContentInput as AttachmentsBarFormContentInput, EmbeddedChatAttachmentsBarFormContentError as AttachmentsBarFormContentError, EmbeddedChatAttachmentsBarFormSubmitButton as AttachmentsBarFormSubmitButton, EmbeddedChatActionBar as ActionBar, EmbeddedChatActions as Actions, EmbeddedChatTaglineContainer as TaglineContainer, EmbeddedChatTaglineText as TaglineText, EmbeddedChatTaglineLogo as TaglineLogo, EmbeddedChatTaglineBrandName as TaglineBrandName, EmbeddedChatAction as ChatAction, EmbeddedChatActionLabel as ChatActionLabel, EmbeddedChatActionFeedback as ChatActionFeedback, EmbeddedChatHelpActions as HelpActions, EmbeddedChatHelpAction as HelpAction, EmbeddedChatHelpActionsTrigger as HelpActionsTrigger, EmbeddedChatHelpActionsMenu as HelpActionsMenu, EmbeddedChatHelpActionsMenuArrow as HelpActionsMenuArrow, EmbeddedChatHelpActionsMenuItem as HelpActionsMenuItem, EmbeddedChatHelpActionsMenuItemIcon as HelpActionsMenuItemIcon, EmbeddedChatFeedbackModal as FeedbackModal, EmbeddedChatFeedbackModalOverlay as FeedbackModalOverlay, EmbeddedChatFeedbackModalContent as FeedbackModalContent, EmbeddedChatFeedbackModalHeader as FeedbackModalHeader, EmbeddedChatFeedbackModalClose as FeedbackModalClose, EmbeddedChatFeedbackModalBody as FeedbackModalBody, EmbeddedChatFeedbackForm as FeedbackForm, EmbeddedChatFeedbackItem as FeedbackItem, EmbeddedChatFeedbackItemCheckbox as FeedbackItemCheckbox, EmbeddedChatFeedbackItemCheckboxIndicator as FeedbackItemCheckboxIndicator, EmbeddedChatFeedbackItemLabel as FeedbackItemLabel, EmbeddedChatFeedbackItemDescription as FeedbackItemDescription, EmbeddedChatFeedbackSubmitButton as FeedbackSubmitButton, EmbeddedChatFormWrapper as FormWrapper, EmbeddedChatForm as Form, EmbeddedChatFormClose as FormClose, EmbeddedChatFormHeader as FormHeader, EmbeddedChatFormHeading as FormHeading, EmbeddedChatFormDescription as FormDescription, EmbeddedChatFormContent as FormContent, EmbeddedChatFormField as FormField, EmbeddedChatFormFieldLabel as FormFieldLabel, EmbeddedChatFormFieldText as FormFieldText, EmbeddedChatFormFieldEmail as FormFieldEmail, EmbeddedChatFormFieldFile as FormFieldFile, EmbeddedChatFormFieldTextArea as FormFieldTextArea, EmbeddedChatFormFieldCheckbox as FormFieldCheckbox, EmbeddedChatFormFieldCheckboxIndicator as FormFieldCheckboxIndicator, EmbeddedChatFormFieldSelect as FormFieldSelect, EmbeddedChatFormFieldSelectTrigger as FormFieldSelectTrigger, EmbeddedChatFormFieldSelectValue as FormFieldSelectValue, EmbeddedChatFormFieldSelectIcon as FormFieldSelectIcon, EmbeddedChatFormFieldSelectContent as FormFieldSelectContent, EmbeddedChatFormFieldSelectViewport as FormFieldSelectViewport, EmbeddedChatFormFieldSelectItem as FormFieldSelectItem, EmbeddedChatFormFieldSelectItemText as FormFieldSelectItemText, EmbeddedChatFormFieldSelectItemIndicator as FormFieldSelectItemIndicator, EmbeddedChatFormFieldCombobox as FormFieldCombobox, EmbeddedChatFormFieldComboboxControl as FormFieldComboboxControl, EmbeddedChatFormFieldComboboxInput as FormFieldComboboxInput, EmbeddedChatFormFieldComboboxTrigger as FormFieldComboboxTrigger, EmbeddedChatFormFieldComboboxSelectedTags as FormFieldComboboxSelectedTags, EmbeddedChatFormFieldComboboxPositioner as FormFieldComboboxPositioner, EmbeddedChatFormFieldComboboxContent as FormFieldComboboxContent, EmbeddedChatFormFieldComboboxList as FormFieldComboboxList, EmbeddedChatFormFieldComboboxListItems as FormFieldComboboxListItems, EmbeddedChatFormFieldComboboxListEmpty as FormFieldComboboxListEmpty, EmbeddedChatFormFieldComboboxItem as FormFieldComboboxItem, EmbeddedChatFormFieldComboboxItemText as FormFieldComboboxItemText, EmbeddedChatFormFieldComboboxItemIndicator as FormFieldComboboxItemIndicator, EmbeddedChatFormFieldDescription as FormFieldDescription, EmbeddedChatFormFieldError as FormFieldError, EmbeddedChatFormError as FormError, EmbeddedChatFormFooter as FormFooter, EmbeddedChatFormCancel as FormCancel, EmbeddedChatFormSubmit as FormSubmit, EmbeddedChatFormSuccess as FormSuccess, EmbeddedChatFormSuccessHeading as FormSuccessHeading, EmbeddedChatFormSuccessMessage as FormSuccessMessage, EmbeddedChatFormSuccessButton as FormSuccessButton, };
|
|
211
|
+
export { EmbeddedChatProvider as Provider, EmbeddedChatWrapper as Wrapper, EmbeddedChatRoot as Root, EmbeddedChatHeader as Header, EmbeddedChatHeaderToolbar as HeaderToolbar, EmbeddedChatHeaderToolbarWrapper as HeaderToolbarWrapper, EmbeddedChatToolbarHeader as ToolbarHeader, EmbeddedChatChatHistoryButtonIcon as ChatHistoryButtonIcon, EmbeddedChatChatHistoryButton as ChatHistoryButton, EmbeddedChatChatHistoryTrigger as ChatHistoryTrigger, EmbeddedChatContent as Content, EmbeddedChatContentScrollArea as ContentScrollArea, EmbeddedChatContentScrollAreaViewport as ContentScrollAreaViewport, EmbeddedChatContentScrollAreaScrollbar as ContentScrollAreaScrollbar, EmbeddedChatContentScrollAreaThumb as ContentScrollAreaThumb, EmbeddedChatContentScrollAreaCorner as ContentScrollAreaCorner, EmbeddedChatMessages as Messages, EmbeddedChatMessageWrapper as MessageWrapper, EmbeddedChatIntroMessageWrapper as IntroMessageWrapper, EmbeddedChatDisclaimer as Disclaimer, EmbeddedChatDisclaimerLabel as DisclaimerLabel, EmbeddedChatDisclaimerTrigger as DisclaimerTrigger, EmbeddedChatDisclaimerContent as DisclaimerContent, EmbeddedChatDisclaimerText as DisclaimerText, EmbeddedChatDisclaimerArrow as DisclaimerArrow, EmbeddedChatExampleQuestions as ExampleQuestions, EmbeddedChatExampleQuestionsLabel as ExampleQuestionsLabel, EmbeddedChatExampleQuestionsList as ExampleQuestionsList, EmbeddedChatExampleQuestion as ExampleQuestion, EmbeddedChatExampleQuestionButton as ExampleQuestionButton, EmbeddedChatWorkflows as Workflows, EmbeddedChatWorkflowsLabel as WorkflowsLabel, EmbeddedChatWorkflowsList as WorkflowsList, EmbeddedChatWorkflow as Workflow, EmbeddedChatMessageHeader as MessageHeader, EmbeddedChatMessageLoading as MessageLoading, EmbeddedChatMessagesSessionLoading as MessagesSessionLoading, EmbeddedChatMessageAvatar as MessageAvatar, EmbeddedChatMessageAvatarContent as MessageAvatarContent, EmbeddedChatMessageAvatarFallback as MessageAvatarFallback, EmbeddedChatMessageAvatarImage as MessageAvatarImage, EmbeddedChatMessageName as MessageName, EmbeddedChatMessageContentWrapper as MessageContentWrapper, EmbeddedChatMessageContent as MessageContent, EmbeddedChatMessageAttachments as MessageAttachments, EmbeddedChatMessageAttachmentsList as MessageAttachmentsList, EmbeddedChatMessageAttachmentsItem as MessageAttachmentsItem, EmbeddedChatMessageAttachmentsItemIcon as MessageAttachmentsItemIcon, EmbeddedChatMessageAttachmentsItemTitle as MessageAttachmentsItemTitle, EmbeddedChatMessageAttachmentsPreview as MessageAttachmentsPreview, EmbeddedChatMessageAttachmentsPreviewOverlay as MessageAttachmentsPreviewOverlay, EmbeddedChatMessageAttachmentsPreviewContent as MessageAttachmentsPreviewContent, EmbeddedChatMessageAttachmentsPreviewHeader as MessageAttachmentsPreviewHeader, EmbeddedChatMessageAttachmentsPreviewClose as MessageAttachmentsPreviewClose, EmbeddedChatMessageAttachmentsPreviewBody as MessageAttachmentsPreviewBody, EmbeddedChatMarkdown as Markdown, EmbeddedChatDynamicComponent as DynamicComponent, EmbeddedChatMessagePart as MessagePart, EmbeddedChatMessageToolbar as MessageToolbar, EmbeddedChatMessageCustomActions as MessageCustomActions, EmbeddedChatMessageCustomAction as MessageCustomAction, EmbeddedChatMessageAction as MessageAction, EmbeddedChatMessageSources as MessageSources, EmbeddedChatMessageSourcesHeader as MessageSourcesHeader, EmbeddedChatMessageSourcesList as MessageSourcesList, EmbeddedChatMessageSourceItem as MessageSourceItem, EmbeddedChatMessageSourceItemBreadcrumbs as MessageSourceItemBreadcrumbs, EmbeddedChatMessageSourceItemBreadcrumbIcon as MessageSourceItemBreadcrumbIcon, EmbeddedChatMessageSourceItemIcon as MessageSourceItemIcon, EmbeddedChatMessageSourceItemTitle as MessageSourceItemTitle, EmbeddedChatMessageSourceItemTag as MessageSourceItemTag, EmbeddedChatMessageSourceItemDescription as MessageSourceItemDescription, EmbeddedChatMessageSourceItemDescriptionPart as MessageSourceItemDescriptionPart, EmbeddedChatMessageSourceItemIndicator as MessageSourceItemIndicator, EmbeddedChatFooter as Footer, EmbeddedChatInputFieldset as InputFieldset, EmbeddedChatInputGroup as InputGroup, EmbeddedChatInput as Input, EmbeddedChatSendButton as SendButton, EmbeddedChatSendButtonIcon as SendButtonIcon, EmbeddedChatAttachmentsBar as AttachmentsBar, EmbeddedChatAttachmentsBarList as AttachmentsBarList, EmbeddedChatAttachmentsBarAttachment as AttachmentsBarAttachment, EmbeddedChatAttachmentsBarAttachmentIcon as AttachmentsBarAttachmentIcon, EmbeddedChatAttachmentsBarAttachmentTitle as AttachmentsBarAttachmentTitle, EmbeddedChatAttachmentsBarAttachmentDelete as AttachmentsBarAttachmentDelete, EmbeddedChatAttachmentsBarActions as AttachmentsBarActions, EmbeddedChatAttachmentsBarInfoTip as AttachmentsBarInfoTip, EmbeddedChatAttachmentsBarInfoTipIcon as AttachmentsBarInfoTipIcon, EmbeddedChatAttachmentsBarInfoTipText as AttachmentsBarInfoTipText, EmbeddedChatAttachmentsBarInfoTipArrow as AttachmentsBarInfoTipArrow, EmbeddedChatAttachmentsBarInputs as AttachmentsBarInputs, EmbeddedChatAttachmentsBarInput as AttachmentsBarInput, EmbeddedChatAttachmentsBarModal as AttachmentsBarModal, EmbeddedChatAttachmentsBarModalOverlay as AttachmentsBarModalOverlay, EmbeddedChatAttachmentsBarModalContent as AttachmentsBarModalContent, EmbeddedChatAttachmentsBarModalHeader as AttachmentsBarModalHeader, EmbeddedChatAttachmentsBarModalHeading as AttachmentsBarModalHeading, EmbeddedChatAttachmentsBarModalDescription as AttachmentsBarModalDescription, EmbeddedChatAttachmentsBarModalHelp as AttachmentsBarModalHelp, EmbeddedChatAttachmentsBarModalClose as AttachmentsBarModalClose, EmbeddedChatAttachmentsBarModalBody as AttachmentsBarModalBody, EmbeddedChatAttachmentsBarForm as AttachmentsBarForm, EmbeddedChatAttachmentsBarFormTitle as AttachmentsBarFormTitle, EmbeddedChatAttachmentsBarFormTitleLabel as AttachmentsBarFormTitleLabel, EmbeddedChatAttachmentsBarFormTitleInput as AttachmentsBarFormTitleInput, EmbeddedChatAttachmentsBarFormTitleError as AttachmentsBarFormTitleError, EmbeddedChatAttachmentsBarFormContent as AttachmentsBarFormContent, EmbeddedChatAttachmentsBarFormContentLabel as AttachmentsBarFormContentLabel, EmbeddedChatAttachmentsBarFormContentInput as AttachmentsBarFormContentInput, EmbeddedChatAttachmentsBarFormContentError as AttachmentsBarFormContentError, EmbeddedChatAttachmentsBarFormSubmitButton as AttachmentsBarFormSubmitButton, EmbeddedChatActionBar as ActionBar, EmbeddedChatActions as Actions, EmbeddedChatTaglineContainer as TaglineContainer, EmbeddedChatTaglineText as TaglineText, EmbeddedChatTaglineLogo as TaglineLogo, EmbeddedChatTaglineBrandName as TaglineBrandName, EmbeddedChatAction as ChatAction, EmbeddedChatActionLabel as ChatActionLabel, EmbeddedChatActionFeedback as ChatActionFeedback, EmbeddedChatHelpActions as HelpActions, EmbeddedChatHelpAction as HelpAction, EmbeddedChatHelpActionsTrigger as HelpActionsTrigger, EmbeddedChatHelpActionsMenu as HelpActionsMenu, EmbeddedChatHelpActionsMenuArrow as HelpActionsMenuArrow, EmbeddedChatHelpActionsMenuItem as HelpActionsMenuItem, EmbeddedChatHelpActionsMenuItemIcon as HelpActionsMenuItemIcon, EmbeddedChatFeedbackModal as FeedbackModal, EmbeddedChatFeedbackModalOverlay as FeedbackModalOverlay, EmbeddedChatFeedbackModalContent as FeedbackModalContent, EmbeddedChatFeedbackModalHeader as FeedbackModalHeader, EmbeddedChatFeedbackModalClose as FeedbackModalClose, EmbeddedChatFeedbackModalBody as FeedbackModalBody, EmbeddedChatFeedbackForm as FeedbackForm, EmbeddedChatFeedbackItem as FeedbackItem, EmbeddedChatFeedbackItemCheckbox as FeedbackItemCheckbox, EmbeddedChatFeedbackItemCheckboxIndicator as FeedbackItemCheckboxIndicator, EmbeddedChatFeedbackItemLabel as FeedbackItemLabel, EmbeddedChatFeedbackItemDescription as FeedbackItemDescription, EmbeddedChatFeedbackSubmitButton as FeedbackSubmitButton, EmbeddedChatFormWrapper as FormWrapper, EmbeddedChatForm as Form, EmbeddedChatFormClose as FormClose, EmbeddedChatFormHeader as FormHeader, EmbeddedChatFormHeading as FormHeading, EmbeddedChatFormDescription as FormDescription, EmbeddedChatFormContent as FormContent, EmbeddedChatFormField as FormField, EmbeddedChatFormFieldLabel as FormFieldLabel, EmbeddedChatFormFieldText as FormFieldText, EmbeddedChatFormFieldEmail as FormFieldEmail, EmbeddedChatFormFieldFile as FormFieldFile, EmbeddedChatFormFieldTextArea as FormFieldTextArea, EmbeddedChatFormFieldCheckbox as FormFieldCheckbox, EmbeddedChatFormFieldCheckboxIndicator as FormFieldCheckboxIndicator, EmbeddedChatFormFieldSelect as FormFieldSelect, EmbeddedChatFormFieldSelectTrigger as FormFieldSelectTrigger, EmbeddedChatFormFieldSelectValue as FormFieldSelectValue, EmbeddedChatFormFieldSelectIcon as FormFieldSelectIcon, EmbeddedChatFormFieldSelectContent as FormFieldSelectContent, EmbeddedChatFormFieldSelectViewport as FormFieldSelectViewport, EmbeddedChatFormFieldSelectItem as FormFieldSelectItem, EmbeddedChatFormFieldSelectItemText as FormFieldSelectItemText, EmbeddedChatFormFieldSelectItemIndicator as FormFieldSelectItemIndicator, EmbeddedChatFormFieldCombobox as FormFieldCombobox, EmbeddedChatFormFieldComboboxControl as FormFieldComboboxControl, EmbeddedChatFormFieldComboboxInput as FormFieldComboboxInput, EmbeddedChatFormFieldComboboxTrigger as FormFieldComboboxTrigger, EmbeddedChatFormFieldComboboxSelectedTags as FormFieldComboboxSelectedTags, EmbeddedChatFormFieldComboboxPositioner as FormFieldComboboxPositioner, EmbeddedChatFormFieldComboboxContent as FormFieldComboboxContent, EmbeddedChatFormFieldComboboxList as FormFieldComboboxList, EmbeddedChatFormFieldComboboxListItems as FormFieldComboboxListItems, EmbeddedChatFormFieldComboboxListEmpty as FormFieldComboboxListEmpty, EmbeddedChatFormFieldComboboxItem as FormFieldComboboxItem, EmbeddedChatFormFieldComboboxItemText as FormFieldComboboxItemText, EmbeddedChatFormFieldComboboxItemIndicator as FormFieldComboboxItemIndicator, EmbeddedChatFormFieldDescription as FormFieldDescription, EmbeddedChatFormFieldError as FormFieldError, EmbeddedChatFormError as FormError, EmbeddedChatFormFooter as FormFooter, EmbeddedChatFormCancel as FormCancel, EmbeddedChatFormSubmit as FormSubmit, EmbeddedChatFormSuccess as FormSuccess, EmbeddedChatFormSuccessHeading as FormSuccessHeading, EmbeddedChatFormSuccessMessage as FormSuccessMessage, EmbeddedChatFormSuccessButton as FormSuccessButton, };
|