@inkeep/agents-ui 0.14.19 → 0.14.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/color-mode/index.d.ts +21 -0
- package/dist/index.d.ts +1 -5103
- package/dist/primitives/atoms/avatars/ai.d.ts +3 -0
- package/dist/primitives/atoms/avatars/user.d.ts +3 -0
- package/dist/primitives/atoms/cmdk/command-score.d.ts +1 -0
- package/dist/primitives/atoms/cmdk/index.d.ts +460 -0
- package/dist/primitives/atoms/codeblock/index.d.ts +10 -0
- package/dist/primitives/atoms/custom-styles.d.ts +5 -0
- package/dist/primitives/atoms/dialog.d.ts +94 -0
- package/dist/primitives/atoms/error-boundary.d.ts +6 -0
- package/dist/primitives/atoms/icons/built-in-icon-renderer.d.ts +6 -0
- package/dist/primitives/atoms/icons/built-in-icons.d.ts +83 -0
- package/dist/primitives/atoms/icons/checkbox-icon.d.ts +1 -0
- package/dist/primitives/atoms/icons/collections/bi.d.ts +4 -0
- package/dist/primitives/atoms/icons/collections/fi.d.ts +2 -0
- package/dist/primitives/atoms/icons/collections/gr.d.ts +2 -0
- package/dist/primitives/atoms/icons/collections/io5.d.ts +34 -0
- package/dist/primitives/atoms/icons/collections/pi.d.ts +4 -0
- package/dist/primitives/atoms/icons/custom-icon.d.ts +6 -0
- package/dist/primitives/atoms/icons/generate-icon.d.ts +28 -0
- package/dist/primitives/atoms/icons/index.d.ts +2 -0
- package/dist/primitives/atoms/icons/inkeep-default-icons.d.ts +2 -0
- package/dist/primitives/atoms/link.d.ts +14 -0
- package/dist/primitives/atoms/markdown/components.d.ts +31 -0
- package/dist/primitives/atoms/markdown/index.d.ts +17 -0
- package/dist/primitives/atoms/markdown/rehype-inline-code-property.d.ts +1 -0
- package/dist/primitives/atoms/portal-with-theme.d.ts +2 -0
- package/dist/primitives/atoms/portal.d.ts +8 -0
- package/dist/primitives/atoms/select.d.ts +136 -0
- package/dist/primitives/atoms/shadow/context.d.ts +14 -0
- package/dist/primitives/atoms/shadow/create.d.ts +8 -0
- package/dist/primitives/atoms/shadow/index.d.ts +1 -0
- package/dist/primitives/atoms/shadow/root.d.ts +5 -0
- package/dist/primitives/atoms/shadow/use-ensured-forwarded-ref.d.ts +2 -0
- package/dist/primitives/atoms/shadow/utils.d.ts +9 -0
- package/dist/primitives/components/chat-button.d.ts +18 -0
- package/dist/primitives/components/embedded-chat/chat-provider.d.ts +19 -0
- package/dist/primitives/components/embedded-chat/use-captcha.d.ts +13 -0
- package/dist/primitives/components/embedded-chat/use-chat-action.d.ts +9 -0
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.d.ts +27 -0
- package/dist/primitives/components/embedded-chat/use-stream-processor.cjs +1 -1
- package/dist/primitives/components/embedded-chat/use-stream-processor.d.ts +28 -0
- package/dist/primitives/components/embedded-chat/use-stream-processor.js +27 -28
- package/dist/primitives/components/embedded-chat.cjs +3 -3
- package/dist/primitives/components/embedded-chat.d.ts +431 -0
- package/dist/primitives/components/embedded-chat.js +791 -795
- package/dist/primitives/components/embedded-search/search-provider.d.ts +21 -0
- package/dist/primitives/components/embedded-search/transform-results.d.ts +3 -0
- package/dist/primitives/components/embedded-search/url-query.d.ts +4 -0
- package/dist/primitives/components/embedded-search/use-inkeep-search.d.ts +19 -0
- package/dist/primitives/components/embedded-search/use-search-filter.d.ts +1 -0
- package/dist/primitives/components/embedded-search.d.ts +249 -0
- package/dist/primitives/components/factory.d.ts +19 -0
- package/dist/primitives/components/index.d.ts +10 -0
- package/dist/primitives/components/modal/modal-provider.d.ts +12 -0
- package/dist/primitives/components/modal/use-inkeep-modal.d.ts +7 -0
- package/dist/primitives/components/modal/widget-auto-focus.d.ts +2 -0
- package/dist/primitives/components/modal.d.ts +18 -0
- package/dist/primitives/components/presence.d.ts +8 -0
- package/dist/primitives/components/searchbar.d.ts +23 -0
- package/dist/primitives/components/sidebar-chat/index.d.ts +9 -0
- package/dist/primitives/components/sidebar-chat/use-sidebar-chat-resizer.d.ts +5 -0
- package/dist/primitives/components/tagline-logo-icon.d.ts +1 -0
- package/dist/primitives/components/use-component-trigger.d.ts +5 -0
- package/dist/primitives/constants/search.d.ts +1 -0
- package/dist/primitives/hooks/index.d.ts +11 -0
- package/dist/primitives/hooks/use-boolean.d.ts +10 -0
- package/dist/primitives/hooks/use-component-classnames.d.ts +6 -0
- package/dist/primitives/hooks/use-container-size.d.ts +5 -0
- package/dist/primitives/hooks/use-copy-to-clipboard.d.ts +3 -0
- package/dist/primitives/hooks/use-debounce.d.ts +1 -0
- package/dist/primitives/hooks/use-instant-update.d.ts +17 -0
- package/dist/primitives/hooks/use-is-mounted.d.ts +1 -0
- package/dist/primitives/hooks/use-media-query.d.ts +1 -0
- package/dist/primitives/hooks/use-resize-observer.d.ts +12 -0
- package/dist/primitives/hooks/use-scrolling-fades.d.ts +2 -0
- package/dist/primitives/hooks/use-settle-action.d.ts +3 -0
- package/dist/primitives/hooks/use-simple-scroll.d.ts +5 -0
- package/dist/primitives/hooks/use-streaming-events.d.ts +8 -0
- package/dist/primitives/index.d.ts +13 -0
- package/dist/primitives/providers/attachment-item-provider.d.ts +9 -0
- package/dist/primitives/providers/attachments-bar-provider.d.ts +30 -0
- package/dist/primitives/providers/base-events-provider.cjs +1 -1
- package/dist/primitives/providers/base-events-provider.d.ts +8 -0
- package/dist/primitives/providers/base-events-provider.js +1 -1
- package/dist/primitives/providers/chat-form-provider.d.ts +26 -0
- package/dist/primitives/providers/config-provider.d.ts +25 -0
- package/dist/primitives/providers/feedback-item-provider.d.ts +10 -0
- package/dist/primitives/providers/feedback-provider.d.ts +16 -0
- package/dist/primitives/providers/form-field-provider.d.ts +15 -0
- package/dist/primitives/providers/help-menu-provider.d.ts +11 -0
- package/dist/primitives/providers/hover-popover-provider.d.ts +10 -0
- package/dist/primitives/providers/index.d.ts +17 -0
- package/dist/primitives/providers/markdown-provider.d.ts +9 -0
- package/dist/primitives/providers/message-attachments-provider.d.ts +13 -0
- package/dist/primitives/providers/message-provider.d.ts +10 -0
- package/dist/primitives/providers/root-provider.d.ts +8 -0
- package/dist/primitives/providers/search-events-provider.d.ts +8 -0
- package/dist/primitives/providers/sidebar-chat-provider.d.ts +83 -0
- package/dist/primitives/providers/source-item-provider.d.ts +12 -0
- package/dist/primitives/providers/theme-provider.d.ts +3 -0
- package/dist/primitives/providers/widget-provider.d.ts +10 -0
- package/dist/primitives/utils/component-ids.d.ts +572 -0
- package/dist/primitives/utils/compose-event-handlers.d.ts +3 -0
- package/dist/primitives/utils/compose-refs.d.ts +5 -0
- package/dist/primitives/utils/default-settings.d.ts +167 -0
- package/dist/primitives/utils/form.d.ts +3 -0
- package/dist/primitives/utils/generate-uid.d.ts +2 -0
- package/dist/primitives/utils/get-message-metadata.d.ts +8 -0
- package/dist/primitives/utils/get-source-icon.d.ts +2 -0
- package/dist/primitives/utils/highlight-emphasis.d.ts +4 -0
- package/dist/primitives/utils/merge-props.d.ts +7 -0
- package/dist/primitives/utils/misc.d.ts +12 -0
- package/dist/primitives/utils/split-props.d.ts +15 -0
- package/dist/react/chat-button.d.ts +14 -0
- package/dist/react/embedded-chat.d.ts +14 -0
- package/dist/react/embedded-search-and-chat.d.ts +40 -0
- package/dist/react/embedded-search-and-chat.impl.d.ts +9 -0
- package/dist/react/embedded-search.d.ts +17 -0
- package/dist/react/index.d.ts +12 -0
- package/dist/react/modal.chat.d.ts +6 -0
- package/dist/react/modal.d.ts +23 -0
- package/dist/react/modal.search-and-chat.d.ts +6 -0
- package/dist/react/modal.search.d.ts +6 -0
- package/dist/react/searchbar.d.ts +13 -0
- package/dist/react/sidebar-chat.d.ts +6 -0
- package/dist/react/utils.d.ts +6 -0
- package/dist/react/widget-toggle.d.ts +14 -0
- package/dist/styled/components/chat-button.d.ts +8 -0
- package/dist/styled/components/data-summary-group.d.ts +11 -0
- package/dist/styled/components/embedded-chat.d.ts +190 -0
- package/dist/styled/components/embedded-search/results-loading.d.ts +1 -0
- package/dist/styled/components/embedded-search.d.ts +73 -0
- package/dist/styled/components/index.d.ts +11 -0
- package/dist/styled/components/loading-indicator.d.ts +1 -0
- package/dist/styled/components/message.cjs +1 -1
- package/dist/styled/components/message.d.ts +4 -0
- package/dist/styled/components/message.js +46 -47
- package/dist/styled/components/modal.d.ts +6 -0
- package/dist/styled/components/searchbar.d.ts +11 -0
- package/dist/styled/components/shadow.d.ts +3 -0
- package/dist/styled/components/sidebar-chat.d.ts +6 -0
- package/dist/styled/components/ui/markdown-styles.d.ts +23 -0
- package/dist/styled/components/ui/recipes/ai-chat-page-wrapper.d.ts +7 -0
- package/dist/styled/components/ui/recipes/attachment.d.ts +4 -0
- package/dist/styled/components/ui/recipes/button.d.ts +6 -0
- package/dist/styled/components/ui/recipes/checkbox.d.ts +4 -0
- package/dist/styled/components/ui/recipes/citation.d.ts +4 -0
- package/dist/styled/components/ui/recipes/icon.d.ts +2 -0
- package/dist/styled/components/ui/recipes/index.d.ts +15 -0
- package/dist/styled/components/ui/recipes/input.d.ts +5 -0
- package/dist/styled/components/ui/recipes/link.d.ts +2 -0
- package/dist/styled/components/ui/recipes/markdown.cjs +1 -1
- package/dist/styled/components/ui/recipes/markdown.d.ts +16 -0
- package/dist/styled/components/ui/recipes/markdown.js +1 -1
- package/dist/styled/components/ui/recipes/modal.d.ts +4 -0
- package/dist/styled/components/ui/recipes/popover.d.ts +4 -0
- package/dist/styled/components/ui/recipes/scrollable.d.ts +4 -0
- package/dist/styled/components/ui/recipes/select.d.ts +4 -0
- package/dist/styled/components/ui/recipes/skeleton.d.ts +2 -0
- package/dist/styled/components/ui/recipes/widget-toggle.d.ts +4 -0
- package/dist/styled/index.d.ts +2 -0
- package/dist/styled/utils.d.ts +4 -0
- package/dist/theme/color-utils.d.ts +1 -0
- package/dist/theme/colors.d.ts +104 -0
- package/dist/theme/index.d.ts +125 -0
- package/dist/theme/utils/create-css-variables.d.ts +2 -0
- package/dist/theme/utils/generate-theme-variables.d.ts +3 -0
- package/dist/types/color-mode.d.ts +44 -0
- package/dist/types/config/ai.d.ts +243 -0
- package/dist/types/config/base.d.ts +344 -0
- package/dist/types/config/components.d.ts +10 -0
- package/dist/types/config/filters.d.ts +17 -0
- package/dist/types/config/index.d.ts +36 -0
- package/dist/types/config/modal.d.ts +33 -0
- package/dist/types/config/search.d.ts +95 -0
- package/dist/types/config/settings/actions.d.ts +37 -0
- package/dist/types/config/settings/form.d.ts +128 -0
- package/dist/types/config/settings/jsonschema.d.ts +105 -0
- package/dist/types/config/settings/workflow.d.ts +86 -0
- package/dist/types/events.d.ts +173 -0
- package/dist/types/icons/built-in.d.ts +1 -0
- package/dist/types/icons/custom.d.ts +29 -0
- package/dist/types/icons/index.d.ts +2 -0
- package/dist/types/index.d.ts +20 -0
- package/dist/types/js/index.d.ts +54 -0
- package/dist/types/message.d.ts +43 -0
- package/dist/types/shadow.d.ts +15 -0
- package/dist/types/sources.d.ts +108 -0
- package/dist/types/theme.d.ts +25 -0
- package/dist/types/widget.d.ts +28 -0
- package/package.json +2 -4
- package/dist/index.d.cts +0 -5103
- package/dist/types/message.cjs +0 -1
- package/dist/types/message.js +0 -5
- package/dist/types/types.d.cts +0 -1758
- package/dist/types/types.d.ts +0 -1758
|
@@ -1,62 +1,61 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsx as n, jsxs as
|
|
3
|
-
import J, { memo as E, forwardRef as Q, useRef as O, useState as
|
|
4
|
-
import * as
|
|
2
|
+
import { jsx as n, jsxs as $, Fragment as Z } from "react/jsx-runtime";
|
|
3
|
+
import J, { memo as E, forwardRef as Q, useRef as O, useState as N, useMemo as Ce, useEffect as V, useLayoutEffect as Fe } from "react";
|
|
4
|
+
import * as fe from "react-dom/client";
|
|
5
5
|
import ee from "react-textarea-autosize";
|
|
6
6
|
import * as te from "@radix-ui/react-avatar";
|
|
7
7
|
import * as U from "@radix-ui/react-checkbox";
|
|
8
8
|
import * as T from "@radix-ui/react-popover";
|
|
9
9
|
import * as w from "@radix-ui/react-tooltip";
|
|
10
|
-
import * as
|
|
11
|
-
import { ItemText as
|
|
10
|
+
import * as W from "@radix-ui/react-scroll-area";
|
|
11
|
+
import { ItemText as Me, Trigger as Ie, Icon as Ee, Content as Se, Viewport as ke, Item as Be, ItemIndicator as ye, Root as Te, Value as we } from "../atoms/select.js";
|
|
12
12
|
import { Overlay as ie, Content as ae, Close as ne, Title as re, Root as oe } from "../atoms/dialog.js";
|
|
13
|
-
import
|
|
14
|
-
import
|
|
13
|
+
import He from "../atoms/avatars/ai.js";
|
|
14
|
+
import Le from "../atoms/avatars/user.js";
|
|
15
15
|
import { CustomIcon as I } from "../atoms/icons/custom-icon.js";
|
|
16
16
|
import { BuiltInIconRenderer as H } from "../atoms/icons/built-in-icon-renderer.js";
|
|
17
|
-
import { LinkWithQueryParams as
|
|
17
|
+
import { LinkWithQueryParams as xe } from "../atoms/link.js";
|
|
18
18
|
import { Markdown as K } from "../atoms/markdown/index.js";
|
|
19
19
|
import { AttachmentItemProvider as pe, useAttachmentItem as q } from "../providers/attachment-item-provider.js";
|
|
20
|
-
import { useAttachmentsBar as k, AttachmentsBarProvider as
|
|
21
|
-
import { SourceItemProvider as
|
|
20
|
+
import { useAttachmentsBar as k, AttachmentsBarProvider as De } from "../providers/attachments-bar-provider.js";
|
|
21
|
+
import { SourceItemProvider as Oe, useSourceItem as L } from "../providers/source-item-provider.js";
|
|
22
22
|
import { useInkeepConfig as p } from "../providers/config-provider.js";
|
|
23
23
|
import { useMessageFeedback as se } from "../providers/feedback-provider.js";
|
|
24
|
-
import { MessageAttachmentsProvider as
|
|
25
|
-
import { useMessage as f, MessageProvider as
|
|
24
|
+
import { MessageAttachmentsProvider as We, useMessageAttachments as j } from "../providers/message-attachments-provider.js";
|
|
25
|
+
import { useMessage as f, MessageProvider as Re } from "../providers/message-provider.js";
|
|
26
26
|
import { CheckboxIcon as ve } from "../atoms/icons/checkbox-icon.js";
|
|
27
27
|
import { useCopyToClipboard as X } from "../hooks/use-copy-to-clipboard.js";
|
|
28
|
-
import { FeedbackItemProvider as
|
|
29
|
-
import { maybeRender as y, dataAttr as g, getInitials as
|
|
28
|
+
import { FeedbackItemProvider as Ne, useFeedbackItem as ce } from "../providers/feedback-item-provider.js";
|
|
29
|
+
import { maybeRender as y, dataAttr as g, getInitials as Ve, getMessageContent as ge } from "../utils/misc.js";
|
|
30
30
|
import { ikp as a } from "./factory.js";
|
|
31
31
|
import { useChat as b } from "./embedded-chat/chat-provider.js";
|
|
32
|
-
import { ChatProvider as
|
|
33
|
-
import
|
|
34
|
-
import { useSettleAction as
|
|
35
|
-
import { useContainerSize as
|
|
32
|
+
import { ChatProvider as ss } from "./embedded-chat/chat-provider.js";
|
|
33
|
+
import $e from "./tagline-logo-icon.js";
|
|
34
|
+
import { useSettleAction as Qe } from "../hooks/use-settle-action.js";
|
|
35
|
+
import { useContainerSize as Ue } from "../hooks/use-container-size.js";
|
|
36
36
|
import { useChatAction as de } from "./embedded-chat/use-chat-action.js";
|
|
37
|
-
import { useHelpMenuState as
|
|
37
|
+
import { useHelpMenuState as Ke, HelpMenuProvider as qe, useHelpMenu as je } from "../providers/help-menu-provider.js";
|
|
38
38
|
import { useChatForm as A } from "../providers/chat-form-provider.js";
|
|
39
|
-
import { useFormField as x, FormFieldProvider as
|
|
40
|
-
import { Controller as
|
|
41
|
-
import { highlightEmphasis as
|
|
42
|
-
import { useModal as
|
|
43
|
-
import { useColorModeValue as
|
|
39
|
+
import { useFormField as x, FormFieldProvider as ze } from "../providers/form-field-provider.js";
|
|
40
|
+
import { Controller as Ge } from "react-hook-form";
|
|
41
|
+
import { highlightEmphasis as Ye } from "../utils/highlight-emphasis.js";
|
|
42
|
+
import { useModal as Je } from "./modal/modal-provider.js";
|
|
43
|
+
import { useColorModeValue as Xe } from "../../color-mode/index.js";
|
|
44
44
|
import { useComposedRefs as me } from "../utils/compose-refs.js";
|
|
45
45
|
import { composeEventHandlers as h } from "../utils/compose-event-handlers.js";
|
|
46
|
-
import { useSimpleScroll as
|
|
47
|
-
import { useDebounce as
|
|
48
|
-
import { HoverPopoverProvider as
|
|
49
|
-
import { useWidgetAutoFocus as
|
|
46
|
+
import { useSimpleScroll as Ze } from "../hooks/use-simple-scroll.js";
|
|
47
|
+
import { useDebounce as et } from "../hooks/use-debounce.js";
|
|
48
|
+
import { HoverPopoverProvider as tt, useHoverPopover as be } from "../providers/hover-popover-provider.js";
|
|
49
|
+
import { useWidgetAutoFocus as it } from "./modal/widget-auto-focus.js";
|
|
50
50
|
import { useBaseEvents as le } from "../providers/base-events-provider.js";
|
|
51
|
-
import { useShadow as
|
|
52
|
-
import { getIcon as
|
|
53
|
-
|
|
54
|
-
const ot = "__intro__", st = a("div", {
|
|
51
|
+
import { useShadow as at } from "../atoms/shadow/context.js";
|
|
52
|
+
import { getIcon as nt } from "../utils/get-source-icon.js";
|
|
53
|
+
const rt = "__intro__", ot = a("div", {
|
|
55
54
|
_id: "aiChatWrapper"
|
|
56
|
-
}),
|
|
57
|
-
const { ...i } = t, { isHidden: r, isMobile: o } = b(), [s, c] =
|
|
55
|
+
}), tn = Q((t, e) => {
|
|
56
|
+
const { ...i } = t, { isHidden: r, isMobile: o } = b(), [s, c] = Ue(), d = me(e, s), m = c?.width ? c.width > 580 : !0, l = Je();
|
|
58
57
|
return /* @__PURE__ */ n(
|
|
59
|
-
|
|
58
|
+
ot,
|
|
60
59
|
{
|
|
61
60
|
ref: d,
|
|
62
61
|
"data-widget-md": g(m),
|
|
@@ -66,87 +65,84 @@ const ot = "__intro__", st = a("div", {
|
|
|
66
65
|
...i
|
|
67
66
|
}
|
|
68
67
|
);
|
|
69
|
-
}),
|
|
68
|
+
}), st = a("div", {
|
|
70
69
|
_id: "aiChatRoot"
|
|
71
|
-
}),
|
|
70
|
+
}), an = (t) => {
|
|
72
71
|
const { isHidden: e } = b(), { form: i } = A();
|
|
73
|
-
return i ? null : /* @__PURE__ */ n(
|
|
74
|
-
},
|
|
72
|
+
return i ? null : /* @__PURE__ */ n(st, { "data-hidden": g(e), ...t });
|
|
73
|
+
}, nn = a("div", {
|
|
75
74
|
_id: "aiChatHeader"
|
|
76
|
-
}),
|
|
75
|
+
}), rn = a("div", {
|
|
77
76
|
_id: "aiChatHeader__Toolbar"
|
|
78
|
-
}),
|
|
77
|
+
}), on = a("div", {
|
|
79
78
|
_id: "aiChatHeader__ToolbarHeaderWrapper"
|
|
80
|
-
}),
|
|
79
|
+
}), ct = a("div", {
|
|
81
80
|
_id: "aiChatHeader__ToolbarHeader"
|
|
82
|
-
}),
|
|
81
|
+
}), sn = E(
|
|
83
82
|
(t) => {
|
|
84
83
|
const { aiChatSettings: e } = p(), i = `Ask ${e.aiAssistantName || "AI"}`;
|
|
85
|
-
return /* @__PURE__ */ n(
|
|
84
|
+
return /* @__PURE__ */ n(ct, { ...t, children: i });
|
|
86
85
|
}
|
|
87
|
-
),
|
|
86
|
+
), cn = a("div", {
|
|
88
87
|
_id: "aiChatContent"
|
|
89
|
-
}),
|
|
88
|
+
}), dn = a(W.Root, {
|
|
90
89
|
_id: "aiChatContentScrollArea"
|
|
91
|
-
}),
|
|
90
|
+
}), dt = a(W.Viewport, {
|
|
92
91
|
_id: "aiChatContentScrollArea__Viewport"
|
|
93
|
-
}),
|
|
94
|
-
const { containerRef: r, scrollToBottom: o } =
|
|
95
|
-
return
|
|
92
|
+
}), mn = Q(({ children: t, ...e }, i) => {
|
|
93
|
+
const { containerRef: r, scrollToBottom: o } = Ze(), s = me(i, r), { messages: c } = b();
|
|
94
|
+
return V(() => {
|
|
96
95
|
c.length > 0 && o();
|
|
97
96
|
}, [c.length, o]), /* @__PURE__ */ n(
|
|
98
|
-
|
|
97
|
+
dt,
|
|
99
98
|
{
|
|
100
99
|
ref: s,
|
|
101
100
|
children: (
|
|
102
101
|
/* added this to fix an overflow issue see https://github.com/radix-ui/primitives/issues/926 */
|
|
103
|
-
/* @__PURE__ */
|
|
104
|
-
t,
|
|
105
|
-
"="
|
|
106
|
-
] })
|
|
102
|
+
/* @__PURE__ */ n("div", { "data-part": "grid", style: { display: "grid" }, children: t })
|
|
107
103
|
),
|
|
108
104
|
...e
|
|
109
105
|
}
|
|
110
106
|
);
|
|
111
|
-
}),
|
|
112
|
-
|
|
107
|
+
}), ln = a(
|
|
108
|
+
W.ScrollAreaScrollbar,
|
|
113
109
|
{
|
|
114
110
|
_id: "aiChatContentScrollArea__Scrollbar"
|
|
115
111
|
}
|
|
116
|
-
),
|
|
117
|
-
|
|
112
|
+
), hn = a(
|
|
113
|
+
W.ScrollAreaThumb,
|
|
118
114
|
{
|
|
119
115
|
_id: "aiChatContentScrollArea__Thumb"
|
|
120
116
|
}
|
|
121
|
-
),
|
|
117
|
+
), un = a(W.Corner, {
|
|
122
118
|
_id: "aiChatContentScrollArea__Corner"
|
|
123
|
-
}),
|
|
119
|
+
}), mt = a("div", {
|
|
124
120
|
_id: "aiChatMessages"
|
|
125
|
-
}),
|
|
121
|
+
}), Cn = (t) => {
|
|
126
122
|
const e = b(), { children: i, ...r } = t;
|
|
127
|
-
return /* @__PURE__ */ n(
|
|
128
|
-
},
|
|
123
|
+
return /* @__PURE__ */ n(mt, { children: y(i, e), ...r });
|
|
124
|
+
}, lt = a("div", {
|
|
129
125
|
_id: "aiChatDisclaimer"
|
|
130
|
-
}),
|
|
126
|
+
}), pn = E(
|
|
131
127
|
(t) => {
|
|
132
|
-
const { aiChatSettings: e } = p(), [i, r] =
|
|
133
|
-
return e.disclaimerSettings?.isEnabled ? /* @__PURE__ */ n(
|
|
128
|
+
const { aiChatSettings: e } = p(), [i, r] = N(!1), o = et(i, 100);
|
|
129
|
+
return e.disclaimerSettings?.isEnabled ? /* @__PURE__ */ n(tt, { open: i, setOpen: r, children: /* @__PURE__ */ n(T.Root, { open: o, onOpenChange: r, children: /* @__PURE__ */ n(lt, { ...t }) }) }) : null;
|
|
134
130
|
}
|
|
135
|
-
),
|
|
131
|
+
), ht = a("span", {
|
|
136
132
|
_id: "aiChatDisclaimerLabel"
|
|
137
|
-
}),
|
|
133
|
+
}), vn = E(
|
|
138
134
|
(t) => {
|
|
139
135
|
const { aiChatSettings: e } = p(), i = e.disclaimerSettings;
|
|
140
|
-
return /* @__PURE__ */ n(
|
|
136
|
+
return /* @__PURE__ */ n(ht, { children: i?.label, ...t });
|
|
141
137
|
}
|
|
142
|
-
),
|
|
138
|
+
), ut = a(T.Trigger, {
|
|
143
139
|
_id: "aiChatDisclaimerTrigger",
|
|
144
140
|
children: /* @__PURE__ */ n(I, { iconKey: "info" })
|
|
145
|
-
}),
|
|
141
|
+
}), gn = E(
|
|
146
142
|
(t) => {
|
|
147
143
|
const { setOpen: e } = be();
|
|
148
144
|
return /* @__PURE__ */ n(
|
|
149
|
-
|
|
145
|
+
ut,
|
|
150
146
|
{
|
|
151
147
|
onMouseEnter: () => e(!0),
|
|
152
148
|
onMouseLeave: () => e(!1),
|
|
@@ -154,12 +150,12 @@ const ot = "__intro__", st = a("div", {
|
|
|
154
150
|
}
|
|
155
151
|
);
|
|
156
152
|
}
|
|
157
|
-
),
|
|
153
|
+
), Ct = a(T.Content, {
|
|
158
154
|
_id: "aiChatDisclaimerContent"
|
|
159
|
-
}),
|
|
155
|
+
}), bn = (t) => {
|
|
160
156
|
const { setOpen: e } = be();
|
|
161
157
|
return /* @__PURE__ */ n(
|
|
162
|
-
|
|
158
|
+
Ct,
|
|
163
159
|
{
|
|
164
160
|
onMouseEnter: () => e(!0),
|
|
165
161
|
onMouseLeave: () => e(!1),
|
|
@@ -170,87 +166,87 @@ const ot = "__intro__", st = a("div", {
|
|
|
170
166
|
...t
|
|
171
167
|
}
|
|
172
168
|
);
|
|
173
|
-
},
|
|
169
|
+
}, pt = a(K, {
|
|
174
170
|
_id: "aiChatDisclaimerText"
|
|
175
|
-
}),
|
|
171
|
+
}), _n = E(
|
|
176
172
|
(t) => {
|
|
177
173
|
const { aiChatSettings: e } = p(), i = e.aiAssistantName, o = e.disclaimerSettings?.tooltip || `Information provided by ${i || "this AI assistant"} is not guaranteed to be accurate or comprehensive.`;
|
|
178
|
-
return /* @__PURE__ */ n(
|
|
174
|
+
return /* @__PURE__ */ n(pt, { shouldOpenLinksInNewTab: !0, children: o, ...t });
|
|
179
175
|
}
|
|
180
|
-
),
|
|
176
|
+
), An = a(T.Arrow, {
|
|
181
177
|
_id: "aiChatDisclaimerArrow"
|
|
182
|
-
}),
|
|
178
|
+
}), vt = a("div", {
|
|
183
179
|
_id: "aiChatExampleQuestions"
|
|
184
|
-
}),
|
|
180
|
+
}), Pn = (t) => {
|
|
185
181
|
const { aiChatSettings: e } = p(), { messages: i } = b();
|
|
186
|
-
return !e.exampleQuestions?.length || i.length ? null : /* @__PURE__ */ n(
|
|
187
|
-
},
|
|
182
|
+
return !e.exampleQuestions?.length || i.length ? null : /* @__PURE__ */ n(vt, { ...t });
|
|
183
|
+
}, gt = a("h3", {
|
|
188
184
|
_id: "aiChatExampleQuestionsLabel"
|
|
189
|
-
}),
|
|
185
|
+
}), Fn = E(
|
|
190
186
|
(t) => {
|
|
191
187
|
const { aiChatSettings: e } = p();
|
|
192
|
-
return /* @__PURE__ */ n(
|
|
188
|
+
return /* @__PURE__ */ n(gt, { children: e.exampleQuestionsLabel, ...t });
|
|
193
189
|
}
|
|
194
|
-
),
|
|
190
|
+
), bt = a("div", {
|
|
195
191
|
_id: "aiChatExampleQuestionsList"
|
|
196
|
-
}),
|
|
192
|
+
}), fn = E(
|
|
197
193
|
(t) => {
|
|
198
194
|
const { aiChatSettings: e } = p(), i = e.exampleQuestions, { children: r, ...o } = t;
|
|
199
|
-
return /* @__PURE__ */ n(
|
|
195
|
+
return /* @__PURE__ */ n(bt, { children: y(r, i), ...o });
|
|
200
196
|
}
|
|
201
|
-
),
|
|
197
|
+
), _t = a("div", {
|
|
202
198
|
_id: "aiChatExampleQuestion"
|
|
203
|
-
}),
|
|
199
|
+
}), Mn = Q((t, e) => {
|
|
204
200
|
const { aiChatSettings: i } = p(), r = i.isFirstExampleQuestionHighlighted;
|
|
205
|
-
return /* @__PURE__ */ n(
|
|
206
|
-
}),
|
|
201
|
+
return /* @__PURE__ */ n(_t, { ref: e, "data-highlight": g(r), ...t });
|
|
202
|
+
}), At = a("button", {
|
|
207
203
|
_id: "aiChatExampleQuestionButton"
|
|
208
|
-
}),
|
|
204
|
+
}), In = (t) => {
|
|
209
205
|
const { question: e, onClick: i, ...r } = t, { handleSubmit: o } = b();
|
|
210
206
|
return /* @__PURE__ */ n(
|
|
211
|
-
|
|
207
|
+
At,
|
|
212
208
|
{
|
|
213
209
|
onClick: h(i, () => o(e)),
|
|
214
210
|
children: e,
|
|
215
211
|
...r
|
|
216
212
|
}
|
|
217
213
|
);
|
|
218
|
-
},
|
|
214
|
+
}, Pt = a("div", {
|
|
219
215
|
_id: "aiChatWorkflows"
|
|
220
|
-
}),
|
|
216
|
+
}), En = (t) => {
|
|
221
217
|
const { aiChatSettings: e } = p(), { messages: i } = b();
|
|
222
|
-
return !e.workflows?.length || i.length ? null : /* @__PURE__ */ n(
|
|
223
|
-
},
|
|
218
|
+
return !e.workflows?.length || i.length ? null : /* @__PURE__ */ n(Pt, { ...t });
|
|
219
|
+
}, Ft = a("h3", {
|
|
224
220
|
_id: "aiChatWorkflowsLabel"
|
|
225
|
-
}),
|
|
221
|
+
}), Sn = E((t) => {
|
|
226
222
|
const { aiChatSettings: e } = p();
|
|
227
|
-
return /* @__PURE__ */ n(
|
|
228
|
-
}),
|
|
223
|
+
return /* @__PURE__ */ n(Ft, { children: e.workflowsHeader, ...t });
|
|
224
|
+
}), ft = a("div", {
|
|
229
225
|
_id: "aiChatWorkflowsList"
|
|
230
|
-
}),
|
|
226
|
+
}), kn = E(
|
|
231
227
|
(t) => {
|
|
232
228
|
const { aiChatSettings: e } = p(), i = e.workflows, { children: r, ...o } = t;
|
|
233
|
-
return /* @__PURE__ */ n(
|
|
229
|
+
return /* @__PURE__ */ n(ft, { children: y(r, i), ...o });
|
|
234
230
|
}
|
|
235
|
-
),
|
|
231
|
+
), Mt = a("button", {
|
|
236
232
|
_id: "aiChatWorkflow"
|
|
237
|
-
}),
|
|
233
|
+
}), Bn = (t) => {
|
|
238
234
|
const { workflow: e, onClick: i, ...r } = t, o = (s) => {
|
|
239
235
|
};
|
|
240
236
|
return /* @__PURE__ */ n(
|
|
241
|
-
|
|
237
|
+
Mt,
|
|
242
238
|
{
|
|
243
239
|
onClick: h(i, () => o()),
|
|
244
240
|
children: e.displayName,
|
|
245
241
|
...r
|
|
246
242
|
}
|
|
247
243
|
);
|
|
248
|
-
},
|
|
244
|
+
}, It = a("div", {
|
|
249
245
|
_id: "aiChatMessageWrapper"
|
|
250
|
-
}),
|
|
246
|
+
}), Et = (t) => {
|
|
251
247
|
const { message: e, ...i } = t;
|
|
252
|
-
return e.role === "system" ? null : /* @__PURE__ */ n(
|
|
253
|
-
},
|
|
248
|
+
return e.role === "system" ? null : /* @__PURE__ */ n(Re, { message: e, children: /* @__PURE__ */ n(It, { "data-role": e.role, ...i }) });
|
|
249
|
+
}, yn = E(
|
|
254
250
|
(t) => {
|
|
255
251
|
const { message: e, ...i } = t, { aiChatSettings: r, baseSettings: o } = p(), s = r.aiAssistantName, c = s ? `Hi, I'm ${s}!` : "Hi!", d = r.chatSubjectName ?? o.organizationDisplayName, m = d ? `
|
|
256
252
|
|
|
@@ -258,60 +254,60 @@ const ot = "__intro__", st = a("div", {
|
|
|
258
254
|
|
|
259
255
|
How can I help?`, C = {
|
|
260
256
|
parts: [{ type: "text", text: r.introMessage ?? `${c}${m}` }],
|
|
261
|
-
id:
|
|
257
|
+
id: rt,
|
|
262
258
|
...e,
|
|
263
259
|
role: "assistant"
|
|
264
260
|
};
|
|
265
|
-
return /* @__PURE__ */ n(
|
|
261
|
+
return /* @__PURE__ */ n(Et, { message: C, ...i });
|
|
266
262
|
}
|
|
267
|
-
),
|
|
263
|
+
), St = a("div", {
|
|
268
264
|
_id: "aiChatMessageHeader"
|
|
269
|
-
}),
|
|
265
|
+
}), Tn = (t) => {
|
|
270
266
|
const { message: e } = f();
|
|
271
|
-
return /* @__PURE__ */ n(
|
|
272
|
-
},
|
|
267
|
+
return /* @__PURE__ */ n(St, { "data-role": e.role, ...t });
|
|
268
|
+
}, kt = a("div", {
|
|
273
269
|
_id: "aiChatMessageLoading",
|
|
274
270
|
children: "Thinking..."
|
|
275
|
-
}),
|
|
271
|
+
}), wn = (t) => /* @__PURE__ */ n(kt, { ...t }), Bt = a("div", {
|
|
276
272
|
_id: "aiChatMessageAvatar"
|
|
277
|
-
}),
|
|
273
|
+
}), Hn = (t) => {
|
|
278
274
|
const { message: e } = f();
|
|
279
|
-
return /* @__PURE__ */ n(
|
|
280
|
-
},
|
|
275
|
+
return /* @__PURE__ */ n(Bt, { "data-role": e.role, ...t });
|
|
276
|
+
}, yt = a(te.Root, {
|
|
281
277
|
_id: "aiChatMessageAvatarContent"
|
|
282
|
-
}),
|
|
278
|
+
}), Ln = (t) => {
|
|
283
279
|
const { message: e } = f(), { baseSettings: i } = p();
|
|
284
280
|
return /* @__PURE__ */ n(
|
|
285
|
-
|
|
281
|
+
yt,
|
|
286
282
|
{
|
|
287
283
|
"data-username": g(e.role === "user" && !!i.userProperties.name),
|
|
288
284
|
"data-role": e.role,
|
|
289
285
|
...t
|
|
290
286
|
}
|
|
291
287
|
);
|
|
292
|
-
},
|
|
288
|
+
}, Tt = a(te.Fallback, {
|
|
293
289
|
_id: "aiChatMessageAvatarFallback"
|
|
294
|
-
}),
|
|
290
|
+
}), xn = E(
|
|
295
291
|
(t) => {
|
|
296
292
|
const { baseSettings: e } = p(), { message: i } = f();
|
|
297
293
|
return e.userProperties.name ? /* @__PURE__ */ n(
|
|
298
|
-
|
|
294
|
+
Tt,
|
|
299
295
|
{
|
|
300
296
|
"data-role": i.role,
|
|
301
|
-
children:
|
|
297
|
+
children: Ve(e.userProperties.name),
|
|
302
298
|
...t
|
|
303
299
|
}
|
|
304
300
|
) : null;
|
|
305
301
|
}
|
|
306
302
|
), ue = a(te.Image, {
|
|
307
303
|
_id: "aiChatMessageAvatarImage"
|
|
308
|
-
}),
|
|
304
|
+
}), Dn = E(
|
|
309
305
|
(t) => {
|
|
310
306
|
const { onLoadingStatusChange: e, ...i } = t, {
|
|
311
307
|
aiChatSettings: r,
|
|
312
308
|
baseSettings: { userProperties: o }
|
|
313
|
-
} = p(), { message: s } = f(), { aiAssistantAvatar: c } = r ?? {}, d = typeof c == "string" ? c : c?.light, m = (typeof c == "string" ? c : c?.dark) ?? d, l =
|
|
314
|
-
|
|
309
|
+
} = p(), { message: s } = f(), { aiAssistantAvatar: c } = r ?? {}, d = typeof c == "string" ? c : c?.light, m = (typeof c == "string" ? c : c?.dark) ?? d, l = Xe(d, m), [C, v] = N(l);
|
|
310
|
+
V(() => {
|
|
315
311
|
v(l);
|
|
316
312
|
}, [l]);
|
|
317
313
|
const u = (_) => {
|
|
@@ -327,7 +323,7 @@ const ot = "__intro__", st = a("div", {
|
|
|
327
323
|
...t
|
|
328
324
|
}
|
|
329
325
|
) : /* @__PURE__ */ n(
|
|
330
|
-
|
|
326
|
+
Le,
|
|
331
327
|
{
|
|
332
328
|
"data-type": "icon",
|
|
333
329
|
"data-role": s.role,
|
|
@@ -347,7 +343,7 @@ const ot = "__intro__", st = a("div", {
|
|
|
347
343
|
...i
|
|
348
344
|
}
|
|
349
345
|
) : /* @__PURE__ */ n(
|
|
350
|
-
|
|
346
|
+
He,
|
|
351
347
|
{
|
|
352
348
|
"data-type": "icon",
|
|
353
349
|
"data-role": s.role,
|
|
@@ -355,51 +351,51 @@ const ot = "__intro__", st = a("div", {
|
|
|
355
351
|
}
|
|
356
352
|
);
|
|
357
353
|
}
|
|
358
|
-
),
|
|
354
|
+
), wt = a("span", {
|
|
359
355
|
_id: "aiChatMessageName"
|
|
360
|
-
}),
|
|
356
|
+
}), On = (t) => {
|
|
361
357
|
const { message: e } = f();
|
|
362
358
|
return /* @__PURE__ */ n(
|
|
363
|
-
|
|
359
|
+
wt,
|
|
364
360
|
{
|
|
365
361
|
"data-role": e.role,
|
|
366
362
|
children: e.role === "user" ? "You" : "AI assistant",
|
|
367
363
|
...t
|
|
368
364
|
}
|
|
369
365
|
);
|
|
370
|
-
},
|
|
366
|
+
}, Ht = a("div", {
|
|
371
367
|
_id: "aiChatMessageContentWrapper"
|
|
372
|
-
}),
|
|
368
|
+
}), Wn = (t) => {
|
|
373
369
|
const { message: e } = f(), { messageButtons: i } = b(), r = i[e.id] || [];
|
|
374
370
|
return /* @__PURE__ */ n(
|
|
375
|
-
|
|
371
|
+
Ht,
|
|
376
372
|
{
|
|
377
373
|
"data-role": e.role,
|
|
378
374
|
"data-has-message-buttons": g(!!r.length),
|
|
379
375
|
...t
|
|
380
376
|
}
|
|
381
377
|
);
|
|
382
|
-
},
|
|
378
|
+
}, Lt = a("div", {
|
|
383
379
|
_id: "aiChatMessageContent"
|
|
384
|
-
}),
|
|
380
|
+
}), Rn = (t) => {
|
|
385
381
|
const { message: e } = f();
|
|
386
|
-
return /* @__PURE__ */ n(
|
|
387
|
-
},
|
|
382
|
+
return /* @__PURE__ */ n(Lt, { "data-role": e.role, ...t });
|
|
383
|
+
}, xt = a("div", {
|
|
388
384
|
_id: "aiChatMessageAttachments"
|
|
389
|
-
}),
|
|
385
|
+
}), Nn = (t) => {
|
|
390
386
|
const { message: e } = f(), i = [];
|
|
391
|
-
return e.role !== "user" || !i?.length ? null : /* @__PURE__ */ n(
|
|
392
|
-
},
|
|
387
|
+
return e.role !== "user" || !i?.length ? null : /* @__PURE__ */ n(We, { children: /* @__PURE__ */ n(xt, { ...t }) });
|
|
388
|
+
}, Dt = a("div", {
|
|
393
389
|
_id: "aiChatMessageAttachments__List"
|
|
394
|
-
}),
|
|
390
|
+
}), Vn = (t) => {
|
|
395
391
|
const { children: e, ...i } = t, r = [];
|
|
396
|
-
return r ? /* @__PURE__ */ n(
|
|
397
|
-
},
|
|
392
|
+
return r ? /* @__PURE__ */ n(Dt, { children: y(e, r), ...i }) : null;
|
|
393
|
+
}, Ot = a("div", {
|
|
398
394
|
_id: "aiChatMessageAttachments__Item"
|
|
399
|
-
}),
|
|
395
|
+
}), $n = (t) => {
|
|
400
396
|
const { attachment: e, onClick: i, ...r } = t, { selectItem: o, onOpen: s } = j();
|
|
401
397
|
return /* @__PURE__ */ n(pe, { attachment: e, children: /* @__PURE__ */ n(
|
|
402
|
-
|
|
398
|
+
Ot,
|
|
403
399
|
{
|
|
404
400
|
onClick: h(i, () => {
|
|
405
401
|
o(e), s();
|
|
@@ -407,22 +403,22 @@ const ot = "__intro__", st = a("div", {
|
|
|
407
403
|
...r
|
|
408
404
|
}
|
|
409
405
|
) });
|
|
410
|
-
},
|
|
406
|
+
}, Wt = a(H, {
|
|
411
407
|
_id: "aiChatMessageAttachments__ItemIcon"
|
|
412
|
-
}),
|
|
408
|
+
}), Qn = (t) => {
|
|
413
409
|
const { attachment: e } = q(), i = e.contentType?.attachmentIcon;
|
|
414
|
-
return i ? /* @__PURE__ */ n(
|
|
415
|
-
},
|
|
410
|
+
return i ? /* @__PURE__ */ n(Wt, { iconSettings: i, ...t }) : null;
|
|
411
|
+
}, Rt = a("span", {
|
|
416
412
|
_id: "aiChatMessageAttachments__ItemTitle"
|
|
417
|
-
}),
|
|
413
|
+
}), Un = (t) => {
|
|
418
414
|
const { attachment: e } = q();
|
|
419
|
-
return /* @__PURE__ */ n(
|
|
420
|
-
},
|
|
415
|
+
return /* @__PURE__ */ n(Rt, { children: e.title, ...t });
|
|
416
|
+
}, Nt = a(oe, {
|
|
421
417
|
_id: "aiChatMessageAttachmentsPreview"
|
|
422
|
-
}),
|
|
418
|
+
}), Kn = (t) => {
|
|
423
419
|
const { onOpenChange: e, ...i } = t, { selectItem: r, isOpen: o, onClose: s, selectedItem: c } = j();
|
|
424
420
|
return /* @__PURE__ */ n(
|
|
425
|
-
|
|
421
|
+
Nt,
|
|
426
422
|
{
|
|
427
423
|
open: o && c !== null,
|
|
428
424
|
onOpenChange: h(e, (m) => {
|
|
@@ -431,31 +427,31 @@ const ot = "__intro__", st = a("div", {
|
|
|
431
427
|
...i
|
|
432
428
|
}
|
|
433
429
|
);
|
|
434
|
-
},
|
|
430
|
+
}, qn = a(ie, {
|
|
435
431
|
_id: "aiChatMessageAttachmentsPreview__Overlay"
|
|
436
|
-
}),
|
|
432
|
+
}), jn = a(ae, {
|
|
437
433
|
_id: "aiChatMessageAttachmentsPreview__Content",
|
|
438
434
|
"aria-describedby": void 0
|
|
439
|
-
}),
|
|
435
|
+
}), Vt = a(re, {
|
|
440
436
|
_id: "aiChatMessageAttachmentsPreview__Header"
|
|
441
|
-
}),
|
|
437
|
+
}), zn = (t) => {
|
|
442
438
|
const { selectedItem: e } = j();
|
|
443
439
|
return /* @__PURE__ */ n(
|
|
444
|
-
|
|
440
|
+
Vt,
|
|
445
441
|
{
|
|
446
442
|
children: e?.title || "Attachment",
|
|
447
443
|
...t
|
|
448
444
|
}
|
|
449
445
|
);
|
|
450
|
-
},
|
|
446
|
+
}, Gn = a(ne, {
|
|
451
447
|
_id: "aiChatMessageAttachmentsPreview__Close",
|
|
452
448
|
children: /* @__PURE__ */ n(I, { iconKey: "close" })
|
|
453
|
-
}),
|
|
449
|
+
}), $t = a("p", {
|
|
454
450
|
_id: "aiChatMessageAttachmentsPreview__Body"
|
|
455
|
-
}),
|
|
451
|
+
}), Yn = (t) => {
|
|
456
452
|
const { selectedItem: e } = j();
|
|
457
|
-
return /* @__PURE__ */ n(
|
|
458
|
-
},
|
|
453
|
+
return /* @__PURE__ */ n($t, { children: e?.content, ...t });
|
|
454
|
+
}, Jn = (t) => {
|
|
459
455
|
const { text: e, componentStyles: i, ...r } = t, { aiChatSettings: o } = p(), { shouldOpenLinksInNewTab: s } = o;
|
|
460
456
|
return /* @__PURE__ */ n(
|
|
461
457
|
K,
|
|
@@ -466,19 +462,19 @@ const ot = "__intro__", st = a("div", {
|
|
|
466
462
|
...r
|
|
467
463
|
}
|
|
468
464
|
);
|
|
469
|
-
},
|
|
465
|
+
}, Xn = ({
|
|
470
466
|
name: t,
|
|
471
467
|
props: e,
|
|
472
468
|
componentDef: i
|
|
473
469
|
}) => {
|
|
474
|
-
const o =
|
|
470
|
+
const o = at()?.shadowHost, s = O(void 0), c = O(null), d = O(null), m = O(!1), [l, C] = N(!1), [v, u] = N(!1), _ = O(i);
|
|
475
471
|
Ce(() => {
|
|
476
472
|
i !== _.current && (typeof i == "function" && typeof _.current == "function" ? i.toString() !== _.current.toString() && (_.current = i) : _.current = i);
|
|
477
473
|
}, [i]);
|
|
478
474
|
const B = _.current;
|
|
479
|
-
return
|
|
475
|
+
return V(() => {
|
|
480
476
|
s.current || (s.current = `dyn:${t}:${crypto.randomUUID()}`, C(!0));
|
|
481
|
-
}, [t]),
|
|
477
|
+
}, [t]), Fe(() => {
|
|
482
478
|
if (!B || !o || !l || !s.current)
|
|
483
479
|
return;
|
|
484
480
|
const P = s.current, F = document.createElement("div");
|
|
@@ -492,7 +488,7 @@ const ot = "__intro__", st = a("div", {
|
|
|
492
488
|
F.parentNode === o && F.remove(), c.current = null;
|
|
493
489
|
});
|
|
494
490
|
};
|
|
495
|
-
}, [B, o, l, t]),
|
|
491
|
+
}, [B, o, l, t]), V(() => {
|
|
496
492
|
const P = c.current;
|
|
497
493
|
if (!P || m.current) return;
|
|
498
494
|
const F = (S) => {
|
|
@@ -524,28 +520,28 @@ const ot = "__intro__", st = a("div", {
|
|
|
524
520
|
}
|
|
525
521
|
if (J.isValidElement(M) || typeof M == "string") {
|
|
526
522
|
if (m.current) return;
|
|
527
|
-
d.current || (d.current =
|
|
523
|
+
d.current || (d.current = fe.createRoot(P)), !m.current && d.current && d.current.render(M);
|
|
528
524
|
return;
|
|
529
525
|
}
|
|
530
526
|
d.current && !m.current && d.current.render(null);
|
|
531
527
|
}, [i, e, v]), /* @__PURE__ */ n("slot", { name: s.current });
|
|
532
|
-
},
|
|
528
|
+
}, Zn = a("div", {
|
|
533
529
|
_id: "aiChatMessagePart"
|
|
534
|
-
}),
|
|
530
|
+
}), Qt = a("div", {
|
|
535
531
|
_id: "aiChatMessageToolbar"
|
|
536
|
-
}),
|
|
532
|
+
}), er = (t) => {
|
|
537
533
|
const { isLoading: e, messages: i } = b(), { message: r } = f();
|
|
538
|
-
return i.at(-1)?.id === r?.id && e || r.role === "user" ? null : /* @__PURE__ */ n(
|
|
539
|
-
},
|
|
534
|
+
return i.at(-1)?.id === r?.id && e || r.role === "user" ? null : /* @__PURE__ */ n(Qt, { ...t });
|
|
535
|
+
}, Ut = a("div", {
|
|
540
536
|
_id: "aiChatMessageAnnotationActions"
|
|
541
|
-
}),
|
|
537
|
+
}), tr = (t) => {
|
|
542
538
|
const { children: e, ...i } = t, { message: r } = f(), { messageButtons: o } = b(), s = o[r.id] || [];
|
|
543
|
-
return /* @__PURE__ */ n(
|
|
544
|
-
},
|
|
539
|
+
return /* @__PURE__ */ n(Ut, { children: y(e, s), ...i });
|
|
540
|
+
}, Kt = a("a", {
|
|
545
541
|
_id: "aiChatMessageAnnotationAction"
|
|
546
|
-
}),
|
|
542
|
+
}), qt = a("button", {
|
|
547
543
|
_id: "aiChatMessageAnnotationAction"
|
|
548
|
-
}),
|
|
544
|
+
}), ir = (t) => {
|
|
549
545
|
const { onClick: e, action: i, ...r } = t, { handleAction: o } = de(i), { logEvent: s } = le(), { conversationId: c } = b(), d = () => {
|
|
550
546
|
o(), s({
|
|
551
547
|
eventName: "user_escalation_indicated",
|
|
@@ -554,12 +550,12 @@ const ot = "__intro__", st = a("div", {
|
|
|
554
550
|
conversationId: c
|
|
555
551
|
}
|
|
556
552
|
});
|
|
557
|
-
}, m = i.label || "Contact Support", l = /* @__PURE__ */
|
|
553
|
+
}, m = i.label || "Contact Support", l = /* @__PURE__ */ $(Z, { children: [
|
|
558
554
|
i.icon && /* @__PURE__ */ n(H, { iconSettings: i.icon }),
|
|
559
555
|
m
|
|
560
556
|
] });
|
|
561
557
|
return i.action.type === "open_link" ? /* @__PURE__ */ n(
|
|
562
|
-
|
|
558
|
+
Kt,
|
|
563
559
|
{
|
|
564
560
|
href: i.action.url,
|
|
565
561
|
target: "_blank",
|
|
@@ -570,7 +566,7 @@ const ot = "__intro__", st = a("div", {
|
|
|
570
566
|
...r
|
|
571
567
|
}
|
|
572
568
|
) : /* @__PURE__ */ n(
|
|
573
|
-
|
|
569
|
+
qt,
|
|
574
570
|
{
|
|
575
571
|
"data-type": i.action.type,
|
|
576
572
|
onClick: h(e, d),
|
|
@@ -578,14 +574,14 @@ const ot = "__intro__", st = a("div", {
|
|
|
578
574
|
...r
|
|
579
575
|
}
|
|
580
576
|
);
|
|
581
|
-
},
|
|
577
|
+
}, jt = a("button", {
|
|
582
578
|
_id: "aiChatMessageAction"
|
|
583
|
-
}),
|
|
579
|
+
}), ar = (t) => {
|
|
584
580
|
const { action: e, onClick: i, className: r, ...o } = t, { conversationId: s } = b(), {
|
|
585
581
|
baseSettings: { onFeedback: c }
|
|
586
|
-
} = p(), { message: d } = f(), { isStreaming: m, messages: l } = b(), [C, v] = X(), { feedback: u, submitPositiveFeedback: _, setCurrentFeedback: B, currentFeedback: P } = se(), { logEvent: F } = le(), [M, S] =
|
|
582
|
+
} = p(), { message: d } = f(), { isStreaming: m, messages: l } = b(), [C, v] = X(), { feedback: u, submitPositiveFeedback: _, setCurrentFeedback: B, currentFeedback: P } = se(), { logEvent: F } = le(), [M, S] = Qe(), D = l.at(-1)?.id === d?.id, z = d.role === "assistant";
|
|
587
583
|
if (D && m || !z) return null;
|
|
588
|
-
const
|
|
584
|
+
const R = {
|
|
589
585
|
copy() {
|
|
590
586
|
v(ge(d)), F({
|
|
591
587
|
eventName: "assistant_message_copied",
|
|
@@ -610,7 +606,7 @@ const ot = "__intro__", st = a("div", {
|
|
|
610
606
|
copy: /* @__PURE__ */ n(I, { iconKey: C ? "messageCopied" : "messageCopy" }),
|
|
611
607
|
upvote: /* @__PURE__ */ n(I, { iconKey: M ? "messageCopied" : "thumbsUp" }),
|
|
612
608
|
downvote: /* @__PURE__ */ n(I, { iconKey: "thumbsDown" })
|
|
613
|
-
},
|
|
609
|
+
}, Pe = {
|
|
614
610
|
copy: { "data-copied": g(C) },
|
|
615
611
|
upvote: {
|
|
616
612
|
"data-upvoted": g(u[d.id]?.type === "positive")
|
|
@@ -625,29 +621,29 @@ const ot = "__intro__", st = a("div", {
|
|
|
625
621
|
upvote: !c,
|
|
626
622
|
downvote: !c
|
|
627
623
|
}[e] ? null : /* @__PURE__ */ n(
|
|
628
|
-
|
|
624
|
+
jt,
|
|
629
625
|
{
|
|
630
626
|
"data-action": e,
|
|
631
|
-
...
|
|
627
|
+
...Pe[e],
|
|
632
628
|
children: Y[e],
|
|
633
629
|
"aria-label": G[e],
|
|
634
630
|
className: `${r} ${e}`,
|
|
635
|
-
onClick: h(i,
|
|
631
|
+
onClick: h(i, R[e]),
|
|
636
632
|
...o
|
|
637
633
|
}
|
|
638
634
|
);
|
|
639
|
-
},
|
|
635
|
+
}, zt = a("div", {
|
|
640
636
|
_id: "aiChatMessageSources"
|
|
641
|
-
}),
|
|
637
|
+
}), nr = (t) => {
|
|
642
638
|
const { message: e } = f();
|
|
643
639
|
return e.role !== "assistant" || !e.parts.filter(
|
|
644
|
-
(r) => r.type === "data-artifact" && r.data?.type?.toLowerCase() ===
|
|
645
|
-
)?.length ? null : /* @__PURE__ */ n(
|
|
646
|
-
},
|
|
640
|
+
(r) => r.type === "data-artifact" && r.data?.type?.toLowerCase() === "citation"
|
|
641
|
+
)?.length ? null : /* @__PURE__ */ n(zt, { ...t });
|
|
642
|
+
}, Gt = a("div", {
|
|
647
643
|
_id: "aiChatMessageSources__Header"
|
|
648
|
-
}),
|
|
644
|
+
}), rr = (t) => /* @__PURE__ */ n(Gt, { children: "Sources", ...t }), Yt = a("div", {
|
|
649
645
|
_id: "aiChatMessageSources__List"
|
|
650
|
-
}),
|
|
646
|
+
}), or = (t) => {
|
|
651
647
|
const { message: e } = f(), { children: i, ...r } = t, {
|
|
652
648
|
baseSettings: { transformSource: o, organizationDisplayName: s },
|
|
653
649
|
aiChatSettings: { shouldOpenLinksInNewTab: c },
|
|
@@ -655,7 +651,7 @@ const ot = "__intro__", st = a("div", {
|
|
|
655
651
|
} = p();
|
|
656
652
|
if (e.role !== "assistant") return null;
|
|
657
653
|
const m = e.parts.filter(
|
|
658
|
-
(v) => v.type === "data-artifact" && v.data?.type?.toLowerCase() ===
|
|
654
|
+
(v) => v.type === "data-artifact" && v.data?.type?.toLowerCase() === "citation"
|
|
659
655
|
);
|
|
660
656
|
if (!m?.length) return null;
|
|
661
657
|
const l = /* @__PURE__ */ new Map(), C = m.filter((v) => {
|
|
@@ -674,17 +670,17 @@ const ot = "__intro__", st = a("div", {
|
|
|
674
670
|
}, P = (o ?? ((M) => ({
|
|
675
671
|
...M,
|
|
676
672
|
shouldOpenInNewTab: c,
|
|
677
|
-
icon:
|
|
673
|
+
icon: nt(M)
|
|
678
674
|
})))(_, "chatSourceItem", {
|
|
679
675
|
organizationDisplayName: s,
|
|
680
676
|
tabs: d
|
|
681
677
|
}), F = P.shouldOpenInNewTab !== void 0 ? P.shouldOpenInNewTab : c;
|
|
682
678
|
return { ...P, isExternal: F };
|
|
683
679
|
});
|
|
684
|
-
return /* @__PURE__ */ n(
|
|
685
|
-
},
|
|
680
|
+
return /* @__PURE__ */ n(Yt, { children: y(i, C), ...r });
|
|
681
|
+
}, Jt = a(xe, {
|
|
686
682
|
_id: "aiChatMessageSourceItem"
|
|
687
|
-
}),
|
|
683
|
+
}), sr = (t) => {
|
|
688
684
|
const { source: e, onClick: i, ...r } = t, { logEvent: o } = le(), { conversationId: s } = b(), c = () => {
|
|
689
685
|
o({
|
|
690
686
|
eventName: "assistant_source_item_clicked",
|
|
@@ -694,8 +690,8 @@ const ot = "__intro__", st = a("div", {
|
|
|
694
690
|
}
|
|
695
691
|
});
|
|
696
692
|
};
|
|
697
|
-
return /* @__PURE__ */ n(
|
|
698
|
-
|
|
693
|
+
return /* @__PURE__ */ n(Oe, { source: e, children: /* @__PURE__ */ n(
|
|
694
|
+
Jt,
|
|
699
695
|
{
|
|
700
696
|
"data-type": e.type,
|
|
701
697
|
appendToUrl: e.appendToUrl,
|
|
@@ -705,47 +701,47 @@ const ot = "__intro__", st = a("div", {
|
|
|
705
701
|
...r
|
|
706
702
|
}
|
|
707
703
|
) });
|
|
708
|
-
},
|
|
704
|
+
}, Xt = a("div", {
|
|
709
705
|
_id: "aiChatMessageSourceItem__Breadcrumbs"
|
|
710
|
-
}),
|
|
706
|
+
}), cr = (t) => {
|
|
711
707
|
const { source: e } = L();
|
|
712
|
-
return e.breadcrumbs?.length ? /* @__PURE__ */ n(
|
|
713
|
-
},
|
|
708
|
+
return e.breadcrumbs?.length ? /* @__PURE__ */ n(Xt, { "data-type": e.type, ...t }) : null;
|
|
709
|
+
}, dr = a(I, {
|
|
714
710
|
_id: "aiChatMessageSourceItem__BreadcrumbIcon",
|
|
715
711
|
iconKey: "breadcrumbSeparator"
|
|
716
|
-
}),
|
|
712
|
+
}), Zt = a(H, {
|
|
717
713
|
_id: "aiChatMessageSourceItem__Icon"
|
|
718
|
-
}),
|
|
714
|
+
}), mr = (t) => {
|
|
719
715
|
const { source: e } = L();
|
|
720
|
-
return /* @__PURE__ */ n(
|
|
721
|
-
},
|
|
716
|
+
return /* @__PURE__ */ n(Zt, { iconSettings: e.icon, "data-type": e.type, ...t });
|
|
717
|
+
}, ei = a("span", {
|
|
722
718
|
_id: "aiChatMessageSourceItem__Title"
|
|
723
|
-
}),
|
|
719
|
+
}), lr = (t) => {
|
|
724
720
|
const { source: e } = L();
|
|
725
|
-
return /* @__PURE__ */ n(
|
|
726
|
-
},
|
|
721
|
+
return /* @__PURE__ */ n(ei, { "data-type": e.type, children: e.title, ...t });
|
|
722
|
+
}, ti = a("span", {
|
|
727
723
|
_id: "aiChatMessageSourceItem__Tag"
|
|
728
|
-
}),
|
|
724
|
+
}), hr = (t) => {
|
|
729
725
|
const { source: e } = L();
|
|
730
|
-
return /* @__PURE__ */ n(
|
|
731
|
-
},
|
|
726
|
+
return /* @__PURE__ */ n(ti, { "data-type": e.type, ...t });
|
|
727
|
+
}, ii = a("span", {
|
|
732
728
|
_id: "aiChatMessageSourceItem__Description"
|
|
733
|
-
}),
|
|
734
|
-
const { source: e } = L(), { children: i, ...r } = t, o = Ce(() => e.description ?
|
|
729
|
+
}), ur = (t) => {
|
|
730
|
+
const { source: e } = L(), { children: i, ...r } = t, o = Ce(() => e.description ? Ye(e.description) : [], [e.description]);
|
|
735
731
|
return o.length ? /* @__PURE__ */ n(
|
|
736
|
-
|
|
732
|
+
ii,
|
|
737
733
|
{
|
|
738
734
|
"data-type": e.type,
|
|
739
735
|
children: y(i, o),
|
|
740
736
|
...r
|
|
741
737
|
}
|
|
742
738
|
) : null;
|
|
743
|
-
},
|
|
739
|
+
}, ai = a("span", {
|
|
744
740
|
_id: "aiChatMessageSourceItem__DescriptionPart"
|
|
745
|
-
}),
|
|
741
|
+
}), Cr = (t) => {
|
|
746
742
|
const { part: e, ...i } = t, { source: r } = L();
|
|
747
743
|
return typeof e == "string" ? e : /* @__PURE__ */ n(
|
|
748
|
-
|
|
744
|
+
ai,
|
|
749
745
|
{
|
|
750
746
|
"data-type": r.type,
|
|
751
747
|
children: e.content,
|
|
@@ -753,32 +749,32 @@ const ot = "__intro__", st = a("div", {
|
|
|
753
749
|
...i
|
|
754
750
|
}
|
|
755
751
|
);
|
|
756
|
-
},
|
|
752
|
+
}, ni = a(I, {
|
|
757
753
|
_id: "aiChatMessageSourceItem__Indicator"
|
|
758
|
-
}),
|
|
754
|
+
}), pr = (t) => {
|
|
759
755
|
const { source: e } = L();
|
|
760
756
|
return /* @__PURE__ */ n(
|
|
761
|
-
|
|
757
|
+
ni,
|
|
762
758
|
{
|
|
763
759
|
iconKey: e.isExternal ? "openLinkInNewTab" : "openLinkInSameTab",
|
|
764
760
|
...t
|
|
765
761
|
}
|
|
766
762
|
);
|
|
767
|
-
},
|
|
763
|
+
}, vr = a("div", {
|
|
768
764
|
_id: "aiChatFooter"
|
|
769
|
-
}),
|
|
765
|
+
}), gr = a("div", {
|
|
770
766
|
_id: "aiChatInput__Fieldset"
|
|
771
|
-
}),
|
|
767
|
+
}), br = a("div", {
|
|
772
768
|
_id: "aiChatInput__Group"
|
|
773
|
-
}),
|
|
769
|
+
}), ri = a("textarea", {
|
|
774
770
|
_id: "aiChatInput"
|
|
775
|
-
}),
|
|
771
|
+
}), _r = Q(({ onChange: t, onKeyDown: e, ...i }, r) => {
|
|
776
772
|
const { handleInputChange: o, handleInputKeyDown: s, input: c, error: d, shouldAutoFocusInput: m, inputRef: l } = b(), { aiChatSettings: C } = p(), v = me(
|
|
777
773
|
r,
|
|
778
774
|
l
|
|
779
775
|
);
|
|
780
|
-
return
|
|
781
|
-
|
|
776
|
+
return it("chat", l, m), /* @__PURE__ */ n(
|
|
777
|
+
ri,
|
|
782
778
|
{
|
|
783
779
|
asChild: !0,
|
|
784
780
|
ref: v,
|
|
@@ -792,12 +788,12 @@ const ot = "__intro__", st = a("div", {
|
|
|
792
788
|
children: /* @__PURE__ */ n(ee, {})
|
|
793
789
|
}
|
|
794
790
|
);
|
|
795
|
-
}),
|
|
791
|
+
}), oi = a("button", {
|
|
796
792
|
_id: "aiChatInput__SendButton"
|
|
797
|
-
}),
|
|
793
|
+
}), Ar = (t) => {
|
|
798
794
|
const { handleSubmit: e, isSubmitDisabled: i, error: r } = b(), { aiChatSettings: o } = p(), { onClick: s, ...c } = t;
|
|
799
795
|
return /* @__PURE__ */ n(
|
|
800
|
-
|
|
796
|
+
oi,
|
|
801
797
|
{
|
|
802
798
|
onClick: h(s, () => e()),
|
|
803
799
|
"aria-label": "Send message",
|
|
@@ -805,40 +801,40 @@ const ot = "__intro__", st = a("div", {
|
|
|
805
801
|
...c
|
|
806
802
|
}
|
|
807
803
|
);
|
|
808
|
-
},
|
|
804
|
+
}, Pr = a(I, {
|
|
809
805
|
_id: "aiChatInput__SendButtonIcon",
|
|
810
806
|
iconKey: "chatSubmit"
|
|
811
|
-
}),
|
|
807
|
+
}), si = a("div", {
|
|
812
808
|
_id: "aiChatAttachmentsBar"
|
|
813
|
-
}),
|
|
809
|
+
}), Fr = (t) => {
|
|
814
810
|
const e = { supportedInputs: [] };
|
|
815
|
-
return !e || !e.supportedInputs?.length ? null : /* @__PURE__ */ n(
|
|
816
|
-
},
|
|
811
|
+
return !e || !e.supportedInputs?.length ? null : /* @__PURE__ */ n(De, { children: /* @__PURE__ */ n(si, { ...t }) });
|
|
812
|
+
}, ci = a("div", {
|
|
817
813
|
_id: "aiChatAttachmentsBar__List"
|
|
818
|
-
}),
|
|
814
|
+
}), fr = (t) => {
|
|
819
815
|
const { children: e, ...i } = t;
|
|
820
|
-
return /* @__PURE__ */ n(
|
|
821
|
-
},
|
|
816
|
+
return /* @__PURE__ */ n(ci, { children: y(e, []), ...i });
|
|
817
|
+
}, di = a("div", {
|
|
822
818
|
_id: "aiChatAttachmentsBar__Attachment"
|
|
823
|
-
}),
|
|
819
|
+
}), Mr = (t) => {
|
|
824
820
|
const { attachment: e, ...i } = t;
|
|
825
|
-
return /* @__PURE__ */ n(pe, { attachment: e, children: /* @__PURE__ */ n(
|
|
826
|
-
},
|
|
821
|
+
return /* @__PURE__ */ n(pe, { attachment: e, children: /* @__PURE__ */ n(di, { ...i }) });
|
|
822
|
+
}, mi = a(H, {
|
|
827
823
|
_id: "aiChatAttachmentsBar__AttachmentIcon"
|
|
828
|
-
}),
|
|
824
|
+
}), Ir = (t) => {
|
|
829
825
|
const { attachment: e } = q(), i = e.contentType?.attachmentIcon;
|
|
830
|
-
return i ? /* @__PURE__ */ n(
|
|
831
|
-
},
|
|
826
|
+
return i ? /* @__PURE__ */ n(mi, { iconSettings: i, ...t }) : null;
|
|
827
|
+
}, li = a("span", {
|
|
832
828
|
_id: "aiChatAttachmentsBar__AttachmentTitle"
|
|
833
|
-
}),
|
|
829
|
+
}), Er = (t) => {
|
|
834
830
|
const { attachment: e } = q();
|
|
835
|
-
return /* @__PURE__ */ n(
|
|
836
|
-
},
|
|
831
|
+
return /* @__PURE__ */ n(li, { children: e.title, ...t });
|
|
832
|
+
}, hi = a("button", {
|
|
837
833
|
_id: "aiChatAttachmentsBar__AttachmentDelete"
|
|
838
|
-
}),
|
|
834
|
+
}), Sr = (t) => {
|
|
839
835
|
const { onClick: e, ...i } = t;
|
|
840
836
|
return /* @__PURE__ */ n(
|
|
841
|
-
|
|
837
|
+
hi,
|
|
842
838
|
{
|
|
843
839
|
"aria-label": "Remove attachment",
|
|
844
840
|
children: /* @__PURE__ */ n(I, { iconKey: "close" }),
|
|
@@ -847,39 +843,39 @@ const ot = "__intro__", st = a("div", {
|
|
|
847
843
|
...i
|
|
848
844
|
}
|
|
849
845
|
);
|
|
850
|
-
},
|
|
846
|
+
}, kr = a("div", {
|
|
851
847
|
_id: "aiChatAttachmentsBar__Actions"
|
|
852
|
-
}),
|
|
848
|
+
}), Br = a(w.Tooltip, {
|
|
853
849
|
_id: "aiChatAttachmentsBar__InfoTip",
|
|
854
850
|
delayDuration: 0
|
|
855
|
-
}),
|
|
851
|
+
}), yr = a(w.Trigger, {
|
|
856
852
|
_id: "aiChatAttachmentsBar__InfoTipIcon",
|
|
857
853
|
children: /* @__PURE__ */ n(I, { iconKey: "info" })
|
|
858
|
-
}),
|
|
854
|
+
}), ui = a(w.Arrow, {
|
|
859
855
|
_id: "aiChatAttachmentsBar__InfoTipArrow"
|
|
860
|
-
}),
|
|
856
|
+
}), Tr = a(w.Content, {
|
|
861
857
|
_id: "aiChatAttachmentsBar__InfoTipText",
|
|
862
858
|
side: "bottom",
|
|
863
859
|
sideOffset: 3,
|
|
864
860
|
align: "center",
|
|
865
|
-
children: /* @__PURE__ */
|
|
866
|
-
/* @__PURE__ */ n(
|
|
861
|
+
children: /* @__PURE__ */ $(Z, { children: [
|
|
862
|
+
/* @__PURE__ */ n(ui, {}),
|
|
867
863
|
"Attachments will be kept in context for the entire conversation."
|
|
868
864
|
] })
|
|
869
|
-
}),
|
|
865
|
+
}), Ci = a("div", {
|
|
870
866
|
_id: "aiChatAttachmentsBar__Inputs"
|
|
871
|
-
}),
|
|
867
|
+
}), wr = (t) => {
|
|
872
868
|
const { children: e, ...i } = t, r = { supportedInputs: [] };
|
|
873
869
|
return r?.supportedInputs ? /* @__PURE__ */ n(
|
|
874
|
-
|
|
870
|
+
Ci,
|
|
875
871
|
{
|
|
876
872
|
children: y(e, r.supportedInputs),
|
|
877
873
|
...i
|
|
878
874
|
}
|
|
879
875
|
) : null;
|
|
880
|
-
},
|
|
876
|
+
}, pi = a("button", {
|
|
881
877
|
_id: "aiChatAttachmentsBar__Input"
|
|
882
|
-
}),
|
|
878
|
+
}), Hr = (t) => {
|
|
883
879
|
const { input: e, onClick: i, ...r } = t, o = { supportedInputs: [] }, s = [], c = () => {
|
|
884
880
|
}, { selectInput: d, onOpen: m } = k(), l = () => {
|
|
885
881
|
if (e.type === "FUNCTIONAL_MULTI_ATTACHMENT")
|
|
@@ -887,19 +883,19 @@ const ot = "__intro__", st = a("div", {
|
|
|
887
883
|
d(e), m();
|
|
888
884
|
};
|
|
889
885
|
return /* @__PURE__ */ n(
|
|
890
|
-
|
|
886
|
+
pi,
|
|
891
887
|
{
|
|
892
888
|
children: e.displayName,
|
|
893
889
|
onClick: h(i, l),
|
|
894
890
|
...r
|
|
895
891
|
}
|
|
896
892
|
);
|
|
897
|
-
},
|
|
893
|
+
}, vi = a(oe, {
|
|
898
894
|
_id: "aiChatAttachmentsBar__Modal"
|
|
899
|
-
}),
|
|
895
|
+
}), Lr = (t) => {
|
|
900
896
|
const { onOpenChange: e, ...i } = t, { selectInput: r, isOpen: o, onClose: s, selectedInput: c } = k();
|
|
901
897
|
return /* @__PURE__ */ n(
|
|
902
|
-
|
|
898
|
+
vi,
|
|
903
899
|
{
|
|
904
900
|
open: o && c !== null,
|
|
905
901
|
onOpenChange: h(e, (m) => {
|
|
@@ -908,65 +904,65 @@ const ot = "__intro__", st = a("div", {
|
|
|
908
904
|
...i
|
|
909
905
|
}
|
|
910
906
|
);
|
|
911
|
-
},
|
|
907
|
+
}, xr = a(ie, {
|
|
912
908
|
_id: "aiChatAttachmentsBar__ModalOverlay"
|
|
913
|
-
}),
|
|
909
|
+
}), Dr = a(ae, {
|
|
914
910
|
_id: "aiChatAttachmentsBar__ModalContent",
|
|
915
911
|
"aria-describedby": void 0
|
|
916
|
-
}),
|
|
912
|
+
}), Or = a("div", {
|
|
917
913
|
_id: "aiChatAttachmentsBar__ModalHeader"
|
|
918
|
-
}),
|
|
914
|
+
}), gi = a(re, {
|
|
919
915
|
_id: "aiChatAttachmentsBar__ModalHeading"
|
|
920
|
-
}),
|
|
916
|
+
}), Wr = (t) => {
|
|
921
917
|
const { selectedInput: e } = k(), i = `Add ${e?.displayName}`;
|
|
922
|
-
return /* @__PURE__ */ n(
|
|
923
|
-
},
|
|
918
|
+
return /* @__PURE__ */ n(gi, { children: i, ...t });
|
|
919
|
+
}, bi = a("span", {
|
|
924
920
|
_id: "aiChatAttachmentsBar__ModalDescription"
|
|
925
|
-
}),
|
|
921
|
+
}), Rr = (t) => {
|
|
926
922
|
const { selectedInput: e } = k(), i = e?.workflowModalProps?.modalHelpText;
|
|
927
|
-
return i ? /* @__PURE__ */ n(
|
|
928
|
-
},
|
|
923
|
+
return i ? /* @__PURE__ */ n(bi, { children: i, ...t }) : null;
|
|
924
|
+
}, _i = a("div", {
|
|
929
925
|
_id: "aiChatAttachmentsBar__ModalHelp"
|
|
930
|
-
}),
|
|
926
|
+
}), Nr = (t) => {
|
|
931
927
|
const { children: e, ...i } = t, { selectedInput: r } = k(), o = r?.workflowModalProps?.modalHelpElement;
|
|
932
|
-
return o ? /* @__PURE__ */ n(
|
|
933
|
-
},
|
|
928
|
+
return o ? /* @__PURE__ */ n(_i, { asChild: !e, children: e || o, ...i }) : null;
|
|
929
|
+
}, Vr = a(ne, {
|
|
934
930
|
_id: "aiChatAttachmentsBar__ModalClose",
|
|
935
931
|
children: /* @__PURE__ */ n(I, { iconKey: "close" })
|
|
936
|
-
}),
|
|
932
|
+
}), $r = a("div", {
|
|
937
933
|
_id: "aiChatAttachmentsBar__ModalBody"
|
|
938
|
-
}),
|
|
934
|
+
}), Ai = a("form", {
|
|
939
935
|
_id: "aiChatAttachmentsBar__Form"
|
|
940
|
-
}),
|
|
936
|
+
}), Qr = (t) => {
|
|
941
937
|
const { onSubmit: e, ...i } = t, { form: r } = k();
|
|
942
938
|
return /* @__PURE__ */ n(
|
|
943
|
-
|
|
939
|
+
Ai,
|
|
944
940
|
{
|
|
945
941
|
onSubmit: h(e, r.onSubmit),
|
|
946
942
|
...i
|
|
947
943
|
}
|
|
948
944
|
);
|
|
949
|
-
},
|
|
945
|
+
}, Ur = a("div", {
|
|
950
946
|
_id: "aiChatAttachmentsBar__FormTitle",
|
|
951
947
|
role: "group"
|
|
952
|
-
}),
|
|
948
|
+
}), Pi = a("label", {
|
|
953
949
|
_id: "aiChatAttachmentsBar__FormTitleLabel"
|
|
954
|
-
}),
|
|
950
|
+
}), Kr = (t) => {
|
|
955
951
|
const { form: e, selectedInput: i } = k();
|
|
956
952
|
return /* @__PURE__ */ n(
|
|
957
|
-
|
|
953
|
+
Pi,
|
|
958
954
|
{
|
|
959
955
|
htmlFor: `${i?.id}-title`,
|
|
960
956
|
children: e.labels.title,
|
|
961
957
|
...t
|
|
962
958
|
}
|
|
963
959
|
);
|
|
964
|
-
},
|
|
960
|
+
}, Fi = a("input", {
|
|
965
961
|
_id: "aiChatAttachmentsBar__FormTitleInput"
|
|
966
|
-
}),
|
|
962
|
+
}), qr = (t) => {
|
|
967
963
|
const { onChange: e, ...i } = t, { form: r, selectedInput: o } = k();
|
|
968
964
|
return /* @__PURE__ */ n(
|
|
969
|
-
|
|
965
|
+
Fi,
|
|
970
966
|
{
|
|
971
967
|
name: "title",
|
|
972
968
|
value: r.data.title,
|
|
@@ -977,39 +973,39 @@ const ot = "__intro__", st = a("div", {
|
|
|
977
973
|
...i
|
|
978
974
|
}
|
|
979
975
|
);
|
|
980
|
-
},
|
|
976
|
+
}, fi = a("span", {
|
|
981
977
|
_id: "aiChatAttachmentsBar__FormTitleError"
|
|
982
|
-
}),
|
|
978
|
+
}), jr = (t) => {
|
|
983
979
|
const { form: e } = k();
|
|
984
980
|
return e.errors.title ? /* @__PURE__ */ n(
|
|
985
|
-
|
|
981
|
+
fi,
|
|
986
982
|
{
|
|
987
983
|
"aria-live": "polite",
|
|
988
984
|
children: e.errors.title,
|
|
989
985
|
...t
|
|
990
986
|
}
|
|
991
987
|
) : null;
|
|
992
|
-
},
|
|
988
|
+
}, zr = a("div", {
|
|
993
989
|
_id: "aiChatAttachmentsBar__FormTitle",
|
|
994
990
|
role: "group"
|
|
995
|
-
}),
|
|
991
|
+
}), Mi = a("label", {
|
|
996
992
|
_id: "aiChatAttachmentsBar__FormContentLabel"
|
|
997
|
-
}),
|
|
993
|
+
}), Gr = (t) => {
|
|
998
994
|
const { form: e, selectedInput: i } = k();
|
|
999
995
|
return /* @__PURE__ */ n(
|
|
1000
|
-
|
|
996
|
+
Mi,
|
|
1001
997
|
{
|
|
1002
998
|
htmlFor: `${i?.id}-content`,
|
|
1003
999
|
children: e.labels.content,
|
|
1004
1000
|
...t
|
|
1005
1001
|
}
|
|
1006
1002
|
);
|
|
1007
|
-
},
|
|
1003
|
+
}, Ii = a("textarea", {
|
|
1008
1004
|
_id: "aiChatAttachmentsBar__FormTitleInput"
|
|
1009
|
-
}),
|
|
1005
|
+
}), Yr = (t) => {
|
|
1010
1006
|
const { onChange: e, ...i } = t, { form: r, selectedInput: o } = k();
|
|
1011
1007
|
return /* @__PURE__ */ n(
|
|
1012
|
-
|
|
1008
|
+
Ii,
|
|
1013
1009
|
{
|
|
1014
1010
|
asChild: !0,
|
|
1015
1011
|
rows: 4,
|
|
@@ -1023,42 +1019,42 @@ const ot = "__intro__", st = a("div", {
|
|
|
1023
1019
|
children: /* @__PURE__ */ n(ee, { maxRows: 10 })
|
|
1024
1020
|
}
|
|
1025
1021
|
);
|
|
1026
|
-
},
|
|
1022
|
+
}, Ei = a("span", {
|
|
1027
1023
|
_id: "aiChatAttachmentsBar__FormContentError"
|
|
1028
|
-
}),
|
|
1024
|
+
}), Jr = (t) => {
|
|
1029
1025
|
const { form: e } = k();
|
|
1030
1026
|
return e.errors.content ? /* @__PURE__ */ n(
|
|
1031
|
-
|
|
1027
|
+
Ei,
|
|
1032
1028
|
{
|
|
1033
1029
|
"aria-live": "polite",
|
|
1034
1030
|
children: e.errors.content,
|
|
1035
1031
|
...t
|
|
1036
1032
|
}
|
|
1037
1033
|
) : null;
|
|
1038
|
-
},
|
|
1034
|
+
}, Xr = a("button", {
|
|
1039
1035
|
_id: "aiChatAttachmentsBar__FormSubmitButton",
|
|
1040
1036
|
children: "Upload",
|
|
1041
1037
|
type: "submit"
|
|
1042
|
-
}),
|
|
1038
|
+
}), Zr = a("div", {
|
|
1043
1039
|
_id: "aiChatActionBar"
|
|
1044
|
-
}),
|
|
1040
|
+
}), eo = a("div", {
|
|
1045
1041
|
_id: "aiChat__ChatActions"
|
|
1046
|
-
}),
|
|
1042
|
+
}), to = a("div", {
|
|
1047
1043
|
_id: "aiChatTagline__Container"
|
|
1048
|
-
}),
|
|
1044
|
+
}), io = a("span", {
|
|
1049
1045
|
_id: "aiChatTagline__Text",
|
|
1050
1046
|
children: "Powered by"
|
|
1051
|
-
}),
|
|
1047
|
+
}), ao = a($e, {
|
|
1052
1048
|
_id: "aiChatTagline__Logo"
|
|
1053
|
-
}),
|
|
1049
|
+
}), no = a("a", {
|
|
1054
1050
|
_id: "aiChatTagline__BrandName",
|
|
1055
1051
|
children: "inkeep",
|
|
1056
1052
|
href: "https://www.inkeep.com/",
|
|
1057
1053
|
target: "_blank",
|
|
1058
1054
|
rel: "noopener noreferrer"
|
|
1059
|
-
}),
|
|
1055
|
+
}), Si = a(w.Trigger, {
|
|
1060
1056
|
_id: "aiChat__ChatAction"
|
|
1061
|
-
}),
|
|
1057
|
+
}), _e = (t) => {
|
|
1062
1058
|
const { action: e, onClick: i, className: r, ...o } = t, s = {}, { clear: c, stop: d, isLoading: m, isStreaming: l, messages: C } = b(), { conversationId: v } = b(), { aiChatSettings: u } = p(), [_, B] = X(), [
|
|
1063
1059
|
P
|
|
1064
1060
|
/* copyShareUri */
|
|
@@ -1075,8 +1071,8 @@ const ot = "__intro__", st = a("div", {
|
|
|
1075
1071
|
help: () => {
|
|
1076
1072
|
},
|
|
1077
1073
|
copy: () => {
|
|
1078
|
-
const he = C.map((
|
|
1079
|
-
const G = `**${
|
|
1074
|
+
const he = C.map((R) => {
|
|
1075
|
+
const G = `**${R.role === "assistant" ? "AI Assistant" : "User"}**`, Y = ge(R);
|
|
1080
1076
|
return `${G}
|
|
1081
1077
|
|
|
1082
1078
|
${Y}`;
|
|
@@ -1096,19 +1092,19 @@ ${Y}`;
|
|
|
1096
1092
|
share: P
|
|
1097
1093
|
};
|
|
1098
1094
|
return /* @__PURE__ */ n(w.Tooltip, { delayDuration: 0, open: z[e], children: /* @__PURE__ */ n(
|
|
1099
|
-
|
|
1095
|
+
Si,
|
|
1100
1096
|
{
|
|
1101
1097
|
"data-type": e,
|
|
1102
1098
|
"data-copied": g(_ || P),
|
|
1103
1099
|
className: `${r} ${e}`,
|
|
1104
|
-
children: /* @__PURE__ */ n(
|
|
1100
|
+
children: /* @__PURE__ */ n(Bi, { action: e }),
|
|
1105
1101
|
onClick: h(i, D[e]),
|
|
1106
1102
|
...o
|
|
1107
1103
|
}
|
|
1108
1104
|
) });
|
|
1109
|
-
},
|
|
1105
|
+
}, ki = a("span", {
|
|
1110
1106
|
_id: "aiChat__ChatActionLabel"
|
|
1111
|
-
}),
|
|
1107
|
+
}), Bi = (t) => {
|
|
1112
1108
|
const { action: e, ...i } = t, { aiChatSettings: r } = p(), o = r.toolbarButtonLabels ?? {}, s = {
|
|
1113
1109
|
help: o.getHelp ?? "Get Help",
|
|
1114
1110
|
copy: o.copyChat ?? "Copy",
|
|
@@ -1116,21 +1112,21 @@ ${Y}`;
|
|
|
1116
1112
|
clear: o.clear ?? "Clear",
|
|
1117
1113
|
stop: o.stop ?? "Stop"
|
|
1118
1114
|
};
|
|
1119
|
-
return /* @__PURE__ */ n(
|
|
1120
|
-
},
|
|
1115
|
+
return /* @__PURE__ */ n(ki, { children: s[e], ...i });
|
|
1116
|
+
}, yi = a(w.TooltipContent, {
|
|
1121
1117
|
_id: "aiChat__ChatActionFeeback"
|
|
1122
|
-
}),
|
|
1118
|
+
}), ro = (t) => {
|
|
1123
1119
|
const { action: e, children: i, ...r } = t, o = {
|
|
1124
1120
|
copy: "Copied!",
|
|
1125
1121
|
share: "Link copied!"
|
|
1126
1122
|
};
|
|
1127
|
-
return /* @__PURE__ */
|
|
1123
|
+
return /* @__PURE__ */ $(yi, { sideOffset: 5, ...r, children: [
|
|
1128
1124
|
/* @__PURE__ */ n(w.Arrow, {}),
|
|
1129
1125
|
i || o[e]
|
|
1130
1126
|
] });
|
|
1131
|
-
},
|
|
1127
|
+
}, Ti = a(T.Root, {
|
|
1132
1128
|
_id: "aiChatHelpActions"
|
|
1133
|
-
}),
|
|
1129
|
+
}), oo = (t) => {
|
|
1134
1130
|
const { children: e, ...i } = t, { aiChatSettings: r } = p(), { getHelpOptions: o } = r;
|
|
1135
1131
|
if (!o || (o ?? []).length === 0)
|
|
1136
1132
|
return null;
|
|
@@ -1140,9 +1136,9 @@ ${Y}`;
|
|
|
1140
1136
|
return { ...C, [u]: [...C[u], v] };
|
|
1141
1137
|
},
|
|
1142
1138
|
{ _pinned: [], _unpinned: [] }
|
|
1143
|
-
), d = c.length === 1 ? [...s, c[0]] : s, m = c.length === 1 ? [] : c, l =
|
|
1144
|
-
return /* @__PURE__ */ n(
|
|
1145
|
-
|
|
1139
|
+
), d = c.length === 1 ? [...s, c[0]] : s, m = c.length === 1 ? [] : c, l = Ke();
|
|
1140
|
+
return /* @__PURE__ */ n(qe, { value: l, children: /* @__PURE__ */ n(
|
|
1141
|
+
Ti,
|
|
1146
1142
|
{
|
|
1147
1143
|
open: l.open,
|
|
1148
1144
|
onOpenChange: l.setOpen,
|
|
@@ -1150,14 +1146,14 @@ ${Y}`;
|
|
|
1150
1146
|
...i
|
|
1151
1147
|
}
|
|
1152
1148
|
) });
|
|
1153
|
-
},
|
|
1149
|
+
}, wi = a(_e, {
|
|
1154
1150
|
_id: "aiChatHelpAction",
|
|
1155
1151
|
action: "help"
|
|
1156
|
-
}),
|
|
1152
|
+
}), Hi = a("a", {
|
|
1157
1153
|
_id: "aiChatHelpAction",
|
|
1158
1154
|
target: "_blank",
|
|
1159
1155
|
rel: "noreferrer"
|
|
1160
|
-
}),
|
|
1156
|
+
}), so = (t) => {
|
|
1161
1157
|
const { action: e, onClick: i, ...r } = t, { handleAction: o, logHelpAction: s } = de(e), c = e.action.type, d = {
|
|
1162
1158
|
"aria-label": e.name,
|
|
1163
1159
|
"data-name": e.name,
|
|
@@ -1168,18 +1164,18 @@ ${Y}`;
|
|
|
1168
1164
|
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
|
|
1169
1165
|
...r
|
|
1170
1166
|
};
|
|
1171
|
-
return c === "open_link" ? /* @__PURE__ */ n(
|
|
1172
|
-
},
|
|
1167
|
+
return c === "open_link" ? /* @__PURE__ */ n(Hi, { href: e.action.url, ...d }) : /* @__PURE__ */ n(wi, { ...d });
|
|
1168
|
+
}, Li = a(T.Trigger, {
|
|
1173
1169
|
_id: "aiChatHelpActions__Trigger"
|
|
1174
|
-
}),
|
|
1170
|
+
}), co = E(
|
|
1175
1171
|
(t) => {
|
|
1176
1172
|
const { aiChatSettings: e } = p();
|
|
1177
|
-
return /* @__PURE__ */ n(
|
|
1173
|
+
return /* @__PURE__ */ n(_e, { action: "help", ...t, asChild: !0, children: /* @__PURE__ */ n(Li, { children: e.toolbarButtonLabels?.getHelp ?? "Get Help" }) });
|
|
1178
1174
|
}
|
|
1179
|
-
),
|
|
1175
|
+
), xi = a(T.Content, {
|
|
1180
1176
|
_id: "aiChatHelpActions__Menu"
|
|
1181
|
-
}),
|
|
1182
|
-
|
|
1177
|
+
}), mo = (t) => /* @__PURE__ */ n(
|
|
1178
|
+
xi,
|
|
1183
1179
|
{
|
|
1184
1180
|
side: "top",
|
|
1185
1181
|
sideOffset: 8,
|
|
@@ -1187,10 +1183,10 @@ ${Y}`;
|
|
|
1187
1183
|
alignOffset: -10,
|
|
1188
1184
|
...t
|
|
1189
1185
|
}
|
|
1190
|
-
),
|
|
1186
|
+
), lo = a(T.Arrow, {
|
|
1191
1187
|
_id: "aiChatHelpActions__MenuArrow"
|
|
1192
|
-
}),
|
|
1193
|
-
const { action: e, onClick: i, ...r } = t, { handleAction: o, logHelpAction: s } = de(e), { setOpen: c } =
|
|
1188
|
+
}), ho = (t) => {
|
|
1189
|
+
const { action: e, onClick: i, ...r } = t, { handleAction: o, logHelpAction: s } = de(e), { setOpen: c } = je(), d = () => {
|
|
1194
1190
|
o({
|
|
1195
1191
|
onOpenForm: () => c(!1)
|
|
1196
1192
|
}), s();
|
|
@@ -1208,58 +1204,58 @@ ${Y}`;
|
|
|
1208
1204
|
onClick: h(i, d)
|
|
1209
1205
|
});
|
|
1210
1206
|
return /* @__PURE__ */ n(l, { ...r });
|
|
1211
|
-
},
|
|
1207
|
+
}, Di = a(H, {
|
|
1212
1208
|
_id: "aiChatHelpActions_MenuItemIcon"
|
|
1213
|
-
}),
|
|
1209
|
+
}), uo = (t) => {
|
|
1214
1210
|
const { action: e, ...i } = t;
|
|
1215
|
-
return e.icon ? /* @__PURE__ */ n(
|
|
1216
|
-
},
|
|
1211
|
+
return e.icon ? /* @__PURE__ */ n(Di, { iconSettings: e.icon, ...i }) : null;
|
|
1212
|
+
}, Oi = a(oe, {
|
|
1217
1213
|
_id: "aiChatFeedbackModal"
|
|
1218
|
-
}),
|
|
1214
|
+
}), Co = (t) => {
|
|
1219
1215
|
const { onOpenChange: e, ...i } = t, { currentFeedback: r, setCurrentFeedback: o } = se();
|
|
1220
1216
|
return /* @__PURE__ */ n(
|
|
1221
|
-
|
|
1217
|
+
Oi,
|
|
1222
1218
|
{
|
|
1223
1219
|
open: r !== null,
|
|
1224
1220
|
onOpenChange: h(e, () => o(null)),
|
|
1225
1221
|
...i
|
|
1226
1222
|
}
|
|
1227
1223
|
);
|
|
1228
|
-
},
|
|
1224
|
+
}, po = a(ie, {
|
|
1229
1225
|
_id: "aiChatFeedbackModal__Overlay"
|
|
1230
|
-
}),
|
|
1226
|
+
}), vo = a(ae, {
|
|
1231
1227
|
_id: "aiChatFeedbackModal__Content",
|
|
1232
1228
|
"aria-describedby": void 0
|
|
1233
|
-
}),
|
|
1229
|
+
}), go = a(re, {
|
|
1234
1230
|
_id: "aiChatFeedbackModal__Header",
|
|
1235
1231
|
children: "Help improve my answers!"
|
|
1236
|
-
}),
|
|
1232
|
+
}), bo = a(ne, {
|
|
1237
1233
|
_id: "aiChatFeedbackModal__Close",
|
|
1238
1234
|
children: /* @__PURE__ */ n(I, { iconKey: "close" })
|
|
1239
|
-
}),
|
|
1235
|
+
}), _o = a("div", {
|
|
1240
1236
|
_id: "aiChatFeedbackModal__Body"
|
|
1241
|
-
}),
|
|
1237
|
+
}), Wi = a("form", {
|
|
1242
1238
|
_id: "aiChatFeedbackForm"
|
|
1243
|
-
}),
|
|
1239
|
+
}), Ao = (t) => {
|
|
1244
1240
|
const { onSubmit: e, ...i } = t, { submitNegativeFeedback: r, currentFeedback: o, setCurrentFeedback: s } = se();
|
|
1245
|
-
return /* @__PURE__ */ n(
|
|
1241
|
+
return /* @__PURE__ */ n(Wi, { onSubmit: h(e, (d) => {
|
|
1246
1242
|
d.preventDefault();
|
|
1247
1243
|
const m = d.target, l = new FormData(m), C = Object.fromEntries(l.entries());
|
|
1248
1244
|
o && (r(o, C), s(null));
|
|
1249
1245
|
}), ...i });
|
|
1250
|
-
},
|
|
1246
|
+
}, Ri = a("div", {
|
|
1251
1247
|
_id: "aiChatFeedbackItem"
|
|
1252
|
-
}),
|
|
1248
|
+
}), Po = (t) => {
|
|
1253
1249
|
const { name: e, ...i } = t;
|
|
1254
|
-
return /* @__PURE__ */ n(
|
|
1255
|
-
},
|
|
1250
|
+
return /* @__PURE__ */ n(Ne, { name: e, children: /* @__PURE__ */ n(Ri, { ...i }) });
|
|
1251
|
+
}, Ni = a(U.Root, {
|
|
1256
1252
|
_id: "aiChatFeedbackItem__Checkbox"
|
|
1257
|
-
}),
|
|
1253
|
+
}), Fo = (t) => {
|
|
1258
1254
|
const { name: e, focusItem: i } = ce(), { onCheckedChange: r, ...o } = t, s = (c) => {
|
|
1259
1255
|
c && i?.current?.focus();
|
|
1260
1256
|
};
|
|
1261
1257
|
return /* @__PURE__ */ n(
|
|
1262
|
-
|
|
1258
|
+
Ni,
|
|
1263
1259
|
{
|
|
1264
1260
|
id: `feedback-${e}`,
|
|
1265
1261
|
name: e,
|
|
@@ -1267,47 +1263,47 @@ ${Y}`;
|
|
|
1267
1263
|
...o
|
|
1268
1264
|
}
|
|
1269
1265
|
);
|
|
1270
|
-
},
|
|
1266
|
+
}, fo = a(U.Indicator, {
|
|
1271
1267
|
_id: "aiChatFeedbackItem__CheckboxIndicator",
|
|
1272
1268
|
children: /* @__PURE__ */ n(ve, {})
|
|
1273
|
-
}),
|
|
1269
|
+
}), Vi = a("label", {
|
|
1274
1270
|
_id: "aiChatFeedbackItem__Label"
|
|
1275
|
-
}),
|
|
1271
|
+
}), Mo = (t) => {
|
|
1276
1272
|
const { name: e } = ce(), i = {
|
|
1277
1273
|
unrelated_response: "Didn't answer my question",
|
|
1278
1274
|
inaccurate_statement: "Inaccurate statement",
|
|
1279
1275
|
inaccurate_code_snippet: "Inaccurate code snippet",
|
|
1280
1276
|
irrelevant_citations: "Irrelevant citations"
|
|
1281
1277
|
};
|
|
1282
|
-
return /* @__PURE__ */ n(
|
|
1283
|
-
},
|
|
1278
|
+
return /* @__PURE__ */ n(Vi, { htmlFor: `feedback-${e}`, children: i[e], ...t });
|
|
1279
|
+
}, $i = a("textarea", {
|
|
1284
1280
|
_id: "aiChatFeedbackItem__Description",
|
|
1285
1281
|
placeholder: "Please describe"
|
|
1286
|
-
}),
|
|
1282
|
+
}), Io = (t) => {
|
|
1287
1283
|
const { name: e, focusItem: i } = ce();
|
|
1288
1284
|
return /* @__PURE__ */ n(
|
|
1289
|
-
|
|
1285
|
+
$i,
|
|
1290
1286
|
{
|
|
1291
1287
|
ref: i,
|
|
1292
1288
|
name: `${e}:description`,
|
|
1293
1289
|
...t
|
|
1294
1290
|
}
|
|
1295
1291
|
);
|
|
1296
|
-
},
|
|
1292
|
+
}, Eo = a("button", {
|
|
1297
1293
|
_id: "aiChatFeedbackForm__SubmitButton",
|
|
1298
1294
|
children: "Submit",
|
|
1299
1295
|
type: "submit"
|
|
1300
|
-
}),
|
|
1296
|
+
}), Qi = a("div", {
|
|
1301
1297
|
_id: "aiChatForm__Wrapper"
|
|
1302
|
-
}),
|
|
1298
|
+
}), So = (t) => {
|
|
1303
1299
|
const { form: e } = A();
|
|
1304
|
-
return e ? /* @__PURE__ */ n(
|
|
1305
|
-
},
|
|
1300
|
+
return e ? /* @__PURE__ */ n(Qi, { ...t }) : null;
|
|
1301
|
+
}, Ui = a("form", {
|
|
1306
1302
|
_id: "aiChatForm"
|
|
1307
|
-
}),
|
|
1303
|
+
}), ko = (t) => {
|
|
1308
1304
|
const { onSubmit: e, ...i } = t, { conversationId: r, messages: o } = b(), { handleSubmit: s, isSuccess: c } = A();
|
|
1309
1305
|
return c ? null : /* @__PURE__ */ n(
|
|
1310
|
-
|
|
1306
|
+
Ui,
|
|
1311
1307
|
{
|
|
1312
1308
|
onSubmit: h(
|
|
1313
1309
|
e,
|
|
@@ -1316,35 +1312,35 @@ ${Y}`;
|
|
|
1316
1312
|
...i
|
|
1317
1313
|
}
|
|
1318
1314
|
);
|
|
1319
|
-
},
|
|
1315
|
+
}, Ki = a("button", {
|
|
1320
1316
|
_id: "aiChatForm__Close",
|
|
1321
1317
|
children: /* @__PURE__ */ n(I, { iconKey: "close" })
|
|
1322
|
-
}),
|
|
1318
|
+
}), Bo = (t) => {
|
|
1323
1319
|
const { onClick: e, ...i } = t, { closeForm: r } = A();
|
|
1324
|
-
return /* @__PURE__ */ n(
|
|
1325
|
-
},
|
|
1320
|
+
return /* @__PURE__ */ n(Ki, { onClick: h(e, r), ...i });
|
|
1321
|
+
}, yo = a("div", {
|
|
1326
1322
|
_id: "aiChatForm__Header"
|
|
1327
|
-
}),
|
|
1323
|
+
}), qi = a("h2", {
|
|
1328
1324
|
_id: "aiChatForm__Heading"
|
|
1329
|
-
}),
|
|
1325
|
+
}), To = (t) => {
|
|
1330
1326
|
const { form: e } = A();
|
|
1331
|
-
return e?.heading ? /* @__PURE__ */ n(
|
|
1332
|
-
},
|
|
1327
|
+
return e?.heading ? /* @__PURE__ */ n(qi, { children: e.heading, ...t }) : null;
|
|
1328
|
+
}, ji = a(K, {
|
|
1333
1329
|
_id: "aiChatForm__Description"
|
|
1334
|
-
}),
|
|
1330
|
+
}), wo = (t) => {
|
|
1335
1331
|
const { form: e } = A();
|
|
1336
|
-
return e?.description ? /* @__PURE__ */ n(
|
|
1337
|
-
},
|
|
1332
|
+
return e?.description ? /* @__PURE__ */ n(ji, { children: e.description, ...t }) : null;
|
|
1333
|
+
}, zi = a("div", {
|
|
1338
1334
|
_id: "aiChatForm__Content"
|
|
1339
|
-
}),
|
|
1335
|
+
}), Ho = (t) => {
|
|
1340
1336
|
const { children: e, ...i } = t, { getFields: r } = A(), { conversationId: o } = b(), s = r(o) || [];
|
|
1341
|
-
return /* @__PURE__ */ n(
|
|
1342
|
-
},
|
|
1337
|
+
return /* @__PURE__ */ n(zi, { children: y(e, s), ...i });
|
|
1338
|
+
}, Gi = a("div", {
|
|
1343
1339
|
_id: "aiChatForm__Field"
|
|
1344
|
-
}),
|
|
1340
|
+
}), Lo = (t) => {
|
|
1345
1341
|
const { field: e, autoFocus: i, ...r } = t, { control: o, errors: s } = A();
|
|
1346
1342
|
return /* @__PURE__ */ n(
|
|
1347
|
-
|
|
1343
|
+
Ge,
|
|
1348
1344
|
{
|
|
1349
1345
|
name: e.name,
|
|
1350
1346
|
control: o,
|
|
@@ -1352,14 +1348,14 @@ ${Y}`;
|
|
|
1352
1348
|
render: ({ field: c }) => {
|
|
1353
1349
|
const d = c.value !== void 0 || e.inputType === "file";
|
|
1354
1350
|
return /* @__PURE__ */ n(
|
|
1355
|
-
|
|
1351
|
+
ze,
|
|
1356
1352
|
{
|
|
1357
1353
|
"data-invalid": g(!!s[e.name]),
|
|
1358
1354
|
field: e,
|
|
1359
1355
|
fieldProps: c,
|
|
1360
1356
|
autoFocus: i,
|
|
1361
1357
|
children: d && /* @__PURE__ */ n(
|
|
1362
|
-
|
|
1358
|
+
Gi,
|
|
1363
1359
|
{
|
|
1364
1360
|
"data-input-type": e.inputType,
|
|
1365
1361
|
"data-hidden": g(e.isHidden),
|
|
@@ -1371,12 +1367,12 @@ ${Y}`;
|
|
|
1371
1367
|
}
|
|
1372
1368
|
}
|
|
1373
1369
|
);
|
|
1374
|
-
},
|
|
1370
|
+
}, Yi = a("label", {
|
|
1375
1371
|
_id: "aiChatForm__FieldLabel"
|
|
1376
|
-
}),
|
|
1372
|
+
}), xo = (t) => {
|
|
1377
1373
|
const { field: e } = x();
|
|
1378
1374
|
return /* @__PURE__ */ n(
|
|
1379
|
-
|
|
1375
|
+
Yi,
|
|
1380
1376
|
{
|
|
1381
1377
|
"data-required": g(e.isRequired),
|
|
1382
1378
|
htmlFor: e.name,
|
|
@@ -1384,10 +1380,10 @@ ${Y}`;
|
|
|
1384
1380
|
...t
|
|
1385
1381
|
}
|
|
1386
1382
|
);
|
|
1387
|
-
},
|
|
1383
|
+
}, Ji = a("input", {
|
|
1388
1384
|
_id: "aiChatForm__FieldText",
|
|
1389
1385
|
type: "text"
|
|
1390
|
-
}),
|
|
1386
|
+
}), Ae = (t) => {
|
|
1391
1387
|
const {
|
|
1392
1388
|
field: e,
|
|
1393
1389
|
error: i,
|
|
@@ -1395,7 +1391,7 @@ ${Y}`;
|
|
|
1395
1391
|
autoFocus: c
|
|
1396
1392
|
} = x(), { onChange: d, onBlur: m, ...l } = t;
|
|
1397
1393
|
return /* @__PURE__ */ n(
|
|
1398
|
-
|
|
1394
|
+
Ji,
|
|
1399
1395
|
{
|
|
1400
1396
|
id: e.name,
|
|
1401
1397
|
autoFocus: c,
|
|
@@ -1407,14 +1403,14 @@ ${Y}`;
|
|
|
1407
1403
|
...l
|
|
1408
1404
|
}
|
|
1409
1405
|
);
|
|
1410
|
-
},
|
|
1406
|
+
}, Do = a(Ae, {
|
|
1411
1407
|
_id: "aiChatForm__FieldEmail",
|
|
1412
1408
|
type: "email"
|
|
1413
|
-
}),
|
|
1409
|
+
}), Xi = a("input", {
|
|
1414
1410
|
_id: "aiChatForm__FieldFile",
|
|
1415
1411
|
type: "file",
|
|
1416
1412
|
multiple: !0
|
|
1417
|
-
}),
|
|
1413
|
+
}), Oo = (t) => {
|
|
1418
1414
|
const {
|
|
1419
1415
|
field: e,
|
|
1420
1416
|
error: i,
|
|
@@ -1425,7 +1421,7 @@ ${Y}`;
|
|
|
1425
1421
|
o(_);
|
|
1426
1422
|
};
|
|
1427
1423
|
return /* @__PURE__ */ n(
|
|
1428
|
-
|
|
1424
|
+
Xi,
|
|
1429
1425
|
{
|
|
1430
1426
|
id: e.name,
|
|
1431
1427
|
autoFocus: d,
|
|
@@ -1437,17 +1433,17 @@ ${Y}`;
|
|
|
1437
1433
|
onBlur: h(l, s)
|
|
1438
1434
|
}
|
|
1439
1435
|
);
|
|
1440
|
-
},
|
|
1436
|
+
}, Wo = a(Ae, {
|
|
1441
1437
|
_id: "aiChatForm__FieldTextArea",
|
|
1442
1438
|
type: "textarea",
|
|
1443
1439
|
asChild: !0,
|
|
1444
1440
|
children: /* @__PURE__ */ n(ee, { maxRows: 8 })
|
|
1445
|
-
}),
|
|
1441
|
+
}), Zi = a(U.Root, {
|
|
1446
1442
|
_id: "aiChatForm__FieldCheckbox"
|
|
1447
|
-
}),
|
|
1443
|
+
}), Ro = (t) => {
|
|
1448
1444
|
const { field: e, error: i, fieldProps: r, autoFocus: o } = x(), { onCheckedChange: s, ...c } = t;
|
|
1449
1445
|
return /* @__PURE__ */ n(
|
|
1450
|
-
|
|
1446
|
+
Zi,
|
|
1451
1447
|
{
|
|
1452
1448
|
id: e.name,
|
|
1453
1449
|
name: e.name,
|
|
@@ -1458,15 +1454,15 @@ ${Y}`;
|
|
|
1458
1454
|
...c
|
|
1459
1455
|
}
|
|
1460
1456
|
);
|
|
1461
|
-
},
|
|
1457
|
+
}, No = a(U.Indicator, {
|
|
1462
1458
|
_id: "aiChatForm__FieldCheckboxIndicator",
|
|
1463
1459
|
children: /* @__PURE__ */ n(ve, {})
|
|
1464
|
-
}),
|
|
1460
|
+
}), ea = a(Te, {
|
|
1465
1461
|
_id: "aiChatForm__FieldSelect"
|
|
1466
|
-
}),
|
|
1462
|
+
}), Vo = (t) => {
|
|
1467
1463
|
const { field: e, error: i, fieldProps: r } = x(), { onValueChange: o, ...s } = t;
|
|
1468
1464
|
return /* @__PURE__ */ n(
|
|
1469
|
-
|
|
1465
|
+
ea,
|
|
1470
1466
|
{
|
|
1471
1467
|
name: e.name,
|
|
1472
1468
|
"data-invalid": g(!!i),
|
|
@@ -1475,91 +1471,91 @@ ${Y}`;
|
|
|
1475
1471
|
...s
|
|
1476
1472
|
}
|
|
1477
1473
|
);
|
|
1478
|
-
},
|
|
1474
|
+
}, $o = a(Ie, {
|
|
1479
1475
|
_id: "aiChatForm__FieldSelect__Trigger"
|
|
1480
|
-
}),
|
|
1476
|
+
}), ta = a(we, {
|
|
1481
1477
|
_id: "aiChatForm__FieldSelect__Value"
|
|
1482
|
-
}),
|
|
1478
|
+
}), Qo = (t) => {
|
|
1483
1479
|
const { field: e } = x();
|
|
1484
1480
|
return /* @__PURE__ */ n(
|
|
1485
|
-
|
|
1481
|
+
ta,
|
|
1486
1482
|
{
|
|
1487
1483
|
placeholder: "placeholder" in e ? e.placeholder : void 0,
|
|
1488
1484
|
...t
|
|
1489
1485
|
}
|
|
1490
1486
|
);
|
|
1491
|
-
},
|
|
1487
|
+
}, Uo = a(Ee, {
|
|
1492
1488
|
_id: "aiChatForm__FieldSelect__Icon",
|
|
1493
1489
|
asChild: !0,
|
|
1494
1490
|
children: /* @__PURE__ */ n(H, { iconSettings: { builtIn: "LuChevronDown" } })
|
|
1495
|
-
}),
|
|
1491
|
+
}), Ko = a(Se, {
|
|
1496
1492
|
_id: "aiChatForm__FieldSelect__Content",
|
|
1497
1493
|
position: "popper"
|
|
1498
|
-
}),
|
|
1494
|
+
}), qo = a(ke, {
|
|
1499
1495
|
_id: "aiChatForm__FieldSelect__Viewport"
|
|
1500
|
-
}),
|
|
1496
|
+
}), jo = a(Be, {
|
|
1501
1497
|
_id: "aiChatForm__FieldSelect__Item"
|
|
1502
|
-
}),
|
|
1498
|
+
}), zo = a(Me, {
|
|
1503
1499
|
_id: "aiChatForm__FieldSelect__ItemText"
|
|
1504
|
-
}),
|
|
1505
|
-
|
|
1500
|
+
}), Go = a(
|
|
1501
|
+
ye,
|
|
1506
1502
|
{
|
|
1507
1503
|
_id: "aiChatForm__FieldSelect__ItemIndicator",
|
|
1508
1504
|
asChild: !0,
|
|
1509
1505
|
children: /* @__PURE__ */ n(H, { iconSettings: { builtIn: "LuCheck" } })
|
|
1510
1506
|
}
|
|
1511
|
-
),
|
|
1507
|
+
), ia = a("span", {
|
|
1512
1508
|
_id: "aiChatForm__FieldError"
|
|
1513
|
-
}),
|
|
1509
|
+
}), Yo = (t) => {
|
|
1514
1510
|
const { error: e } = x();
|
|
1515
|
-
return e ? /* @__PURE__ */ n(
|
|
1516
|
-
},
|
|
1511
|
+
return e ? /* @__PURE__ */ n(ia, { children: e.message?.toString(), ...t }) : null;
|
|
1512
|
+
}, aa = a("span", {
|
|
1517
1513
|
_id: "aiChatForm__Error"
|
|
1518
|
-
}),
|
|
1514
|
+
}), Jo = (t) => {
|
|
1519
1515
|
const { formError: e } = A();
|
|
1520
|
-
return e ? /* @__PURE__ */ n(
|
|
1521
|
-
},
|
|
1516
|
+
return e ? /* @__PURE__ */ n(aa, { children: e.message, ...t }) : null;
|
|
1517
|
+
}, Xo = a("div", {
|
|
1522
1518
|
_id: "aiChatForm__Footer"
|
|
1523
|
-
}),
|
|
1519
|
+
}), na = a("button", {
|
|
1524
1520
|
_id: "aiChatForm__Cancel",
|
|
1525
1521
|
children: "Cancel",
|
|
1526
1522
|
type: "button"
|
|
1527
|
-
}),
|
|
1523
|
+
}), Zo = (t) => {
|
|
1528
1524
|
const { onClick: e, ...i } = t, { closeForm: r } = A();
|
|
1529
|
-
return /* @__PURE__ */ n(
|
|
1530
|
-
},
|
|
1525
|
+
return /* @__PURE__ */ n(na, { onClick: h(e, r), ...i });
|
|
1526
|
+
}, ra = a("button", {
|
|
1531
1527
|
_id: "aiChatForm__Submit",
|
|
1532
1528
|
children: "Submit",
|
|
1533
1529
|
type: "submit"
|
|
1534
|
-
}),
|
|
1530
|
+
}), es = (t) => {
|
|
1535
1531
|
const { onClick: e, ...i } = t, { isSubmitting: r, form: o } = A(), s = o?.buttons.submit.label || "Submit";
|
|
1536
|
-
return /* @__PURE__ */ n(
|
|
1537
|
-
},
|
|
1532
|
+
return /* @__PURE__ */ n(ra, { disabled: r, ...i, children: s });
|
|
1533
|
+
}, oa = a("div", {
|
|
1538
1534
|
_id: "aiChatForm__Success"
|
|
1539
|
-
}),
|
|
1535
|
+
}), ts = (t) => {
|
|
1540
1536
|
const { isSuccess: e } = A();
|
|
1541
|
-
return e ? /* @__PURE__ */ n(
|
|
1542
|
-
},
|
|
1537
|
+
return e ? /* @__PURE__ */ n(oa, { ...t }) : null;
|
|
1538
|
+
}, sa = a("h2", {
|
|
1543
1539
|
_id: "aiChatForm__SuccessHeading"
|
|
1544
|
-
}),
|
|
1540
|
+
}), is = (t) => {
|
|
1545
1541
|
const { form: e } = A();
|
|
1546
|
-
return /* @__PURE__ */ n(
|
|
1547
|
-
},
|
|
1542
|
+
return /* @__PURE__ */ n(sa, { children: e?.successView?.heading, ...t });
|
|
1543
|
+
}, ca = a(K, {
|
|
1548
1544
|
_id: "aiChatForm__SuccessMessage"
|
|
1549
|
-
}),
|
|
1545
|
+
}), as = (t) => {
|
|
1550
1546
|
const { form: e } = A();
|
|
1551
|
-
return /* @__PURE__ */ n(
|
|
1552
|
-
},
|
|
1547
|
+
return /* @__PURE__ */ n(ca, { children: e?.successView?.message, ...t });
|
|
1548
|
+
}, da = a("button", {
|
|
1553
1549
|
_id: "aiChatForm__SuccessButton"
|
|
1554
|
-
}),
|
|
1550
|
+
}), ns = (t) => {
|
|
1555
1551
|
const { onClick: e, ...i } = t, { form: r, closeForm: o } = A(), s = r?.successView?.doneButton;
|
|
1556
1552
|
if (!s) return null;
|
|
1557
1553
|
const c = s.icon && /* @__PURE__ */ n(H, { iconSettings: s.icon }), d = s.label;
|
|
1558
1554
|
return /* @__PURE__ */ n(
|
|
1559
|
-
|
|
1555
|
+
da,
|
|
1560
1556
|
{
|
|
1561
1557
|
onClick: h(e, o),
|
|
1562
|
-
children: /* @__PURE__ */
|
|
1558
|
+
children: /* @__PURE__ */ $(Z, { children: [
|
|
1563
1559
|
c,
|
|
1564
1560
|
d
|
|
1565
1561
|
] }),
|
|
@@ -1568,340 +1564,340 @@ ${Y}`;
|
|
|
1568
1564
|
);
|
|
1569
1565
|
};
|
|
1570
1566
|
export {
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1567
|
+
Zr as ActionBar,
|
|
1568
|
+
eo as Actions,
|
|
1569
|
+
Fr as AttachmentsBar,
|
|
1570
|
+
kr as AttachmentsBarActions,
|
|
1571
|
+
Mr as AttachmentsBarAttachment,
|
|
1572
|
+
Sr as AttachmentsBarAttachmentDelete,
|
|
1573
|
+
Ir as AttachmentsBarAttachmentIcon,
|
|
1574
|
+
Er as AttachmentsBarAttachmentTitle,
|
|
1575
|
+
Qr as AttachmentsBarForm,
|
|
1576
|
+
zr as AttachmentsBarFormContent,
|
|
1577
|
+
Jr as AttachmentsBarFormContentError,
|
|
1578
|
+
Yr as AttachmentsBarFormContentInput,
|
|
1579
|
+
Gr as AttachmentsBarFormContentLabel,
|
|
1580
|
+
Xr as AttachmentsBarFormSubmitButton,
|
|
1581
|
+
Ur as AttachmentsBarFormTitle,
|
|
1582
|
+
jr as AttachmentsBarFormTitleError,
|
|
1583
|
+
qr as AttachmentsBarFormTitleInput,
|
|
1584
|
+
Kr as AttachmentsBarFormTitleLabel,
|
|
1585
|
+
Br as AttachmentsBarInfoTip,
|
|
1586
|
+
ui as AttachmentsBarInfoTipArrow,
|
|
1587
|
+
yr as AttachmentsBarInfoTipIcon,
|
|
1588
|
+
Tr as AttachmentsBarInfoTipText,
|
|
1589
|
+
Hr as AttachmentsBarInput,
|
|
1590
|
+
wr as AttachmentsBarInputs,
|
|
1591
|
+
fr as AttachmentsBarList,
|
|
1592
|
+
Lr as AttachmentsBarModal,
|
|
1593
|
+
$r as AttachmentsBarModalBody,
|
|
1594
|
+
Vr as AttachmentsBarModalClose,
|
|
1595
|
+
Dr as AttachmentsBarModalContent,
|
|
1596
|
+
Rr as AttachmentsBarModalDescription,
|
|
1597
|
+
Or as AttachmentsBarModalHeader,
|
|
1598
|
+
Wr as AttachmentsBarModalHeading,
|
|
1599
|
+
Nr as AttachmentsBarModalHelp,
|
|
1600
|
+
xr as AttachmentsBarModalOverlay,
|
|
1601
|
+
_e as ChatAction,
|
|
1602
|
+
ro as ChatActionFeedback,
|
|
1603
|
+
Bi as ChatActionLabel,
|
|
1604
|
+
so as ChatHelpAction,
|
|
1605
|
+
cn as Content,
|
|
1606
|
+
dn as ContentScrollArea,
|
|
1607
|
+
un as ContentScrollAreaCorner,
|
|
1608
|
+
ln as ContentScrollAreaScrollbar,
|
|
1609
|
+
hn as ContentScrollAreaThumb,
|
|
1610
|
+
mn as ContentScrollAreaViewport,
|
|
1611
|
+
pn as Disclaimer,
|
|
1612
|
+
An as DisclaimerArrow,
|
|
1613
|
+
bn as DisclaimerContent,
|
|
1614
|
+
vn as DisclaimerLabel,
|
|
1615
|
+
_n as DisclaimerText,
|
|
1616
|
+
gn as DisclaimerTrigger,
|
|
1617
|
+
Xn as DynamicComponent,
|
|
1618
|
+
Zr as EmbeddedChatPrimitiveActionBar,
|
|
1619
|
+
eo as EmbeddedChatPrimitiveActions,
|
|
1620
|
+
Fr as EmbeddedChatPrimitiveAttachmentsBar,
|
|
1621
|
+
kr as EmbeddedChatPrimitiveAttachmentsBarActions,
|
|
1622
|
+
Mr as EmbeddedChatPrimitiveAttachmentsBarAttachment,
|
|
1623
|
+
Sr as EmbeddedChatPrimitiveAttachmentsBarAttachmentDelete,
|
|
1624
|
+
Ir as EmbeddedChatPrimitiveAttachmentsBarAttachmentIcon,
|
|
1625
|
+
Er as EmbeddedChatPrimitiveAttachmentsBarAttachmentTitle,
|
|
1626
|
+
Qr as EmbeddedChatPrimitiveAttachmentsBarForm,
|
|
1627
|
+
zr as EmbeddedChatPrimitiveAttachmentsBarFormContent,
|
|
1628
|
+
Jr as EmbeddedChatPrimitiveAttachmentsBarFormContentError,
|
|
1629
|
+
Yr as EmbeddedChatPrimitiveAttachmentsBarFormContentInput,
|
|
1630
|
+
Gr as EmbeddedChatPrimitiveAttachmentsBarFormContentLabel,
|
|
1631
|
+
Xr as EmbeddedChatPrimitiveAttachmentsBarFormSubmitButton,
|
|
1632
|
+
Ur as EmbeddedChatPrimitiveAttachmentsBarFormTitle,
|
|
1633
|
+
jr as EmbeddedChatPrimitiveAttachmentsBarFormTitleError,
|
|
1634
|
+
qr as EmbeddedChatPrimitiveAttachmentsBarFormTitleInput,
|
|
1635
|
+
Kr as EmbeddedChatPrimitiveAttachmentsBarFormTitleLabel,
|
|
1636
|
+
Br as EmbeddedChatPrimitiveAttachmentsBarInfoTip,
|
|
1637
|
+
ui as EmbeddedChatPrimitiveAttachmentsBarInfoTipArrow,
|
|
1638
|
+
yr as EmbeddedChatPrimitiveAttachmentsBarInfoTipIcon,
|
|
1639
|
+
Tr as EmbeddedChatPrimitiveAttachmentsBarInfoTipText,
|
|
1640
|
+
Hr as EmbeddedChatPrimitiveAttachmentsBarInput,
|
|
1641
|
+
wr as EmbeddedChatPrimitiveAttachmentsBarInputs,
|
|
1642
|
+
fr as EmbeddedChatPrimitiveAttachmentsBarList,
|
|
1643
|
+
Lr as EmbeddedChatPrimitiveAttachmentsBarModal,
|
|
1644
|
+
$r as EmbeddedChatPrimitiveAttachmentsBarModalBody,
|
|
1645
|
+
Vr as EmbeddedChatPrimitiveAttachmentsBarModalClose,
|
|
1646
|
+
Dr as EmbeddedChatPrimitiveAttachmentsBarModalContent,
|
|
1647
|
+
Rr as EmbeddedChatPrimitiveAttachmentsBarModalDescription,
|
|
1648
|
+
Or as EmbeddedChatPrimitiveAttachmentsBarModalHeader,
|
|
1649
|
+
Wr as EmbeddedChatPrimitiveAttachmentsBarModalHeading,
|
|
1650
|
+
Nr as EmbeddedChatPrimitiveAttachmentsBarModalHelp,
|
|
1651
|
+
xr as EmbeddedChatPrimitiveAttachmentsBarModalOverlay,
|
|
1652
|
+
_e as EmbeddedChatPrimitiveChatAction,
|
|
1653
|
+
ro as EmbeddedChatPrimitiveChatActionFeedback,
|
|
1654
|
+
Bi as EmbeddedChatPrimitiveChatActionLabel,
|
|
1655
|
+
so as EmbeddedChatPrimitiveChatHelpAction,
|
|
1656
|
+
cn as EmbeddedChatPrimitiveContent,
|
|
1657
|
+
dn as EmbeddedChatPrimitiveContentScrollArea,
|
|
1658
|
+
un as EmbeddedChatPrimitiveContentScrollAreaCorner,
|
|
1659
|
+
ln as EmbeddedChatPrimitiveContentScrollAreaScrollbar,
|
|
1660
|
+
hn as EmbeddedChatPrimitiveContentScrollAreaThumb,
|
|
1661
|
+
mn as EmbeddedChatPrimitiveContentScrollAreaViewport,
|
|
1662
|
+
pn as EmbeddedChatPrimitiveDisclaimer,
|
|
1663
|
+
An as EmbeddedChatPrimitiveDisclaimerArrow,
|
|
1664
|
+
bn as EmbeddedChatPrimitiveDisclaimerContent,
|
|
1665
|
+
vn as EmbeddedChatPrimitiveDisclaimerLabel,
|
|
1666
|
+
_n as EmbeddedChatPrimitiveDisclaimerText,
|
|
1667
|
+
gn as EmbeddedChatPrimitiveDisclaimerTrigger,
|
|
1668
|
+
Xn as EmbeddedChatPrimitiveDynamicComponent,
|
|
1669
|
+
Mn as EmbeddedChatPrimitiveExampleQuestion,
|
|
1670
|
+
In as EmbeddedChatPrimitiveExampleQuestionButton,
|
|
1671
|
+
Pn as EmbeddedChatPrimitiveExampleQuestions,
|
|
1672
|
+
Fn as EmbeddedChatPrimitiveExampleQuestionsLabel,
|
|
1673
|
+
fn as EmbeddedChatPrimitiveExampleQuestionsList,
|
|
1674
|
+
Ao as EmbeddedChatPrimitiveFeedbackForm,
|
|
1675
|
+
Po as EmbeddedChatPrimitiveFeedbackItem,
|
|
1676
|
+
Fo as EmbeddedChatPrimitiveFeedbackItemCheckbox,
|
|
1677
|
+
fo as EmbeddedChatPrimitiveFeedbackItemCheckboxIndicator,
|
|
1678
|
+
Io as EmbeddedChatPrimitiveFeedbackItemDescription,
|
|
1679
|
+
Mo as EmbeddedChatPrimitiveFeedbackItemLabel,
|
|
1680
|
+
Co as EmbeddedChatPrimitiveFeedbackModal,
|
|
1681
|
+
_o as EmbeddedChatPrimitiveFeedbackModalBody,
|
|
1682
|
+
bo as EmbeddedChatPrimitiveFeedbackModalClose,
|
|
1683
|
+
vo as EmbeddedChatPrimitiveFeedbackModalContent,
|
|
1684
|
+
go as EmbeddedChatPrimitiveFeedbackModalHeader,
|
|
1685
|
+
po as EmbeddedChatPrimitiveFeedbackModalOverlay,
|
|
1686
|
+
Eo as EmbeddedChatPrimitiveFeedbackSubmitButton,
|
|
1687
|
+
vr as EmbeddedChatPrimitiveFooter,
|
|
1688
|
+
ko as EmbeddedChatPrimitiveForm,
|
|
1689
|
+
Zo as EmbeddedChatPrimitiveFormCancel,
|
|
1690
|
+
Bo as EmbeddedChatPrimitiveFormClose,
|
|
1691
|
+
Ho as EmbeddedChatPrimitiveFormContent,
|
|
1692
|
+
wo as EmbeddedChatPrimitiveFormDescription,
|
|
1693
|
+
Jo as EmbeddedChatPrimitiveFormError,
|
|
1694
|
+
Lo as EmbeddedChatPrimitiveFormField,
|
|
1695
|
+
Ro as EmbeddedChatPrimitiveFormFieldCheckbox,
|
|
1696
|
+
No as EmbeddedChatPrimitiveFormFieldCheckboxIndicator,
|
|
1697
|
+
Do as EmbeddedChatPrimitiveFormFieldEmail,
|
|
1698
|
+
Yo as EmbeddedChatPrimitiveFormFieldError,
|
|
1699
|
+
Oo as EmbeddedChatPrimitiveFormFieldFile,
|
|
1700
|
+
xo as EmbeddedChatPrimitiveFormFieldLabel,
|
|
1701
|
+
Vo as EmbeddedChatPrimitiveFormFieldSelect,
|
|
1702
|
+
Ko as EmbeddedChatPrimitiveFormFieldSelectContent,
|
|
1703
|
+
Uo as EmbeddedChatPrimitiveFormFieldSelectIcon,
|
|
1704
|
+
jo as EmbeddedChatPrimitiveFormFieldSelectItem,
|
|
1705
|
+
Go as EmbeddedChatPrimitiveFormFieldSelectItemIndicator,
|
|
1706
|
+
zo as EmbeddedChatPrimitiveFormFieldSelectItemText,
|
|
1707
|
+
$o as EmbeddedChatPrimitiveFormFieldSelectTrigger,
|
|
1708
|
+
Qo as EmbeddedChatPrimitiveFormFieldSelectValue,
|
|
1709
|
+
qo as EmbeddedChatPrimitiveFormFieldSelectViewport,
|
|
1710
|
+
Ae as EmbeddedChatPrimitiveFormFieldText,
|
|
1711
|
+
Wo as EmbeddedChatPrimitiveFormFieldTextArea,
|
|
1712
|
+
Xo as EmbeddedChatPrimitiveFormFooter,
|
|
1713
|
+
yo as EmbeddedChatPrimitiveFormHeader,
|
|
1714
|
+
To as EmbeddedChatPrimitiveFormHeading,
|
|
1715
|
+
es as EmbeddedChatPrimitiveFormSubmit,
|
|
1716
|
+
ts as EmbeddedChatPrimitiveFormSuccess,
|
|
1717
|
+
ns as EmbeddedChatPrimitiveFormSuccessButton,
|
|
1718
|
+
is as EmbeddedChatPrimitiveFormSuccessHeading,
|
|
1719
|
+
as as EmbeddedChatPrimitiveFormSuccessMessage,
|
|
1720
|
+
So as EmbeddedChatPrimitiveFormWrapper,
|
|
1721
|
+
rn as EmbeddedChatPrimitiveHeaderToolbar,
|
|
1722
|
+
oo as EmbeddedChatPrimitiveHelpActions,
|
|
1723
|
+
mo as EmbeddedChatPrimitiveHelpActionsMenu,
|
|
1724
|
+
lo as EmbeddedChatPrimitiveHelpActionsMenuArrow,
|
|
1725
|
+
ho as EmbeddedChatPrimitiveHelpActionsMenuItem,
|
|
1726
|
+
uo as EmbeddedChatPrimitiveHelpActionsMenuItemIcon,
|
|
1727
|
+
co as EmbeddedChatPrimitiveHelpActionsTrigger,
|
|
1728
|
+
_r as EmbeddedChatPrimitiveInput,
|
|
1729
|
+
gr as EmbeddedChatPrimitiveInputFieldset,
|
|
1730
|
+
br as EmbeddedChatPrimitiveInputGroup,
|
|
1731
|
+
yn as EmbeddedChatPrimitiveIntroMessageWrapper,
|
|
1732
|
+
Jn as EmbeddedChatPrimitiveMarkdown,
|
|
1733
|
+
ar as EmbeddedChatPrimitiveMessageAction,
|
|
1734
|
+
ir as EmbeddedChatPrimitiveMessageAnnotationAction,
|
|
1735
|
+
tr as EmbeddedChatPrimitiveMessageAnnotationActions,
|
|
1736
|
+
Nn as EmbeddedChatPrimitiveMessageAttachments,
|
|
1737
|
+
$n as EmbeddedChatPrimitiveMessageAttachmentsItem,
|
|
1738
|
+
Qn as EmbeddedChatPrimitiveMessageAttachmentsItemIcon,
|
|
1739
|
+
Un as EmbeddedChatPrimitiveMessageAttachmentsItemTitle,
|
|
1740
|
+
Vn as EmbeddedChatPrimitiveMessageAttachmentsList,
|
|
1741
|
+
Kn as EmbeddedChatPrimitiveMessageAttachmentsPreview,
|
|
1742
|
+
Yn as EmbeddedChatPrimitiveMessageAttachmentsPreviewBody,
|
|
1743
|
+
Gn as EmbeddedChatPrimitiveMessageAttachmentsPreviewClose,
|
|
1744
|
+
jn as EmbeddedChatPrimitiveMessageAttachmentsPreviewContent,
|
|
1745
|
+
zn as EmbeddedChatPrimitiveMessageAttachmentsPreviewHeader,
|
|
1746
|
+
qn as EmbeddedChatPrimitiveMessageAttachmentsPreviewOverlay,
|
|
1747
|
+
Hn as EmbeddedChatPrimitiveMessageAvatar,
|
|
1748
|
+
Ln as EmbeddedChatPrimitiveMessageAvatarContent,
|
|
1749
|
+
xn as EmbeddedChatPrimitiveMessageAvatarFallback,
|
|
1750
|
+
Dn as EmbeddedChatPrimitiveMessageAvatarImage,
|
|
1751
|
+
Rn as EmbeddedChatPrimitiveMessageContent,
|
|
1752
|
+
Wn as EmbeddedChatPrimitiveMessageContentWrapper,
|
|
1753
|
+
Tn as EmbeddedChatPrimitiveMessageHeader,
|
|
1754
|
+
wn as EmbeddedChatPrimitiveMessageLoading,
|
|
1755
|
+
On as EmbeddedChatPrimitiveMessageName,
|
|
1756
|
+
sr as EmbeddedChatPrimitiveMessageSourceItem,
|
|
1757
|
+
cr as EmbeddedChatPrimitiveMessageSourceItemBreadcrumbs,
|
|
1758
|
+
ur as EmbeddedChatPrimitiveMessageSourceItemDescription,
|
|
1759
|
+
Cr as EmbeddedChatPrimitiveMessageSourceItemDescriptionPart,
|
|
1760
|
+
mr as EmbeddedChatPrimitiveMessageSourceItemIcon,
|
|
1761
|
+
pr as EmbeddedChatPrimitiveMessageSourceItemIndicator,
|
|
1762
|
+
hr as EmbeddedChatPrimitiveMessageSourceItemTag,
|
|
1763
|
+
lr as EmbeddedChatPrimitiveMessageSourceItemTitle,
|
|
1764
|
+
nr as EmbeddedChatPrimitiveMessageSources,
|
|
1765
|
+
rr as EmbeddedChatPrimitiveMessageSourcesHeader,
|
|
1766
|
+
or as EmbeddedChatPrimitiveMessageSourcesList,
|
|
1767
|
+
er as EmbeddedChatPrimitiveMessageToolbar,
|
|
1768
|
+
Et as EmbeddedChatPrimitiveMessageWrapper,
|
|
1769
|
+
Cn as EmbeddedChatPrimitiveMessages,
|
|
1770
|
+
an as EmbeddedChatPrimitiveRoot,
|
|
1771
|
+
Ar as EmbeddedChatPrimitiveSendButton,
|
|
1772
|
+
Pr as EmbeddedChatPrimitiveSendButtonIcon,
|
|
1773
|
+
no as EmbeddedChatPrimitiveTaglineBrandName,
|
|
1774
|
+
to as EmbeddedChatPrimitiveTaglineContainer,
|
|
1775
|
+
ao as EmbeddedChatPrimitiveTaglineLogo,
|
|
1776
|
+
io as EmbeddedChatPrimitiveTaglineText,
|
|
1777
|
+
sn as EmbeddedChatPrimitiveToolbarHeader,
|
|
1778
|
+
on as EmbeddedChatPrimitiveToolbarHeaderWrapper,
|
|
1779
|
+
Bn as EmbeddedChatPrimitiveWorkflow,
|
|
1780
|
+
En as EmbeddedChatPrimitiveWorkflows,
|
|
1781
|
+
Sn as EmbeddedChatPrimitiveWorkflowsLabel,
|
|
1782
|
+
kn as EmbeddedChatPrimitiveWorkflowsList,
|
|
1783
|
+
tn as EmbeddedChatPrimitiveWrapper,
|
|
1784
|
+
Mn as ExampleQuestion,
|
|
1785
|
+
In as ExampleQuestionButton,
|
|
1786
|
+
Pn as ExampleQuestions,
|
|
1787
|
+
Fn as ExampleQuestionsLabel,
|
|
1788
|
+
fn as ExampleQuestionsList,
|
|
1789
|
+
Ao as FeedbackForm,
|
|
1790
|
+
Po as FeedbackItem,
|
|
1791
|
+
Fo as FeedbackItemCheckbox,
|
|
1792
|
+
fo as FeedbackItemCheckboxIndicator,
|
|
1793
|
+
Io as FeedbackItemDescription,
|
|
1794
|
+
Mo as FeedbackItemLabel,
|
|
1795
|
+
Co as FeedbackModal,
|
|
1796
|
+
_o as FeedbackModalBody,
|
|
1797
|
+
bo as FeedbackModalClose,
|
|
1798
|
+
vo as FeedbackModalContent,
|
|
1799
|
+
go as FeedbackModalHeader,
|
|
1800
|
+
po as FeedbackModalOverlay,
|
|
1801
|
+
Eo as FeedbackSubmitButton,
|
|
1802
|
+
vr as Footer,
|
|
1803
|
+
ko as Form,
|
|
1804
|
+
Zo as FormCancel,
|
|
1805
|
+
Bo as FormClose,
|
|
1806
|
+
Ho as FormContent,
|
|
1807
|
+
wo as FormDescription,
|
|
1808
|
+
Jo as FormError,
|
|
1809
|
+
Lo as FormField,
|
|
1810
|
+
Ro as FormFieldCheckbox,
|
|
1811
|
+
No as FormFieldCheckboxIndicator,
|
|
1812
|
+
Do as FormFieldEmail,
|
|
1813
|
+
Yo as FormFieldError,
|
|
1814
|
+
Oo as FormFieldFile,
|
|
1815
|
+
xo as FormFieldLabel,
|
|
1816
|
+
Vo as FormFieldSelect,
|
|
1817
|
+
Ko as FormFieldSelectContent,
|
|
1818
|
+
Uo as FormFieldSelectIcon,
|
|
1819
|
+
jo as FormFieldSelectItem,
|
|
1820
|
+
Go as FormFieldSelectItemIndicator,
|
|
1821
|
+
zo as FormFieldSelectItemText,
|
|
1822
|
+
$o as FormFieldSelectTrigger,
|
|
1823
|
+
Qo as FormFieldSelectValue,
|
|
1824
|
+
qo as FormFieldSelectViewport,
|
|
1825
|
+
Ae as FormFieldText,
|
|
1826
|
+
Wo as FormFieldTextArea,
|
|
1827
|
+
Xo as FormFooter,
|
|
1828
|
+
yo as FormHeader,
|
|
1829
|
+
To as FormHeading,
|
|
1830
|
+
es as FormSubmit,
|
|
1831
|
+
ts as FormSuccess,
|
|
1832
|
+
ns as FormSuccessButton,
|
|
1833
|
+
is as FormSuccessHeading,
|
|
1834
|
+
as as FormSuccessMessage,
|
|
1835
|
+
So as FormWrapper,
|
|
1836
|
+
nn as Header,
|
|
1837
|
+
rn as HeaderToolbar,
|
|
1838
|
+
on as HeaderToolbarWrapper,
|
|
1839
|
+
oo as HelpActions,
|
|
1840
|
+
mo as HelpActionsMenu,
|
|
1841
|
+
lo as HelpActionsMenuArrow,
|
|
1842
|
+
ho as HelpActionsMenuItem,
|
|
1843
|
+
uo as HelpActionsMenuItemIcon,
|
|
1844
|
+
co as HelpActionsTrigger,
|
|
1845
|
+
_r as Input,
|
|
1846
|
+
gr as InputFieldset,
|
|
1847
|
+
br as InputGroup,
|
|
1848
|
+
yn as IntroMessageWrapper,
|
|
1849
|
+
Jn as Markdown,
|
|
1850
|
+
ar as MessageAction,
|
|
1851
|
+
ir as MessageAnnotationAction,
|
|
1852
|
+
tr as MessageAnnotationActions,
|
|
1853
|
+
Nn as MessageAttachments,
|
|
1854
|
+
$n as MessageAttachmentsItem,
|
|
1855
|
+
Qn as MessageAttachmentsItemIcon,
|
|
1856
|
+
Un as MessageAttachmentsItemTitle,
|
|
1857
|
+
Vn as MessageAttachmentsList,
|
|
1858
|
+
Kn as MessageAttachmentsPreview,
|
|
1859
|
+
Yn as MessageAttachmentsPreviewBody,
|
|
1860
|
+
Gn as MessageAttachmentsPreviewClose,
|
|
1861
|
+
jn as MessageAttachmentsPreviewContent,
|
|
1862
|
+
zn as MessageAttachmentsPreviewHeader,
|
|
1863
|
+
qn as MessageAttachmentsPreviewOverlay,
|
|
1864
|
+
Hn as MessageAvatar,
|
|
1865
|
+
Ln as MessageAvatarContent,
|
|
1866
|
+
xn as MessageAvatarFallback,
|
|
1867
|
+
Dn as MessageAvatarImage,
|
|
1868
|
+
Rn as MessageContent,
|
|
1869
|
+
Wn as MessageContentWrapper,
|
|
1870
|
+
Tn as MessageHeader,
|
|
1871
|
+
wn as MessageLoading,
|
|
1872
|
+
On as MessageName,
|
|
1873
|
+
sr as MessageSourceItem,
|
|
1874
|
+
dr as MessageSourceItemBreadcrumbIcon,
|
|
1875
|
+
cr as MessageSourceItemBreadcrumbs,
|
|
1876
|
+
ur as MessageSourceItemDescription,
|
|
1877
|
+
Cr as MessageSourceItemDescriptionPart,
|
|
1878
|
+
mr as MessageSourceItemIcon,
|
|
1879
|
+
pr as MessageSourceItemIndicator,
|
|
1880
|
+
hr as MessageSourceItemTag,
|
|
1881
|
+
lr as MessageSourceItemTitle,
|
|
1882
|
+
nr as MessageSources,
|
|
1883
|
+
rr as MessageSourcesHeader,
|
|
1884
|
+
or as MessageSourcesList,
|
|
1885
|
+
er as MessageToolbar,
|
|
1886
|
+
Et as MessageWrapper,
|
|
1887
|
+
Cn as Messages,
|
|
1888
|
+
Zn as PrimitiveMessagePart,
|
|
1889
|
+
ss as Provider,
|
|
1890
|
+
an as Root,
|
|
1891
|
+
Ar as SendButton,
|
|
1892
|
+
Pr as SendButtonIcon,
|
|
1893
|
+
no as TaglineBrandName,
|
|
1894
|
+
to as TaglineContainer,
|
|
1895
|
+
ao as TaglineLogo,
|
|
1896
|
+
io as TaglineText,
|
|
1897
|
+
sn as ToolbarHeader,
|
|
1898
|
+
Bn as Workflow,
|
|
1899
|
+
En as Workflows,
|
|
1900
|
+
Sn as WorkflowsLabel,
|
|
1901
|
+
kn as WorkflowsList,
|
|
1902
|
+
tn as Wrapper
|
|
1907
1903
|
};
|