@inkeep/agents-ui 0.14.20 → 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 +775 -776
- 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,572 @@
|
|
|
1
|
+
export declare const miscellanousComponentIds: {
|
|
2
|
+
icon: "icon";
|
|
3
|
+
loadingIndicator__Text: "loadingIndicator__Text";
|
|
4
|
+
loadingIndicator__Dots: "loadingIndicator__Dots";
|
|
5
|
+
loadingIndicator__Dot: "loadingIndicator__Dot";
|
|
6
|
+
view_toggle: "view_toggle";
|
|
7
|
+
view_toggle_button: "view_toggle_button";
|
|
8
|
+
view_toggle_icon: "view_toggle_icon";
|
|
9
|
+
};
|
|
10
|
+
export declare const markDownComponentIds: {
|
|
11
|
+
codeblockContainer: "codeblockContainer";
|
|
12
|
+
codeblockHeader: "codeblockHeader";
|
|
13
|
+
codeblockHeaderLanguage: "codeblockHeaderLanguage";
|
|
14
|
+
codeblockCopyButton: "codeblockCopyButton";
|
|
15
|
+
codeblockHighlighterWrapper: "codeblockHighlighterWrapper";
|
|
16
|
+
codeblockHighlighter: "codeblockHighlighter";
|
|
17
|
+
codeblockCode: "codeblockCode";
|
|
18
|
+
markdownH1: "markdownH1";
|
|
19
|
+
markdownH2: "markdownH2";
|
|
20
|
+
markdownP: "markdownP";
|
|
21
|
+
markdownLi: "markdownLi";
|
|
22
|
+
markdownUl: "markdownUl";
|
|
23
|
+
markdownOl: "markdownOl";
|
|
24
|
+
markdownLink: "markdownLink";
|
|
25
|
+
markdownSourceLink: "markdownSourceLink";
|
|
26
|
+
markdownTable: "markdownTable";
|
|
27
|
+
markdownTh: "markdownTh";
|
|
28
|
+
markdownTd: "markdownTd";
|
|
29
|
+
markdownCode: "markdownCode";
|
|
30
|
+
markdownInput: "markdownInput";
|
|
31
|
+
markdownSup: "markdownSup";
|
|
32
|
+
markdownImg: "markdownImg";
|
|
33
|
+
markdownHr: "markdownHr";
|
|
34
|
+
};
|
|
35
|
+
export declare const aiChatComponentIds: {
|
|
36
|
+
aiChatWrapper: "aiChatWrapper";
|
|
37
|
+
aiChatRoot: "aiChatRoot";
|
|
38
|
+
aiChatHeader: "aiChatHeader";
|
|
39
|
+
aiChatHeader__Toolbar: "aiChatHeader__Toolbar";
|
|
40
|
+
aiChatHeader__ToolbarHeader: "aiChatHeader__ToolbarHeader";
|
|
41
|
+
aiChatHeader__ToolbarHeaderWrapper: "aiChatHeader__ToolbarHeaderWrapper";
|
|
42
|
+
aiChatContent: "aiChatContent";
|
|
43
|
+
aiChatContentScrollArea: "aiChatContentScrollArea";
|
|
44
|
+
aiChatContentScrollArea__Viewport: "aiChatContentScrollArea__Viewport";
|
|
45
|
+
aiChatContentScrollArea__Scrollbar: "aiChatContentScrollArea__Scrollbar";
|
|
46
|
+
aiChatContentScrollArea__Thumb: "aiChatContentScrollArea__Thumb";
|
|
47
|
+
aiChatContentScrollArea__Corner: "aiChatContentScrollArea__Corner";
|
|
48
|
+
aiChatDisclaimer: "aiChatDisclaimer";
|
|
49
|
+
aiChatDisclaimerLabel: "aiChatDisclaimerLabel";
|
|
50
|
+
aiChatDisclaimerTrigger: "aiChatDisclaimerTrigger";
|
|
51
|
+
aiChatDisclaimerContent: "aiChatDisclaimerContent";
|
|
52
|
+
aiChatDisclaimerText: "aiChatDisclaimerText";
|
|
53
|
+
aiChatDisclaimerArrow: "aiChatDisclaimerArrow";
|
|
54
|
+
aiChatExampleQuestions: "aiChatExampleQuestions";
|
|
55
|
+
aiChatExampleQuestionsLabel: "aiChatExampleQuestionsLabel";
|
|
56
|
+
aiChatExampleQuestionsList: "aiChatExampleQuestionsList";
|
|
57
|
+
aiChatExampleQuestion: "aiChatExampleQuestion";
|
|
58
|
+
aiChatExampleQuestionButton: "aiChatExampleQuestionButton";
|
|
59
|
+
aiChatWorkflows: "aiChatWorkflows";
|
|
60
|
+
aiChatWorkflowsLabel: "aiChatWorkflowsLabel";
|
|
61
|
+
aiChatWorkflowsList: "aiChatWorkflowsList";
|
|
62
|
+
aiChatWorkflow: "aiChatWorkflow";
|
|
63
|
+
aiChatWorkflow__Icon: "aiChatWorkflow__Icon";
|
|
64
|
+
aiChatMessages: "aiChatMessages";
|
|
65
|
+
aiChatMessageWrapper: "aiChatMessageWrapper";
|
|
66
|
+
aiChatMessageHeader: "aiChatMessageHeader";
|
|
67
|
+
aiChatMessageLoading: "aiChatMessageLoading";
|
|
68
|
+
aiChatMessageAvatar: "aiChatMessageAvatar";
|
|
69
|
+
aiChatMessageAvatarFallback: "aiChatMessageAvatarFallback";
|
|
70
|
+
aiChatMessageAvatarImage: "aiChatMessageAvatarImage";
|
|
71
|
+
aiChatMessageAvatarContent: "aiChatMessageAvatarContent";
|
|
72
|
+
aiChatMessageName: "aiChatMessageName";
|
|
73
|
+
aiChatMessageContentWrapper: "aiChatMessageContentWrapper";
|
|
74
|
+
aiChatMessageContent: "aiChatMessageContent";
|
|
75
|
+
aiChatMessageAttachments: "aiChatMessageAttachments";
|
|
76
|
+
aiChatMessageAttachments__List: "aiChatMessageAttachments__List";
|
|
77
|
+
aiChatMessageAttachments__Item: "aiChatMessageAttachments__Item";
|
|
78
|
+
aiChatMessageAttachments__ItemIcon: "aiChatMessageAttachments__ItemIcon";
|
|
79
|
+
aiChatMessageAttachments__ItemTitle: "aiChatMessageAttachments__ItemTitle";
|
|
80
|
+
aiChatMessageAttachmentsPreview: "aiChatMessageAttachmentsPreview";
|
|
81
|
+
aiChatMessageAttachmentsPreview__Overlay: "aiChatMessageAttachmentsPreview__Overlay";
|
|
82
|
+
aiChatMessageAttachmentsPreview__Content: "aiChatMessageAttachmentsPreview__Content";
|
|
83
|
+
aiChatMessageAttachmentsPreview__Header: "aiChatMessageAttachmentsPreview__Header";
|
|
84
|
+
aiChatMessageAttachmentsPreview__Close: "aiChatMessageAttachmentsPreview__Close";
|
|
85
|
+
aiChatMessageAttachmentsPreview__Body: "aiChatMessageAttachmentsPreview__Body";
|
|
86
|
+
aiChatMessagePart: "aiChatMessagePart";
|
|
87
|
+
aiChatMessageToolbar: "aiChatMessageToolbar";
|
|
88
|
+
aiChatMessageAnnotationActions: "aiChatMessageAnnotationActions";
|
|
89
|
+
aiChatMessageAnnotationAction: "aiChatMessageAnnotationAction";
|
|
90
|
+
aiChatMessageAction: "aiChatMessageAction";
|
|
91
|
+
aiChatMessageSources: "aiChatMessageSources";
|
|
92
|
+
aiChatMessageSources__Header: "aiChatMessageSources__Header";
|
|
93
|
+
aiChatMessageSources__List: "aiChatMessageSources__List";
|
|
94
|
+
aiChatMessageSourceItem: "aiChatMessageSourceItem";
|
|
95
|
+
aiChatMessageSourceItem__Icon: "aiChatMessageSourceItem__Icon";
|
|
96
|
+
aiChatMessageSourceItem__Breadcrumbs: "aiChatMessageSourceItem__Breadcrumbs";
|
|
97
|
+
aiChatMessageSourceItem__Breadcrumb: "aiChatMessageSourceItem__Breadcrumb";
|
|
98
|
+
aiChatMessageSourceItem__BreadcrumbIcon: "aiChatMessageSourceItem__BreadcrumbIcon";
|
|
99
|
+
aiChatMessageSourceItem__Title: "aiChatMessageSourceItem__Title";
|
|
100
|
+
aiChatMessageSourceItem__Tag: "aiChatMessageSourceItem__Tag";
|
|
101
|
+
aiChatMessageSourceItem__Description: "aiChatMessageSourceItem__Description";
|
|
102
|
+
aiChatMessageSourceItem__DescriptionPart: "aiChatMessageSourceItem__DescriptionPart";
|
|
103
|
+
aiChatMessageSourceItem__Indicator: "aiChatMessageSourceItem__Indicator";
|
|
104
|
+
aiChatFooter: "aiChatFooter";
|
|
105
|
+
aiChatInput__Fieldset: "aiChatInput__Fieldset";
|
|
106
|
+
aiChatInput__Group: "aiChatInput__Group";
|
|
107
|
+
aiChatInput: "aiChatInput";
|
|
108
|
+
aiChatInput__SendButton: "aiChatInput__SendButton";
|
|
109
|
+
aiChatInput__SendButtonIcon: "aiChatInput__SendButtonIcon";
|
|
110
|
+
aiChatAttachmentsBar: "aiChatAttachmentsBar";
|
|
111
|
+
aiChatAttachmentsBar__List: "aiChatAttachmentsBar__List";
|
|
112
|
+
aiChatAttachmentsBar__Attachment: "aiChatAttachmentsBar__Attachment";
|
|
113
|
+
aiChatAttachmentsBar__AttachmentIcon: "aiChatAttachmentsBar__AttachmentIcon";
|
|
114
|
+
aiChatAttachmentsBar__AttachmentTitle: "aiChatAttachmentsBar__AttachmentTitle";
|
|
115
|
+
aiChatAttachmentsBar__AttachmentDelete: "aiChatAttachmentsBar__AttachmentDelete";
|
|
116
|
+
aiChatAttachmentsBar__Actions: "aiChatAttachmentsBar__Actions";
|
|
117
|
+
aiChatAttachmentsBar__InfoTip: "aiChatAttachmentsBar__InfoTip";
|
|
118
|
+
aiChatAttachmentsBar__InfoTipIcon: "aiChatAttachmentsBar__InfoTipIcon";
|
|
119
|
+
aiChatAttachmentsBar__InfoTipArrow: "aiChatAttachmentsBar__InfoTipArrow";
|
|
120
|
+
aiChatAttachmentsBar__InfoTipText: "aiChatAttachmentsBar__InfoTipText";
|
|
121
|
+
aiChatAttachmentsBar__Inputs: "aiChatAttachmentsBar__Inputs";
|
|
122
|
+
aiChatAttachmentsBar__Input: "aiChatAttachmentsBar__Input";
|
|
123
|
+
aiChatAttachmentsBar__InputIcon: "aiChatAttachmentsBar__InputIcon";
|
|
124
|
+
aiChatAttachmentsBar__Modal: "aiChatAttachmentsBar__Modal";
|
|
125
|
+
aiChatAttachmentsBar__ModalOverlay: "aiChatAttachmentsBar__ModalOverlay";
|
|
126
|
+
aiChatAttachmentsBar__ModalContent: "aiChatAttachmentsBar__ModalContent";
|
|
127
|
+
aiChatAttachmentsBar__ModalHeader: "aiChatAttachmentsBar__ModalHeader";
|
|
128
|
+
aiChatAttachmentsBar__ModalClose: "aiChatAttachmentsBar__ModalClose";
|
|
129
|
+
aiChatAttachmentsBar__ModalBody: "aiChatAttachmentsBar__ModalBody";
|
|
130
|
+
aiChatAttachmentsBar__ModalHeading: "aiChatAttachmentsBar__ModalHeading";
|
|
131
|
+
aiChatAttachmentsBar__ModalDescription: "aiChatAttachmentsBar__ModalDescription";
|
|
132
|
+
aiChatAttachmentsBar__ModalHelp: "aiChatAttachmentsBar__ModalHelp";
|
|
133
|
+
aiChatAttachmentsBar__Form: "aiChatAttachmentsBar__Form";
|
|
134
|
+
aiChatAttachmentsBar__FormTitle: "aiChatAttachmentsBar__FormTitle";
|
|
135
|
+
aiChatAttachmentsBar__FormTitleLabel: "aiChatAttachmentsBar__FormTitleLabel";
|
|
136
|
+
aiChatAttachmentsBar__FormTitleInput: "aiChatAttachmentsBar__FormTitleInput";
|
|
137
|
+
aiChatAttachmentsBar__FormTitleError: "aiChatAttachmentsBar__FormTitleError";
|
|
138
|
+
aiChatAttachmentsBar__FormContent: "aiChatAttachmentsBar__FormContent";
|
|
139
|
+
aiChatAttachmentsBar__FormContentLabel: "aiChatAttachmentsBar__FormContentLabel";
|
|
140
|
+
aiChatAttachmentsBar__FormContentInput: "aiChatAttachmentsBar__FormContentInput";
|
|
141
|
+
aiChatAttachmentsBar__FormContentError: "aiChatAttachmentsBar__FormContentError";
|
|
142
|
+
aiChatAttachmentsBar__FormSubmitButton: "aiChatAttachmentsBar__FormSubmitButton";
|
|
143
|
+
aiChatActionBar: "aiChatActionBar";
|
|
144
|
+
aiChat__ChatActions: "aiChat__ChatActions";
|
|
145
|
+
aiChat__ChatAction: "aiChat__ChatAction";
|
|
146
|
+
aiChat__ChatActionLabel: "aiChat__ChatActionLabel";
|
|
147
|
+
aiChat__ChatActionFeeback: "aiChat__ChatActionFeeback";
|
|
148
|
+
aiChatHelpActions: "aiChatHelpActions";
|
|
149
|
+
aiChatHelpAction: "aiChatHelpAction";
|
|
150
|
+
aiChatHelpActions__Trigger: "aiChatHelpActions__Trigger";
|
|
151
|
+
aiChatHelpActions__Menu: "aiChatHelpActions__Menu";
|
|
152
|
+
aiChatHelpActions__MenuArrow: "aiChatHelpActions__MenuArrow";
|
|
153
|
+
aiChatHelpActions__MenuItem: "aiChatHelpActions__MenuItem";
|
|
154
|
+
aiChatHelpActions_MenuItemIcon: "aiChatHelpActions_MenuItemIcon";
|
|
155
|
+
aiChatTagline__Container: "aiChatTagline__Container";
|
|
156
|
+
aiChatTagline__Text: "aiChatTagline__Text";
|
|
157
|
+
aiChatTagline__Logo: "aiChatTagline__Logo";
|
|
158
|
+
aiChatTagline__BrandName: "aiChatTagline__BrandName";
|
|
159
|
+
aiChatFeedbackModal: "aiChatFeedbackModal";
|
|
160
|
+
aiChatFeedbackModal__Overlay: "aiChatFeedbackModal__Overlay";
|
|
161
|
+
aiChatFeedbackModal__Content: "aiChatFeedbackModal__Content";
|
|
162
|
+
aiChatFeedbackModal__Header: "aiChatFeedbackModal__Header";
|
|
163
|
+
aiChatFeedbackModal__Close: "aiChatFeedbackModal__Close";
|
|
164
|
+
aiChatFeedbackModal__Body: "aiChatFeedbackModal__Body";
|
|
165
|
+
aiChatFeedbackForm: "aiChatFeedbackForm";
|
|
166
|
+
aiChatFeedbackItem: "aiChatFeedbackItem";
|
|
167
|
+
aiChatFeedbackItem__Checkbox: "aiChatFeedbackItem__Checkbox";
|
|
168
|
+
aiChatFeedbackItem__CheckboxIndicator: "aiChatFeedbackItem__CheckboxIndicator";
|
|
169
|
+
aiChatFeedbackItem__Label: "aiChatFeedbackItem__Label";
|
|
170
|
+
aiChatFeedbackItem__Description: "aiChatFeedbackItem__Description";
|
|
171
|
+
aiChatFeedbackForm__SubmitButton: "aiChatFeedbackForm__SubmitButton";
|
|
172
|
+
aiChatForm__Wrapper: "aiChatForm__Wrapper";
|
|
173
|
+
aiChatForm: "aiChatForm";
|
|
174
|
+
aiChatForm__Close: "aiChatForm__Close";
|
|
175
|
+
aiChatForm__Header: "aiChatForm__Header";
|
|
176
|
+
aiChatForm__Heading: "aiChatForm__Heading";
|
|
177
|
+
aiChatForm__Description: "aiChatForm__Description";
|
|
178
|
+
aiChatForm__Content: "aiChatForm__Content";
|
|
179
|
+
aiChatForm__Field: "aiChatForm__Field";
|
|
180
|
+
aiChatForm__FieldLabel: "aiChatForm__FieldLabel";
|
|
181
|
+
aiChatForm__FieldText: "aiChatForm__FieldText";
|
|
182
|
+
aiChatForm__FieldEmail: "aiChatForm__FieldEmail";
|
|
183
|
+
aiChatForm__FieldFile: "aiChatForm__FieldFile";
|
|
184
|
+
aiChatForm__FieldTextArea: "aiChatForm__FieldTextArea";
|
|
185
|
+
aiChatForm__FieldCheckbox: "aiChatForm__FieldCheckbox";
|
|
186
|
+
aiChatForm__FieldCheckboxIndicator: "aiChatForm__FieldCheckboxIndicator";
|
|
187
|
+
aiChatForm__FieldSelect: "aiChatForm__FieldSelect";
|
|
188
|
+
aiChatForm__FieldSelect__Trigger: "aiChatForm__FieldSelect__Trigger";
|
|
189
|
+
aiChatForm__FieldSelect__Value: "aiChatForm__FieldSelect__Value";
|
|
190
|
+
aiChatForm__FieldSelect__Icon: "aiChatForm__FieldSelect__Icon";
|
|
191
|
+
aiChatForm__FieldSelect__Content: "aiChatForm__FieldSelect__Content";
|
|
192
|
+
aiChatForm__FieldSelect__Viewport: "aiChatForm__FieldSelect__Viewport";
|
|
193
|
+
aiChatForm__FieldSelect__Item: "aiChatForm__FieldSelect__Item";
|
|
194
|
+
aiChatForm__FieldSelect__ItemIndicator: "aiChatForm__FieldSelect__ItemIndicator";
|
|
195
|
+
aiChatForm__FieldSelect__ItemText: "aiChatForm__FieldSelect__ItemText";
|
|
196
|
+
aiChatForm__FieldError: "aiChatForm__FieldError";
|
|
197
|
+
aiChatForm__Error: "aiChatForm__Error";
|
|
198
|
+
aiChatForm__Footer: "aiChatForm__Footer";
|
|
199
|
+
aiChatForm__Cancel: "aiChatForm__Cancel";
|
|
200
|
+
aiChatForm__Submit: "aiChatForm__Submit";
|
|
201
|
+
aiChatForm__Success: "aiChatForm__Success";
|
|
202
|
+
aiChatForm__SuccessHeading: "aiChatForm__SuccessHeading";
|
|
203
|
+
aiChatForm__SuccessMessage: "aiChatForm__SuccessMessage";
|
|
204
|
+
aiChatForm__SuccessButton: "aiChatForm__SuccessButton";
|
|
205
|
+
aiChatLink: "aiChatLink";
|
|
206
|
+
};
|
|
207
|
+
export declare const aiSearchComponentIds: {
|
|
208
|
+
aiSearchWrapper: "aiSearchWrapper";
|
|
209
|
+
aiSearchRoot: "aiSearchRoot";
|
|
210
|
+
aiSearchContent: "aiSearchContent";
|
|
211
|
+
aiSearchInputGroup: "aiSearchInputGroup";
|
|
212
|
+
aiSearchInputIcon: "aiSearchInputIcon";
|
|
213
|
+
aiSearchInput: "aiSearchInput";
|
|
214
|
+
aiSearchLoading: "aiSearchLoading";
|
|
215
|
+
aiAskAITrigger: "aiAskAITrigger";
|
|
216
|
+
aiAskAITrigger__Icon: "aiAskAITrigger__Icon";
|
|
217
|
+
aiAskAITrigger__Label: "aiAskAITrigger__Label";
|
|
218
|
+
aiAskAITrigger__Query: "aiAskAITrigger__Query";
|
|
219
|
+
aiAskAITrigger__Indicator: "aiAskAITrigger__Indicator";
|
|
220
|
+
aiAskAITrigger__IndicatorText: "aiAskAITrigger__IndicatorText";
|
|
221
|
+
aiSearchResults: "aiSearchResults";
|
|
222
|
+
aiSearchResults__Loading: "aiSearchResults__Loading";
|
|
223
|
+
aiSearchResults__Empty: "aiSearchResults__Empty";
|
|
224
|
+
aiSearchResults__TabList: "aiSearchResults__TabList";
|
|
225
|
+
aiSearchResults__Tab: "aiSearchResults__Tab";
|
|
226
|
+
aiSearchResults__Content: "aiSearchResults__Content";
|
|
227
|
+
aiSearchResults__ScrollArea: "aiSearchResults__ScrollArea";
|
|
228
|
+
aiSearchResults__ScrollAreaViewport: "aiSearchResults__ScrollAreaViewport";
|
|
229
|
+
aiSearchResults__List: "aiSearchResults__List";
|
|
230
|
+
aiSearchResults__Item: "aiSearchResults__Item";
|
|
231
|
+
aiSearchResults__ItemIcon: "aiSearchResults__ItemIcon";
|
|
232
|
+
aiSearchResults__ItemBreadcrumbs: "aiSearchResults__ItemBreadcrumbs";
|
|
233
|
+
aiSearchResults__ItemBreadcrumbIcon: "aiSearchResults__ItemBreadcrumbIcon";
|
|
234
|
+
aiSearchResults__ItemTitle: "aiSearchResults__ItemTitle";
|
|
235
|
+
aiSearchResults__ItemTag: "aiSearchResults__ItemTag";
|
|
236
|
+
aiSearchResults__ItemDescription: "aiSearchResults__ItemDescription";
|
|
237
|
+
aiSearchResults__ItemDescriptionPart: "aiSearchResults__ItemDescriptionPart";
|
|
238
|
+
aiSearchResults__ItemIndicator: "aiSearchResults__ItemIndicator";
|
|
239
|
+
aiSearchResults__ItemPreview: "aiSearchResults__ItemPreview";
|
|
240
|
+
aiSearchResults__ItemPreview__Header: "aiSearchResults__ItemPreview__Header";
|
|
241
|
+
aiSearchResults__ItemPreview__Heading: "aiSearchResults__ItemPreview__Heading";
|
|
242
|
+
aiSearchResults__ItemPreview__Title: "aiSearchResults__ItemPreview__Title";
|
|
243
|
+
aiSearchResults__ItemPreview__Title__LinkIcon: "aiSearchResults__ItemPreview__Title__LinkIcon";
|
|
244
|
+
aiSearchResults__ItemPreview__Breadcrumbs: "aiSearchResults__ItemPreview__Breadcrumbs";
|
|
245
|
+
aiSearchResults__ItemPreview__BreadcrumbIcon: "aiSearchResults__ItemPreview__BreadcrumbIcon";
|
|
246
|
+
aiSearchResults__ItemPreview__Body: "aiSearchResults__ItemPreview__Body";
|
|
247
|
+
aiSearchResults__ItemPreview__Outline: "aiSearchResults__ItemPreview__Outline";
|
|
248
|
+
aiSearchResults__ItemPreview__Outline__Title: "aiSearchResults__ItemPreview__Outline__Title";
|
|
249
|
+
aiSearchResults__ItemPreview__Outline__List: "aiSearchResults__ItemPreview__Outline__List";
|
|
250
|
+
aiSearchResults__ItemPreview__Outline__Item: "aiSearchResults__ItemPreview__Outline__Item";
|
|
251
|
+
aiSearchResults__ItemPreview__Outline__ItemIcon: "aiSearchResults__ItemPreview__Outline__ItemIcon";
|
|
252
|
+
aiSearchResults__ItemPreview__Outline__ItemText: "aiSearchResults__ItemPreview__Outline__ItemText";
|
|
253
|
+
aiSearchResults__ItemPreview__Outline__ItemLinkIcon: "aiSearchResults__ItemPreview__Outline__ItemLinkIcon";
|
|
254
|
+
aiSearchResults__ScrollAreaScrollbar: "aiSearchResults__ScrollAreaScrollbar";
|
|
255
|
+
aiSearchResults__ScrollAreaThumb: "aiSearchResults__ScrollAreaThumb";
|
|
256
|
+
aiSearchResults__ScrollAreaCorner: "aiSearchResults__ScrollAreaCorner";
|
|
257
|
+
aiSearchFooter: "aiSearchFooter";
|
|
258
|
+
aiSearchTagline__Container: "aiSearchTagline__Container";
|
|
259
|
+
aiSearchTagline__Text: "aiSearchTagline__Text";
|
|
260
|
+
aiSearchTagline__Logo: "aiSearchTagline__Logo";
|
|
261
|
+
aiSearchTagline__BrandName: "aiSearchTagline__BrandName";
|
|
262
|
+
};
|
|
263
|
+
export declare const modalComponentIds: {
|
|
264
|
+
modal: "modal";
|
|
265
|
+
modal__Overlay: "modal__Overlay";
|
|
266
|
+
modal__Content: "modal__Content";
|
|
267
|
+
modal__Close: "modal__Close";
|
|
268
|
+
};
|
|
269
|
+
export declare const chatButtonComponentIds: {
|
|
270
|
+
chatButton__Text: "chatButton__Text";
|
|
271
|
+
chatButton__Button: "chatButton__Button";
|
|
272
|
+
chatButton__Container: "chatButton__Container";
|
|
273
|
+
chatButton__AvatarImage: "chatButton__AvatarImage";
|
|
274
|
+
chatButton__AvatarContent: "chatButton__AvatarContent";
|
|
275
|
+
};
|
|
276
|
+
export declare const SearchBarComponentIds: {
|
|
277
|
+
searchBar__Container: "searchBar__Container";
|
|
278
|
+
searchBar__Button: "searchBar__Button";
|
|
279
|
+
searchBar__ContentWrapper: "searchBar__ContentWrapper";
|
|
280
|
+
searchBar__Text: "searchBar__Text";
|
|
281
|
+
searchBar__Icon: "searchBar__Icon";
|
|
282
|
+
searchBar__KbdWrapper: "searchBar__KbdWrapper";
|
|
283
|
+
searchBar__CmdIcon: "searchBar__CmdIcon";
|
|
284
|
+
searchBar__Ctrl: "searchBar__Ctrl";
|
|
285
|
+
searchBar__KbdShortcutKey: "searchBar__KbdShortcutKey";
|
|
286
|
+
};
|
|
287
|
+
export declare const SidebarChatComponentIds: {
|
|
288
|
+
sidebarChat__Root: "sidebarChat__Root";
|
|
289
|
+
sidebarChat__Resizer: "sidebarChat__Resizer";
|
|
290
|
+
sidebarChat__CloseButton: "sidebarChat__CloseButton";
|
|
291
|
+
sidebarChat__Header: "sidebarChat__Header";
|
|
292
|
+
};
|
|
293
|
+
export declare const componentIDs: {
|
|
294
|
+
sidebarChat__Root: "sidebarChat__Root";
|
|
295
|
+
sidebarChat__Resizer: "sidebarChat__Resizer";
|
|
296
|
+
sidebarChat__CloseButton: "sidebarChat__CloseButton";
|
|
297
|
+
sidebarChat__Header: "sidebarChat__Header";
|
|
298
|
+
icon: "icon";
|
|
299
|
+
loadingIndicator__Text: "loadingIndicator__Text";
|
|
300
|
+
loadingIndicator__Dots: "loadingIndicator__Dots";
|
|
301
|
+
loadingIndicator__Dot: "loadingIndicator__Dot";
|
|
302
|
+
view_toggle: "view_toggle";
|
|
303
|
+
view_toggle_button: "view_toggle_button";
|
|
304
|
+
view_toggle_icon: "view_toggle_icon";
|
|
305
|
+
searchBar__Container: "searchBar__Container";
|
|
306
|
+
searchBar__Button: "searchBar__Button";
|
|
307
|
+
searchBar__ContentWrapper: "searchBar__ContentWrapper";
|
|
308
|
+
searchBar__Text: "searchBar__Text";
|
|
309
|
+
searchBar__Icon: "searchBar__Icon";
|
|
310
|
+
searchBar__KbdWrapper: "searchBar__KbdWrapper";
|
|
311
|
+
searchBar__CmdIcon: "searchBar__CmdIcon";
|
|
312
|
+
searchBar__Ctrl: "searchBar__Ctrl";
|
|
313
|
+
searchBar__KbdShortcutKey: "searchBar__KbdShortcutKey";
|
|
314
|
+
chatButton__Text: "chatButton__Text";
|
|
315
|
+
chatButton__Button: "chatButton__Button";
|
|
316
|
+
chatButton__Container: "chatButton__Container";
|
|
317
|
+
chatButton__AvatarImage: "chatButton__AvatarImage";
|
|
318
|
+
chatButton__AvatarContent: "chatButton__AvatarContent";
|
|
319
|
+
modal: "modal";
|
|
320
|
+
modal__Overlay: "modal__Overlay";
|
|
321
|
+
modal__Content: "modal__Content";
|
|
322
|
+
modal__Close: "modal__Close";
|
|
323
|
+
aiSearchWrapper: "aiSearchWrapper";
|
|
324
|
+
aiSearchRoot: "aiSearchRoot";
|
|
325
|
+
aiSearchContent: "aiSearchContent";
|
|
326
|
+
aiSearchInputGroup: "aiSearchInputGroup";
|
|
327
|
+
aiSearchInputIcon: "aiSearchInputIcon";
|
|
328
|
+
aiSearchInput: "aiSearchInput";
|
|
329
|
+
aiSearchLoading: "aiSearchLoading";
|
|
330
|
+
aiAskAITrigger: "aiAskAITrigger";
|
|
331
|
+
aiAskAITrigger__Icon: "aiAskAITrigger__Icon";
|
|
332
|
+
aiAskAITrigger__Label: "aiAskAITrigger__Label";
|
|
333
|
+
aiAskAITrigger__Query: "aiAskAITrigger__Query";
|
|
334
|
+
aiAskAITrigger__Indicator: "aiAskAITrigger__Indicator";
|
|
335
|
+
aiAskAITrigger__IndicatorText: "aiAskAITrigger__IndicatorText";
|
|
336
|
+
aiSearchResults: "aiSearchResults";
|
|
337
|
+
aiSearchResults__Loading: "aiSearchResults__Loading";
|
|
338
|
+
aiSearchResults__Empty: "aiSearchResults__Empty";
|
|
339
|
+
aiSearchResults__TabList: "aiSearchResults__TabList";
|
|
340
|
+
aiSearchResults__Tab: "aiSearchResults__Tab";
|
|
341
|
+
aiSearchResults__Content: "aiSearchResults__Content";
|
|
342
|
+
aiSearchResults__ScrollArea: "aiSearchResults__ScrollArea";
|
|
343
|
+
aiSearchResults__ScrollAreaViewport: "aiSearchResults__ScrollAreaViewport";
|
|
344
|
+
aiSearchResults__List: "aiSearchResults__List";
|
|
345
|
+
aiSearchResults__Item: "aiSearchResults__Item";
|
|
346
|
+
aiSearchResults__ItemIcon: "aiSearchResults__ItemIcon";
|
|
347
|
+
aiSearchResults__ItemBreadcrumbs: "aiSearchResults__ItemBreadcrumbs";
|
|
348
|
+
aiSearchResults__ItemBreadcrumbIcon: "aiSearchResults__ItemBreadcrumbIcon";
|
|
349
|
+
aiSearchResults__ItemTitle: "aiSearchResults__ItemTitle";
|
|
350
|
+
aiSearchResults__ItemTag: "aiSearchResults__ItemTag";
|
|
351
|
+
aiSearchResults__ItemDescription: "aiSearchResults__ItemDescription";
|
|
352
|
+
aiSearchResults__ItemDescriptionPart: "aiSearchResults__ItemDescriptionPart";
|
|
353
|
+
aiSearchResults__ItemIndicator: "aiSearchResults__ItemIndicator";
|
|
354
|
+
aiSearchResults__ItemPreview: "aiSearchResults__ItemPreview";
|
|
355
|
+
aiSearchResults__ItemPreview__Header: "aiSearchResults__ItemPreview__Header";
|
|
356
|
+
aiSearchResults__ItemPreview__Heading: "aiSearchResults__ItemPreview__Heading";
|
|
357
|
+
aiSearchResults__ItemPreview__Title: "aiSearchResults__ItemPreview__Title";
|
|
358
|
+
aiSearchResults__ItemPreview__Title__LinkIcon: "aiSearchResults__ItemPreview__Title__LinkIcon";
|
|
359
|
+
aiSearchResults__ItemPreview__Breadcrumbs: "aiSearchResults__ItemPreview__Breadcrumbs";
|
|
360
|
+
aiSearchResults__ItemPreview__BreadcrumbIcon: "aiSearchResults__ItemPreview__BreadcrumbIcon";
|
|
361
|
+
aiSearchResults__ItemPreview__Body: "aiSearchResults__ItemPreview__Body";
|
|
362
|
+
aiSearchResults__ItemPreview__Outline: "aiSearchResults__ItemPreview__Outline";
|
|
363
|
+
aiSearchResults__ItemPreview__Outline__Title: "aiSearchResults__ItemPreview__Outline__Title";
|
|
364
|
+
aiSearchResults__ItemPreview__Outline__List: "aiSearchResults__ItemPreview__Outline__List";
|
|
365
|
+
aiSearchResults__ItemPreview__Outline__Item: "aiSearchResults__ItemPreview__Outline__Item";
|
|
366
|
+
aiSearchResults__ItemPreview__Outline__ItemIcon: "aiSearchResults__ItemPreview__Outline__ItemIcon";
|
|
367
|
+
aiSearchResults__ItemPreview__Outline__ItemText: "aiSearchResults__ItemPreview__Outline__ItemText";
|
|
368
|
+
aiSearchResults__ItemPreview__Outline__ItemLinkIcon: "aiSearchResults__ItemPreview__Outline__ItemLinkIcon";
|
|
369
|
+
aiSearchResults__ScrollAreaScrollbar: "aiSearchResults__ScrollAreaScrollbar";
|
|
370
|
+
aiSearchResults__ScrollAreaThumb: "aiSearchResults__ScrollAreaThumb";
|
|
371
|
+
aiSearchResults__ScrollAreaCorner: "aiSearchResults__ScrollAreaCorner";
|
|
372
|
+
aiSearchFooter: "aiSearchFooter";
|
|
373
|
+
aiSearchTagline__Container: "aiSearchTagline__Container";
|
|
374
|
+
aiSearchTagline__Text: "aiSearchTagline__Text";
|
|
375
|
+
aiSearchTagline__Logo: "aiSearchTagline__Logo";
|
|
376
|
+
aiSearchTagline__BrandName: "aiSearchTagline__BrandName";
|
|
377
|
+
aiChatWrapper: "aiChatWrapper";
|
|
378
|
+
aiChatRoot: "aiChatRoot";
|
|
379
|
+
aiChatHeader: "aiChatHeader";
|
|
380
|
+
aiChatHeader__Toolbar: "aiChatHeader__Toolbar";
|
|
381
|
+
aiChatHeader__ToolbarHeader: "aiChatHeader__ToolbarHeader";
|
|
382
|
+
aiChatHeader__ToolbarHeaderWrapper: "aiChatHeader__ToolbarHeaderWrapper";
|
|
383
|
+
aiChatContent: "aiChatContent";
|
|
384
|
+
aiChatContentScrollArea: "aiChatContentScrollArea";
|
|
385
|
+
aiChatContentScrollArea__Viewport: "aiChatContentScrollArea__Viewport";
|
|
386
|
+
aiChatContentScrollArea__Scrollbar: "aiChatContentScrollArea__Scrollbar";
|
|
387
|
+
aiChatContentScrollArea__Thumb: "aiChatContentScrollArea__Thumb";
|
|
388
|
+
aiChatContentScrollArea__Corner: "aiChatContentScrollArea__Corner";
|
|
389
|
+
aiChatDisclaimer: "aiChatDisclaimer";
|
|
390
|
+
aiChatDisclaimerLabel: "aiChatDisclaimerLabel";
|
|
391
|
+
aiChatDisclaimerTrigger: "aiChatDisclaimerTrigger";
|
|
392
|
+
aiChatDisclaimerContent: "aiChatDisclaimerContent";
|
|
393
|
+
aiChatDisclaimerText: "aiChatDisclaimerText";
|
|
394
|
+
aiChatDisclaimerArrow: "aiChatDisclaimerArrow";
|
|
395
|
+
aiChatExampleQuestions: "aiChatExampleQuestions";
|
|
396
|
+
aiChatExampleQuestionsLabel: "aiChatExampleQuestionsLabel";
|
|
397
|
+
aiChatExampleQuestionsList: "aiChatExampleQuestionsList";
|
|
398
|
+
aiChatExampleQuestion: "aiChatExampleQuestion";
|
|
399
|
+
aiChatExampleQuestionButton: "aiChatExampleQuestionButton";
|
|
400
|
+
aiChatWorkflows: "aiChatWorkflows";
|
|
401
|
+
aiChatWorkflowsLabel: "aiChatWorkflowsLabel";
|
|
402
|
+
aiChatWorkflowsList: "aiChatWorkflowsList";
|
|
403
|
+
aiChatWorkflow: "aiChatWorkflow";
|
|
404
|
+
aiChatWorkflow__Icon: "aiChatWorkflow__Icon";
|
|
405
|
+
aiChatMessages: "aiChatMessages";
|
|
406
|
+
aiChatMessageWrapper: "aiChatMessageWrapper";
|
|
407
|
+
aiChatMessageHeader: "aiChatMessageHeader";
|
|
408
|
+
aiChatMessageLoading: "aiChatMessageLoading";
|
|
409
|
+
aiChatMessageAvatar: "aiChatMessageAvatar";
|
|
410
|
+
aiChatMessageAvatarFallback: "aiChatMessageAvatarFallback";
|
|
411
|
+
aiChatMessageAvatarImage: "aiChatMessageAvatarImage";
|
|
412
|
+
aiChatMessageAvatarContent: "aiChatMessageAvatarContent";
|
|
413
|
+
aiChatMessageName: "aiChatMessageName";
|
|
414
|
+
aiChatMessageContentWrapper: "aiChatMessageContentWrapper";
|
|
415
|
+
aiChatMessageContent: "aiChatMessageContent";
|
|
416
|
+
aiChatMessageAttachments: "aiChatMessageAttachments";
|
|
417
|
+
aiChatMessageAttachments__List: "aiChatMessageAttachments__List";
|
|
418
|
+
aiChatMessageAttachments__Item: "aiChatMessageAttachments__Item";
|
|
419
|
+
aiChatMessageAttachments__ItemIcon: "aiChatMessageAttachments__ItemIcon";
|
|
420
|
+
aiChatMessageAttachments__ItemTitle: "aiChatMessageAttachments__ItemTitle";
|
|
421
|
+
aiChatMessageAttachmentsPreview: "aiChatMessageAttachmentsPreview";
|
|
422
|
+
aiChatMessageAttachmentsPreview__Overlay: "aiChatMessageAttachmentsPreview__Overlay";
|
|
423
|
+
aiChatMessageAttachmentsPreview__Content: "aiChatMessageAttachmentsPreview__Content";
|
|
424
|
+
aiChatMessageAttachmentsPreview__Header: "aiChatMessageAttachmentsPreview__Header";
|
|
425
|
+
aiChatMessageAttachmentsPreview__Close: "aiChatMessageAttachmentsPreview__Close";
|
|
426
|
+
aiChatMessageAttachmentsPreview__Body: "aiChatMessageAttachmentsPreview__Body";
|
|
427
|
+
aiChatMessagePart: "aiChatMessagePart";
|
|
428
|
+
aiChatMessageToolbar: "aiChatMessageToolbar";
|
|
429
|
+
aiChatMessageAnnotationActions: "aiChatMessageAnnotationActions";
|
|
430
|
+
aiChatMessageAnnotationAction: "aiChatMessageAnnotationAction";
|
|
431
|
+
aiChatMessageAction: "aiChatMessageAction";
|
|
432
|
+
aiChatMessageSources: "aiChatMessageSources";
|
|
433
|
+
aiChatMessageSources__Header: "aiChatMessageSources__Header";
|
|
434
|
+
aiChatMessageSources__List: "aiChatMessageSources__List";
|
|
435
|
+
aiChatMessageSourceItem: "aiChatMessageSourceItem";
|
|
436
|
+
aiChatMessageSourceItem__Icon: "aiChatMessageSourceItem__Icon";
|
|
437
|
+
aiChatMessageSourceItem__Breadcrumbs: "aiChatMessageSourceItem__Breadcrumbs";
|
|
438
|
+
aiChatMessageSourceItem__Breadcrumb: "aiChatMessageSourceItem__Breadcrumb";
|
|
439
|
+
aiChatMessageSourceItem__BreadcrumbIcon: "aiChatMessageSourceItem__BreadcrumbIcon";
|
|
440
|
+
aiChatMessageSourceItem__Title: "aiChatMessageSourceItem__Title";
|
|
441
|
+
aiChatMessageSourceItem__Tag: "aiChatMessageSourceItem__Tag";
|
|
442
|
+
aiChatMessageSourceItem__Description: "aiChatMessageSourceItem__Description";
|
|
443
|
+
aiChatMessageSourceItem__DescriptionPart: "aiChatMessageSourceItem__DescriptionPart";
|
|
444
|
+
aiChatMessageSourceItem__Indicator: "aiChatMessageSourceItem__Indicator";
|
|
445
|
+
aiChatFooter: "aiChatFooter";
|
|
446
|
+
aiChatInput__Fieldset: "aiChatInput__Fieldset";
|
|
447
|
+
aiChatInput__Group: "aiChatInput__Group";
|
|
448
|
+
aiChatInput: "aiChatInput";
|
|
449
|
+
aiChatInput__SendButton: "aiChatInput__SendButton";
|
|
450
|
+
aiChatInput__SendButtonIcon: "aiChatInput__SendButtonIcon";
|
|
451
|
+
aiChatAttachmentsBar: "aiChatAttachmentsBar";
|
|
452
|
+
aiChatAttachmentsBar__List: "aiChatAttachmentsBar__List";
|
|
453
|
+
aiChatAttachmentsBar__Attachment: "aiChatAttachmentsBar__Attachment";
|
|
454
|
+
aiChatAttachmentsBar__AttachmentIcon: "aiChatAttachmentsBar__AttachmentIcon";
|
|
455
|
+
aiChatAttachmentsBar__AttachmentTitle: "aiChatAttachmentsBar__AttachmentTitle";
|
|
456
|
+
aiChatAttachmentsBar__AttachmentDelete: "aiChatAttachmentsBar__AttachmentDelete";
|
|
457
|
+
aiChatAttachmentsBar__Actions: "aiChatAttachmentsBar__Actions";
|
|
458
|
+
aiChatAttachmentsBar__InfoTip: "aiChatAttachmentsBar__InfoTip";
|
|
459
|
+
aiChatAttachmentsBar__InfoTipIcon: "aiChatAttachmentsBar__InfoTipIcon";
|
|
460
|
+
aiChatAttachmentsBar__InfoTipArrow: "aiChatAttachmentsBar__InfoTipArrow";
|
|
461
|
+
aiChatAttachmentsBar__InfoTipText: "aiChatAttachmentsBar__InfoTipText";
|
|
462
|
+
aiChatAttachmentsBar__Inputs: "aiChatAttachmentsBar__Inputs";
|
|
463
|
+
aiChatAttachmentsBar__Input: "aiChatAttachmentsBar__Input";
|
|
464
|
+
aiChatAttachmentsBar__InputIcon: "aiChatAttachmentsBar__InputIcon";
|
|
465
|
+
aiChatAttachmentsBar__Modal: "aiChatAttachmentsBar__Modal";
|
|
466
|
+
aiChatAttachmentsBar__ModalOverlay: "aiChatAttachmentsBar__ModalOverlay";
|
|
467
|
+
aiChatAttachmentsBar__ModalContent: "aiChatAttachmentsBar__ModalContent";
|
|
468
|
+
aiChatAttachmentsBar__ModalHeader: "aiChatAttachmentsBar__ModalHeader";
|
|
469
|
+
aiChatAttachmentsBar__ModalClose: "aiChatAttachmentsBar__ModalClose";
|
|
470
|
+
aiChatAttachmentsBar__ModalBody: "aiChatAttachmentsBar__ModalBody";
|
|
471
|
+
aiChatAttachmentsBar__ModalHeading: "aiChatAttachmentsBar__ModalHeading";
|
|
472
|
+
aiChatAttachmentsBar__ModalDescription: "aiChatAttachmentsBar__ModalDescription";
|
|
473
|
+
aiChatAttachmentsBar__ModalHelp: "aiChatAttachmentsBar__ModalHelp";
|
|
474
|
+
aiChatAttachmentsBar__Form: "aiChatAttachmentsBar__Form";
|
|
475
|
+
aiChatAttachmentsBar__FormTitle: "aiChatAttachmentsBar__FormTitle";
|
|
476
|
+
aiChatAttachmentsBar__FormTitleLabel: "aiChatAttachmentsBar__FormTitleLabel";
|
|
477
|
+
aiChatAttachmentsBar__FormTitleInput: "aiChatAttachmentsBar__FormTitleInput";
|
|
478
|
+
aiChatAttachmentsBar__FormTitleError: "aiChatAttachmentsBar__FormTitleError";
|
|
479
|
+
aiChatAttachmentsBar__FormContent: "aiChatAttachmentsBar__FormContent";
|
|
480
|
+
aiChatAttachmentsBar__FormContentLabel: "aiChatAttachmentsBar__FormContentLabel";
|
|
481
|
+
aiChatAttachmentsBar__FormContentInput: "aiChatAttachmentsBar__FormContentInput";
|
|
482
|
+
aiChatAttachmentsBar__FormContentError: "aiChatAttachmentsBar__FormContentError";
|
|
483
|
+
aiChatAttachmentsBar__FormSubmitButton: "aiChatAttachmentsBar__FormSubmitButton";
|
|
484
|
+
aiChatActionBar: "aiChatActionBar";
|
|
485
|
+
aiChat__ChatActions: "aiChat__ChatActions";
|
|
486
|
+
aiChat__ChatAction: "aiChat__ChatAction";
|
|
487
|
+
aiChat__ChatActionLabel: "aiChat__ChatActionLabel";
|
|
488
|
+
aiChat__ChatActionFeeback: "aiChat__ChatActionFeeback";
|
|
489
|
+
aiChatHelpActions: "aiChatHelpActions";
|
|
490
|
+
aiChatHelpAction: "aiChatHelpAction";
|
|
491
|
+
aiChatHelpActions__Trigger: "aiChatHelpActions__Trigger";
|
|
492
|
+
aiChatHelpActions__Menu: "aiChatHelpActions__Menu";
|
|
493
|
+
aiChatHelpActions__MenuArrow: "aiChatHelpActions__MenuArrow";
|
|
494
|
+
aiChatHelpActions__MenuItem: "aiChatHelpActions__MenuItem";
|
|
495
|
+
aiChatHelpActions_MenuItemIcon: "aiChatHelpActions_MenuItemIcon";
|
|
496
|
+
aiChatTagline__Container: "aiChatTagline__Container";
|
|
497
|
+
aiChatTagline__Text: "aiChatTagline__Text";
|
|
498
|
+
aiChatTagline__Logo: "aiChatTagline__Logo";
|
|
499
|
+
aiChatTagline__BrandName: "aiChatTagline__BrandName";
|
|
500
|
+
aiChatFeedbackModal: "aiChatFeedbackModal";
|
|
501
|
+
aiChatFeedbackModal__Overlay: "aiChatFeedbackModal__Overlay";
|
|
502
|
+
aiChatFeedbackModal__Content: "aiChatFeedbackModal__Content";
|
|
503
|
+
aiChatFeedbackModal__Header: "aiChatFeedbackModal__Header";
|
|
504
|
+
aiChatFeedbackModal__Close: "aiChatFeedbackModal__Close";
|
|
505
|
+
aiChatFeedbackModal__Body: "aiChatFeedbackModal__Body";
|
|
506
|
+
aiChatFeedbackForm: "aiChatFeedbackForm";
|
|
507
|
+
aiChatFeedbackItem: "aiChatFeedbackItem";
|
|
508
|
+
aiChatFeedbackItem__Checkbox: "aiChatFeedbackItem__Checkbox";
|
|
509
|
+
aiChatFeedbackItem__CheckboxIndicator: "aiChatFeedbackItem__CheckboxIndicator";
|
|
510
|
+
aiChatFeedbackItem__Label: "aiChatFeedbackItem__Label";
|
|
511
|
+
aiChatFeedbackItem__Description: "aiChatFeedbackItem__Description";
|
|
512
|
+
aiChatFeedbackForm__SubmitButton: "aiChatFeedbackForm__SubmitButton";
|
|
513
|
+
aiChatForm__Wrapper: "aiChatForm__Wrapper";
|
|
514
|
+
aiChatForm: "aiChatForm";
|
|
515
|
+
aiChatForm__Close: "aiChatForm__Close";
|
|
516
|
+
aiChatForm__Header: "aiChatForm__Header";
|
|
517
|
+
aiChatForm__Heading: "aiChatForm__Heading";
|
|
518
|
+
aiChatForm__Description: "aiChatForm__Description";
|
|
519
|
+
aiChatForm__Content: "aiChatForm__Content";
|
|
520
|
+
aiChatForm__Field: "aiChatForm__Field";
|
|
521
|
+
aiChatForm__FieldLabel: "aiChatForm__FieldLabel";
|
|
522
|
+
aiChatForm__FieldText: "aiChatForm__FieldText";
|
|
523
|
+
aiChatForm__FieldEmail: "aiChatForm__FieldEmail";
|
|
524
|
+
aiChatForm__FieldFile: "aiChatForm__FieldFile";
|
|
525
|
+
aiChatForm__FieldTextArea: "aiChatForm__FieldTextArea";
|
|
526
|
+
aiChatForm__FieldCheckbox: "aiChatForm__FieldCheckbox";
|
|
527
|
+
aiChatForm__FieldCheckboxIndicator: "aiChatForm__FieldCheckboxIndicator";
|
|
528
|
+
aiChatForm__FieldSelect: "aiChatForm__FieldSelect";
|
|
529
|
+
aiChatForm__FieldSelect__Trigger: "aiChatForm__FieldSelect__Trigger";
|
|
530
|
+
aiChatForm__FieldSelect__Value: "aiChatForm__FieldSelect__Value";
|
|
531
|
+
aiChatForm__FieldSelect__Icon: "aiChatForm__FieldSelect__Icon";
|
|
532
|
+
aiChatForm__FieldSelect__Content: "aiChatForm__FieldSelect__Content";
|
|
533
|
+
aiChatForm__FieldSelect__Viewport: "aiChatForm__FieldSelect__Viewport";
|
|
534
|
+
aiChatForm__FieldSelect__Item: "aiChatForm__FieldSelect__Item";
|
|
535
|
+
aiChatForm__FieldSelect__ItemIndicator: "aiChatForm__FieldSelect__ItemIndicator";
|
|
536
|
+
aiChatForm__FieldSelect__ItemText: "aiChatForm__FieldSelect__ItemText";
|
|
537
|
+
aiChatForm__FieldError: "aiChatForm__FieldError";
|
|
538
|
+
aiChatForm__Error: "aiChatForm__Error";
|
|
539
|
+
aiChatForm__Footer: "aiChatForm__Footer";
|
|
540
|
+
aiChatForm__Cancel: "aiChatForm__Cancel";
|
|
541
|
+
aiChatForm__Submit: "aiChatForm__Submit";
|
|
542
|
+
aiChatForm__Success: "aiChatForm__Success";
|
|
543
|
+
aiChatForm__SuccessHeading: "aiChatForm__SuccessHeading";
|
|
544
|
+
aiChatForm__SuccessMessage: "aiChatForm__SuccessMessage";
|
|
545
|
+
aiChatForm__SuccessButton: "aiChatForm__SuccessButton";
|
|
546
|
+
aiChatLink: "aiChatLink";
|
|
547
|
+
codeblockContainer: "codeblockContainer";
|
|
548
|
+
codeblockHeader: "codeblockHeader";
|
|
549
|
+
codeblockHeaderLanguage: "codeblockHeaderLanguage";
|
|
550
|
+
codeblockCopyButton: "codeblockCopyButton";
|
|
551
|
+
codeblockHighlighterWrapper: "codeblockHighlighterWrapper";
|
|
552
|
+
codeblockHighlighter: "codeblockHighlighter";
|
|
553
|
+
codeblockCode: "codeblockCode";
|
|
554
|
+
markdownH1: "markdownH1";
|
|
555
|
+
markdownH2: "markdownH2";
|
|
556
|
+
markdownP: "markdownP";
|
|
557
|
+
markdownLi: "markdownLi";
|
|
558
|
+
markdownUl: "markdownUl";
|
|
559
|
+
markdownOl: "markdownOl";
|
|
560
|
+
markdownLink: "markdownLink";
|
|
561
|
+
markdownSourceLink: "markdownSourceLink";
|
|
562
|
+
markdownTable: "markdownTable";
|
|
563
|
+
markdownTh: "markdownTh";
|
|
564
|
+
markdownTd: "markdownTd";
|
|
565
|
+
markdownCode: "markdownCode";
|
|
566
|
+
markdownInput: "markdownInput";
|
|
567
|
+
markdownSup: "markdownSup";
|
|
568
|
+
markdownImg: "markdownImg";
|
|
569
|
+
markdownHr: "markdownHr";
|
|
570
|
+
};
|
|
571
|
+
export type ComponentID = keyof typeof componentIDs;
|
|
572
|
+
export type MarkdownComponentID = keyof typeof markDownComponentIds;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
type PossibleRef<T> = React.Ref<T | null> | undefined;
|
|
3
|
+
declare function composeRefs<T>(...refs: PossibleRef<T>[]): (node: T | null) => void;
|
|
4
|
+
declare function useComposedRefs<T>(...refs: any): React.RefCallback<T>;
|
|
5
|
+
export { composeRefs, useComposedRefs };
|