@inkeep/agents-ui 0.15.0 → 0.15.2
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 +185 -182
- package/dist/primitives/components/data-summaries.cjs +1 -0
- package/dist/primitives/components/data-summaries.d.ts +14 -0
- package/dist/primitives/components/data-summaries.js +38 -0
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.cjs +2 -2
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.js +80 -72
- package/dist/primitives/components/index.cjs +1 -1
- package/dist/primitives/components/index.d.ts +1 -0
- package/dist/primitives/components/index.js +19 -17
- package/dist/primitives/index.cjs +1 -1
- package/dist/primitives/index.js +145 -142
- package/dist/primitives/providers/base-events-provider.cjs +1 -1
- package/dist/primitives/providers/base-events-provider.js +1 -1
- package/dist/primitives/utils/component-ids.cjs +1 -1
- package/dist/primitives/utils/component-ids.d.ts +24 -0
- package/dist/primitives/utils/component-ids.js +21 -7
- package/dist/react/index.cjs +1 -1
- package/dist/react/index.js +185 -182
- package/dist/styled/components/data-summary-group.cjs +1 -1
- package/dist/styled/components/data-summary-group.js +61 -61
- package/dist/styled/components/message.cjs +1 -1
- package/dist/styled/components/message.js +33 -33
- package/dist/styled/index.cjs +1 -1
- package/dist/styled/index.js +149 -146
- package/package.json +1 -1
|
@@ -1,105 +1,113 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { useChat as
|
|
3
|
-
import { DefaultChatTransport as
|
|
4
|
-
import { useState as r, useEffect as
|
|
5
|
-
import { useInkeepConfig as
|
|
6
|
-
import { useMediaQuery as
|
|
7
|
-
import { generateUid as
|
|
8
|
-
import { useBaseEvents as
|
|
9
|
-
import { useChatForm as
|
|
10
|
-
import { useWidget as
|
|
11
|
-
import { useControllableState as
|
|
12
|
-
import { useStreamingEvents as
|
|
13
|
-
const
|
|
2
|
+
import { useChat as Z } from "@ai-sdk/react";
|
|
3
|
+
import { DefaultChatTransport as ee } from "ai";
|
|
4
|
+
import { useState as r, useEffect as k, useRef as te, useImperativeHandle as se } from "react";
|
|
5
|
+
import { useInkeepConfig as ne } from "../../providers/config-provider.js";
|
|
6
|
+
import { useMediaQuery as oe } from "../../hooks/use-media-query.js";
|
|
7
|
+
import { generateUid as D } from "../../utils/generate-uid.js";
|
|
8
|
+
import { useBaseEvents as re } from "../../providers/base-events-provider.js";
|
|
9
|
+
import { useChatForm as ae } from "../../providers/chat-form-provider.js";
|
|
10
|
+
import { useWidget as ie } from "../../providers/widget-provider.js";
|
|
11
|
+
import { useControllableState as ce } from "@radix-ui/react-use-controllable-state";
|
|
12
|
+
import { useStreamingEvents as me } from "../../hooks/use-streaming-events.js";
|
|
13
|
+
const le = `Hmm..
|
|
14
14
|
|
|
15
15
|
It seems I might be having some issues right now. Please clear the chat and try again.`, be = () => {
|
|
16
|
-
const { baseSettings: v, aiChatSettings: a } =
|
|
16
|
+
const { baseSettings: v, aiChatSettings: a } = ne(), [s = "", I] = ce({
|
|
17
17
|
prop: a.conversationId,
|
|
18
18
|
defaultProp: a.conversationId ?? ""
|
|
19
|
-
}), { logEvent: i } =
|
|
19
|
+
}), { logEvent: i } = re(), { setConversationId: N, emitToParent: m } = me(), [o, l] = r(""), A = (e) => l(e.target.value), {
|
|
20
20
|
/* shouldBypassCaptcha, */
|
|
21
21
|
filters: C
|
|
22
22
|
} = v, {
|
|
23
|
-
onInputMessageChange:
|
|
24
|
-
filters:
|
|
25
|
-
agentUrl:
|
|
26
|
-
context:
|
|
27
|
-
headers:
|
|
28
|
-
apiKey:
|
|
29
|
-
} = a,
|
|
23
|
+
onInputMessageChange: R,
|
|
24
|
+
filters: y,
|
|
25
|
+
agentUrl: B,
|
|
26
|
+
context: P,
|
|
27
|
+
headers: T,
|
|
28
|
+
apiKey: E
|
|
29
|
+
} = a, K = (e) => {
|
|
30
30
|
switch (e.code) {
|
|
31
31
|
case 400:
|
|
32
32
|
return e.message;
|
|
33
33
|
case 403:
|
|
34
34
|
return `There seems to be a configuration error. Please contact ${v.organizationDisplayName ?? "Administrator"}`;
|
|
35
35
|
default:
|
|
36
|
-
return
|
|
36
|
+
return le;
|
|
37
37
|
}
|
|
38
|
-
}, [
|
|
38
|
+
}, [U, W] = r({}), [$, u] = r([]), [z, b] = r(null), {
|
|
39
39
|
messages: p,
|
|
40
|
-
sendMessage:
|
|
40
|
+
sendMessage: H,
|
|
41
41
|
status: w,
|
|
42
42
|
setMessages: S,
|
|
43
|
-
stop:
|
|
43
|
+
stop: L,
|
|
44
44
|
error: g
|
|
45
|
-
} =
|
|
46
|
-
transport: new
|
|
47
|
-
api:
|
|
45
|
+
} = Z({
|
|
46
|
+
transport: new ee({
|
|
47
|
+
api: B,
|
|
48
48
|
headers: {
|
|
49
|
-
...
|
|
50
|
-
...
|
|
49
|
+
...E ? { Authorization: `Bearer ${E}` } : {},
|
|
50
|
+
...T
|
|
51
51
|
},
|
|
52
52
|
body: {
|
|
53
|
-
requestContext:
|
|
53
|
+
requestContext: P
|
|
54
54
|
}
|
|
55
55
|
}),
|
|
56
56
|
onData(e) {
|
|
57
57
|
m(e.type, e.data);
|
|
58
58
|
},
|
|
59
59
|
async onFinish() {
|
|
60
|
-
m("completion", { conversationId:
|
|
60
|
+
m("completion", { conversationId: s }), await i({
|
|
61
61
|
eventName: "assistant_message_received",
|
|
62
62
|
properties: {
|
|
63
|
-
conversationId:
|
|
63
|
+
conversationId: s
|
|
64
64
|
}
|
|
65
65
|
}), i({
|
|
66
66
|
eventName: "assistant_answer_displayed",
|
|
67
67
|
properties: {
|
|
68
|
-
conversationId:
|
|
68
|
+
conversationId: s
|
|
69
69
|
}
|
|
70
70
|
});
|
|
71
71
|
},
|
|
72
72
|
onError(e) {
|
|
73
73
|
console.log("onError", e.message), S((c) => {
|
|
74
|
-
const n = [...c],
|
|
75
|
-
|
|
74
|
+
const n = [...c], t = n[n.length - 1];
|
|
75
|
+
if (t) {
|
|
76
|
+
const F = K(e);
|
|
77
|
+
t.role === "user" ? n.push({
|
|
78
|
+
id: D(16),
|
|
79
|
+
role: "assistant",
|
|
80
|
+
parts: [{ type: "text", text: F }]
|
|
81
|
+
}) : t.parts = [{ type: "text", text: F }];
|
|
82
|
+
}
|
|
83
|
+
return n;
|
|
76
84
|
});
|
|
77
85
|
}
|
|
78
|
-
}), M = w === "submitted",
|
|
79
|
-
|
|
86
|
+
}), M = w === "submitted", O = w === "streaming", q = p.length === 0, d = !o.trim() || M, G = oe("(max-width: 768px)"), [J, h] = r(null);
|
|
87
|
+
k(() => {
|
|
80
88
|
g && h(g);
|
|
81
89
|
}, [g]);
|
|
82
|
-
const
|
|
83
|
-
|
|
84
|
-
|
|
90
|
+
const Q = () => h(null), _ = te(null);
|
|
91
|
+
k(() => {
|
|
92
|
+
R?.(o);
|
|
85
93
|
}, [o]);
|
|
86
|
-
const
|
|
94
|
+
const V = (e) => {
|
|
87
95
|
e.key === "Enter" && !e.shiftKey && !d && !e.nativeEvent.isComposing && (e.preventDefault(), f());
|
|
88
96
|
}, f = async (e = o) => {
|
|
89
97
|
if (d && (!e || e.trim().length === 0)) return;
|
|
90
|
-
|
|
98
|
+
u([]), l(""), await i({
|
|
91
99
|
eventName: "user_message_submitted",
|
|
92
100
|
properties: {
|
|
93
|
-
conversationId:
|
|
101
|
+
conversationId: s
|
|
94
102
|
}
|
|
95
103
|
});
|
|
96
|
-
const c = C ||
|
|
104
|
+
const c = C || y ? JSON.stringify({
|
|
97
105
|
...C,
|
|
98
|
-
...
|
|
106
|
+
...y
|
|
99
107
|
}) : void 0, n = {};
|
|
100
108
|
c && (n["inkeep-filters"] = c);
|
|
101
|
-
let
|
|
102
|
-
|
|
109
|
+
let t = s;
|
|
110
|
+
t || (t = `conv_${D(16)}`, I(t)), N(t), H(
|
|
103
111
|
// { ...userMessage, files },
|
|
104
112
|
// { ...userMessage, },
|
|
105
113
|
{
|
|
@@ -108,30 +116,30 @@ It seems I might be having some issues right now. Please clear the chat and try
|
|
|
108
116
|
{
|
|
109
117
|
headers: n,
|
|
110
118
|
body: {
|
|
111
|
-
conversationId:
|
|
119
|
+
conversationId: t
|
|
112
120
|
}
|
|
113
121
|
}
|
|
114
122
|
);
|
|
115
|
-
},
|
|
116
|
-
|
|
117
|
-
m("aborted", { conversationId:
|
|
123
|
+
}, j = () => {
|
|
124
|
+
L().then(() => {
|
|
125
|
+
m("aborted", { conversationId: s });
|
|
118
126
|
});
|
|
119
127
|
}, x = () => {
|
|
120
|
-
|
|
128
|
+
Q(), S([]), I(""), W({}), u([]), b(null), i({
|
|
121
129
|
eventName: "chat_clear_button_clicked",
|
|
122
130
|
properties: {
|
|
123
|
-
conversationId:
|
|
131
|
+
conversationId: s
|
|
124
132
|
}
|
|
125
133
|
});
|
|
126
|
-
}, { openForm:
|
|
127
|
-
return
|
|
134
|
+
}, { openForm: X } = ae(), Y = ie();
|
|
135
|
+
return se(a.chatFunctionsRef, () => ({
|
|
128
136
|
submitMessage: f,
|
|
129
137
|
updateInputMessage(e) {
|
|
130
|
-
|
|
138
|
+
l(e);
|
|
131
139
|
},
|
|
132
140
|
clearChat: x,
|
|
133
141
|
openForm: (e) => {
|
|
134
|
-
|
|
142
|
+
Y?.setView("chat"), X(e, void 0);
|
|
135
143
|
},
|
|
136
144
|
focusInput: () => {
|
|
137
145
|
_.current?.focus();
|
|
@@ -139,30 +147,30 @@ It seems I might be having some issues right now. Please clear the chat and try
|
|
|
139
147
|
})), {
|
|
140
148
|
messages: p,
|
|
141
149
|
isLoading: M,
|
|
142
|
-
isStreaming:
|
|
143
|
-
error:
|
|
150
|
+
isStreaming: O,
|
|
151
|
+
error: J,
|
|
144
152
|
setError: h,
|
|
145
153
|
isSubmitDisabled: d,
|
|
146
154
|
input: o,
|
|
147
|
-
handleInputChange:
|
|
148
|
-
handleInputKeyDown:
|
|
155
|
+
handleInputChange: A,
|
|
156
|
+
handleInputKeyDown: V,
|
|
149
157
|
handleSubmit: f,
|
|
150
|
-
stop:
|
|
158
|
+
stop: j,
|
|
151
159
|
clear: x,
|
|
152
|
-
messageButtons:
|
|
160
|
+
messageButtons: U,
|
|
153
161
|
isEmpty: p.length === 0,
|
|
154
162
|
inputRef: _,
|
|
155
|
-
isMobile:
|
|
163
|
+
isMobile: G,
|
|
156
164
|
// Additional state for attachments and workflow
|
|
157
|
-
messageAttachments:
|
|
158
|
-
setMessageAttachments:
|
|
159
|
-
selectedWorkflow:
|
|
160
|
-
setSelectedWorkflow:
|
|
161
|
-
isNewChat:
|
|
162
|
-
conversationId:
|
|
165
|
+
messageAttachments: $,
|
|
166
|
+
setMessageAttachments: u,
|
|
167
|
+
selectedWorkflow: z,
|
|
168
|
+
setSelectedWorkflow: b,
|
|
169
|
+
isNewChat: q,
|
|
170
|
+
conversationId: s
|
|
163
171
|
};
|
|
164
172
|
};
|
|
165
173
|
export {
|
|
166
|
-
|
|
174
|
+
le as DEFAULT_ERROR_MESSAGE,
|
|
167
175
|
be as useInkeepChat
|
|
168
176
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./factory.cjs"),
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./factory.cjs"),a=require("./embedded-chat.cjs"),o=require("./sidebar-chat/index.cjs"),i=require("./embedded-chat/chat-provider.cjs"),d=require("./embedded-search.cjs"),e=require("./embedded-search/search-provider.cjs"),c=require("./modal.cjs"),t=require("./modal/modal-provider.cjs"),u=require("./chat-button.cjs"),s=require("./searchbar.cjs"),h=require("./chat-bubble/index.cjs"),m=require("./data-summaries.cjs");exports.ikp=r.ikp;exports.jsxFactory=r.jsxFactory;exports.EmbeddedChatPrimitive=a;exports.SidebarChatPrimitive=o;exports.ChatProvider=i.ChatProvider;exports.useChat=i.useChat;exports.EmbeddedSearchPrimitive=d;exports.SearchProvider=e.SearchProvider;exports.SearchProviderImpl=e.SearchProviderImpl;exports.useSearch=e.useSearch;exports.ModalPrimitive=c;exports.ModalProvider=t.ModalProvider;exports.useModal=t.useModal;exports.ChatButtonPrimitive=u;exports.SearchBarPrimitive=s;exports.ChatBubblePrimitive=h;exports.DataSummaryPrimitive=m;
|
|
@@ -1,29 +1,31 @@
|
|
|
1
|
-
import { ikp as
|
|
1
|
+
import { ikp as h, jsxFactory as x } from "./factory.js";
|
|
2
2
|
import * as r from "./embedded-chat.js";
|
|
3
3
|
import * as e from "./sidebar-chat/index.js";
|
|
4
|
-
import { ChatProvider as
|
|
5
|
-
import * as
|
|
6
|
-
import { SearchProvider as
|
|
7
|
-
import * as
|
|
8
|
-
import { ModalProvider as l, useModal as
|
|
9
|
-
import * as
|
|
4
|
+
import { ChatProvider as v, useChat as P } from "./embedded-chat/chat-provider.js";
|
|
5
|
+
import * as a from "./embedded-search.js";
|
|
6
|
+
import { SearchProvider as S, SearchProviderImpl as b, useSearch as u } from "./embedded-search/search-provider.js";
|
|
7
|
+
import * as o from "./modal.js";
|
|
8
|
+
import { ModalProvider as l, useModal as n } from "./modal/modal-provider.js";
|
|
9
|
+
import * as t from "./chat-button.js";
|
|
10
10
|
import * as i from "./searchbar.js";
|
|
11
11
|
import * as m from "./chat-bubble/index.js";
|
|
12
|
+
import * as d from "./data-summaries.js";
|
|
12
13
|
export {
|
|
13
14
|
m as ChatBubblePrimitive,
|
|
14
|
-
|
|
15
|
-
|
|
15
|
+
t as ChatButtonPrimitive,
|
|
16
|
+
v as ChatProvider,
|
|
17
|
+
d as DataSummaryPrimitive,
|
|
16
18
|
r as EmbeddedChatPrimitive,
|
|
17
|
-
|
|
18
|
-
|
|
19
|
+
a as EmbeddedSearchPrimitive,
|
|
20
|
+
o as ModalPrimitive,
|
|
19
21
|
l as ModalProvider,
|
|
20
22
|
i as SearchBarPrimitive,
|
|
21
|
-
|
|
23
|
+
S as SearchProvider,
|
|
22
24
|
b as SearchProviderImpl,
|
|
23
25
|
e as SidebarChatPrimitive,
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
h as ikp,
|
|
27
|
+
x as jsxFactory,
|
|
28
|
+
P as useChat,
|
|
29
|
+
n as useModal,
|
|
30
|
+
u as useSearch
|
|
29
31
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const c=require("./providers/attachment-item-provider.cjs"),C=require("./providers/attachments-bar-provider.cjs"),l=require("./providers/base-events-provider.cjs"),n=require("./providers/chat-form-provider.cjs"),i=require("./providers/config-provider.cjs"),h=require("./providers/feedback-item-provider.cjs"),p=require("./providers/feedback-provider.cjs"),v=require("./providers/form-field-provider.cjs"),d=require("./providers/help-menu-provider.cjs"),P=require("./providers/markdown-provider.cjs"),I=require("./providers/message-attachments-provider.cjs"),u=require("./providers/message-provider.cjs"),k=require("./providers/root-provider.cjs"),
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const c=require("./providers/attachment-item-provider.cjs"),C=require("./providers/attachments-bar-provider.cjs"),l=require("./providers/base-events-provider.cjs"),n=require("./providers/chat-form-provider.cjs"),i=require("./providers/config-provider.cjs"),h=require("./providers/feedback-item-provider.cjs"),p=require("./providers/feedback-provider.cjs"),v=require("./providers/form-field-provider.cjs"),d=require("./providers/help-menu-provider.cjs"),P=require("./providers/markdown-provider.cjs"),I=require("./providers/message-attachments-provider.cjs"),u=require("./providers/message-provider.cjs"),k=require("./providers/root-provider.cjs"),S=require("./providers/source-item-provider.cjs"),F=require("./providers/theme-provider.cjs"),b=require("./providers/widget-provider.cjs"),t=require("./providers/sidebar-chat-provider.cjs"),s=require("./providers/chat-bubble-provider.cjs"),q=require("./components/factory.cjs"),y=require("./components/embedded-chat.cjs"),A=require("./components/sidebar-chat/index.cjs"),g=require("./components/embedded-chat/chat-provider.cjs"),f=require("./components/embedded-search.cjs"),m=require("./components/embedded-search/search-provider.cjs"),R=require("./components/modal.cjs"),M=require("./components/modal/modal-provider.cjs"),w=require("./components/chat-button.cjs"),O=require("./components/searchbar.cjs"),E=require("./components/chat-bubble/index.cjs"),T=require("./components/data-summaries.cjs"),W=require("./hooks/use-boolean.cjs"),D=require("./hooks/use-component-classnames.cjs"),x=require("./hooks/use-container-size.cjs"),z=require("./hooks/use-inkeep-open-state.cjs"),H=require("./hooks/use-copy-to-clipboard.cjs"),L=require("./hooks/use-instant-update.cjs"),j=require("./hooks/use-is-mounted.cjs"),Q=require("./hooks/use-media-query.cjs"),U=require("./hooks/use-resize-observer.cjs"),K=require("./hooks/use-scrolling-fades.cjs"),N=require("./hooks/use-settle-action.cjs"),$=require("./hooks/use-simple-scroll.cjs"),o=require("./utils/misc.cjs"),r=require("./utils/component-ids.cjs"),B=require("./utils/compose-refs.cjs"),G=require("./utils/merge-props.cjs"),J=require("./atoms/portal.cjs"),V=require("./atoms/icons/custom-icon.cjs"),X=require("./atoms/icons/built-in-icon-renderer.cjs"),Y=require("./atoms/portal-with-theme.cjs"),e=require("./atoms/cmdk/index.cjs"),Z=require("./atoms/error-boundary.cjs"),a=require("./atoms/shadow/context.cjs");exports.AttachmentItemProvider=c.AttachmentItemProvider;exports.useAttachmentItem=c.useAttachmentItem;exports.AttachmentsBarProvider=C.AttachmentsBarProvider;exports.useAttachmentsBar=C.useAttachmentsBar;exports.BaseEventsProvider=l.BaseEventsProvider;exports.useBaseEvents=l.useBaseEvents;exports.ChatFormProvider=n.ChatFormProvider;exports.useChatForm=n.useChatForm;exports.useChatFormState=n.useChatFormState;exports.InkeepConfigProvider=i.InkeepConfigProvider;exports.WebWidgetInteractionType=i.WebWidgetInteractionType;exports.useInkeepConfig=i.useInkeepConfig;exports.FeedbackItemProvider=h.FeedbackItemProvider;exports.useFeedbackItem=h.useFeedbackItem;exports.FeedbackProvider=p.FeedbackProvider;exports.useMessageFeedback=p.useMessageFeedback;exports.FormFieldProvider=v.FormFieldProvider;exports.useFormField=v.useFormField;exports.HelpMenuProvider=d.HelpMenuProvider;exports.useHelpMenu=d.useHelpMenu;exports.useHelpMenuState=d.useHelpMenuState;exports.ChatMarkdownProvider=P.ChatMarkdownProvider;exports.useChatMarkdown=P.useChatMarkdown;exports.MessageAttachmentsProvider=I.MessageAttachmentsProvider;exports.useMessageAttachments=I.useMessageAttachments;exports.MessageProvider=u.MessageProvider;exports.useMessage=u.useMessage;exports.useOptionalMessage=u.useOptionalMessage;exports.RootProvider=k.RootProvider;exports.SourceItemProvider=S.SourceItemProvider;exports.useSourceItem=S.useSourceItem;exports.ThemeProvider=F.ThemeProvider;exports.WidgetProvider=b.WidgetProvider;exports.useWidget=b.useWidget;exports.SidebarChatProvider=t.SidebarChatProvider;exports.useInkeepSidebarChat=t.useInkeepSidebarChat;exports.useOptionalSidebarChat=t.useOptionalSidebarChat;exports.useSidebarChat=t.useSidebarChat;exports.ChatBubbleProvider=s.ChatBubbleProvider;exports.useChatBubble=s.useChatBubble;exports.useInkeepChatBubble=s.useInkeepChatBubble;exports.useOptionalChatBubble=s.useOptionalChatBubble;exports.ikp=q.ikp;exports.jsxFactory=q.jsxFactory;exports.EmbeddedChatPrimitive=y;exports.SidebarChatPrimitive=A;exports.ChatProvider=g.ChatProvider;exports.useChat=g.useChat;exports.EmbeddedSearchPrimitive=f;exports.SearchProvider=m.SearchProvider;exports.SearchProviderImpl=m.SearchProviderImpl;exports.useSearch=m.useSearch;exports.ModalPrimitive=R;exports.ModalProvider=M.ModalProvider;exports.useModal=M.useModal;exports.ChatButtonPrimitive=w;exports.SearchBarPrimitive=O;exports.ChatBubblePrimitive=E;exports.DataSummaryPrimitive=T;exports.useBoolean=W.useBoolean;exports.useComponentClassNames=D.useComponentClassNames;exports.useContainerSize=x.useContainerSize;exports.useInkeepOpenState=z.useInkeepOpenState;exports.useCopyToClipboard=H.useCopyToClipboard;exports.useInstantUpdate=L.useInstantUpdate;exports.useIsMounted=j.useIsMounted;exports.useMediaQuery=Q.useMediaQuery;exports.useResizeObserver=U.useResizeObserver;exports.useScrollingFades=K.useScrollingFades;exports.useSettleAction=N.useSettleAction;exports.useSimpleScroll=$.useSimpleScroll;exports.callAll=o.callAll;exports.dataAttr=o.dataAttr;exports.getInitials=o.getInitials;exports.getMessageContent=o.getMessageContent;exports.isString=o.isString;exports.maybeRender=o.maybeRender;exports.toKebabCase=o.toKebabCase;exports.ChatBubbleComponentIds=r.ChatBubbleComponentIds;exports.DataSummaryComponentIds=r.DataSummaryComponentIds;exports.SearchBarComponentIds=r.SearchBarComponentIds;exports.SidebarChatComponentIds=r.SidebarChatComponentIds;exports.aiChatComponentIds=r.aiChatComponentIds;exports.aiSearchComponentIds=r.aiSearchComponentIds;exports.chatButtonComponentIds=r.chatButtonComponentIds;exports.componentIDs=r.componentIDs;exports.markDownComponentIds=r.markDownComponentIds;exports.miscellanousComponentIds=r.miscellanousComponentIds;exports.modalComponentIds=r.modalComponentIds;exports.composeRefs=B.composeRefs;exports.useComposedRefs=B.useComposedRefs;exports.mergeProps=G.mergeProps;exports.Portal=J.Portal;exports.CustomIcon=V.CustomIcon;exports.BuiltInIconRenderer=X.BuiltInIconRenderer;exports.PortalWithTheme=Y.PortalWithTheme;exports.Command=e.Command;exports.CommandDialog=e.CommandDialog;exports.CommandEmpty=e.CommandEmpty;exports.CommandInput=e.CommandInput;exports.CommandItem=e.CommandItem;exports.CommandList=e.CommandList;exports.CommandLoading=e.CommandLoading;exports.CommandRoot=e.CommandRoot;exports.CommandSeparator=e.CommandSeparator;exports.defaultFilter=e.defaultFilter;exports.useCommandState=e.useCommandState;exports.useCommandStore=e.useCommandStore;exports.ErrorBoundary=Z.ErrorBoundary;exports.InkeepShadow=a.InkeepShadow;exports.InkeepShadowProvider=a.InkeepShadowProvider;exports.ShadowContext=a.ShadowContext;exports.useShadow=a.useShadow;
|