@inkeep/agents-ui 0.15.12 → 0.15.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.js +230 -220
- package/dist/primitives/atoms/combobox.cjs +1 -0
- package/dist/primitives/atoms/combobox.js +275 -0
- package/dist/primitives/atoms/icons/built-in-icons.cjs +1 -1
- package/dist/primitives/atoms/icons/built-in-icons.d.ts +2 -0
- package/dist/primitives/atoms/icons/built-in-icons.js +33 -31
- package/dist/primitives/atoms/icons/inkeep-default-icons.cjs +1 -1
- package/dist/primitives/atoms/icons/inkeep-default-icons.js +4 -1
- package/dist/primitives/components/chat-history/index.cjs +1 -0
- package/dist/primitives/components/chat-history/index.d.ts +27 -0
- package/dist/primitives/components/chat-history/index.js +105 -0
- package/dist/primitives/components/embedded-chat/use-captcha.cjs +1 -0
- package/dist/primitives/components/embedded-chat/use-captcha.d.ts +23 -6
- package/dist/primitives/components/embedded-chat/use-captcha.js +67 -0
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.cjs +2 -2
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.d.ts +12 -3
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.js +252 -144
- package/dist/primitives/components/embedded-chat/use-stream-processor.cjs +1 -1
- package/dist/primitives/components/embedded-chat/use-stream-processor.d.ts +2 -0
- package/dist/primitives/components/embedded-chat/use-stream-processor.js +127 -90
- package/dist/primitives/components/embedded-chat.cjs +4 -4
- package/dist/primitives/components/embedded-chat.d.ts +26 -2
- package/dist/primitives/components/embedded-chat.js +1304 -1149
- package/dist/primitives/components/index.cjs +1 -1
- package/dist/primitives/components/index.d.ts +1 -0
- package/dist/primitives/components/index.js +20 -18
- package/dist/primitives/hooks/use-anonymous-session.cjs +1 -0
- package/dist/primitives/hooks/use-anonymous-session.d.ts +12 -0
- package/dist/primitives/hooks/use-anonymous-session.js +57 -0
- package/dist/primitives/hooks/use-conversation-loader.cjs +1 -0
- package/dist/primitives/hooks/use-conversation-loader.d.ts +13 -0
- package/dist/primitives/hooks/use-conversation-loader.js +36 -0
- package/dist/primitives/hooks/use-inkeep-api-client.cjs +1 -0
- package/dist/primitives/hooks/use-inkeep-api-client.d.ts +33 -0
- package/dist/primitives/hooks/use-inkeep-api-client.js +87 -0
- package/dist/primitives/hooks/use-local-storage.cjs +1 -0
- package/dist/primitives/hooks/use-local-storage.d.ts +8 -0
- package/dist/primitives/hooks/use-local-storage.js +26 -0
- package/dist/primitives/hooks/use-simple-scroll.cjs +1 -1
- package/dist/primitives/hooks/use-simple-scroll.d.ts +12 -1
- package/dist/primitives/hooks/use-simple-scroll.js +45 -12
- package/dist/primitives/index.cjs +1 -1
- package/dist/primitives/index.js +157 -151
- package/dist/primitives/providers/base-events-provider.cjs +1 -1
- package/dist/primitives/providers/base-events-provider.js +1 -1
- package/dist/primitives/providers/chat-history-provider.cjs +1 -0
- package/dist/primitives/providers/chat-history-provider.d.ts +32 -0
- package/dist/primitives/providers/chat-history-provider.js +105 -0
- package/dist/primitives/providers/index.cjs +1 -1
- package/dist/primitives/providers/index.d.ts +1 -0
- package/dist/primitives/providers/index.js +55 -52
- package/dist/primitives/utils/component-ids.cjs +1 -1
- package/dist/primitives/utils/component-ids.d.ts +56 -0
- package/dist/primitives/utils/component-ids.js +31 -1
- package/dist/primitives/utils/default-settings.cjs +1 -1
- package/dist/primitives/utils/default-settings.d.ts +2 -0
- package/dist/primitives/utils/default-settings.js +6 -4
- package/dist/primitives/utils/form.cjs +1 -1
- package/dist/primitives/utils/form.d.ts +1 -1
- package/dist/primitives/utils/form.js +3 -1
- package/dist/react/chat-button-modal.cjs +1 -0
- package/dist/react/chat-button-modal.d.ts +22 -0
- package/dist/react/chat-button-modal.js +41 -0
- package/dist/react/chat-button.cjs +1 -1
- package/dist/react/chat-button.js +42 -38
- package/dist/react/embedded-chat.cjs +1 -1
- package/dist/react/embedded-chat.js +285 -240
- package/dist/react/index.cjs +1 -1
- package/dist/react/index.d.ts +1 -0
- package/dist/react/index.js +230 -220
- package/dist/react/sidebar-chat.cjs +1 -1
- package/dist/react/sidebar-chat.js +26 -22
- package/dist/styled/components/chat-bubble.cjs +1 -1
- package/dist/styled/components/chat-bubble.js +1 -1
- package/dist/styled/components/chat-history.cjs +1 -0
- package/dist/styled/components/chat-history.d.ts +15 -0
- package/dist/styled/components/chat-history.js +197 -0
- package/dist/styled/components/data-summary-group.cjs +1 -1
- package/dist/styled/components/data-summary-group.js +24 -24
- package/dist/styled/components/embedded-chat/session-loading.cjs +1 -0
- package/dist/styled/components/embedded-chat/session-loading.d.ts +1 -0
- package/dist/styled/components/embedded-chat/session-loading.js +26 -0
- package/dist/styled/components/embedded-chat.cjs +1 -1
- package/dist/styled/components/embedded-chat.d.ts +22 -1
- package/dist/styled/components/embedded-chat.js +735 -565
- package/dist/styled/components/embedded-search.cjs +1 -1
- package/dist/styled/components/embedded-search.js +1 -1
- package/dist/styled/components/index.cjs +1 -1
- package/dist/styled/components/index.d.ts +1 -0
- package/dist/styled/components/index.js +22 -20
- package/dist/styled/components/message.cjs +1 -1
- package/dist/styled/components/message.js +191 -183
- package/dist/styled/components/sidebar-chat.cjs +1 -1
- package/dist/styled/components/sidebar-chat.js +1 -1
- package/dist/styled/components/ui/recipes/ai-chat-page-wrapper.cjs +1 -1
- package/dist/styled/components/ui/recipes/ai-chat-page-wrapper.js +3 -2
- package/dist/styled/components/ui/recipes/combobox.cjs +1 -0
- package/dist/styled/components/ui/recipes/combobox.d.ts +4 -0
- package/dist/styled/components/ui/recipes/combobox.js +57 -0
- package/dist/styled/components/ui/recipes/index.cjs +1 -1
- package/dist/styled/components/ui/recipes/index.d.ts +1 -0
- package/dist/styled/components/ui/recipes/index.js +29 -27
- package/dist/styled/components/ui/recipes/modal.d.ts +1 -1
- package/dist/styled/components/ui/recipes/scrollable.d.ts +1 -1
- package/dist/styled/components/ui/recipes/select.d.ts +1 -1
- package/dist/styled/index.cjs +1 -1
- package/dist/styled/index.js +193 -185
- package/dist/styled/inkeep.css.cjs +328 -6
- package/dist/styled/inkeep.css.js +328 -6
- package/dist/types/config/ai.d.ts +17 -1
- package/dist/types/config/base.d.ts +21 -0
- package/dist/types/config/settings/form.d.ts +9 -1
- package/dist/types/icons/built-in.d.ts +1 -1
- package/dist/types/icons/custom.d.ts +3 -0
- package/package.json +6 -5
package/dist/styled/index.js
CHANGED
|
@@ -1,192 +1,200 @@
|
|
|
1
1
|
import * as e from "./components/embedded-chat.js";
|
|
2
|
-
import * as o from "./components/
|
|
3
|
-
import * as r from "./components/chat
|
|
4
|
-
import * as t from "./components/
|
|
5
|
-
import * as a from "./components/
|
|
6
|
-
import * as m from "./components/
|
|
7
|
-
import * as s from "./components/
|
|
8
|
-
import
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
2
|
+
import * as o from "./components/chat-history.js";
|
|
3
|
+
import * as r from "./components/sidebar-chat.js";
|
|
4
|
+
import * as t from "./components/chat-bubble.js";
|
|
5
|
+
import * as a from "./components/embedded-search.js";
|
|
6
|
+
import * as m from "./components/modal.js";
|
|
7
|
+
import * as s from "./components/chat-button.js";
|
|
8
|
+
import * as p from "./components/searchbar.js";
|
|
9
|
+
import { Shadow as S } from "./components/shadow.js";
|
|
10
|
+
import { LoadingIndicator as v } from "./components/loading-indicator.js";
|
|
11
|
+
import { widgetToggle as g } from "./components/ui/recipes/widget-toggle.js";
|
|
12
|
+
import { EmbeddedChatMessagePart as M } from "./components/message.js";
|
|
13
|
+
import { DataSummaryGroup as k } from "./components/data-summary-group.js";
|
|
14
|
+
import { AttachmentItemProvider as w, useAttachmentItem as A } from "../primitives/providers/attachment-item-provider.js";
|
|
15
|
+
import { AttachmentsBarProvider as H, useAttachmentsBar as R } from "../primitives/providers/attachments-bar-provider.js";
|
|
16
|
+
import { BaseEventsProvider as D, useBaseEvents as O } from "../primitives/providers/base-events-provider.js";
|
|
17
|
+
import { ChatFormProvider as W, useChatForm as L, useChatFormState as z } from "../primitives/providers/chat-form-provider.js";
|
|
18
|
+
import { ChatHistoryProvider as G, useChatHistory as K } from "../primitives/providers/chat-history-provider.js";
|
|
19
|
+
import { InkeepConfigProvider as Q, WebWidgetInteractionType as U, useInkeepConfig as q } from "../primitives/providers/config-provider.js";
|
|
20
|
+
import { FeedbackItemProvider as V, useFeedbackItem as X } from "../primitives/providers/feedback-item-provider.js";
|
|
21
|
+
import { FeedbackProvider as Z, useMessageFeedback as _ } from "../primitives/providers/feedback-provider.js";
|
|
22
|
+
import { FormFieldProvider as oe, useFormField as re } from "../primitives/providers/form-field-provider.js";
|
|
23
|
+
import { HelpMenuProvider as ae, useHelpMenu as me, useHelpMenuState as se } from "../primitives/providers/help-menu-provider.js";
|
|
24
|
+
import { ChatMarkdownProvider as de, useChatMarkdown as ie } from "../primitives/providers/markdown-provider.js";
|
|
25
|
+
import { MessageAttachmentsProvider as ue, useMessageAttachments as fe } from "../primitives/providers/message-attachments-provider.js";
|
|
26
|
+
import { MessageProvider as Ce, useMessage as he, useOptionalMessage as le } from "../primitives/providers/message-provider.js";
|
|
27
|
+
import { RootProvider as ce } from "../primitives/providers/root-provider.js";
|
|
28
|
+
import { SourceItemProvider as Pe, useSourceItem as ve } from "../primitives/providers/source-item-provider.js";
|
|
29
|
+
import { ThemeProvider as ge } from "../primitives/providers/theme-provider.js";
|
|
30
|
+
import { WidgetProvider as Me, useWidget as ye } from "../primitives/providers/widget-provider.js";
|
|
31
|
+
import { SidebarChatProvider as Fe, useInkeepSidebarChat as we, useOptionalSidebarChat as Ae, useSidebarChat as Ee } from "../primitives/providers/sidebar-chat-provider.js";
|
|
32
|
+
import { ChatBubbleProvider as Re, useChatBubble as $e, useInkeepChatBubble as De, useOptionalChatBubble as Oe } from "../primitives/providers/chat-bubble-provider.js";
|
|
33
|
+
import { ikp as We, jsxFactory as Le } from "../primitives/components/factory.js";
|
|
32
34
|
import * as d from "../primitives/components/embedded-chat.js";
|
|
33
|
-
import * as
|
|
34
|
-
import { ChatProvider as
|
|
35
|
-
import * as
|
|
36
|
-
import { SearchProvider as
|
|
37
|
-
import * as
|
|
38
|
-
import { ModalProvider as
|
|
39
|
-
import * as
|
|
40
|
-
import * as
|
|
41
|
-
import * as
|
|
42
|
-
import * as
|
|
43
|
-
import
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
35
|
+
import * as i from "../primitives/components/sidebar-chat/index.js";
|
|
36
|
+
import { ChatProvider as je, useChat as Ge } from "../primitives/components/embedded-chat/chat-provider.js";
|
|
37
|
+
import * as n from "../primitives/components/embedded-search.js";
|
|
38
|
+
import { SearchProvider as Ne, SearchProviderImpl as Qe, useSearch as Ue } from "../primitives/components/embedded-search/search-provider.js";
|
|
39
|
+
import * as u from "../primitives/components/modal.js";
|
|
40
|
+
import { ModalProvider as Je, useModal as Ve } from "../primitives/components/modal/modal-provider.js";
|
|
41
|
+
import * as f from "../primitives/components/chat-button.js";
|
|
42
|
+
import * as x from "../primitives/components/searchbar.js";
|
|
43
|
+
import * as C from "../primitives/components/chat-bubble/index.js";
|
|
44
|
+
import * as h from "../primitives/components/data-summaries.js";
|
|
45
|
+
import * as l from "../primitives/components/chat-history/index.js";
|
|
46
|
+
import { useBoolean as Ye } from "../primitives/hooks/use-boolean.js";
|
|
47
|
+
import { useComponentClassNames as _e } from "../primitives/hooks/use-component-classnames.js";
|
|
48
|
+
import { useContainerSize as oo } from "../primitives/hooks/use-container-size.js";
|
|
49
|
+
import { useInkeepOpenState as to } from "../primitives/hooks/use-inkeep-open-state.js";
|
|
50
|
+
import { useCopyToClipboard as mo } from "../primitives/hooks/use-copy-to-clipboard.js";
|
|
51
|
+
import { useInstantUpdate as po } from "../primitives/hooks/use-instant-update.js";
|
|
52
|
+
import { useIsMounted as no } from "../primitives/hooks/use-is-mounted.js";
|
|
53
|
+
import { useMediaQuery as fo } from "../primitives/hooks/use-media-query.js";
|
|
54
|
+
import { useResizeObserver as Co } from "../primitives/hooks/use-resize-observer.js";
|
|
55
|
+
import { useScrollingFades as lo } from "../primitives/hooks/use-scrolling-fades.js";
|
|
56
|
+
import { useSettleAction as co } from "../primitives/hooks/use-settle-action.js";
|
|
57
|
+
import { useSimpleScroll as Po } from "../primitives/hooks/use-simple-scroll.js";
|
|
58
|
+
import { callAll as Io, dataAttr as go, getInitials as Bo, getMessageContent as Mo, isString as yo, maybeRender as ko, toKebabCase as Fo } from "../primitives/utils/misc.js";
|
|
59
|
+
import { ChatBubbleComponentIds as Ao, DataSummaryComponentIds as Eo, SearchBarComponentIds as Ho, SidebarChatComponentIds as Ro, aiChatComponentIds as $o, aiChatHistoryComponentIds as Do, aiSearchComponentIds as Oo, chatButtonComponentIds as To, componentIDs as Wo, markDownComponentIds as Lo, miscellanousComponentIds as zo, modalComponentIds as jo } from "../primitives/utils/component-ids.js";
|
|
60
|
+
import { composeRefs as Ko, useComposedRefs as No } from "../primitives/utils/compose-refs.js";
|
|
61
|
+
import { mergeProps as Uo } from "../primitives/utils/merge-props.js";
|
|
62
|
+
import { Portal as Jo } from "../primitives/atoms/portal.js";
|
|
63
|
+
import { CustomIcon as Xo } from "../primitives/atoms/icons/custom-icon.js";
|
|
64
|
+
import { BuiltInIconRenderer as Zo } from "../primitives/atoms/icons/built-in-icon-renderer.js";
|
|
65
|
+
import { PortalWithTheme as er } from "../primitives/atoms/portal-with-theme.js";
|
|
66
|
+
import { Command as rr, CommandDialog as tr, CommandEmpty as ar, CommandInput as mr, CommandItem as sr, CommandList as pr, CommandLoading as dr, CommandRoot as ir, CommandSeparator as nr, defaultFilter as ur, useCommandState as fr, useCommandStore as xr } from "../primitives/atoms/cmdk/index.js";
|
|
67
|
+
import { ErrorBoundary as hr } from "../primitives/atoms/error-boundary.js";
|
|
68
|
+
import { InkeepShadow as br, InkeepShadowProvider as cr, ShadowContext as Sr, useShadow as Pr } from "../primitives/atoms/shadow/context.js";
|
|
66
69
|
export {
|
|
67
|
-
|
|
68
|
-
|
|
70
|
+
w as AttachmentItemProvider,
|
|
71
|
+
H as AttachmentsBarProvider,
|
|
69
72
|
D as BaseEventsProvider,
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
73
|
+
Zo as BuiltInIconRenderer,
|
|
74
|
+
t as ChatBubble,
|
|
75
|
+
Ao as ChatBubbleComponentIds,
|
|
76
|
+
C as ChatBubblePrimitive,
|
|
77
|
+
Re as ChatBubbleProvider,
|
|
78
|
+
s as ChatButton,
|
|
79
|
+
f as ChatButtonPrimitive,
|
|
80
|
+
W as ChatFormProvider,
|
|
81
|
+
o as ChatHistory,
|
|
82
|
+
l as ChatHistoryPrimitive,
|
|
83
|
+
G as ChatHistoryProvider,
|
|
84
|
+
de as ChatMarkdownProvider,
|
|
85
|
+
je as ChatProvider,
|
|
86
|
+
rr as Command,
|
|
87
|
+
tr as CommandDialog,
|
|
88
|
+
ar as CommandEmpty,
|
|
89
|
+
mr as CommandInput,
|
|
90
|
+
sr as CommandItem,
|
|
91
|
+
pr as CommandList,
|
|
92
|
+
dr as CommandLoading,
|
|
93
|
+
ir as CommandRoot,
|
|
94
|
+
nr as CommandSeparator,
|
|
95
|
+
Xo as CustomIcon,
|
|
96
|
+
Eo as DataSummaryComponentIds,
|
|
97
|
+
k as DataSummaryGroup,
|
|
98
|
+
h as DataSummaryPrimitive,
|
|
93
99
|
e as EmbeddedChat,
|
|
94
|
-
|
|
100
|
+
M as EmbeddedChatMessagePart,
|
|
95
101
|
d as EmbeddedChatPrimitive,
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
Wo as
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
102
|
+
a as EmbeddedSearch,
|
|
103
|
+
n as EmbeddedSearchPrimitive,
|
|
104
|
+
hr as ErrorBoundary,
|
|
105
|
+
V as FeedbackItemProvider,
|
|
106
|
+
Z as FeedbackProvider,
|
|
107
|
+
oe as FormFieldProvider,
|
|
108
|
+
ae as HelpMenuProvider,
|
|
109
|
+
Q as InkeepConfigProvider,
|
|
110
|
+
br as InkeepShadow,
|
|
111
|
+
cr as InkeepShadowProvider,
|
|
112
|
+
v as LoadingIndicator,
|
|
113
|
+
ue as MessageAttachmentsProvider,
|
|
114
|
+
Ce as MessageProvider,
|
|
115
|
+
m as Modal,
|
|
116
|
+
u as ModalPrimitive,
|
|
117
|
+
Je as ModalProvider,
|
|
118
|
+
Jo as Portal,
|
|
119
|
+
er as PortalWithTheme,
|
|
120
|
+
ce as RootProvider,
|
|
121
|
+
p as SearchBar,
|
|
122
|
+
Ho as SearchBarComponentIds,
|
|
123
|
+
x as SearchBarPrimitive,
|
|
124
|
+
Ne as SearchProvider,
|
|
125
|
+
Qe as SearchProviderImpl,
|
|
126
|
+
S as Shadow,
|
|
127
|
+
Sr as ShadowContext,
|
|
128
|
+
r as SidebarChat,
|
|
129
|
+
Ro as SidebarChatComponentIds,
|
|
130
|
+
i as SidebarChatPrimitive,
|
|
131
|
+
Fe as SidebarChatProvider,
|
|
132
|
+
Pe as SourceItemProvider,
|
|
133
|
+
ge as ThemeProvider,
|
|
134
|
+
U as WebWidgetInteractionType,
|
|
135
|
+
Me as WidgetProvider,
|
|
136
|
+
$o as aiChatComponentIds,
|
|
137
|
+
Do as aiChatHistoryComponentIds,
|
|
138
|
+
Oo as aiSearchComponentIds,
|
|
139
|
+
Io as callAll,
|
|
140
|
+
To as chatButtonComponentIds,
|
|
141
|
+
Wo as componentIDs,
|
|
142
|
+
Ko as composeRefs,
|
|
143
|
+
go as dataAttr,
|
|
144
|
+
ur as defaultFilter,
|
|
145
|
+
Bo as getInitials,
|
|
146
|
+
Mo as getMessageContent,
|
|
147
|
+
We as ikp,
|
|
148
|
+
yo as isString,
|
|
149
|
+
Le as jsxFactory,
|
|
150
|
+
Lo as markDownComponentIds,
|
|
151
|
+
ko as maybeRender,
|
|
152
|
+
Uo as mergeProps,
|
|
153
|
+
zo as miscellanousComponentIds,
|
|
154
|
+
jo as modalComponentIds,
|
|
155
|
+
Fo as toKebabCase,
|
|
156
|
+
A as useAttachmentItem,
|
|
157
|
+
R as useAttachmentsBar,
|
|
158
|
+
O as useBaseEvents,
|
|
159
|
+
Ye as useBoolean,
|
|
160
|
+
Ge as useChat,
|
|
161
|
+
$e as useChatBubble,
|
|
162
|
+
L as useChatForm,
|
|
163
|
+
z as useChatFormState,
|
|
164
|
+
K as useChatHistory,
|
|
165
|
+
ie as useChatMarkdown,
|
|
166
|
+
fr as useCommandState,
|
|
167
|
+
xr as useCommandStore,
|
|
168
|
+
_e as useComponentClassNames,
|
|
169
|
+
No as useComposedRefs,
|
|
170
|
+
oo as useContainerSize,
|
|
171
|
+
mo as useCopyToClipboard,
|
|
172
|
+
X as useFeedbackItem,
|
|
173
|
+
re as useFormField,
|
|
174
|
+
me as useHelpMenu,
|
|
175
|
+
se as useHelpMenuState,
|
|
176
|
+
De as useInkeepChatBubble,
|
|
177
|
+
q as useInkeepConfig,
|
|
178
|
+
to as useInkeepOpenState,
|
|
179
|
+
we as useInkeepSidebarChat,
|
|
180
|
+
po as useInstantUpdate,
|
|
181
|
+
no as useIsMounted,
|
|
182
|
+
fo as useMediaQuery,
|
|
183
|
+
he as useMessage,
|
|
184
|
+
fe as useMessageAttachments,
|
|
185
|
+
_ as useMessageFeedback,
|
|
186
|
+
Ve as useModal,
|
|
187
|
+
Oe as useOptionalChatBubble,
|
|
188
|
+
le as useOptionalMessage,
|
|
189
|
+
Ae as useOptionalSidebarChat,
|
|
190
|
+
Co as useResizeObserver,
|
|
191
|
+
lo as useScrollingFades,
|
|
192
|
+
Ue as useSearch,
|
|
193
|
+
co as useSettleAction,
|
|
194
|
+
Pr as useShadow,
|
|
195
|
+
Ee as useSidebarChat,
|
|
196
|
+
Po as useSimpleScroll,
|
|
197
|
+
ve as useSourceItem,
|
|
198
|
+
ye as useWidget,
|
|
199
|
+
g as widgetToggle
|
|
192
200
|
};
|