@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.
Files changed (92) hide show
  1. package/dist/index.cjs +1 -1
  2. package/dist/index.js +230 -222
  3. package/dist/primitives/atoms/icons/built-in-icons.cjs +1 -1
  4. package/dist/primitives/atoms/icons/built-in-icons.d.ts +2 -0
  5. package/dist/primitives/atoms/icons/built-in-icons.js +33 -31
  6. package/dist/primitives/atoms/icons/inkeep-default-icons.cjs +1 -1
  7. package/dist/primitives/atoms/icons/inkeep-default-icons.js +4 -1
  8. package/dist/primitives/components/chat-history/index.cjs +1 -0
  9. package/dist/primitives/components/chat-history/index.d.ts +27 -0
  10. package/dist/primitives/components/chat-history/index.js +105 -0
  11. package/dist/primitives/components/embedded-chat/use-captcha.cjs +1 -0
  12. package/dist/primitives/components/embedded-chat/use-captcha.d.ts +23 -6
  13. package/dist/primitives/components/embedded-chat/use-captcha.js +67 -0
  14. package/dist/primitives/components/embedded-chat/use-inkeep-chat.cjs +2 -2
  15. package/dist/primitives/components/embedded-chat/use-inkeep-chat.d.ts +12 -3
  16. package/dist/primitives/components/embedded-chat/use-inkeep-chat.js +252 -144
  17. package/dist/primitives/components/embedded-chat/use-stream-processor.cjs +1 -1
  18. package/dist/primitives/components/embedded-chat/use-stream-processor.d.ts +2 -0
  19. package/dist/primitives/components/embedded-chat/use-stream-processor.js +120 -70
  20. package/dist/primitives/components/embedded-chat.cjs +3 -3
  21. package/dist/primitives/components/embedded-chat.d.ts +5 -2
  22. package/dist/primitives/components/embedded-chat.js +1010 -967
  23. package/dist/primitives/components/index.cjs +1 -1
  24. package/dist/primitives/components/index.d.ts +1 -0
  25. package/dist/primitives/components/index.js +20 -18
  26. package/dist/primitives/hooks/use-anonymous-session.cjs +1 -0
  27. package/dist/primitives/hooks/use-anonymous-session.d.ts +12 -0
  28. package/dist/primitives/hooks/use-anonymous-session.js +57 -0
  29. package/dist/primitives/hooks/use-conversation-loader.cjs +1 -0
  30. package/dist/primitives/hooks/use-conversation-loader.d.ts +13 -0
  31. package/dist/primitives/hooks/use-conversation-loader.js +36 -0
  32. package/dist/primitives/hooks/use-inkeep-api-client.cjs +1 -0
  33. package/dist/primitives/hooks/use-inkeep-api-client.d.ts +33 -0
  34. package/dist/primitives/hooks/use-inkeep-api-client.js +87 -0
  35. package/dist/primitives/hooks/use-local-storage.cjs +1 -0
  36. package/dist/primitives/hooks/use-local-storage.d.ts +8 -0
  37. package/dist/primitives/hooks/use-local-storage.js +26 -0
  38. package/dist/primitives/index.cjs +1 -1
  39. package/dist/primitives/index.js +157 -151
  40. package/dist/primitives/providers/base-events-provider.cjs +1 -1
  41. package/dist/primitives/providers/base-events-provider.js +1 -1
  42. package/dist/primitives/providers/chat-history-provider.cjs +1 -0
  43. package/dist/primitives/providers/chat-history-provider.d.ts +32 -0
  44. package/dist/primitives/providers/chat-history-provider.js +105 -0
  45. package/dist/primitives/providers/index.cjs +1 -1
  46. package/dist/primitives/providers/index.d.ts +1 -0
  47. package/dist/primitives/providers/index.js +55 -52
  48. package/dist/primitives/utils/component-ids.cjs +1 -1
  49. package/dist/primitives/utils/component-ids.d.ts +32 -0
  50. package/dist/primitives/utils/component-ids.js +19 -1
  51. package/dist/primitives/utils/default-settings.cjs +1 -1
  52. package/dist/primitives/utils/default-settings.d.ts +2 -0
  53. package/dist/primitives/utils/default-settings.js +6 -4
  54. package/dist/react/chat-button.cjs +1 -1
  55. package/dist/react/chat-button.js +42 -38
  56. package/dist/react/embedded-chat.cjs +1 -1
  57. package/dist/react/embedded-chat.js +256 -230
  58. package/dist/react/index.cjs +1 -1
  59. package/dist/react/index.js +230 -222
  60. package/dist/react/sidebar-chat.cjs +1 -1
  61. package/dist/react/sidebar-chat.js +26 -22
  62. package/dist/styled/components/chat-bubble.cjs +1 -1
  63. package/dist/styled/components/chat-bubble.js +1 -1
  64. package/dist/styled/components/chat-history.cjs +1 -0
  65. package/dist/styled/components/chat-history.d.ts +15 -0
  66. package/dist/styled/components/chat-history.js +197 -0
  67. package/dist/styled/components/data-summary-group.cjs +1 -1
  68. package/dist/styled/components/data-summary-group.js +24 -24
  69. package/dist/styled/components/embedded-chat/session-loading.cjs +1 -0
  70. package/dist/styled/components/embedded-chat/session-loading.d.ts +1 -0
  71. package/dist/styled/components/embedded-chat/session-loading.js +26 -0
  72. package/dist/styled/components/embedded-chat.cjs +1 -1
  73. package/dist/styled/components/embedded-chat.d.ts +7 -1
  74. package/dist/styled/components/embedded-chat.js +615 -563
  75. package/dist/styled/components/embedded-search.cjs +1 -1
  76. package/dist/styled/components/embedded-search.js +1 -1
  77. package/dist/styled/components/index.cjs +1 -1
  78. package/dist/styled/components/index.d.ts +1 -0
  79. package/dist/styled/components/index.js +22 -20
  80. package/dist/styled/components/sidebar-chat.cjs +1 -1
  81. package/dist/styled/components/sidebar-chat.js +1 -1
  82. package/dist/styled/components/ui/recipes/ai-chat-page-wrapper.cjs +1 -1
  83. package/dist/styled/components/ui/recipes/ai-chat-page-wrapper.js +3 -2
  84. package/dist/styled/index.cjs +1 -1
  85. package/dist/styled/index.js +193 -185
  86. package/dist/styled/inkeep.css.cjs +146 -4
  87. package/dist/styled/inkeep.css.js +146 -4
  88. package/dist/types/config/ai.d.ts +17 -1
  89. package/dist/types/config/base.d.ts +21 -0
  90. package/dist/types/icons/built-in.d.ts +1 -1
  91. package/dist/types/icons/custom.d.ts +3 -0
  92. package/package.json +1 -1
