@inkeep/agents-ui 0.14.19 → 0.14.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/color-mode/index.d.ts +21 -0
- package/dist/index.d.ts +1 -5103
- package/dist/primitives/atoms/avatars/ai.d.ts +3 -0
- package/dist/primitives/atoms/avatars/user.d.ts +3 -0
- package/dist/primitives/atoms/cmdk/command-score.d.ts +1 -0
- package/dist/primitives/atoms/cmdk/index.d.ts +460 -0
- package/dist/primitives/atoms/codeblock/index.d.ts +10 -0
- package/dist/primitives/atoms/custom-styles.d.ts +5 -0
- package/dist/primitives/atoms/dialog.d.ts +94 -0
- package/dist/primitives/atoms/error-boundary.d.ts +6 -0
- package/dist/primitives/atoms/icons/built-in-icon-renderer.d.ts +6 -0
- package/dist/primitives/atoms/icons/built-in-icons.d.ts +83 -0
- package/dist/primitives/atoms/icons/checkbox-icon.d.ts +1 -0
- package/dist/primitives/atoms/icons/collections/bi.d.ts +4 -0
- package/dist/primitives/atoms/icons/collections/fi.d.ts +2 -0
- package/dist/primitives/atoms/icons/collections/gr.d.ts +2 -0
- package/dist/primitives/atoms/icons/collections/io5.d.ts +34 -0
- package/dist/primitives/atoms/icons/collections/pi.d.ts +4 -0
- package/dist/primitives/atoms/icons/custom-icon.d.ts +6 -0
- package/dist/primitives/atoms/icons/generate-icon.d.ts +28 -0
- package/dist/primitives/atoms/icons/index.d.ts +2 -0
- package/dist/primitives/atoms/icons/inkeep-default-icons.d.ts +2 -0
- package/dist/primitives/atoms/link.d.ts +14 -0
- package/dist/primitives/atoms/markdown/components.d.ts +31 -0
- package/dist/primitives/atoms/markdown/index.d.ts +17 -0
- package/dist/primitives/atoms/markdown/rehype-inline-code-property.d.ts +1 -0
- package/dist/primitives/atoms/portal-with-theme.d.ts +2 -0
- package/dist/primitives/atoms/portal.d.ts +8 -0
- package/dist/primitives/atoms/select.d.ts +136 -0
- package/dist/primitives/atoms/shadow/context.d.ts +14 -0
- package/dist/primitives/atoms/shadow/create.d.ts +8 -0
- package/dist/primitives/atoms/shadow/index.d.ts +1 -0
- package/dist/primitives/atoms/shadow/root.d.ts +5 -0
- package/dist/primitives/atoms/shadow/use-ensured-forwarded-ref.d.ts +2 -0
- package/dist/primitives/atoms/shadow/utils.d.ts +9 -0
- package/dist/primitives/components/chat-button.d.ts +18 -0
- package/dist/primitives/components/embedded-chat/chat-provider.d.ts +19 -0
- package/dist/primitives/components/embedded-chat/use-captcha.d.ts +13 -0
- package/dist/primitives/components/embedded-chat/use-chat-action.d.ts +9 -0
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.d.ts +27 -0
- package/dist/primitives/components/embedded-chat/use-stream-processor.cjs +1 -1
- package/dist/primitives/components/embedded-chat/use-stream-processor.d.ts +28 -0
- package/dist/primitives/components/embedded-chat/use-stream-processor.js +27 -28
- package/dist/primitives/components/embedded-chat.cjs +3 -3
- package/dist/primitives/components/embedded-chat.d.ts +431 -0
- package/dist/primitives/components/embedded-chat.js +791 -795
- package/dist/primitives/components/embedded-search/search-provider.d.ts +21 -0
- package/dist/primitives/components/embedded-search/transform-results.d.ts +3 -0
- package/dist/primitives/components/embedded-search/url-query.d.ts +4 -0
- package/dist/primitives/components/embedded-search/use-inkeep-search.d.ts +19 -0
- package/dist/primitives/components/embedded-search/use-search-filter.d.ts +1 -0
- package/dist/primitives/components/embedded-search.d.ts +249 -0
- package/dist/primitives/components/factory.d.ts +19 -0
- package/dist/primitives/components/index.d.ts +10 -0
- package/dist/primitives/components/modal/modal-provider.d.ts +12 -0
- package/dist/primitives/components/modal/use-inkeep-modal.d.ts +7 -0
- package/dist/primitives/components/modal/widget-auto-focus.d.ts +2 -0
- package/dist/primitives/components/modal.d.ts +18 -0
- package/dist/primitives/components/presence.d.ts +8 -0
- package/dist/primitives/components/searchbar.d.ts +23 -0
- package/dist/primitives/components/sidebar-chat/index.d.ts +9 -0
- package/dist/primitives/components/sidebar-chat/use-sidebar-chat-resizer.d.ts +5 -0
- package/dist/primitives/components/tagline-logo-icon.d.ts +1 -0
- package/dist/primitives/components/use-component-trigger.d.ts +5 -0
- package/dist/primitives/constants/search.d.ts +1 -0
- package/dist/primitives/hooks/index.d.ts +11 -0
- package/dist/primitives/hooks/use-boolean.d.ts +10 -0
- package/dist/primitives/hooks/use-component-classnames.d.ts +6 -0
- package/dist/primitives/hooks/use-container-size.d.ts +5 -0
- package/dist/primitives/hooks/use-copy-to-clipboard.d.ts +3 -0
- package/dist/primitives/hooks/use-debounce.d.ts +1 -0
- package/dist/primitives/hooks/use-instant-update.d.ts +17 -0
- package/dist/primitives/hooks/use-is-mounted.d.ts +1 -0
- package/dist/primitives/hooks/use-media-query.d.ts +1 -0
- package/dist/primitives/hooks/use-resize-observer.d.ts +12 -0
- package/dist/primitives/hooks/use-scrolling-fades.d.ts +2 -0
- package/dist/primitives/hooks/use-settle-action.d.ts +3 -0
- package/dist/primitives/hooks/use-simple-scroll.d.ts +5 -0
- package/dist/primitives/hooks/use-streaming-events.d.ts +8 -0
- package/dist/primitives/index.d.ts +13 -0
- package/dist/primitives/providers/attachment-item-provider.d.ts +9 -0
- package/dist/primitives/providers/attachments-bar-provider.d.ts +30 -0
- package/dist/primitives/providers/base-events-provider.cjs +1 -1
- package/dist/primitives/providers/base-events-provider.d.ts +8 -0
- package/dist/primitives/providers/base-events-provider.js +1 -1
- package/dist/primitives/providers/chat-form-provider.d.ts +26 -0
- package/dist/primitives/providers/config-provider.d.ts +25 -0
- package/dist/primitives/providers/feedback-item-provider.d.ts +10 -0
- package/dist/primitives/providers/feedback-provider.d.ts +16 -0
- package/dist/primitives/providers/form-field-provider.d.ts +15 -0
- package/dist/primitives/providers/help-menu-provider.d.ts +11 -0
- package/dist/primitives/providers/hover-popover-provider.d.ts +10 -0
- package/dist/primitives/providers/index.d.ts +17 -0
- package/dist/primitives/providers/markdown-provider.d.ts +9 -0
- package/dist/primitives/providers/message-attachments-provider.d.ts +13 -0
- package/dist/primitives/providers/message-provider.d.ts +10 -0
- package/dist/primitives/providers/root-provider.d.ts +8 -0
- package/dist/primitives/providers/search-events-provider.d.ts +8 -0
- package/dist/primitives/providers/sidebar-chat-provider.d.ts +83 -0
- package/dist/primitives/providers/source-item-provider.d.ts +12 -0
- package/dist/primitives/providers/theme-provider.d.ts +3 -0
- package/dist/primitives/providers/widget-provider.d.ts +10 -0
- package/dist/primitives/utils/component-ids.d.ts +572 -0
- package/dist/primitives/utils/compose-event-handlers.d.ts +3 -0
- package/dist/primitives/utils/compose-refs.d.ts +5 -0
- package/dist/primitives/utils/default-settings.d.ts +167 -0
- package/dist/primitives/utils/form.d.ts +3 -0
- package/dist/primitives/utils/generate-uid.d.ts +2 -0
- package/dist/primitives/utils/get-message-metadata.d.ts +8 -0
- package/dist/primitives/utils/get-source-icon.d.ts +2 -0
- package/dist/primitives/utils/highlight-emphasis.d.ts +4 -0
- package/dist/primitives/utils/merge-props.d.ts +7 -0
- package/dist/primitives/utils/misc.d.ts +12 -0
- package/dist/primitives/utils/split-props.d.ts +15 -0
- package/dist/react/chat-button.d.ts +14 -0
- package/dist/react/embedded-chat.d.ts +14 -0
- package/dist/react/embedded-search-and-chat.d.ts +40 -0
- package/dist/react/embedded-search-and-chat.impl.d.ts +9 -0
- package/dist/react/embedded-search.d.ts +17 -0
- package/dist/react/index.d.ts +12 -0
- package/dist/react/modal.chat.d.ts +6 -0
- package/dist/react/modal.d.ts +23 -0
- package/dist/react/modal.search-and-chat.d.ts +6 -0
- package/dist/react/modal.search.d.ts +6 -0
- package/dist/react/searchbar.d.ts +13 -0
- package/dist/react/sidebar-chat.d.ts +6 -0
- package/dist/react/utils.d.ts +6 -0
- package/dist/react/widget-toggle.d.ts +14 -0
- package/dist/styled/components/chat-button.d.ts +8 -0
- package/dist/styled/components/data-summary-group.d.ts +11 -0
- package/dist/styled/components/embedded-chat.d.ts +190 -0
- package/dist/styled/components/embedded-search/results-loading.d.ts +1 -0
- package/dist/styled/components/embedded-search.d.ts +73 -0
- package/dist/styled/components/index.d.ts +11 -0
- package/dist/styled/components/loading-indicator.d.ts +1 -0
- package/dist/styled/components/message.cjs +1 -1
- package/dist/styled/components/message.d.ts +4 -0
- package/dist/styled/components/message.js +46 -47
- package/dist/styled/components/modal.d.ts +6 -0
- package/dist/styled/components/searchbar.d.ts +11 -0
- package/dist/styled/components/shadow.d.ts +3 -0
- package/dist/styled/components/sidebar-chat.d.ts +6 -0
- package/dist/styled/components/ui/markdown-styles.d.ts +23 -0
- package/dist/styled/components/ui/recipes/ai-chat-page-wrapper.d.ts +7 -0
- package/dist/styled/components/ui/recipes/attachment.d.ts +4 -0
- package/dist/styled/components/ui/recipes/button.d.ts +6 -0
- package/dist/styled/components/ui/recipes/checkbox.d.ts +4 -0
- package/dist/styled/components/ui/recipes/citation.d.ts +4 -0
- package/dist/styled/components/ui/recipes/icon.d.ts +2 -0
- package/dist/styled/components/ui/recipes/index.d.ts +15 -0
- package/dist/styled/components/ui/recipes/input.d.ts +5 -0
- package/dist/styled/components/ui/recipes/link.d.ts +2 -0
- package/dist/styled/components/ui/recipes/markdown.cjs +1 -1
- package/dist/styled/components/ui/recipes/markdown.d.ts +16 -0
- package/dist/styled/components/ui/recipes/markdown.js +1 -1
- package/dist/styled/components/ui/recipes/modal.d.ts +4 -0
- package/dist/styled/components/ui/recipes/popover.d.ts +4 -0
- package/dist/styled/components/ui/recipes/scrollable.d.ts +4 -0
- package/dist/styled/components/ui/recipes/select.d.ts +4 -0
- package/dist/styled/components/ui/recipes/skeleton.d.ts +2 -0
- package/dist/styled/components/ui/recipes/widget-toggle.d.ts +4 -0
- package/dist/styled/index.d.ts +2 -0
- package/dist/styled/utils.d.ts +4 -0
- package/dist/theme/color-utils.d.ts +1 -0
- package/dist/theme/colors.d.ts +104 -0
- package/dist/theme/index.d.ts +125 -0
- package/dist/theme/utils/create-css-variables.d.ts +2 -0
- package/dist/theme/utils/generate-theme-variables.d.ts +3 -0
- package/dist/types/color-mode.d.ts +44 -0
- package/dist/types/config/ai.d.ts +243 -0
- package/dist/types/config/base.d.ts +344 -0
- package/dist/types/config/components.d.ts +10 -0
- package/dist/types/config/filters.d.ts +17 -0
- package/dist/types/config/index.d.ts +36 -0
- package/dist/types/config/modal.d.ts +33 -0
- package/dist/types/config/search.d.ts +95 -0
- package/dist/types/config/settings/actions.d.ts +37 -0
- package/dist/types/config/settings/form.d.ts +128 -0
- package/dist/types/config/settings/jsonschema.d.ts +105 -0
- package/dist/types/config/settings/workflow.d.ts +86 -0
- package/dist/types/events.d.ts +173 -0
- package/dist/types/icons/built-in.d.ts +1 -0
- package/dist/types/icons/custom.d.ts +29 -0
- package/dist/types/icons/index.d.ts +2 -0
- package/dist/types/index.d.ts +20 -0
- package/dist/types/js/index.d.ts +54 -0
- package/dist/types/message.d.ts +43 -0
- package/dist/types/shadow.d.ts +15 -0
- package/dist/types/sources.d.ts +108 -0
- package/dist/types/theme.d.ts +25 -0
- package/dist/types/widget.d.ts +28 -0
- package/package.json +2 -4
- package/dist/index.d.cts +0 -5103
- package/dist/types/message.cjs +0 -1
- package/dist/types/message.js +0 -5
- package/dist/types/types.d.cts +0 -1758
- package/dist/types/types.d.ts +0 -1758
|
@@ -0,0 +1,431 @@
|
|
|
1
|
+
import { default as React, ComponentPropsWithRef, ComponentPropsWithoutRef } from 'react';
|
|
2
|
+
import { TextareaAutosizeProps } from 'react-textarea-autosize';
|
|
3
|
+
import { Markdown, MarkdownProps } from '../atoms/markdown';
|
|
4
|
+
import { TransformedSourceItem } from '../providers/source-item-provider';
|
|
5
|
+
import { GetHelpOption, MessageAttachment, AnnotationAction, Workflow, WorkflowInputTypes, FormField, FeedbackItemType, Message, MessageAction, ComponentsConfig, InkeepCustomIcon, UrlQueryParam } from '../../types/index.ts';
|
|
6
|
+
import { ChatContextValue, ChatProvider } from './embedded-chat/chat-provider';
|
|
7
|
+
import { MarkdownComponentID } from '../utils/component-ids';
|
|
8
|
+
import { PolymorphicProps } from './factory';
|
|
9
|
+
import { LinkProps } from '../atoms/link';
|
|
10
|
+
import { CustomIconProps } from '..';
|
|
11
|
+
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
12
|
+
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
13
|
+
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
14
|
+
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
15
|
+
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
16
|
+
import * as SelectPrimitive from '../atoms/select';
|
|
17
|
+
import * as DialogPrimitive from '../atoms/dialog';
|
|
18
|
+
export declare const EmbeddedChatPrimitiveWrapper: React.ForwardRefExoticComponent<Omit< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
19
|
+
declare const PrimitiveRoot: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
20
|
+
export declare const EmbeddedChatPrimitiveRoot: (props: ComponentPropsWithRef<typeof PrimitiveRoot>) => import("react/jsx-runtime").JSX.Element | null;
|
|
21
|
+
declare const EmbeddedChatPrimitiveHeader: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
22
|
+
export declare const EmbeddedChatPrimitiveHeaderToolbar: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
23
|
+
export declare const EmbeddedChatPrimitiveToolbarHeaderWrapper: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
24
|
+
declare const PrimitiveToolbarHeader: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
25
|
+
export declare const EmbeddedChatPrimitiveToolbarHeader: React.MemoExoticComponent<(props: ComponentPropsWithRef<typeof PrimitiveToolbarHeader>) => import("react/jsx-runtime").JSX.Element>;
|
|
26
|
+
export declare const EmbeddedChatPrimitiveContent: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
27
|
+
export declare const EmbeddedChatPrimitiveContentScrollArea: React.ForwardRefExoticComponent< PolymorphicProps & Omit<ScrollAreaPrimitive.ScrollAreaProps & React.RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick<ScrollAreaPrimitive.ScrollAreaProps & React.RefAttributes<HTMLDivElement>, "_id">>>;
|
|
28
|
+
export declare const EmbeddedChatPrimitiveContentScrollAreaViewport: React.ForwardRefExoticComponent<Omit< PolymorphicProps & Omit<ScrollAreaPrimitive.ScrollAreaViewportProps & React.RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick<ScrollAreaPrimitive.ScrollAreaViewportProps & React.RefAttributes<HTMLDivElement>, "_id">>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
29
|
+
export declare const EmbeddedChatPrimitiveContentScrollAreaScrollbar: React.ForwardRefExoticComponent< PolymorphicProps & Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React.RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React.RefAttributes<HTMLDivElement>, "_id">>>;
|
|
30
|
+
export declare const EmbeddedChatPrimitiveContentScrollAreaThumb: React.ForwardRefExoticComponent< PolymorphicProps & Omit<ScrollAreaPrimitive.ScrollAreaThumbProps & React.RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick<ScrollAreaPrimitive.ScrollAreaThumbProps & React.RefAttributes<HTMLDivElement>, "_id">>>;
|
|
31
|
+
export declare const EmbeddedChatPrimitiveContentScrollAreaCorner: React.ForwardRefExoticComponent< PolymorphicProps & Omit<ScrollAreaPrimitive.ScrollAreaCornerProps & React.RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick<ScrollAreaPrimitive.ScrollAreaCornerProps & React.RefAttributes<HTMLDivElement>, "_id">>>;
|
|
32
|
+
declare const PrimitiveMessages: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
33
|
+
export interface EmbeddedChatPrimitiveMessagesProps extends Omit<ComponentPropsWithRef<typeof PrimitiveMessages>, 'children'> {
|
|
34
|
+
children: React.ReactNode | ((chat: ChatContextValue) => React.ReactNode);
|
|
35
|
+
}
|
|
36
|
+
export declare const EmbeddedChatPrimitiveMessages: (props: EmbeddedChatPrimitiveMessagesProps) => import("react/jsx-runtime").JSX.Element;
|
|
37
|
+
declare const PrimitiveDisclaimer: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
38
|
+
export declare const EmbeddedChatPrimitiveDisclaimer: React.MemoExoticComponent<(props: ComponentPropsWithRef<typeof PrimitiveDisclaimer>) => import("react/jsx-runtime").JSX.Element | null>;
|
|
39
|
+
declare const PrimitiveDisclaimerLabel: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
40
|
+
export declare const EmbeddedChatPrimitiveDisclaimerLabel: React.MemoExoticComponent<(props: ComponentPropsWithRef<typeof PrimitiveDisclaimerLabel>) => import("react/jsx-runtime").JSX.Element>;
|
|
41
|
+
declare const PrimitiveDisclaimerTrigger: React.ForwardRefExoticComponent< PolymorphicProps & Omit<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>, "children" | "_id"> & Partial<Pick<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>, "children" | "_id">>>;
|
|
42
|
+
export declare const EmbeddedChatPrimitiveDisclaimerTrigger: React.MemoExoticComponent<(props: ComponentPropsWithRef<typeof PrimitiveDisclaimerTrigger>) => import("react/jsx-runtime").JSX.Element>;
|
|
43
|
+
declare const PrimitiveDisclaimerContent: React.ForwardRefExoticComponent< PolymorphicProps & Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "_id">>>;
|
|
44
|
+
export declare const EmbeddedChatPrimitiveDisclaimerContent: (props: ComponentPropsWithRef<typeof PrimitiveDisclaimerContent>) => import("react/jsx-runtime").JSX.Element;
|
|
45
|
+
declare const PrimitiveDisclaimerText: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & MarkdownProps, "_id"> & Partial<Pick<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & MarkdownProps, "_id">>>;
|
|
46
|
+
export declare const EmbeddedChatPrimitiveDisclaimerText: React.MemoExoticComponent<(props: Omit<ComponentPropsWithRef<typeof PrimitiveDisclaimerText>, "componentStyles">) => import("react/jsx-runtime").JSX.Element>;
|
|
47
|
+
export declare const EmbeddedChatPrimitiveDisclaimerArrow: React.ForwardRefExoticComponent< PolymorphicProps & Omit<PopoverPrimitive.PopoverArrowProps & React.RefAttributes<SVGSVGElement>, "_id"> & Partial<Pick<PopoverPrimitive.PopoverArrowProps & React.RefAttributes<SVGSVGElement>, "_id">>>;
|
|
48
|
+
export declare const EmbeddedChatPrimitiveExampleQuestions: (props: ComponentPropsWithRef<"div">) => import("react/jsx-runtime").JSX.Element | null;
|
|
49
|
+
export declare const EmbeddedChatPrimitiveExampleQuestionsLabel: React.MemoExoticComponent<(props: ComponentPropsWithRef<"h3">) => import("react/jsx-runtime").JSX.Element>;
|
|
50
|
+
export interface EmbeddedChatPrimitiveExampleQuestionsListProps extends Omit<ComponentPropsWithoutRef<'div'>, 'children'> {
|
|
51
|
+
children: React.ReactNode | ((questions: string[]) => React.ReactNode);
|
|
52
|
+
}
|
|
53
|
+
export declare const EmbeddedChatPrimitiveExampleQuestionsList: React.MemoExoticComponent<(props: EmbeddedChatPrimitiveExampleQuestionsListProps) => import("react/jsx-runtime").JSX.Element>;
|
|
54
|
+
export declare const EmbeddedChatPrimitiveExampleQuestion: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
55
|
+
export interface EmbeddedChatPrimitiveExampleQuestionButtonProps extends ComponentPropsWithRef<'button'> {
|
|
56
|
+
question: string;
|
|
57
|
+
}
|
|
58
|
+
export declare const EmbeddedChatPrimitiveExampleQuestionButton: (props: EmbeddedChatPrimitiveExampleQuestionButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
59
|
+
export declare const EmbeddedChatPrimitiveWorkflows: (props: ComponentPropsWithRef<"div">) => import("react/jsx-runtime").JSX.Element | null;
|
|
60
|
+
export declare const EmbeddedChatPrimitiveWorkflowsLabel: React.MemoExoticComponent<(props: ComponentPropsWithRef<"h3">) => import("react/jsx-runtime").JSX.Element>;
|
|
61
|
+
export interface EmbeddedChatPrimitiveWorkflowsListProps extends Omit<ComponentPropsWithoutRef<'div'>, 'children'> {
|
|
62
|
+
children: React.ReactNode | ((workflows: Workflow[]) => React.ReactNode);
|
|
63
|
+
}
|
|
64
|
+
export declare const EmbeddedChatPrimitiveWorkflowsList: React.MemoExoticComponent<(props: EmbeddedChatPrimitiveWorkflowsListProps) => import("react/jsx-runtime").JSX.Element>;
|
|
65
|
+
export interface EmbeddedChatPrimitiveWorkflowProps extends ComponentPropsWithRef<'button'> {
|
|
66
|
+
workflow: Workflow;
|
|
67
|
+
}
|
|
68
|
+
export declare const EmbeddedChatPrimitiveWorkflow: (props: EmbeddedChatPrimitiveWorkflowProps) => import("react/jsx-runtime").JSX.Element;
|
|
69
|
+
declare const PrimitiveMessageWrapper: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
70
|
+
export interface EmbeddedChatPrimitiveMessageWrapperProps extends ComponentPropsWithRef<typeof PrimitiveMessageWrapper> {
|
|
71
|
+
message: Partial<Message>;
|
|
72
|
+
}
|
|
73
|
+
export declare const EmbeddedChatPrimitiveMessageWrapper: (props: EmbeddedChatPrimitiveMessageWrapperProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
74
|
+
export interface EmbeddedChatPrimitiveIntroMessageWrapperProps extends ComponentPropsWithRef<typeof PrimitiveMessageWrapper> {
|
|
75
|
+
message?: Partial<Message>;
|
|
76
|
+
}
|
|
77
|
+
export declare const EmbeddedChatPrimitiveIntroMessageWrapper: React.MemoExoticComponent<(props: EmbeddedChatPrimitiveIntroMessageWrapperProps) => import("react/jsx-runtime").JSX.Element>;
|
|
78
|
+
declare const PrimitiveMessageHeader: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
79
|
+
export declare const EmbeddedChatPrimitiveMessageHeader: (props: ComponentPropsWithRef<typeof PrimitiveMessageHeader>) => import("react/jsx-runtime").JSX.Element;
|
|
80
|
+
declare const PrimitiveMessageLoading: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "children" | "_id">>>;
|
|
81
|
+
export declare const EmbeddedChatPrimitiveMessageLoading: (props: ComponentPropsWithRef<typeof PrimitiveMessageLoading>) => import("react/jsx-runtime").JSX.Element;
|
|
82
|
+
declare const PrimitiveMessageAvatar: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
83
|
+
export declare const EmbeddedChatPrimitiveMessageAvatar: (props: ComponentPropsWithRef<typeof PrimitiveMessageAvatar>) => import("react/jsx-runtime").JSX.Element;
|
|
84
|
+
declare const PrimitiveMessageAvatarContent: React.ForwardRefExoticComponent< PolymorphicProps & Omit<AvatarPrimitive.AvatarProps & React.RefAttributes<HTMLSpanElement>, "_id"> & Partial<Pick<AvatarPrimitive.AvatarProps & React.RefAttributes<HTMLSpanElement>, "_id">>>;
|
|
85
|
+
export declare const EmbeddedChatPrimitiveMessageAvatarContent: (props: ComponentPropsWithRef<typeof PrimitiveMessageAvatarContent>) => import("react/jsx-runtime").JSX.Element;
|
|
86
|
+
declare const PrimitiveMessageAvatarFallback: React.ForwardRefExoticComponent< PolymorphicProps & Omit<AvatarPrimitive.AvatarFallbackProps & React.RefAttributes<HTMLSpanElement>, "_id"> & Partial<Pick<AvatarPrimitive.AvatarFallbackProps & React.RefAttributes<HTMLSpanElement>, "_id">>>;
|
|
87
|
+
export declare const EmbeddedChatPrimitiveMessageAvatarFallback: React.MemoExoticComponent<(props: ComponentPropsWithRef<typeof PrimitiveMessageAvatarFallback>) => import("react/jsx-runtime").JSX.Element | null>;
|
|
88
|
+
declare const PrimitiveMessageAvatarImage: React.ForwardRefExoticComponent< PolymorphicProps & Omit<AvatarPrimitive.AvatarImageProps & React.RefAttributes<HTMLImageElement>, "_id"> & Partial<Pick<AvatarPrimitive.AvatarImageProps & React.RefAttributes<HTMLImageElement>, "_id">>>;
|
|
89
|
+
type EmbeddedChatPrimitiveMessageAvatarImageProps = ComponentPropsWithRef<'svg'> | ComponentPropsWithRef<typeof PrimitiveMessageAvatarImage>;
|
|
90
|
+
export declare const EmbeddedChatPrimitiveMessageAvatarImage: React.MemoExoticComponent<(props: EmbeddedChatPrimitiveMessageAvatarImageProps) => import("react/jsx-runtime").JSX.Element | null>;
|
|
91
|
+
declare const PrimitiveMessageName: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
92
|
+
export declare const EmbeddedChatPrimitiveMessageName: (props: ComponentPropsWithRef<typeof PrimitiveMessageName>) => import("react/jsx-runtime").JSX.Element;
|
|
93
|
+
declare const PrimitiveMessageContentWrapper: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
94
|
+
export declare const EmbeddedChatPrimitiveMessageContentWrapper: (props: ComponentPropsWithRef<typeof PrimitiveMessageContentWrapper>) => import("react/jsx-runtime").JSX.Element;
|
|
95
|
+
declare const PrimitiveMessageContent: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
96
|
+
export declare const EmbeddedChatPrimitiveMessageContent: (props: ComponentPropsWithRef<typeof PrimitiveMessageContent>) => import("react/jsx-runtime").JSX.Element;
|
|
97
|
+
declare const PrimitiveMessageAttachments: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
98
|
+
export declare const EmbeddedChatPrimitiveMessageAttachments: (props: ComponentPropsWithRef<typeof PrimitiveMessageAttachments>) => import("react/jsx-runtime").JSX.Element | null;
|
|
99
|
+
declare const PrimitiveMessageAttachmentsList: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
100
|
+
export interface EmbeddedChatPrimitiveMessageAttachmentsListProps extends Omit<ComponentPropsWithRef<typeof PrimitiveMessageAttachmentsList>, 'children'> {
|
|
101
|
+
children: React.ReactNode | ((attachments: MessageAttachment[]) => React.ReactNode);
|
|
102
|
+
}
|
|
103
|
+
export declare const EmbeddedChatPrimitiveMessageAttachmentsList: (props: EmbeddedChatPrimitiveMessageAttachmentsListProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
104
|
+
declare const PrimitiveMessageAttachmentsItem: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
105
|
+
export interface EmbeddedChatPrimitiveMessageAttachmentsItemProps extends ComponentPropsWithRef<typeof PrimitiveMessageAttachmentsItem> {
|
|
106
|
+
attachment: MessageAttachment;
|
|
107
|
+
}
|
|
108
|
+
export declare const EmbeddedChatPrimitiveMessageAttachmentsItem: (props: EmbeddedChatPrimitiveMessageAttachmentsItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
109
|
+
declare const PrimitiveMessageAttachmentsItemIcon: React.ForwardRefExoticComponent< PolymorphicProps & Omit<{
|
|
110
|
+
iconSettings: InkeepCustomIcon;
|
|
111
|
+
className?: string;
|
|
112
|
+
}, "_id"> & Partial<Pick<{
|
|
113
|
+
iconSettings: InkeepCustomIcon;
|
|
114
|
+
className?: string;
|
|
115
|
+
}, "_id">>>;
|
|
116
|
+
export declare const EmbeddedChatPrimitiveMessageAttachmentsItemIcon: (props: Omit<ComponentPropsWithRef<typeof PrimitiveMessageAttachmentsItemIcon>, "iconSettings">) => import("react/jsx-runtime").JSX.Element | null;
|
|
117
|
+
declare const PrimitiveMessageAttachmentsItemTitle: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
118
|
+
export declare const EmbeddedChatPrimitiveMessageAttachmentsItemTitle: (props: ComponentPropsWithRef<typeof PrimitiveMessageAttachmentsItemTitle>) => import("react/jsx-runtime").JSX.Element;
|
|
119
|
+
declare const PrimitiveMessageAttachmentsPreview: React.ForwardRefExoticComponent< PolymorphicProps & Omit<DialogPrimitive.DialogProps, "_id"> & Partial<Pick<DialogPrimitive.DialogProps, "_id">>>;
|
|
120
|
+
export declare const EmbeddedChatPrimitiveMessageAttachmentsPreview: (props: ComponentPropsWithRef<typeof PrimitiveMessageAttachmentsPreview>) => import("react/jsx-runtime").JSX.Element;
|
|
121
|
+
export declare const EmbeddedChatPrimitiveMessageAttachmentsPreviewOverlay: React.ForwardRefExoticComponent< PolymorphicProps & Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "_id">>>;
|
|
122
|
+
export declare const EmbeddedChatPrimitiveMessageAttachmentsPreviewContent: React.ForwardRefExoticComponent< PolymorphicProps & Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "aria-describedby" | "_id"> & Partial<Pick<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "aria-describedby" | "_id">>>;
|
|
123
|
+
declare const PrimitiveMessageAttachmentsPreviewHeader: React.ForwardRefExoticComponent< PolymorphicProps & Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "_id"> & Partial<Pick<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "_id">>>;
|
|
124
|
+
export declare const EmbeddedChatPrimitiveMessageAttachmentsPreviewHeader: (props: ComponentPropsWithRef<typeof PrimitiveMessageAttachmentsPreviewHeader>) => import("react/jsx-runtime").JSX.Element;
|
|
125
|
+
export declare const EmbeddedChatPrimitiveMessageAttachmentsPreviewClose: React.ForwardRefExoticComponent< PolymorphicProps & Omit<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>, "children" | "_id"> & Partial<Pick<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>, "children" | "_id">>>;
|
|
126
|
+
declare const PrimitiveMessageAttachmentsPreviewBody: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "_id">>>;
|
|
127
|
+
export declare const EmbeddedChatPrimitiveMessageAttachmentsPreviewBody: (props: ComponentPropsWithRef<typeof PrimitiveMessageAttachmentsPreviewBody>) => import("react/jsx-runtime").JSX.Element;
|
|
128
|
+
export interface EmbeddedChatPrimitiveMarkdownProps extends ComponentPropsWithRef<typeof Markdown> {
|
|
129
|
+
text: string;
|
|
130
|
+
componentStyles?: Partial<Record<MarkdownComponentID, string>>;
|
|
131
|
+
}
|
|
132
|
+
export declare const EmbeddedChatPrimitiveMarkdown: (props: EmbeddedChatPrimitiveMarkdownProps) => import("react/jsx-runtime").JSX.Element;
|
|
133
|
+
export interface EmbeddedChatPrimitiveDynamicComponentProps<T = Record<string, unknown>> {
|
|
134
|
+
name: string;
|
|
135
|
+
props: T;
|
|
136
|
+
componentDef?: ComponentsConfig<any>[string];
|
|
137
|
+
}
|
|
138
|
+
export declare const EmbeddedChatPrimitiveDynamicComponent: ({ name, props, componentDef, }: EmbeddedChatPrimitiveDynamicComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
139
|
+
export declare const PrimitiveMessagePart: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
140
|
+
export interface EmbeddedChatPrimitiveMessagePartProps extends ComponentPropsWithRef<typeof PrimitiveMessagePart> {
|
|
141
|
+
componentStyles?: Partial<Record<MarkdownComponentID, string>>;
|
|
142
|
+
part?: Message['parts'][number];
|
|
143
|
+
}
|
|
144
|
+
declare const PrimitiveMessageToolbar: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
145
|
+
export declare const EmbeddedChatPrimitiveMessageToolbar: (props: ComponentPropsWithRef<typeof PrimitiveMessageToolbar>) => import("react/jsx-runtime").JSX.Element | null;
|
|
146
|
+
export interface EmbeddedChatPrimitiveMessageAnnotationActionsProps extends Omit<ComponentPropsWithoutRef<'div'>, 'children'> {
|
|
147
|
+
children: React.ReactNode | ((actions: AnnotationAction[]) => React.ReactNode);
|
|
148
|
+
}
|
|
149
|
+
export declare const EmbeddedChatPrimitiveMessageAnnotationActions: (props: EmbeddedChatPrimitiveMessageAnnotationActionsProps) => import("react/jsx-runtime").JSX.Element;
|
|
150
|
+
export interface EmbeddedChatPrimitiveMessageAnnotationActionProps extends ComponentPropsWithRef<'button'> {
|
|
151
|
+
action: AnnotationAction;
|
|
152
|
+
}
|
|
153
|
+
export declare const EmbeddedChatPrimitiveMessageAnnotationAction: (props: EmbeddedChatPrimitiveMessageAnnotationActionProps) => import("react/jsx-runtime").JSX.Element;
|
|
154
|
+
declare const PrimitiveMessageAction: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "_id">>>;
|
|
155
|
+
export interface EmbeddedChatPrimitiveMessageActionProps extends ComponentPropsWithRef<typeof PrimitiveMessageAction> {
|
|
156
|
+
action: MessageAction;
|
|
157
|
+
}
|
|
158
|
+
export declare const EmbeddedChatPrimitiveMessageAction: (props: EmbeddedChatPrimitiveMessageActionProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
159
|
+
declare const PrimitiveMessageSources: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
160
|
+
export declare const EmbeddedChatPrimitiveMessageSources: (props: ComponentPropsWithRef<typeof PrimitiveMessageSources>) => import("react/jsx-runtime").JSX.Element | null;
|
|
161
|
+
declare const PrimitiveMessageSourcesHeader: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
162
|
+
export declare const EmbeddedChatPrimitiveMessageSourcesHeader: (props: ComponentPropsWithRef<typeof PrimitiveMessageSourcesHeader>) => import("react/jsx-runtime").JSX.Element;
|
|
163
|
+
export interface EmbeddedChatPrimitiveMessageSourcesListProps extends Omit<ComponentPropsWithoutRef<'div'>, 'children'> {
|
|
164
|
+
children: React.ReactNode | ((list: TransformedSourceItem[]) => React.ReactNode);
|
|
165
|
+
}
|
|
166
|
+
export declare const EmbeddedChatPrimitiveMessageSourcesList: (props: EmbeddedChatPrimitiveMessageSourcesListProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
167
|
+
declare const PrimitiveMessageSourceItem: React.ForwardRefExoticComponent< PolymorphicProps & Omit<Omit< LinkProps & {
|
|
168
|
+
appendToUrl?: UrlQueryParam;
|
|
169
|
+
}, "ref"> & React.RefAttributes<HTMLAnchorElement>, "_id"> & Partial<Pick<Omit< LinkProps & {
|
|
170
|
+
appendToUrl?: UrlQueryParam;
|
|
171
|
+
}, "ref"> & React.RefAttributes<HTMLAnchorElement>, "_id">>>;
|
|
172
|
+
export interface EmbeddedChatPrimitiveMessageSourceItemProps extends ComponentPropsWithoutRef<typeof PrimitiveMessageSourceItem> {
|
|
173
|
+
source: TransformedSourceItem;
|
|
174
|
+
}
|
|
175
|
+
export declare const EmbeddedChatPrimitiveMessageSourceItem: (props: EmbeddedChatPrimitiveMessageSourceItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
176
|
+
declare const PrimitiveMessageSourceItemBreadcrumbs: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
177
|
+
export declare const EmbeddedChatPrimitiveMessageSourceItemBreadcrumbs: (props: ComponentPropsWithRef<typeof PrimitiveMessageSourceItemBreadcrumbs>) => import("react/jsx-runtime").JSX.Element | null;
|
|
178
|
+
declare const EmbeddedChatPrimitiveMessageSourceItemBreadcrumbIcon: React.ForwardRefExoticComponent< PolymorphicProps & Omit< CustomIconProps, "_id" | "iconKey"> & Partial<Pick< CustomIconProps, "_id" | "iconKey">>>;
|
|
179
|
+
declare const PrimitiveMessageSourceItemIcon: React.ForwardRefExoticComponent< PolymorphicProps & Omit<{
|
|
180
|
+
iconSettings: InkeepCustomIcon;
|
|
181
|
+
className?: string;
|
|
182
|
+
}, "_id"> & Partial<Pick<{
|
|
183
|
+
iconSettings: InkeepCustomIcon;
|
|
184
|
+
className?: string;
|
|
185
|
+
}, "_id">>>;
|
|
186
|
+
export declare const EmbeddedChatPrimitiveMessageSourceItemIcon: (props: Omit<ComponentPropsWithRef<typeof PrimitiveMessageSourceItemIcon>, "iconSettings">) => import("react/jsx-runtime").JSX.Element;
|
|
187
|
+
declare const PrimitiveMessageSourceItemTitle: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
188
|
+
export declare const EmbeddedChatPrimitiveMessageSourceItemTitle: (props: ComponentPropsWithRef<typeof PrimitiveMessageSourceItemTitle>) => import("react/jsx-runtime").JSX.Element;
|
|
189
|
+
declare const PrimitiveMessageSourceItemTag: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
190
|
+
export declare const EmbeddedChatPrimitiveMessageSourceItemTag: (props: ComponentPropsWithRef<typeof PrimitiveMessageSourceItemTag>) => import("react/jsx-runtime").JSX.Element;
|
|
191
|
+
declare const PrimitiveMessageSourceItemDescription: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
192
|
+
type DescriptionPart = string | {
|
|
193
|
+
content: string;
|
|
194
|
+
highlighted: boolean;
|
|
195
|
+
};
|
|
196
|
+
export interface EmbeddedChatPrimitiveMessageSourceItemDescriptionProps extends Omit<ComponentPropsWithRef<typeof PrimitiveMessageSourceItemDescription>, 'children'> {
|
|
197
|
+
children: React.ReactNode | ((parts: DescriptionPart[]) => React.ReactNode);
|
|
198
|
+
}
|
|
199
|
+
export declare const EmbeddedChatPrimitiveMessageSourceItemDescription: (props: EmbeddedChatPrimitiveMessageSourceItemDescriptionProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
200
|
+
declare const PrimitiveMessageSourceItemDescriptionPart: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
201
|
+
export interface EmbeddedChatPrimitiveMessageSourceItemDescriptionPartProps extends ComponentPropsWithRef<typeof PrimitiveMessageSourceItemDescriptionPart> {
|
|
202
|
+
part: DescriptionPart;
|
|
203
|
+
}
|
|
204
|
+
export declare const EmbeddedChatPrimitiveMessageSourceItemDescriptionPart: (props: EmbeddedChatPrimitiveMessageSourceItemDescriptionPartProps) => string | import("react/jsx-runtime").JSX.Element;
|
|
205
|
+
declare const PrimitiveMessageSourceItemIndicator: React.ForwardRefExoticComponent< PolymorphicProps & Omit< CustomIconProps, "_id"> & Partial<Pick< CustomIconProps, "_id">>>;
|
|
206
|
+
export declare const EmbeddedChatPrimitiveMessageSourceItemIndicator: (props: Omit<ComponentPropsWithRef<typeof PrimitiveMessageSourceItemIndicator>, "iconKey">) => import("react/jsx-runtime").JSX.Element;
|
|
207
|
+
export declare const EmbeddedChatPrimitiveFooter: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
208
|
+
export declare const EmbeddedChatPrimitiveInputFieldset: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
209
|
+
export declare const EmbeddedChatPrimitiveInputGroup: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
210
|
+
type EmbeddedChatPrimitiveInputProps = TextareaAutosizeProps & ComponentPropsWithRef<'textarea'>;
|
|
211
|
+
export declare const EmbeddedChatPrimitiveInput: React.ForwardRefExoticComponent<Omit<EmbeddedChatPrimitiveInputProps, "ref"> & React.RefAttributes<HTMLTextAreaElement>>;
|
|
212
|
+
declare const SendButton: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "_id">>>;
|
|
213
|
+
export declare const EmbeddedChatPrimitiveSendButton: (props: ComponentPropsWithRef<typeof SendButton>) => import("react/jsx-runtime").JSX.Element;
|
|
214
|
+
export declare const EmbeddedChatPrimitiveSendButtonIcon: React.ForwardRefExoticComponent< PolymorphicProps & Omit< CustomIconProps, "_id" | "iconKey"> & Partial<Pick< CustomIconProps, "_id" | "iconKey">>>;
|
|
215
|
+
declare const PrimitiveAttachmentsBar: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
216
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBar: (props: ComponentPropsWithRef<typeof PrimitiveAttachmentsBar>) => import("react/jsx-runtime").JSX.Element | null;
|
|
217
|
+
declare const PrimitiveAttachmentsBarList: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
218
|
+
export interface EmbeddedChatPrimitiveAttachmentsBarListProps extends Omit<ComponentPropsWithRef<typeof PrimitiveAttachmentsBarList>, 'children'> {
|
|
219
|
+
children: React.ReactNode | ((attachments: MessageAttachment[]) => React.ReactNode);
|
|
220
|
+
}
|
|
221
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarList: (props: EmbeddedChatPrimitiveAttachmentsBarListProps) => import("react/jsx-runtime").JSX.Element;
|
|
222
|
+
declare const PrimitiveAttachmentsBarAttachment: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
223
|
+
export interface EmbeddedChatPrimitiveAttachmentsBarAttachmentProps extends ComponentPropsWithRef<typeof PrimitiveAttachmentsBarAttachment> {
|
|
224
|
+
attachment: MessageAttachment;
|
|
225
|
+
}
|
|
226
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarAttachment: (props: EmbeddedChatPrimitiveAttachmentsBarAttachmentProps) => import("react/jsx-runtime").JSX.Element;
|
|
227
|
+
declare const PrimitiveAttachmentsBarAttachmentIcon: React.ForwardRefExoticComponent< PolymorphicProps & Omit<{
|
|
228
|
+
iconSettings: InkeepCustomIcon;
|
|
229
|
+
className?: string;
|
|
230
|
+
}, "_id"> & Partial<Pick<{
|
|
231
|
+
iconSettings: InkeepCustomIcon;
|
|
232
|
+
className?: string;
|
|
233
|
+
}, "_id">>>;
|
|
234
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarAttachmentIcon: (props: Omit<ComponentPropsWithRef<typeof PrimitiveAttachmentsBarAttachmentIcon>, "iconSettings">) => import("react/jsx-runtime").JSX.Element | null;
|
|
235
|
+
declare const PrimitiveAttachmentsBarAttachmentTitle: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
236
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarAttachmentTitle: (props: ComponentPropsWithRef<typeof PrimitiveAttachmentsBarAttachmentTitle>) => import("react/jsx-runtime").JSX.Element;
|
|
237
|
+
declare const PrimitiveAttachmentsBarAttachmentDelete: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "_id">>>;
|
|
238
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarAttachmentDelete: (props: ComponentPropsWithRef<typeof PrimitiveAttachmentsBarAttachmentDelete>) => import("react/jsx-runtime").JSX.Element;
|
|
239
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarActions: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
240
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarInfoTip: React.ForwardRefExoticComponent< PolymorphicProps & Omit<TooltipPrimitive.TooltipProps, "_id" | "delayDuration"> & Partial<Pick<TooltipPrimitive.TooltipProps, "_id" | "delayDuration">>>;
|
|
241
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarInfoTipIcon: React.ForwardRefExoticComponent< PolymorphicProps & Omit<TooltipPrimitive.TooltipTriggerProps & React.RefAttributes<HTMLButtonElement>, "children" | "_id"> & Partial<Pick<TooltipPrimitive.TooltipTriggerProps & React.RefAttributes<HTMLButtonElement>, "children" | "_id">>>;
|
|
242
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarInfoTipArrow: React.ForwardRefExoticComponent< PolymorphicProps & Omit<TooltipPrimitive.TooltipArrowProps & React.RefAttributes<SVGSVGElement>, "_id"> & Partial<Pick<TooltipPrimitive.TooltipArrowProps & React.RefAttributes<SVGSVGElement>, "_id">>>;
|
|
243
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarInfoTipText: React.ForwardRefExoticComponent< PolymorphicProps & Omit<TooltipPrimitive.TooltipContentProps & React.RefAttributes<HTMLDivElement>, "children" | "align" | "_id" | "side" | "sideOffset"> & Partial<Pick<TooltipPrimitive.TooltipContentProps & React.RefAttributes<HTMLDivElement>, "children" | "align" | "_id" | "side" | "sideOffset">>>;
|
|
244
|
+
declare const PrimitiveAttachmentsBarInputs: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
245
|
+
export interface EmbeddedChatPrimitiveAttachmentsBarInputsProps extends Omit<ComponentPropsWithRef<typeof PrimitiveAttachmentsBarInputs>, 'children'> {
|
|
246
|
+
children: React.ReactNode | ((inputs: WorkflowInputTypes[]) => React.ReactNode);
|
|
247
|
+
}
|
|
248
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarInputs: (props: EmbeddedChatPrimitiveAttachmentsBarInputsProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
249
|
+
declare const PrimitiveAttachmentsBarInput: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "_id">>>;
|
|
250
|
+
export interface EmbeddedChatPrimitiveAttachmentsBarInputProps extends ComponentPropsWithRef<typeof PrimitiveAttachmentsBarInput> {
|
|
251
|
+
input: WorkflowInputTypes;
|
|
252
|
+
}
|
|
253
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarInput: (props: EmbeddedChatPrimitiveAttachmentsBarInputProps) => import("react/jsx-runtime").JSX.Element;
|
|
254
|
+
declare const PrimitiveAttachmentsBarModal: React.ForwardRefExoticComponent< PolymorphicProps & Omit<DialogPrimitive.DialogProps, "_id"> & Partial<Pick<DialogPrimitive.DialogProps, "_id">>>;
|
|
255
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarModal: (props: ComponentPropsWithRef<typeof PrimitiveAttachmentsBarModal>) => import("react/jsx-runtime").JSX.Element;
|
|
256
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarModalOverlay: React.ForwardRefExoticComponent< PolymorphicProps & Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "_id">>>;
|
|
257
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarModalContent: React.ForwardRefExoticComponent< PolymorphicProps & Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "aria-describedby" | "_id"> & Partial<Pick<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "aria-describedby" | "_id">>>;
|
|
258
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarModalHeader: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
259
|
+
declare const PrimitiveAttachmentsBarModalHeading: React.ForwardRefExoticComponent< PolymorphicProps & Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "_id"> & Partial<Pick<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "_id">>>;
|
|
260
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarModalHeading: (props: ComponentPropsWithRef<typeof PrimitiveAttachmentsBarModalHeading>) => import("react/jsx-runtime").JSX.Element;
|
|
261
|
+
declare const PrimitiveAttachmentsBarModalDescription: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
262
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarModalDescription: (props: ComponentPropsWithRef<typeof PrimitiveAttachmentsBarModalDescription>) => import("react/jsx-runtime").JSX.Element | null;
|
|
263
|
+
declare const PrimitiveAttachmentsBarModalHelp: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
264
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarModalHelp: (props: ComponentPropsWithRef<typeof PrimitiveAttachmentsBarModalHelp>) => import("react/jsx-runtime").JSX.Element | null;
|
|
265
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarModalClose: React.ForwardRefExoticComponent< PolymorphicProps & Omit<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>, "children" | "_id"> & Partial<Pick<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>, "children" | "_id">>>;
|
|
266
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarModalBody: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
267
|
+
declare const PrimitiveAttachmentsBarForm: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, "_id">>>;
|
|
268
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarForm: (props: ComponentPropsWithRef<typeof PrimitiveAttachmentsBarForm>) => import("react/jsx-runtime").JSX.Element;
|
|
269
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarFormTitle: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "role" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "role" | "_id">>>;
|
|
270
|
+
declare const PrimitiveAttachmentsBarFormTitleLabel: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "_id">>>;
|
|
271
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarFormTitleLabel: (props: ComponentPropsWithRef<typeof PrimitiveAttachmentsBarFormTitleLabel>) => import("react/jsx-runtime").JSX.Element;
|
|
272
|
+
declare const PrimitiveAttachmentsBarFormTitleInput: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "_id">>>;
|
|
273
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarFormTitleInput: (props: ComponentPropsWithRef<typeof PrimitiveAttachmentsBarFormTitleInput>) => import("react/jsx-runtime").JSX.Element;
|
|
274
|
+
declare const PrimitiveAttachmentsBarFormTitleError: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
275
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarFormTitleError: (props: ComponentPropsWithRef<typeof PrimitiveAttachmentsBarFormTitleError>) => import("react/jsx-runtime").JSX.Element | null;
|
|
276
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarFormContent: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "role" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "role" | "_id">>>;
|
|
277
|
+
declare const PrimitiveAttachmentsBarFormContentLabel: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "_id">>>;
|
|
278
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarFormContentLabel: (props: ComponentPropsWithRef<typeof PrimitiveAttachmentsBarFormContentLabel>) => import("react/jsx-runtime").JSX.Element;
|
|
279
|
+
declare const PrimitiveAttachmentsBarFormContentInput: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "_id">>>;
|
|
280
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarFormContentInput: (props: ComponentPropsWithRef<typeof PrimitiveAttachmentsBarFormContentInput>) => import("react/jsx-runtime").JSX.Element;
|
|
281
|
+
declare const PrimitiveAttachmentsBarFormContentError: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
282
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarFormContentError: (props: ComponentPropsWithRef<typeof PrimitiveAttachmentsBarFormContentError>) => import("react/jsx-runtime").JSX.Element | null;
|
|
283
|
+
export declare const EmbeddedChatPrimitiveAttachmentsBarFormSubmitButton: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "type" | "children" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "type" | "children" | "_id">>>;
|
|
284
|
+
export declare const EmbeddedChatPrimitiveActionBar: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
285
|
+
export declare const EmbeddedChatPrimitiveActions: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
286
|
+
export declare const EmbeddedChatPrimitiveTaglineContainer: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
287
|
+
export declare const EmbeddedChatPrimitiveTaglineText: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "children" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "children" | "_id">>>;
|
|
288
|
+
export declare const EmbeddedChatPrimitiveTaglineLogo: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.SVGProps<SVGSVGElement>, "_id"> & Partial<Pick<React.SVGProps<SVGSVGElement>, "_id">>>;
|
|
289
|
+
export declare const EmbeddedChatPrimitiveTaglineBrandName: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "children" | "rel" | "href" | "target" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "children" | "rel" | "href" | "target" | "_id">>>;
|
|
290
|
+
type EmbeddedChatPrimitiveChatActionType = 'help' | 'copy' | 'share' | 'clear' | 'stop';
|
|
291
|
+
declare const PrimitiveChatAction: React.ForwardRefExoticComponent< PolymorphicProps & Omit<TooltipPrimitive.TooltipTriggerProps & React.RefAttributes<HTMLButtonElement>, "_id"> & Partial<Pick<TooltipPrimitive.TooltipTriggerProps & React.RefAttributes<HTMLButtonElement>, "_id">>>;
|
|
292
|
+
export interface EmbeddedChatPrimitiveChatActionProps extends ComponentPropsWithRef<typeof PrimitiveChatAction> {
|
|
293
|
+
action: EmbeddedChatPrimitiveChatActionType;
|
|
294
|
+
}
|
|
295
|
+
export declare const EmbeddedChatPrimitiveChatAction: (props: EmbeddedChatPrimitiveChatActionProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
296
|
+
declare const PrimitiveChatActionLabel: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
297
|
+
export interface EmbeddedChatPrimitiveChatActionLabelProps extends ComponentPropsWithRef<typeof PrimitiveChatActionLabel> {
|
|
298
|
+
action: EmbeddedChatPrimitiveChatActionType;
|
|
299
|
+
}
|
|
300
|
+
export declare const EmbeddedChatPrimitiveChatActionLabel: (props: EmbeddedChatPrimitiveChatActionLabelProps) => import("react/jsx-runtime").JSX.Element;
|
|
301
|
+
declare const PrimitiveChatActionFeedback: React.ForwardRefExoticComponent< PolymorphicProps & Omit<TooltipPrimitive.TooltipContentProps & React.RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick<TooltipPrimitive.TooltipContentProps & React.RefAttributes<HTMLDivElement>, "_id">>>;
|
|
302
|
+
export interface EmbeddedChatPrimitiveChatActionFeedbackProps extends ComponentPropsWithRef<typeof PrimitiveChatActionFeedback> {
|
|
303
|
+
action: EmbeddedChatPrimitiveChatActionType;
|
|
304
|
+
}
|
|
305
|
+
export declare const EmbeddedChatPrimitiveChatActionFeedback: (props: EmbeddedChatPrimitiveChatActionFeedbackProps) => import("react/jsx-runtime").JSX.Element;
|
|
306
|
+
interface HelpCallToActions {
|
|
307
|
+
pinned: GetHelpOption[];
|
|
308
|
+
unpinned: GetHelpOption[];
|
|
309
|
+
}
|
|
310
|
+
declare const PrimitiveHelpActions: React.ForwardRefExoticComponent< PolymorphicProps & Omit<PopoverPrimitive.PopoverProps, "_id"> & Partial<Pick<PopoverPrimitive.PopoverProps, "_id">>>;
|
|
311
|
+
export interface EmbeddedChatPrimitiveHelpActionsProps extends Omit<ComponentPropsWithRef<typeof PrimitiveHelpActions>, 'children'> {
|
|
312
|
+
children: React.ReactNode | ((actions: HelpCallToActions) => React.ReactNode);
|
|
313
|
+
}
|
|
314
|
+
export declare const EmbeddedChatPrimitiveHelpActions: (props: EmbeddedChatPrimitiveHelpActionsProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
315
|
+
declare const PrimitiveChatHelpAction: React.ForwardRefExoticComponent< PolymorphicProps & Omit<EmbeddedChatPrimitiveChatActionProps, "action" | "_id"> & Partial<Pick<EmbeddedChatPrimitiveChatActionProps, "action" | "_id">>>;
|
|
316
|
+
declare const PrimitiveChatHelpActionLink: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "rel" | "target" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "rel" | "target" | "_id">>>;
|
|
317
|
+
type ComponentProps = Omit<ComponentPropsWithRef<typeof PrimitiveChatHelpAction>, 'action'> | ComponentPropsWithRef<typeof PrimitiveChatHelpActionLink>;
|
|
318
|
+
export type EmbeddedChatPrimitiveChatHelpActionProps = ComponentProps & {
|
|
319
|
+
action: GetHelpOption;
|
|
320
|
+
};
|
|
321
|
+
export declare const EmbeddedChatPrimitiveChatHelpAction: (props: EmbeddedChatPrimitiveChatHelpActionProps) => import("react/jsx-runtime").JSX.Element;
|
|
322
|
+
export declare const EmbeddedChatPrimitiveHelpActionsTrigger: React.MemoExoticComponent<(props: Omit<EmbeddedChatPrimitiveChatActionProps, "action">) => import("react/jsx-runtime").JSX.Element>;
|
|
323
|
+
declare const PrimitiveHelpActionsMenu: React.ForwardRefExoticComponent< PolymorphicProps & Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "_id">>>;
|
|
324
|
+
export declare const EmbeddedChatPrimitiveHelpActionsMenu: (props: ComponentPropsWithRef<typeof PrimitiveHelpActionsMenu>) => import("react/jsx-runtime").JSX.Element;
|
|
325
|
+
export declare const EmbeddedChatPrimitiveHelpActionsMenuArrow: React.ForwardRefExoticComponent< PolymorphicProps & Omit<PopoverPrimitive.PopoverArrowProps & React.RefAttributes<SVGSVGElement>, "_id"> & Partial<Pick<PopoverPrimitive.PopoverArrowProps & React.RefAttributes<SVGSVGElement>, "_id">>>;
|
|
326
|
+
export interface EmbeddedChatPrimitiveHelpActionsMenuItemProps extends ComponentPropsWithRef<'button'> {
|
|
327
|
+
action: GetHelpOption;
|
|
328
|
+
}
|
|
329
|
+
export declare const EmbeddedChatPrimitiveHelpActionsMenuItem: (props: EmbeddedChatPrimitiveHelpActionsMenuItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
330
|
+
declare const PrimitiveHelpActionsMenuItemIcon: React.ForwardRefExoticComponent< PolymorphicProps & Omit<{
|
|
331
|
+
iconSettings: InkeepCustomIcon;
|
|
332
|
+
className?: string;
|
|
333
|
+
}, "_id"> & Partial<Pick<{
|
|
334
|
+
iconSettings: InkeepCustomIcon;
|
|
335
|
+
className?: string;
|
|
336
|
+
}, "_id">>>;
|
|
337
|
+
export interface EmbeddedChatPrimitiveHelpActionsMenuItemIconProps extends Omit<ComponentPropsWithRef<typeof PrimitiveHelpActionsMenuItemIcon>, 'action' | 'iconSettings'> {
|
|
338
|
+
action: GetHelpOption;
|
|
339
|
+
}
|
|
340
|
+
export declare const EmbeddedChatPrimitiveHelpActionsMenuItemIcon: (props: EmbeddedChatPrimitiveHelpActionsMenuItemIconProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
341
|
+
declare const PrimitiveFeedbackModal: React.ForwardRefExoticComponent< PolymorphicProps & Omit<DialogPrimitive.DialogProps, "_id"> & Partial<Pick<DialogPrimitive.DialogProps, "_id">>>;
|
|
342
|
+
export declare const EmbeddedChatPrimitiveFeedbackModal: (props: ComponentPropsWithRef<typeof PrimitiveFeedbackModal>) => import("react/jsx-runtime").JSX.Element;
|
|
343
|
+
export declare const EmbeddedChatPrimitiveFeedbackModalOverlay: React.ForwardRefExoticComponent< PolymorphicProps & Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "_id">>>;
|
|
344
|
+
export declare const EmbeddedChatPrimitiveFeedbackModalContent: React.ForwardRefExoticComponent< PolymorphicProps & Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "aria-describedby" | "_id"> & Partial<Pick<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "aria-describedby" | "_id">>>;
|
|
345
|
+
export declare const EmbeddedChatPrimitiveFeedbackModalHeader: React.ForwardRefExoticComponent< PolymorphicProps & Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "children" | "_id"> & Partial<Pick<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "children" | "_id">>>;
|
|
346
|
+
export declare const EmbeddedChatPrimitiveFeedbackModalClose: React.ForwardRefExoticComponent< PolymorphicProps & Omit<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>, "children" | "_id"> & Partial<Pick<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>, "children" | "_id">>>;
|
|
347
|
+
export declare const EmbeddedChatPrimitiveFeedbackModalBody: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
348
|
+
declare const PrimitiveFeedbackForm: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, "_id">>>;
|
|
349
|
+
export declare const EmbeddedChatPrimitiveFeedbackForm: (props: ComponentPropsWithRef<typeof PrimitiveFeedbackForm>) => import("react/jsx-runtime").JSX.Element;
|
|
350
|
+
declare const PrimitiveFeedbackItem: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
351
|
+
export interface EmbeddedChatPrimitiveFeedbackItemProps extends ComponentPropsWithRef<typeof PrimitiveFeedbackItem> {
|
|
352
|
+
name: FeedbackItemType;
|
|
353
|
+
}
|
|
354
|
+
export declare const EmbeddedChatPrimitiveFeedbackItem: (props: EmbeddedChatPrimitiveFeedbackItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
355
|
+
declare const PrimitiveFeedbackItemCheckbox: React.ForwardRefExoticComponent< PolymorphicProps & Omit<CheckboxPrimitive.CheckboxProps & React.RefAttributes<HTMLButtonElement>, "_id"> & Partial<Pick<CheckboxPrimitive.CheckboxProps & React.RefAttributes<HTMLButtonElement>, "_id">>>;
|
|
356
|
+
export declare const EmbeddedChatPrimitiveFeedbackItemCheckbox: (props: ComponentPropsWithRef<typeof PrimitiveFeedbackItemCheckbox>) => import("react/jsx-runtime").JSX.Element;
|
|
357
|
+
export declare const EmbeddedChatPrimitiveFeedbackItemCheckboxIndicator: React.ForwardRefExoticComponent< PolymorphicProps & Omit<CheckboxPrimitive.CheckboxIndicatorProps & React.RefAttributes<HTMLSpanElement>, "children" | "_id"> & Partial<Pick<CheckboxPrimitive.CheckboxIndicatorProps & React.RefAttributes<HTMLSpanElement>, "children" | "_id">>>;
|
|
358
|
+
declare const PrimitiveFeedbackItemLabel: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "_id">>>;
|
|
359
|
+
export declare const EmbeddedChatPrimitiveFeedbackItemLabel: (props: ComponentPropsWithRef<typeof PrimitiveFeedbackItemLabel>) => import("react/jsx-runtime").JSX.Element;
|
|
360
|
+
declare const PrimitiveFeedbackItemDescription: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "placeholder" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "placeholder" | "_id">>>;
|
|
361
|
+
export declare const EmbeddedChatPrimitiveFeedbackItemDescription: (props: ComponentPropsWithRef<typeof PrimitiveFeedbackItemDescription>) => import("react/jsx-runtime").JSX.Element;
|
|
362
|
+
export declare const EmbeddedChatPrimitiveFeedbackSubmitButton: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "type" | "children" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "type" | "children" | "_id">>>;
|
|
363
|
+
declare const PrimitiveFormWrapper: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
364
|
+
export declare const EmbeddedChatPrimitiveFormWrapper: (props: ComponentPropsWithRef<typeof PrimitiveFormWrapper>) => import("react/jsx-runtime").JSX.Element | null;
|
|
365
|
+
declare const PrimitiveForm: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, "_id">>>;
|
|
366
|
+
export declare const EmbeddedChatPrimitiveForm: (props: ComponentPropsWithRef<typeof PrimitiveForm>) => import("react/jsx-runtime").JSX.Element | null;
|
|
367
|
+
declare const PrimitiveFormClose: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "children" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "children" | "_id">>>;
|
|
368
|
+
export declare const EmbeddedChatPrimitiveFormClose: (props: ComponentPropsWithRef<typeof PrimitiveFormClose>) => import("react/jsx-runtime").JSX.Element;
|
|
369
|
+
export declare const EmbeddedChatPrimitiveFormHeader: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
370
|
+
declare const PrimitiveFormHeading: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "_id">>>;
|
|
371
|
+
export declare const EmbeddedChatPrimitiveFormHeading: (props: ComponentPropsWithRef<typeof PrimitiveFormHeading>) => import("react/jsx-runtime").JSX.Element | null;
|
|
372
|
+
declare const PrimitiveFormDescription: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & MarkdownProps, "_id"> & Partial<Pick<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & MarkdownProps, "_id">>>;
|
|
373
|
+
export declare const EmbeddedChatPrimitiveFormDescription: (props: ComponentPropsWithRef<typeof PrimitiveFormDescription>) => import("react/jsx-runtime").JSX.Element | null;
|
|
374
|
+
declare const PrimitiveFormContent: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
375
|
+
export interface EmbeddedChatPrimitiveFormContentProps extends Omit<ComponentPropsWithRef<typeof PrimitiveFormContent>, 'children'> {
|
|
376
|
+
children: React.ReactNode | ((fields: FormField[]) => React.ReactNode);
|
|
377
|
+
}
|
|
378
|
+
export declare const EmbeddedChatPrimitiveFormContent: (props: EmbeddedChatPrimitiveFormContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
379
|
+
declare const PrimitiveFormField: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
380
|
+
export interface EmbeddedChatPrimitiveFormFieldProps extends ComponentPropsWithRef<typeof PrimitiveFormField> {
|
|
381
|
+
field: FormField;
|
|
382
|
+
}
|
|
383
|
+
export declare const EmbeddedChatPrimitiveFormField: (props: EmbeddedChatPrimitiveFormFieldProps) => import("react/jsx-runtime").JSX.Element;
|
|
384
|
+
declare const PrimitiveFormFieldLabel: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "_id">>>;
|
|
385
|
+
export declare const EmbeddedChatPrimitiveFormFieldLabel: (props: ComponentPropsWithRef<typeof PrimitiveFormFieldLabel>) => import("react/jsx-runtime").JSX.Element;
|
|
386
|
+
declare const PrimitiveFormFieldText: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "type" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "type" | "_id">>>;
|
|
387
|
+
export declare const EmbeddedChatPrimitiveFormFieldText: (props: ComponentPropsWithRef<typeof PrimitiveFormFieldText>) => import("react/jsx-runtime").JSX.Element;
|
|
388
|
+
export declare const EmbeddedChatPrimitiveFormFieldEmail: React.ForwardRefExoticComponent< PolymorphicProps & Omit< PolymorphicProps & Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "type" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "type" | "_id">>, "type" | "_id"> & Partial<Pick< PolymorphicProps & Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "type" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "type" | "_id">>, "type" | "_id">>>;
|
|
389
|
+
declare const PrimitiveFormFieldFile: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "type" | "multiple" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "type" | "multiple" | "_id">>>;
|
|
390
|
+
export declare const EmbeddedChatPrimitiveFormFieldFile: (props: ComponentPropsWithRef<typeof PrimitiveFormFieldFile>) => import("react/jsx-runtime").JSX.Element;
|
|
391
|
+
export declare const EmbeddedChatPrimitiveFormFieldTextArea: React.ForwardRefExoticComponent< PolymorphicProps & Omit< PolymorphicProps & Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "type" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "type" | "_id">>, "type" | "children" | "asChild" | "_id"> & Partial<Pick< PolymorphicProps & Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "type" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "type" | "_id">>, "type" | "children" | "asChild" | "_id">>>;
|
|
392
|
+
declare const PrimitiveFormFieldCheckbox: React.ForwardRefExoticComponent< PolymorphicProps & Omit<CheckboxPrimitive.CheckboxProps & React.RefAttributes<HTMLButtonElement>, "_id"> & Partial<Pick<CheckboxPrimitive.CheckboxProps & React.RefAttributes<HTMLButtonElement>, "_id">>>;
|
|
393
|
+
export declare const EmbeddedChatPrimitiveFormFieldCheckbox: (props: ComponentPropsWithRef<typeof PrimitiveFormFieldCheckbox>) => import("react/jsx-runtime").JSX.Element;
|
|
394
|
+
export declare const EmbeddedChatPrimitiveFormFieldCheckboxIndicator: React.ForwardRefExoticComponent< PolymorphicProps & Omit<CheckboxPrimitive.CheckboxIndicatorProps & React.RefAttributes<HTMLSpanElement>, "children" | "_id"> & Partial<Pick<CheckboxPrimitive.CheckboxIndicatorProps & React.RefAttributes<HTMLSpanElement>, "children" | "_id">>>;
|
|
395
|
+
declare const PrimitiveFormFieldSelect: React.ForwardRefExoticComponent< PolymorphicProps & Omit<SelectPrimitive.SelectSharedProps & {
|
|
396
|
+
value?: string;
|
|
397
|
+
defaultValue?: string;
|
|
398
|
+
onValueChange?(value: string): void;
|
|
399
|
+
}, "_id"> & Partial<Pick<SelectPrimitive.SelectSharedProps & {
|
|
400
|
+
value?: string;
|
|
401
|
+
defaultValue?: string;
|
|
402
|
+
onValueChange?(value: string): void;
|
|
403
|
+
}, "_id">>>;
|
|
404
|
+
export declare const EmbeddedChatPrimitiveFormFieldSelect: (props: ComponentPropsWithRef<typeof PrimitiveFormFieldSelect>) => import("react/jsx-runtime").JSX.Element;
|
|
405
|
+
export declare const EmbeddedChatPrimitiveFormFieldSelectTrigger: React.ForwardRefExoticComponent< PolymorphicProps & Omit<SelectPrimitive.SelectTriggerProps & React.RefAttributes<HTMLButtonElement>, "_id"> & Partial<Pick<SelectPrimitive.SelectTriggerProps & React.RefAttributes<HTMLButtonElement>, "_id">>>;
|
|
406
|
+
declare const PrimitiveFormFieldSelectValue: React.ForwardRefExoticComponent< PolymorphicProps & Omit<SelectPrimitive.SelectValueProps & React.RefAttributes<HTMLSpanElement>, "_id"> & Partial<Pick<SelectPrimitive.SelectValueProps & React.RefAttributes<HTMLSpanElement>, "_id">>>;
|
|
407
|
+
export declare const EmbeddedChatPrimitiveFormFieldSelectValue: (props: ComponentPropsWithRef<typeof PrimitiveFormFieldSelectValue>) => import("react/jsx-runtime").JSX.Element;
|
|
408
|
+
export declare const EmbeddedChatPrimitiveFormFieldSelectIcon: React.ForwardRefExoticComponent< PolymorphicProps & Omit<SelectPrimitive.SelectIconProps & React.RefAttributes<HTMLSpanElement>, "children" | "asChild" | "_id"> & Partial<Pick<SelectPrimitive.SelectIconProps & React.RefAttributes<HTMLSpanElement>, "children" | "asChild" | "_id">>>;
|
|
409
|
+
export declare const EmbeddedChatPrimitiveFormFieldSelectContent: React.ForwardRefExoticComponent< PolymorphicProps & Omit<SelectPrimitive.SelectContentProps & React.RefAttributes<HTMLDivElement>, "position" | "_id"> & Partial<Pick<SelectPrimitive.SelectContentProps & React.RefAttributes<HTMLDivElement>, "position" | "_id">>>;
|
|
410
|
+
export declare const EmbeddedChatPrimitiveFormFieldSelectViewport: React.ForwardRefExoticComponent< PolymorphicProps & Omit<SelectPrimitive.SelectViewportProps & React.RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick<SelectPrimitive.SelectViewportProps & React.RefAttributes<HTMLDivElement>, "_id">>>;
|
|
411
|
+
export declare const EmbeddedChatPrimitiveFormFieldSelectItem: React.ForwardRefExoticComponent< PolymorphicProps & Omit<SelectPrimitive.SelectItemProps & React.RefAttributes<HTMLDivElement>, "_id"> & Partial<Pick<SelectPrimitive.SelectItemProps & React.RefAttributes<HTMLDivElement>, "_id">>>;
|
|
412
|
+
export declare const EmbeddedChatPrimitiveFormFieldSelectItemText: React.ForwardRefExoticComponent< PolymorphicProps & Omit<SelectPrimitive.SelectItemTextProps & React.RefAttributes<HTMLSpanElement>, "_id"> & Partial<Pick<SelectPrimitive.SelectItemTextProps & React.RefAttributes<HTMLSpanElement>, "_id">>>;
|
|
413
|
+
export declare const EmbeddedChatPrimitiveFormFieldSelectItemIndicator: React.ForwardRefExoticComponent< PolymorphicProps & Omit<SelectPrimitive.SelectItemIndicatorProps & React.RefAttributes<HTMLSpanElement>, "children" | "asChild" | "_id"> & Partial<Pick<SelectPrimitive.SelectItemIndicatorProps & React.RefAttributes<HTMLSpanElement>, "children" | "asChild" | "_id">>>;
|
|
414
|
+
declare const PrimitiveFormFieldError: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
415
|
+
export declare const EmbeddedChatPrimitiveFormFieldError: (props: ComponentPropsWithRef<typeof PrimitiveFormFieldError>) => import("react/jsx-runtime").JSX.Element | null;
|
|
416
|
+
declare const PrimitiveFormError: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "_id">>>;
|
|
417
|
+
export declare const EmbeddedChatPrimitiveFormError: (props: ComponentPropsWithRef<typeof PrimitiveFormError>) => import("react/jsx-runtime").JSX.Element | null;
|
|
418
|
+
export declare const EmbeddedChatPrimitiveFormFooter: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
419
|
+
declare const PrimitiveFormCancel: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "type" | "children" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "type" | "children" | "_id">>>;
|
|
420
|
+
export declare const EmbeddedChatPrimitiveFormCancel: (props: ComponentPropsWithRef<typeof PrimitiveFormCancel>) => import("react/jsx-runtime").JSX.Element;
|
|
421
|
+
declare const PrimitiveFormSubmit: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "type" | "children" | "_id"> & Partial<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "type" | "children" | "_id">>>;
|
|
422
|
+
export declare const EmbeddedChatPrimitiveFormSubmit: (props: ComponentPropsWithRef<typeof PrimitiveFormSubmit>) => import("react/jsx-runtime").JSX.Element;
|
|
423
|
+
declare const PrimitiveFormSuccess: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "_id">>>;
|
|
424
|
+
export declare const EmbeddedChatPrimitiveFormSuccess: (props: ComponentPropsWithRef<typeof PrimitiveFormSuccess>) => import("react/jsx-runtime").JSX.Element | null;
|
|
425
|
+
declare const PrimitiveFormSuccessHeading: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "_id">>>;
|
|
426
|
+
export declare const EmbeddedChatPrimitiveFormSuccessHeading: (props: ComponentPropsWithRef<typeof PrimitiveFormSuccessHeading>) => import("react/jsx-runtime").JSX.Element;
|
|
427
|
+
declare const PrimitiveFormSuccessMessage: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & MarkdownProps, "_id"> & Partial<Pick<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & MarkdownProps, "_id">>>;
|
|
428
|
+
export declare const EmbeddedChatPrimitiveFormSuccessMessage: (props: ComponentPropsWithRef<typeof PrimitiveFormSuccessMessage>) => import("react/jsx-runtime").JSX.Element;
|
|
429
|
+
declare const PrimitiveFormSuccessButton: React.ForwardRefExoticComponent< PolymorphicProps & Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "_id"> & Partial<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "_id">>>;
|
|
430
|
+
export declare const EmbeddedChatPrimitiveFormSuccessButton: (props: ComponentPropsWithRef<typeof PrimitiveFormSuccessButton>) => import("react/jsx-runtime").JSX.Element | null;
|
|
431
|
+
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, EmbeddedChatPrimitiveMessageAnnotationActions as MessageAnnotationActions, EmbeddedChatPrimitiveMessageAnnotationAction as MessageAnnotationAction, 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, 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, };
|