@@ -6,8 +6,8 @@ import { GetHelpOption, MessageAttachment, Workflow, WorkflowInputTypes, CustomM
6
6
  import { ChatContextValue, ChatProvider } from './embedded-chat/chat-provider';
7
7
  import { MarkdownComponentID } from '../utils/component-ids';
8
8
  import { PolymorphicProps } from './factory';
9
- import { LinkProps } from '../atoms/link';
10
9
  import { CustomIconProps } from '..';
10
+ import { LinkProps } from '../atoms/link';
11
11
  import * as AvatarPrimitive from '@radix-ui/react-avatar';
12
12
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
13
13
  import * as PopoverPrimitive from '@radix-ui/react-popover';
@@ -22,6 +22,9 @@ export declare const EmbeddedChatPrimitiveRoot: (props: ComponentPropsWithRef<ty
22
22
  declare const EmbeddedChatPrimitiveHeader: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
23
23
  export declare const EmbeddedChatPrimitiveHeaderToolbar: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
24
24
  export declare const EmbeddedChatPrimitiveToolbarHeaderWrapper: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
25
+ declare const PrimitiveChatHistoryButtonIcon: React.ForwardRefExoticComponent< PolymorphicProps & Omit< CustomIconProps, "_id"> & Partial<Pick< CustomIconProps, "_id">>>;
26
+ export declare const EmbeddedChatPrimitiveChatHistoryButtonIcon: React.MemoExoticComponent<(props: ComponentPropsWithRef<typeof PrimitiveChatHistoryButtonIcon>) => import("react/jsx-runtime").JSX.Element>;
27
+ export declare const EmbeddedChatPrimitiveChatHistoryButton: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "_id">>>;
25
28
  declare const PrimitiveToolbarHeader: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
26
29
  export declare const EmbeddedChatPrimitiveToolbarHeader: React.MemoExoticComponent<(props: ComponentPropsWithRef<typeof PrimitiveToolbarHeader>) => import("react/jsx-runtime").JSX.Element>;
27
30
  export declare const EmbeddedChatPrimitiveContent: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
@@ -455,4 +458,4 @@ declare const PrimitiveFormSuccessMessage: React.ForwardRefExoticComponent< Poly
455
458
  export declare const EmbeddedChatPrimitiveFormSuccessMessage: (props: ComponentPropsWithRef<typeof PrimitiveFormSuccessMessage>) => import("react/jsx-runtime").JSX.Element;
456
459
  declare const PrimitiveFormSuccessButton: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "_id">>>;
457
460
  export declare const EmbeddedChatPrimitiveFormSuccessButton: (props: ComponentPropsWithRef<typeof PrimitiveFormSuccessButton>) => import("react/jsx-runtime").JSX.Element | null;
458
- export { ChatProvider as Provider, EmbeddedChatPrimitiveWrapper as Wrapper, EmbeddedChatPrimitiveRoot as Root, EmbeddedChatPrimitiveHeader as Header, EmbeddedChatPrimitiveHeaderToolbar as HeaderToolbar, EmbeddedChatPrimitiveToolbarHeaderWrapper as HeaderToolbarWrapper, EmbeddedChatPrimitiveToolbarHeader as ToolbarHeader, EmbeddedChatPrimitiveContent as Content, EmbeddedChatPrimitiveContentScrollArea as ContentScrollArea, EmbeddedChatPrimitiveContentScrollAreaViewport as ContentScrollAreaViewport, EmbeddedChatPrimitiveContentScrollAreaScrollbar as ContentScrollAreaScrollbar, EmbeddedChatPrimitiveContentScrollAreaThumb as ContentScrollAreaThumb, EmbeddedChatPrimitiveContentScrollAreaCorner as ContentScrollAreaCorner, EmbeddedChatPrimitiveMessages as Messages, EmbeddedChatPrimitiveMessageWrapper as MessageWrapper, EmbeddedChatPrimitiveIntroMessageWrapper as IntroMessageWrapper, EmbeddedChatPrimitiveDisclaimer as Disclaimer, EmbeddedChatPrimitiveDisclaimerLabel as DisclaimerLabel, EmbeddedChatPrimitiveDisclaimerTrigger as DisclaimerTrigger, EmbeddedChatPrimitiveDisclaimerContent as DisclaimerContent, EmbeddedChatPrimitiveDisclaimerText as DisclaimerText, EmbeddedChatPrimitiveDisclaimerArrow as DisclaimerArrow, EmbeddedChatPrimitiveExampleQuestions as ExampleQuestions, EmbeddedChatPrimitiveExampleQuestionsLabel as ExampleQuestionsLabel, EmbeddedChatPrimitiveExampleQuestionsList as ExampleQuestionsList, EmbeddedChatPrimitiveExampleQuestion as ExampleQuestion, EmbeddedChatPrimitiveExampleQuestionButton as ExampleQuestionButton, EmbeddedChatPrimitiveWorkflows as Workflows, EmbeddedChatPrimitiveWorkflowsLabel as WorkflowsLabel, EmbeddedChatPrimitiveWorkflowsList as WorkflowsList, EmbeddedChatPrimitiveWorkflow as Workflow, EmbeddedChatPrimitiveMessageHeader as MessageHeader, EmbeddedChatPrimitiveMessageLoading as MessageLoading, EmbeddedChatPrimitiveMessageAvatar as MessageAvatar, EmbeddedChatPrimitiveMessageAvatarContent as MessageAvatarContent, EmbeddedChatPrimitiveMessageAvatarFallback as MessageAvatarFallback, EmbeddedChatPrimitiveMessageAvatarImage as MessageAvatarImage, EmbeddedChatPrimitiveMessageName as MessageName, EmbeddedChatPrimitiveMessageContentWrapper as MessageContentWrapper, EmbeddedChatPrimitiveMessageContent as MessageContent, EmbeddedChatPrimitiveMessageAttachments as MessageAttachments, EmbeddedChatPrimitiveMessageAttachmentsList as MessageAttachmentsList, EmbeddedChatPrimitiveMessageAttachmentsItem as MessageAttachmentsItem, EmbeddedChatPrimitiveMessageAttachmentsItemIcon as MessageAttachmentsItemIcon, EmbeddedChatPrimitiveMessageAttachmentsItemTitle as MessageAttachmentsItemTitle, EmbeddedChatPrimitiveMessageAttachmentsPreview as MessageAttachmentsPreview, EmbeddedChatPrimitiveMessageAttachmentsPreviewOverlay as MessageAttachmentsPreviewOverlay, EmbeddedChatPrimitiveMessageAttachmentsPreviewContent as MessageAttachmentsPreviewContent, EmbeddedChatPrimitiveMessageAttachmentsPreviewHeader as MessageAttachmentsPreviewHeader, EmbeddedChatPrimitiveMessageAttachmentsPreviewClose as MessageAttachmentsPreviewClose, EmbeddedChatPrimitiveMessageAttachmentsPreviewBody as MessageAttachmentsPreviewBody, EmbeddedChatPrimitiveMarkdown as Markdown, EmbeddedChatPrimitiveDynamicComponent as DynamicComponent, EmbeddedChatPrimitiveMessageToolbar as MessageToolbar, EmbeddedChatPrimitiveMessageCustomActions as MessageCustomActions, EmbeddedChatPrimitiveMessageCustomAction as MessageCustomAction, EmbeddedChatPrimitiveMessageAction as MessageAction, EmbeddedChatPrimitiveMessageSources as MessageSources, EmbeddedChatPrimitiveMessageSourcesHeader as MessageSourcesHeader, EmbeddedChatPrimitiveMessageSourcesList as MessageSourcesList, EmbeddedChatPrimitiveMessageSourceItem as MessageSourceItem, EmbeddedChatPrimitiveMessageSourceItemBreadcrumbs as MessageSourceItemBreadcrumbs, EmbeddedChatPrimitiveMessageSourceItemBreadcrumbIcon as MessageSourceItemBreadcrumbIcon, EmbeddedChatPrimitiveMessageSourceItemIcon as MessageSourceItemIcon, EmbeddedChatPrimitiveMessageSourceItemTitle as MessageSourceItemTitle, EmbeddedChatPrimitiveMessageSourceItemTag as MessageSourceItemTag, EmbeddedChatPrimitiveMessageSourceItemDescription as MessageSourceItemDescription, EmbeddedChatPrimitiveMessageSourceItemDescriptionPart as MessageSourceItemDescriptionPart, EmbeddedChatPrimitiveMessageSourceItemIndicator as MessageSourceItemIndicator, EmbeddedChatPrimitiveFooter as Footer, EmbeddedChatPrimitiveInputFieldset as InputFieldset, EmbeddedChatPrimitiveInputGroup as InputGroup, EmbeddedChatPrimitiveInput as Input, EmbeddedChatPrimitiveSendButton as SendButton, EmbeddedChatPrimitiveSendButtonIcon as SendButtonIcon, EmbeddedChatPrimitiveAttachmentsBar as AttachmentsBar, EmbeddedChatPrimitiveAttachmentsBarList as AttachmentsBarList, EmbeddedChatPrimitiveAttachmentsBarAttachment as AttachmentsBarAttachment, EmbeddedChatPrimitiveAttachmentsBarAttachmentIcon as AttachmentsBarAttachmentIcon, EmbeddedChatPrimitiveAttachmentsBarAttachmentTitle as AttachmentsBarAttachmentTitle, EmbeddedChatPrimitiveAttachmentsBarAttachmentDelete as AttachmentsBarAttachmentDelete, EmbeddedChatPrimitiveAttachmentsBarActions as AttachmentsBarActions, EmbeddedChatPrimitiveAttachmentsBarInfoTip as AttachmentsBarInfoTip, EmbeddedChatPrimitiveAttachmentsBarInfoTipIcon as AttachmentsBarInfoTipIcon, EmbeddedChatPrimitiveAttachmentsBarInfoTipArrow as AttachmentsBarInfoTipArrow, EmbeddedChatPrimitiveAttachmentsBarInfoTipText as AttachmentsBarInfoTipText, EmbeddedChatPrimitiveAttachmentsBarInputs as AttachmentsBarInputs, EmbeddedChatPrimitiveAttachmentsBarInput as AttachmentsBarInput, EmbeddedChatPrimitiveAttachmentsBarModal as AttachmentsBarModal, EmbeddedChatPrimitiveAttachmentsBarModalOverlay as AttachmentsBarModalOverlay, EmbeddedChatPrimitiveAttachmentsBarModalContent as AttachmentsBarModalContent, EmbeddedChatPrimitiveAttachmentsBarModalHeader as AttachmentsBarModalHeader, EmbeddedChatPrimitiveAttachmentsBarModalHeading as AttachmentsBarModalHeading, EmbeddedChatPrimitiveAttachmentsBarModalDescription as AttachmentsBarModalDescription, EmbeddedChatPrimitiveAttachmentsBarModalHelp as AttachmentsBarModalHelp, EmbeddedChatPrimitiveAttachmentsBarModalClose as AttachmentsBarModalClose, EmbeddedChatPrimitiveAttachmentsBarModalBody as AttachmentsBarModalBody, EmbeddedChatPrimitiveAttachmentsBarForm as AttachmentsBarForm, EmbeddedChatPrimitiveAttachmentsBarFormTitle as AttachmentsBarFormTitle, EmbeddedChatPrimitiveAttachmentsBarFormTitleLabel as AttachmentsBarFormTitleLabel, EmbeddedChatPrimitiveAttachmentsBarFormTitleInput as AttachmentsBarFormTitleInput, EmbeddedChatPrimitiveAttachmentsBarFormTitleError as AttachmentsBarFormTitleError, EmbeddedChatPrimitiveAttachmentsBarFormContent as AttachmentsBarFormContent, EmbeddedChatPrimitiveAttachmentsBarFormContentLabel as AttachmentsBarFormContentLabel, EmbeddedChatPrimitiveAttachmentsBarFormContentInput as AttachmentsBarFormContentInput, EmbeddedChatPrimitiveAttachmentsBarFormContentError as AttachmentsBarFormContentError, EmbeddedChatPrimitiveAttachmentsBarFormSubmitButton as AttachmentsBarFormSubmitButton, EmbeddedChatPrimitiveActionBar as ActionBar, EmbeddedChatPrimitiveActions as Actions, EmbeddedChatPrimitiveTaglineContainer as TaglineContainer, EmbeddedChatPrimitiveTaglineText as TaglineText, EmbeddedChatPrimitiveTaglineLogo as TaglineLogo, EmbeddedChatPrimitiveTaglineBrandName as TaglineBrandName, EmbeddedChatPrimitiveChatAction as ChatAction, EmbeddedChatPrimitiveChatActionLabel as ChatActionLabel, EmbeddedChatPrimitiveChatActionFeedback as ChatActionFeedback, EmbeddedChatPrimitiveHelpActions as HelpActions, EmbeddedChatPrimitiveChatHelpAction as ChatHelpAction, EmbeddedChatPrimitiveHelpActionsTrigger as HelpActionsTrigger, EmbeddedChatPrimitiveHelpActionsMenu as HelpActionsMenu, EmbeddedChatPrimitiveHelpActionsMenuArrow as HelpActionsMenuArrow, EmbeddedChatPrimitiveHelpActionsMenuItem as HelpActionsMenuItem, EmbeddedChatPrimitiveHelpActionsMenuItemIcon as HelpActionsMenuItemIcon, EmbeddedChatPrimitiveFeedbackModal as FeedbackModal, EmbeddedChatPrimitiveFeedbackModalOverlay as FeedbackModalOverlay, EmbeddedChatPrimitiveFeedbackModalContent as FeedbackModalContent, EmbeddedChatPrimitiveFeedbackModalHeader as FeedbackModalHeader, EmbeddedChatPrimitiveFeedbackModalClose as FeedbackModalClose, EmbeddedChatPrimitiveFeedbackModalBody as FeedbackModalBody, EmbeddedChatPrimitiveFeedbackForm as FeedbackForm, EmbeddedChatPrimitiveFeedbackItem as FeedbackItem, EmbeddedChatPrimitiveFeedbackItemCheckbox as FeedbackItemCheckbox, EmbeddedChatPrimitiveFeedbackItemCheckboxIndicator as FeedbackItemCheckboxIndicator, EmbeddedChatPrimitiveFeedbackItemLabel as FeedbackItemLabel, EmbeddedChatPrimitiveFeedbackItemDescription as FeedbackItemDescription, EmbeddedChatPrimitiveFeedbackSubmitButton as FeedbackSubmitButton, EmbeddedChatPrimitiveFormWrapper as FormWrapper, EmbeddedChatPrimitiveForm as Form, EmbeddedChatPrimitiveFormClose as FormClose, EmbeddedChatPrimitiveFormHeader as FormHeader, EmbeddedChatPrimitiveFormHeading as FormHeading, EmbeddedChatPrimitiveFormDescription as FormDescription, EmbeddedChatPrimitiveFormContent as FormContent, EmbeddedChatPrimitiveFormField as FormField, EmbeddedChatPrimitiveFormFieldLabel as FormFieldLabel, EmbeddedChatPrimitiveFormFieldText as FormFieldText, EmbeddedChatPrimitiveFormFieldEmail as FormFieldEmail, EmbeddedChatPrimitiveFormFieldFile as FormFieldFile, EmbeddedChatPrimitiveFormFieldTextArea as FormFieldTextArea, EmbeddedChatPrimitiveFormFieldCheckbox as FormFieldCheckbox, EmbeddedChatPrimitiveFormFieldCheckboxIndicator as FormFieldCheckboxIndicator, EmbeddedChatPrimitiveFormFieldSelect as FormFieldSelect, EmbeddedChatPrimitiveFormFieldSelectTrigger as FormFieldSelectTrigger, EmbeddedChatPrimitiveFormFieldSelectValue as FormFieldSelectValue, EmbeddedChatPrimitiveFormFieldSelectIcon as FormFieldSelectIcon, EmbeddedChatPrimitiveFormFieldSelectContent as FormFieldSelectContent, EmbeddedChatPrimitiveFormFieldSelectViewport as FormFieldSelectViewport, EmbeddedChatPrimitiveFormFieldSelectItem as FormFieldSelectItem, EmbeddedChatPrimitiveFormFieldSelectItemText as FormFieldSelectItemText, EmbeddedChatPrimitiveFormFieldSelectItemIndicator as FormFieldSelectItemIndicator, EmbeddedChatPrimitiveFormFieldCombobox as FormFieldCombobox, EmbeddedChatPrimitiveFormFieldComboboxPositioner as FormFieldComboboxPositioner, EmbeddedChatPrimitiveFormFieldComboboxControl as FormFieldComboboxControl, EmbeddedChatPrimitiveFormFieldComboboxInput as FormFieldComboboxInput, EmbeddedChatPrimitiveFormFieldComboboxTrigger as FormFieldComboboxTrigger, EmbeddedChatPrimitiveFormFieldComboboxSelectedTags as FormFieldComboboxSelectedTags, EmbeddedChatPrimitiveFormFieldComboboxContent as FormFieldComboboxContent, EmbeddedChatPrimitiveFormFieldComboboxList as FormFieldComboboxList, EmbeddedChatPrimitiveFormFieldComboboxListItems as FormFieldComboboxListItems, EmbeddedChatPrimitiveFormFieldComboboxListEmpty as FormFieldComboboxListEmpty, EmbeddedChatPrimitiveFormFieldComboboxItem as FormFieldComboboxItem, EmbeddedChatPrimitiveFormFieldComboboxItemText as FormFieldComboboxItemText, EmbeddedChatPrimitiveFormFieldComboboxItemIndicator as FormFieldComboboxItemIndicator, EmbeddedChatPrimitiveFormFieldDescription as FormFieldDescription, EmbeddedChatPrimitiveFormFieldError as FormFieldError, EmbeddedChatPrimitiveFormFooter as FormFooter, EmbeddedChatPrimitiveFormError as FormError, EmbeddedChatPrimitiveFormCancel as FormCancel, EmbeddedChatPrimitiveFormSubmit as FormSubmit, EmbeddedChatPrimitiveFormSuccess as FormSuccess, EmbeddedChatPrimitiveFormSuccessHeading as FormSuccessHeading, EmbeddedChatPrimitiveFormSuccessMessage as FormSuccessMessage, EmbeddedChatPrimitiveFormSuccessButton as FormSuccessButton, };
461
+ export { ChatProvider as Provider, EmbeddedChatPrimitiveWrapper as Wrapper, EmbeddedChatPrimitiveRoot as Root, EmbeddedChatPrimitiveHeader as Header, EmbeddedChatPrimitiveHeaderToolbar as HeaderToolbar, EmbeddedChatPrimitiveToolbarHeaderWrapper as HeaderToolbarWrapper, EmbeddedChatPrimitiveToolbarHeader as ToolbarHeader, EmbeddedChatPrimitiveChatHistoryButtonIcon as ChatHistoryButtonIcon, EmbeddedChatPrimitiveChatHistoryButton as ChatHistoryButton, EmbeddedChatPrimitiveContent as Content, EmbeddedChatPrimitiveContentScrollArea as ContentScrollArea, EmbeddedChatPrimitiveContentScrollAreaViewport as ContentScrollAreaViewport, EmbeddedChatPrimitiveContentScrollAreaScrollbar as ContentScrollAreaScrollbar, EmbeddedChatPrimitiveContentScrollAreaThumb as ContentScrollAreaThumb, EmbeddedChatPrimitiveContentScrollAreaCorner as ContentScrollAreaCorner, EmbeddedChatPrimitiveMessages as Messages, EmbeddedChatPrimitiveMessageWrapper as MessageWrapper, EmbeddedChatPrimitiveIntroMessageWrapper as IntroMessageWrapper, EmbeddedChatPrimitiveDisclaimer as Disclaimer, EmbeddedChatPrimitiveDisclaimerLabel as DisclaimerLabel, EmbeddedChatPrimitiveDisclaimerTrigger as DisclaimerTrigger, EmbeddedChatPrimitiveDisclaimerContent as DisclaimerContent, EmbeddedChatPrimitiveDisclaimerText as DisclaimerText, EmbeddedChatPrimitiveDisclaimerArrow as DisclaimerArrow, EmbeddedChatPrimitiveExampleQuestions as ExampleQuestions, EmbeddedChatPrimitiveExampleQuestionsLabel as ExampleQuestionsLabel, EmbeddedChatPrimitiveExampleQuestionsList as ExampleQuestionsList, EmbeddedChatPrimitiveExampleQuestion as ExampleQuestion, EmbeddedChatPrimitiveExampleQuestionButton as ExampleQuestionButton, EmbeddedChatPrimitiveWorkflows as Workflows, EmbeddedChatPrimitiveWorkflowsLabel as WorkflowsLabel, EmbeddedChatPrimitiveWorkflowsList as WorkflowsList, EmbeddedChatPrimitiveWorkflow as Workflow, EmbeddedChatPrimitiveMessageHeader as MessageHeader, EmbeddedChatPrimitiveMessageLoading as MessageLoading, EmbeddedChatPrimitiveMessageAvatar as MessageAvatar, EmbeddedChatPrimitiveMessageAvatarContent as MessageAvatarContent, EmbeddedChatPrimitiveMessageAvatarFallback as MessageAvatarFallback, EmbeddedChatPrimitiveMessageAvatarImage as MessageAvatarImage, EmbeddedChatPrimitiveMessageName as MessageName, EmbeddedChatPrimitiveMessageContentWrapper as MessageContentWrapper, EmbeddedChatPrimitiveMessageContent as MessageContent, EmbeddedChatPrimitiveMessageAttachments as MessageAttachments, EmbeddedChatPrimitiveMessageAttachmentsList as MessageAttachmentsList, EmbeddedChatPrimitiveMessageAttachmentsItem as MessageAttachmentsItem, EmbeddedChatPrimitiveMessageAttachmentsItemIcon as MessageAttachmentsItemIcon, EmbeddedChatPrimitiveMessageAttachmentsItemTitle as MessageAttachmentsItemTitle, EmbeddedChatPrimitiveMessageAttachmentsPreview as MessageAttachmentsPreview, EmbeddedChatPrimitiveMessageAttachmentsPreviewOverlay as MessageAttachmentsPreviewOverlay, EmbeddedChatPrimitiveMessageAttachmentsPreviewContent as MessageAttachmentsPreviewContent, EmbeddedChatPrimitiveMessageAttachmentsPreviewHeader as MessageAttachmentsPreviewHeader, EmbeddedChatPrimitiveMessageAttachmentsPreviewClose as MessageAttachmentsPreviewClose, EmbeddedChatPrimitiveMessageAttachmentsPreviewBody as MessageAttachmentsPreviewBody, EmbeddedChatPrimitiveMarkdown as Markdown, EmbeddedChatPrimitiveDynamicComponent as DynamicComponent, EmbeddedChatPrimitiveMessageToolbar as MessageToolbar, EmbeddedChatPrimitiveMessageCustomActions as MessageCustomActions, EmbeddedChatPrimitiveMessageCustomAction as MessageCustomAction, EmbeddedChatPrimitiveMessageAction as MessageAction, EmbeddedChatPrimitiveMessageSources as MessageSources, EmbeddedChatPrimitiveMessageSourcesHeader as MessageSourcesHeader, EmbeddedChatPrimitiveMessageSourcesList as MessageSourcesList, EmbeddedChatPrimitiveMessageSourceItem as MessageSourceItem, EmbeddedChatPrimitiveMessageSourceItemBreadcrumbs as MessageSourceItemBreadcrumbs, EmbeddedChatPrimitiveMessageSourceItemBreadcrumbIcon as MessageSourceItemBreadcrumbIcon, EmbeddedChatPrimitiveMessageSourceItemIcon as MessageSourceItemIcon, EmbeddedChatPrimitiveMessageSourceItemTitle as MessageSourceItemTitle, EmbeddedChatPrimitiveMessageSourceItemTag as MessageSourceItemTag, EmbeddedChatPrimitiveMessageSourceItemDescription as MessageSourceItemDescription, EmbeddedChatPrimitiveMessageSourceItemDescriptionPart as MessageSourceItemDescriptionPart, EmbeddedChatPrimitiveMessageSourceItemIndicator as MessageSourceItemIndicator, EmbeddedChatPrimitiveFooter as Footer, EmbeddedChatPrimitiveInputFieldset as InputFieldset, EmbeddedChatPrimitiveInputGroup as InputGroup, EmbeddedChatPrimitiveInput as Input, EmbeddedChatPrimitiveSendButton as SendButton, EmbeddedChatPrimitiveSendButtonIcon as SendButtonIcon, EmbeddedChatPrimitiveAttachmentsBar as AttachmentsBar, EmbeddedChatPrimitiveAttachmentsBarList as AttachmentsBarList, EmbeddedChatPrimitiveAttachmentsBarAttachment as AttachmentsBarAttachment, EmbeddedChatPrimitiveAttachmentsBarAttachmentIcon as AttachmentsBarAttachmentIcon, EmbeddedChatPrimitiveAttachmentsBarAttachmentTitle as AttachmentsBarAttachmentTitle, EmbeddedChatPrimitiveAttachmentsBarAttachmentDelete as AttachmentsBarAttachmentDelete, EmbeddedChatPrimitiveAttachmentsBarActions as AttachmentsBarActions, EmbeddedChatPrimitiveAttachmentsBarInfoTip as AttachmentsBarInfoTip, EmbeddedChatPrimitiveAttachmentsBarInfoTipIcon as AttachmentsBarInfoTipIcon, EmbeddedChatPrimitiveAttachmentsBarInfoTipArrow as AttachmentsBarInfoTipArrow, EmbeddedChatPrimitiveAttachmentsBarInfoTipText as AttachmentsBarInfoTipText, EmbeddedChatPrimitiveAttachmentsBarInputs as AttachmentsBarInputs, EmbeddedChatPrimitiveAttachmentsBarInput as AttachmentsBarInput, EmbeddedChatPrimitiveAttachmentsBarModal as AttachmentsBarModal, EmbeddedChatPrimitiveAttachmentsBarModalOverlay as AttachmentsBarModalOverlay, EmbeddedChatPrimitiveAttachmentsBarModalContent as AttachmentsBarModalContent, EmbeddedChatPrimitiveAttachmentsBarModalHeader as AttachmentsBarModalHeader, EmbeddedChatPrimitiveAttachmentsBarModalHeading as AttachmentsBarModalHeading, EmbeddedChatPrimitiveAttachmentsBarModalDescription as AttachmentsBarModalDescription, EmbeddedChatPrimitiveAttachmentsBarModalHelp as AttachmentsBarModalHelp, EmbeddedChatPrimitiveAttachmentsBarModalClose as AttachmentsBarModalClose, EmbeddedChatPrimitiveAttachmentsBarModalBody as AttachmentsBarModalBody, EmbeddedChatPrimitiveAttachmentsBarForm as AttachmentsBarForm, EmbeddedChatPrimitiveAttachmentsBarFormTitle as AttachmentsBarFormTitle, EmbeddedChatPrimitiveAttachmentsBarFormTitleLabel as AttachmentsBarFormTitleLabel, EmbeddedChatPrimitiveAttachmentsBarFormTitleInput as AttachmentsBarFormTitleInput, EmbeddedChatPrimitiveAttachmentsBarFormTitleError as AttachmentsBarFormTitleError, EmbeddedChatPrimitiveAttachmentsBarFormContent as AttachmentsBarFormContent, EmbeddedChatPrimitiveAttachmentsBarFormContentLabel as AttachmentsBarFormContentLabel, EmbeddedChatPrimitiveAttachmentsBarFormContentInput as AttachmentsBarFormContentInput, EmbeddedChatPrimitiveAttachmentsBarFormContentError as AttachmentsBarFormContentError, EmbeddedChatPrimitiveAttachmentsBarFormSubmitButton as AttachmentsBarFormSubmitButton, EmbeddedChatPrimitiveActionBar as ActionBar, EmbeddedChatPrimitiveActions as Actions, EmbeddedChatPrimitiveTaglineContainer as TaglineContainer, EmbeddedChatPrimitiveTaglineText as TaglineText, EmbeddedChatPrimitiveTaglineLogo as TaglineLogo, EmbeddedChatPrimitiveTaglineBrandName as TaglineBrandName, EmbeddedChatPrimitiveChatAction as ChatAction, EmbeddedChatPrimitiveChatActionLabel as ChatActionLabel, EmbeddedChatPrimitiveChatActionFeedback as ChatActionFeedback, EmbeddedChatPrimitiveHelpActions as HelpActions, EmbeddedChatPrimitiveChatHelpAction as ChatHelpAction, EmbeddedChatPrimitiveHelpActionsTrigger as HelpActionsTrigger, EmbeddedChatPrimitiveHelpActionsMenu as HelpActionsMenu, EmbeddedChatPrimitiveHelpActionsMenuArrow as HelpActionsMenuArrow, EmbeddedChatPrimitiveHelpActionsMenuItem as HelpActionsMenuItem, EmbeddedChatPrimitiveHelpActionsMenuItemIcon as HelpActionsMenuItemIcon, EmbeddedChatPrimitiveFeedbackModal as FeedbackModal, EmbeddedChatPrimitiveFeedbackModalOverlay as FeedbackModalOverlay, EmbeddedChatPrimitiveFeedbackModalContent as FeedbackModalContent, EmbeddedChatPrimitiveFeedbackModalHeader as FeedbackModalHeader, EmbeddedChatPrimitiveFeedbackModalClose as FeedbackModalClose, EmbeddedChatPrimitiveFeedbackModalBody as FeedbackModalBody, EmbeddedChatPrimitiveFeedbackForm as FeedbackForm, EmbeddedChatPrimitiveFeedbackItem as FeedbackItem, EmbeddedChatPrimitiveFeedbackItemCheckbox as FeedbackItemCheckbox, EmbeddedChatPrimitiveFeedbackItemCheckboxIndicator as FeedbackItemCheckboxIndicator, EmbeddedChatPrimitiveFeedbackItemLabel as FeedbackItemLabel, EmbeddedChatPrimitiveFeedbackItemDescription as FeedbackItemDescription, EmbeddedChatPrimitiveFeedbackSubmitButton as FeedbackSubmitButton, EmbeddedChatPrimitiveFormWrapper as FormWrapper, EmbeddedChatPrimitiveForm as Form, EmbeddedChatPrimitiveFormClose as FormClose, EmbeddedChatPrimitiveFormHeader as FormHeader, EmbeddedChatPrimitiveFormHeading as FormHeading, EmbeddedChatPrimitiveFormDescription as FormDescription, EmbeddedChatPrimitiveFormContent as FormContent, EmbeddedChatPrimitiveFormField as FormField, EmbeddedChatPrimitiveFormFieldLabel as FormFieldLabel, EmbeddedChatPrimitiveFormFieldText as FormFieldText, EmbeddedChatPrimitiveFormFieldEmail as FormFieldEmail, EmbeddedChatPrimitiveFormFieldFile as FormFieldFile, EmbeddedChatPrimitiveFormFieldTextArea as FormFieldTextArea, EmbeddedChatPrimitiveFormFieldCheckbox as FormFieldCheckbox, EmbeddedChatPrimitiveFormFieldCheckboxIndicator as FormFieldCheckboxIndicator, EmbeddedChatPrimitiveFormFieldSelect as FormFieldSelect, EmbeddedChatPrimitiveFormFieldSelectTrigger as FormFieldSelectTrigger, EmbeddedChatPrimitiveFormFieldSelectValue as FormFieldSelectValue, EmbeddedChatPrimitiveFormFieldSelectIcon as FormFieldSelectIcon, EmbeddedChatPrimitiveFormFieldSelectContent as FormFieldSelectContent, EmbeddedChatPrimitiveFormFieldSelectViewport as FormFieldSelectViewport, EmbeddedChatPrimitiveFormFieldSelectItem as FormFieldSelectItem, EmbeddedChatPrimitiveFormFieldSelectItemText as FormFieldSelectItemText, EmbeddedChatPrimitiveFormFieldSelectItemIndicator as FormFieldSelectItemIndicator, EmbeddedChatPrimitiveFormFieldCombobox as FormFieldCombobox, EmbeddedChatPrimitiveFormFieldComboboxPositioner as FormFieldComboboxPositioner, EmbeddedChatPrimitiveFormFieldComboboxControl as FormFieldComboboxControl, EmbeddedChatPrimitiveFormFieldComboboxInput as FormFieldComboboxInput, EmbeddedChatPrimitiveFormFieldComboboxTrigger as FormFieldComboboxTrigger, EmbeddedChatPrimitiveFormFieldComboboxSelectedTags as FormFieldComboboxSelectedTags, EmbeddedChatPrimitiveFormFieldComboboxContent as FormFieldComboboxContent, EmbeddedChatPrimitiveFormFieldComboboxList as FormFieldComboboxList, EmbeddedChatPrimitiveFormFieldComboboxListItems as FormFieldComboboxListItems, EmbeddedChatPrimitiveFormFieldComboboxListEmpty as FormFieldComboboxListEmpty, EmbeddedChatPrimitiveFormFieldComboboxItem as FormFieldComboboxItem, EmbeddedChatPrimitiveFormFieldComboboxItemText as FormFieldComboboxItemText, EmbeddedChatPrimitiveFormFieldComboboxItemIndicator as FormFieldComboboxItemIndicator, EmbeddedChatPrimitiveFormFieldDescription as FormFieldDescription, EmbeddedChatPrimitiveFormFieldError as FormFieldError, EmbeddedChatPrimitiveFormFooter as FormFooter, EmbeddedChatPrimitiveFormError as FormError, EmbeddedChatPrimitiveFormCancel as FormCancel, EmbeddedChatPrimitiveFormSubmit as FormSubmit, EmbeddedChatPrimitiveFormSuccess as FormSuccess, EmbeddedChatPrimitiveFormSuccessHeading as FormSuccessHeading, EmbeddedChatPrimitiveFormSuccessMessage as FormSuccessMessage, EmbeddedChatPrimitiveFormSuccessButton as FormSuccessButton, };