@inkeep/agents-ui 0.14.20 → 0.14.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/color-mode/index.d.ts +21 -0
- package/dist/index.d.ts +1 -5103
- package/dist/primitives/atoms/avatars/ai.d.ts +3 -0
- package/dist/primitives/atoms/avatars/user.d.ts +3 -0
- package/dist/primitives/atoms/cmdk/command-score.d.ts +1 -0
- package/dist/primitives/atoms/cmdk/index.d.ts +460 -0
- package/dist/primitives/atoms/codeblock/index.d.ts +10 -0
- package/dist/primitives/atoms/custom-styles.d.ts +5 -0
- package/dist/primitives/atoms/dialog.d.ts +94 -0
- package/dist/primitives/atoms/error-boundary.d.ts +6 -0
- package/dist/primitives/atoms/icons/built-in-icon-renderer.d.ts +6 -0
- package/dist/primitives/atoms/icons/built-in-icons.d.ts +83 -0
- package/dist/primitives/atoms/icons/checkbox-icon.d.ts +1 -0
- package/dist/primitives/atoms/icons/collections/bi.d.ts +4 -0
- package/dist/primitives/atoms/icons/collections/fi.d.ts +2 -0
- package/dist/primitives/atoms/icons/collections/gr.d.ts +2 -0
- package/dist/primitives/atoms/icons/collections/io5.d.ts +34 -0
- package/dist/primitives/atoms/icons/collections/pi.d.ts +4 -0
- package/dist/primitives/atoms/icons/custom-icon.d.ts +6 -0
- package/dist/primitives/atoms/icons/generate-icon.d.ts +28 -0
- package/dist/primitives/atoms/icons/index.d.ts +2 -0
- package/dist/primitives/atoms/icons/inkeep-default-icons.d.ts +2 -0
- package/dist/primitives/atoms/link.d.ts +14 -0
- package/dist/primitives/atoms/markdown/components.d.ts +31 -0
- package/dist/primitives/atoms/markdown/index.d.ts +17 -0
- package/dist/primitives/atoms/markdown/rehype-inline-code-property.d.ts +1 -0
- package/dist/primitives/atoms/portal-with-theme.d.ts +2 -0
- package/dist/primitives/atoms/portal.d.ts +8 -0
- package/dist/primitives/atoms/select.d.ts +136 -0
- package/dist/primitives/atoms/shadow/context.d.ts +14 -0
- package/dist/primitives/atoms/shadow/create.d.ts +8 -0
- package/dist/primitives/atoms/shadow/index.d.ts +1 -0
- package/dist/primitives/atoms/shadow/root.d.ts +5 -0
- package/dist/primitives/atoms/shadow/use-ensured-forwarded-ref.d.ts +2 -0
- package/dist/primitives/atoms/shadow/utils.d.ts +9 -0
- package/dist/primitives/components/chat-button.d.ts +18 -0
- package/dist/primitives/components/embedded-chat/chat-provider.d.ts +19 -0
- package/dist/primitives/components/embedded-chat/use-captcha.d.ts +13 -0
- package/dist/primitives/components/embedded-chat/use-chat-action.d.ts +9 -0
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.d.ts +27 -0
- package/dist/primitives/components/embedded-chat/use-stream-processor.cjs +1 -1
- package/dist/primitives/components/embedded-chat/use-stream-processor.d.ts +28 -0
- package/dist/primitives/components/embedded-chat/use-stream-processor.js +27 -28
- package/dist/primitives/components/embedded-chat.cjs +3 -3
- package/dist/primitives/components/embedded-chat.d.ts +431 -0
- package/dist/primitives/components/embedded-chat.js +775 -776
- package/dist/primitives/components/embedded-search/search-provider.d.ts +21 -0
- package/dist/primitives/components/embedded-search/transform-results.d.ts +3 -0
- package/dist/primitives/components/embedded-search/url-query.d.ts +4 -0
- package/dist/primitives/components/embedded-search/use-inkeep-search.d.ts +19 -0
- package/dist/primitives/components/embedded-search/use-search-filter.d.ts +1 -0
- package/dist/primitives/components/embedded-search.d.ts +249 -0
- package/dist/primitives/components/factory.d.ts +19 -0
- package/dist/primitives/components/index.d.ts +10 -0
- package/dist/primitives/components/modal/modal-provider.d.ts +12 -0
- package/dist/primitives/components/modal/use-inkeep-modal.d.ts +7 -0
- package/dist/primitives/components/modal/widget-auto-focus.d.ts +2 -0
- package/dist/primitives/components/modal.d.ts +18 -0
- package/dist/primitives/components/presence.d.ts +8 -0
- package/dist/primitives/components/searchbar.d.ts +23 -0
- package/dist/primitives/components/sidebar-chat/index.d.ts +9 -0
- package/dist/primitives/components/sidebar-chat/use-sidebar-chat-resizer.d.ts +5 -0
- package/dist/primitives/components/tagline-logo-icon.d.ts +1 -0
- package/dist/primitives/components/use-component-trigger.d.ts +5 -0
- package/dist/primitives/constants/search.d.ts +1 -0
- package/dist/primitives/hooks/index.d.ts +11 -0
- package/dist/primitives/hooks/use-boolean.d.ts +10 -0
- package/dist/primitives/hooks/use-component-classnames.d.ts +6 -0
- package/dist/primitives/hooks/use-container-size.d.ts +5 -0
- package/dist/primitives/hooks/use-copy-to-clipboard.d.ts +3 -0
- package/dist/primitives/hooks/use-debounce.d.ts +1 -0
- package/dist/primitives/hooks/use-instant-update.d.ts +17 -0
- package/dist/primitives/hooks/use-is-mounted.d.ts +1 -0
- package/dist/primitives/hooks/use-media-query.d.ts +1 -0
- package/dist/primitives/hooks/use-resize-observer.d.ts +12 -0
- package/dist/primitives/hooks/use-scrolling-fades.d.ts +2 -0
- package/dist/primitives/hooks/use-settle-action.d.ts +3 -0
- package/dist/primitives/hooks/use-simple-scroll.d.ts +5 -0
- package/dist/primitives/hooks/use-streaming-events.d.ts +8 -0
- package/dist/primitives/index.d.ts +13 -0
- package/dist/primitives/providers/attachment-item-provider.d.ts +9 -0
- package/dist/primitives/providers/attachments-bar-provider.d.ts +30 -0
- package/dist/primitives/providers/base-events-provider.cjs +1 -1
- package/dist/primitives/providers/base-events-provider.d.ts +8 -0
- package/dist/primitives/providers/base-events-provider.js +1 -1
- package/dist/primitives/providers/chat-form-provider.d.ts +26 -0
- package/dist/primitives/providers/config-provider.d.ts +25 -0
- package/dist/primitives/providers/feedback-item-provider.d.ts +10 -0
- package/dist/primitives/providers/feedback-provider.d.ts +16 -0
- package/dist/primitives/providers/form-field-provider.d.ts +15 -0
- package/dist/primitives/providers/help-menu-provider.d.ts +11 -0
- package/dist/primitives/providers/hover-popover-provider.d.ts +10 -0
- package/dist/primitives/providers/index.d.ts +17 -0
- package/dist/primitives/providers/markdown-provider.d.ts +9 -0
- package/dist/primitives/providers/message-attachments-provider.d.ts +13 -0
- package/dist/primitives/providers/message-provider.d.ts +10 -0
- package/dist/primitives/providers/root-provider.d.ts +8 -0
- package/dist/primitives/providers/search-events-provider.d.ts +8 -0
- package/dist/primitives/providers/sidebar-chat-provider.d.ts +83 -0
- package/dist/primitives/providers/source-item-provider.d.ts +12 -0
- package/dist/primitives/providers/theme-provider.d.ts +3 -0
- package/dist/primitives/providers/widget-provider.d.ts +10 -0
- package/dist/primitives/utils/component-ids.d.ts +572 -0
- package/dist/primitives/utils/compose-event-handlers.d.ts +3 -0
- package/dist/primitives/utils/compose-refs.d.ts +5 -0
- package/dist/primitives/utils/default-settings.d.ts +167 -0
- package/dist/primitives/utils/form.d.ts +3 -0
- package/dist/primitives/utils/generate-uid.d.ts +2 -0
- package/dist/primitives/utils/get-message-metadata.d.ts +8 -0
- package/dist/primitives/utils/get-source-icon.d.ts +2 -0
- package/dist/primitives/utils/highlight-emphasis.d.ts +4 -0
- package/dist/primitives/utils/merge-props.d.ts +7 -0
- package/dist/primitives/utils/misc.d.ts +12 -0
- package/dist/primitives/utils/split-props.d.ts +15 -0
- package/dist/react/chat-button.d.ts +14 -0
- package/dist/react/embedded-chat.d.ts +14 -0
- package/dist/react/embedded-search-and-chat.d.ts +40 -0
- package/dist/react/embedded-search-and-chat.impl.d.ts +9 -0
- package/dist/react/embedded-search.d.ts +17 -0
- package/dist/react/index.d.ts +12 -0
- package/dist/react/modal.chat.d.ts +6 -0
- package/dist/react/modal.d.ts +23 -0
- package/dist/react/modal.search-and-chat.d.ts +6 -0
- package/dist/react/modal.search.d.ts +6 -0
- package/dist/react/searchbar.d.ts +13 -0
- package/dist/react/sidebar-chat.d.ts +6 -0
- package/dist/react/utils.d.ts +6 -0
- package/dist/react/widget-toggle.d.ts +14 -0
- package/dist/styled/components/chat-button.d.ts +8 -0
- package/dist/styled/components/data-summary-group.d.ts +11 -0
- package/dist/styled/components/embedded-chat.d.ts +190 -0
- package/dist/styled/components/embedded-search/results-loading.d.ts +1 -0
- package/dist/styled/components/embedded-search.d.ts +73 -0
- package/dist/styled/components/index.d.ts +11 -0
- package/dist/styled/components/loading-indicator.d.ts +1 -0
- package/dist/styled/components/message.cjs +1 -1
- package/dist/styled/components/message.d.ts +4 -0
- package/dist/styled/components/message.js +46 -47
- package/dist/styled/components/modal.d.ts +6 -0
- package/dist/styled/components/searchbar.d.ts +11 -0
- package/dist/styled/components/shadow.d.ts +3 -0
- package/dist/styled/components/sidebar-chat.d.ts +6 -0
- package/dist/styled/components/ui/markdown-styles.d.ts +23 -0
- package/dist/styled/components/ui/recipes/ai-chat-page-wrapper.d.ts +7 -0
- package/dist/styled/components/ui/recipes/attachment.d.ts +4 -0
- package/dist/styled/components/ui/recipes/button.d.ts +6 -0
- package/dist/styled/components/ui/recipes/checkbox.d.ts +4 -0
- package/dist/styled/components/ui/recipes/citation.d.ts +4 -0
- package/dist/styled/components/ui/recipes/icon.d.ts +2 -0
- package/dist/styled/components/ui/recipes/index.d.ts +15 -0
- package/dist/styled/components/ui/recipes/input.d.ts +5 -0
- package/dist/styled/components/ui/recipes/link.d.ts +2 -0
- package/dist/styled/components/ui/recipes/markdown.cjs +1 -1
- package/dist/styled/components/ui/recipes/markdown.d.ts +16 -0
- package/dist/styled/components/ui/recipes/markdown.js +1 -1
- package/dist/styled/components/ui/recipes/modal.d.ts +4 -0
- package/dist/styled/components/ui/recipes/popover.d.ts +4 -0
- package/dist/styled/components/ui/recipes/scrollable.d.ts +4 -0
- package/dist/styled/components/ui/recipes/select.d.ts +4 -0
- package/dist/styled/components/ui/recipes/skeleton.d.ts +2 -0
- package/dist/styled/components/ui/recipes/widget-toggle.d.ts +4 -0
- package/dist/styled/index.d.ts +2 -0
- package/dist/styled/utils.d.ts +4 -0
- package/dist/theme/color-utils.d.ts +1 -0
- package/dist/theme/colors.d.ts +104 -0
- package/dist/theme/index.d.ts +125 -0
- package/dist/theme/utils/create-css-variables.d.ts +2 -0
- package/dist/theme/utils/generate-theme-variables.d.ts +3 -0
- package/dist/types/color-mode.d.ts +44 -0
- package/dist/types/config/ai.d.ts +243 -0
- package/dist/types/config/base.d.ts +344 -0
- package/dist/types/config/components.d.ts +10 -0
- package/dist/types/config/filters.d.ts +17 -0
- package/dist/types/config/index.d.ts +36 -0
- package/dist/types/config/modal.d.ts +33 -0
- package/dist/types/config/search.d.ts +95 -0
- package/dist/types/config/settings/actions.d.ts +37 -0
- package/dist/types/config/settings/form.d.ts +128 -0
- package/dist/types/config/settings/jsonschema.d.ts +105 -0
- package/dist/types/config/settings/workflow.d.ts +86 -0
- package/dist/types/events.d.ts +173 -0
- package/dist/types/icons/built-in.d.ts +1 -0
- package/dist/types/icons/custom.d.ts +29 -0
- package/dist/types/icons/index.d.ts +2 -0
- package/dist/types/index.d.ts +20 -0
- package/dist/types/js/index.d.ts +54 -0
- package/dist/types/message.d.ts +43 -0
- package/dist/types/shadow.d.ts +15 -0
- package/dist/types/sources.d.ts +108 -0
- package/dist/types/theme.d.ts +25 -0
- package/dist/types/widget.d.ts +28 -0
- package/package.json +2 -4
- package/dist/index.d.cts +0 -5103
- package/dist/types/message.cjs +0 -1
- package/dist/types/message.js +0 -5
- package/dist/types/types.d.cts +0 -1758
- package/dist/types/types.d.ts +0 -1758
|
@@ -1,62 +1,61 @@
|
|
|
1
1
|
"use client";
|
|
2
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
|
|
4
|
-
import * as
|
|
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
10
|
import * as W from "@radix-ui/react-scroll-area";
|
|
11
|
-
import { ItemText as
|
|
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,36 +65,36 @@ 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 } =
|
|
92
|
+
}), mn = Q(({ children: t, ...e }, i) => {
|
|
93
|
+
const { containerRef: r, scrollToBottom: o } = Ze(), s = me(i, r), { messages: c } = b();
|
|
95
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: (
|
|
@@ -105,45 +104,45 @@ const ot = "__intro__", st = a("div", {
|
|
|
105
104
|
...e
|
|
106
105
|
}
|
|
107
106
|
);
|
|
108
|
-
}),
|
|
107
|
+
}), ln = a(
|
|
109
108
|
W.ScrollAreaScrollbar,
|
|
110
109
|
{
|
|
111
110
|
_id: "aiChatContentScrollArea__Scrollbar"
|
|
112
111
|
}
|
|
113
|
-
),
|
|
112
|
+
), hn = a(
|
|
114
113
|
W.ScrollAreaThumb,
|
|
115
114
|
{
|
|
116
115
|
_id: "aiChatContentScrollArea__Thumb"
|
|
117
116
|
}
|
|
118
|
-
),
|
|
117
|
+
), un = a(W.Corner, {
|
|
119
118
|
_id: "aiChatContentScrollArea__Corner"
|
|
120
|
-
}),
|
|
119
|
+
}), mt = a("div", {
|
|
121
120
|
_id: "aiChatMessages"
|
|
122
|
-
}),
|
|
121
|
+
}), Cn = (t) => {
|
|
123
122
|
const e = b(), { children: i, ...r } = t;
|
|
124
|
-
return /* @__PURE__ */ n(
|
|
125
|
-
},
|
|
123
|
+
return /* @__PURE__ */ n(mt, { children: y(i, e), ...r });
|
|
124
|
+
}, lt = a("div", {
|
|
126
125
|
_id: "aiChatDisclaimer"
|
|
127
|
-
}),
|
|
126
|
+
}), pn = E(
|
|
128
127
|
(t) => {
|
|
129
|
-
const { aiChatSettings: e } = p(), [i, r] = N(!1), o =
|
|
130
|
-
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;
|
|
131
130
|
}
|
|
132
|
-
),
|
|
131
|
+
), ht = a("span", {
|
|
133
132
|
_id: "aiChatDisclaimerLabel"
|
|
134
|
-
}),
|
|
133
|
+
}), vn = E(
|
|
135
134
|
(t) => {
|
|
136
135
|
const { aiChatSettings: e } = p(), i = e.disclaimerSettings;
|
|
137
|
-
return /* @__PURE__ */ n(
|
|
136
|
+
return /* @__PURE__ */ n(ht, { children: i?.label, ...t });
|
|
138
137
|
}
|
|
139
|
-
),
|
|
138
|
+
), ut = a(T.Trigger, {
|
|
140
139
|
_id: "aiChatDisclaimerTrigger",
|
|
141
140
|
children: /* @__PURE__ */ n(I, { iconKey: "info" })
|
|
142
|
-
}),
|
|
141
|
+
}), gn = E(
|
|
143
142
|
(t) => {
|
|
144
143
|
const { setOpen: e } = be();
|
|
145
144
|
return /* @__PURE__ */ n(
|
|
146
|
-
|
|
145
|
+
ut,
|
|
147
146
|
{
|
|
148
147
|
onMouseEnter: () => e(!0),
|
|
149
148
|
onMouseLeave: () => e(!1),
|
|
@@ -151,12 +150,12 @@ const ot = "__intro__", st = a("div", {
|
|
|
151
150
|
}
|
|
152
151
|
);
|
|
153
152
|
}
|
|
154
|
-
),
|
|
153
|
+
), Ct = a(T.Content, {
|
|
155
154
|
_id: "aiChatDisclaimerContent"
|
|
156
|
-
}),
|
|
155
|
+
}), bn = (t) => {
|
|
157
156
|
const { setOpen: e } = be();
|
|
158
157
|
return /* @__PURE__ */ n(
|
|
159
|
-
|
|
158
|
+
Ct,
|
|
160
159
|
{
|
|
161
160
|
onMouseEnter: () => e(!0),
|
|
162
161
|
onMouseLeave: () => e(!1),
|
|
@@ -167,87 +166,87 @@ const ot = "__intro__", st = a("div", {
|
|
|
167
166
|
...t
|
|
168
167
|
}
|
|
169
168
|
);
|
|
170
|
-
},
|
|
169
|
+
}, pt = a(K, {
|
|
171
170
|
_id: "aiChatDisclaimerText"
|
|
172
|
-
}),
|
|
171
|
+
}), _n = E(
|
|
173
172
|
(t) => {
|
|
174
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.`;
|
|
175
|
-
return /* @__PURE__ */ n(
|
|
174
|
+
return /* @__PURE__ */ n(pt, { shouldOpenLinksInNewTab: !0, children: o, ...t });
|
|
176
175
|
}
|
|
177
|
-
),
|
|
176
|
+
), An = a(T.Arrow, {
|
|
178
177
|
_id: "aiChatDisclaimerArrow"
|
|
179
|
-
}),
|
|
178
|
+
}), vt = a("div", {
|
|
180
179
|
_id: "aiChatExampleQuestions"
|
|
181
|
-
}),
|
|
180
|
+
}), Pn = (t) => {
|
|
182
181
|
const { aiChatSettings: e } = p(), { messages: i } = b();
|
|
183
|
-
return !e.exampleQuestions?.length || i.length ? null : /* @__PURE__ */ n(
|
|
184
|
-
},
|
|
182
|
+
return !e.exampleQuestions?.length || i.length ? null : /* @__PURE__ */ n(vt, { ...t });
|
|
183
|
+
}, gt = a("h3", {
|
|
185
184
|
_id: "aiChatExampleQuestionsLabel"
|
|
186
|
-
}),
|
|
185
|
+
}), Fn = E(
|
|
187
186
|
(t) => {
|
|
188
187
|
const { aiChatSettings: e } = p();
|
|
189
|
-
return /* @__PURE__ */ n(
|
|
188
|
+
return /* @__PURE__ */ n(gt, { children: e.exampleQuestionsLabel, ...t });
|
|
190
189
|
}
|
|
191
|
-
),
|
|
190
|
+
), bt = a("div", {
|
|
192
191
|
_id: "aiChatExampleQuestionsList"
|
|
193
|
-
}),
|
|
192
|
+
}), fn = E(
|
|
194
193
|
(t) => {
|
|
195
194
|
const { aiChatSettings: e } = p(), i = e.exampleQuestions, { children: r, ...o } = t;
|
|
196
|
-
return /* @__PURE__ */ n(
|
|
195
|
+
return /* @__PURE__ */ n(bt, { children: y(r, i), ...o });
|
|
197
196
|
}
|
|
198
|
-
),
|
|
197
|
+
), _t = a("div", {
|
|
199
198
|
_id: "aiChatExampleQuestion"
|
|
200
|
-
}),
|
|
199
|
+
}), Mn = Q((t, e) => {
|
|
201
200
|
const { aiChatSettings: i } = p(), r = i.isFirstExampleQuestionHighlighted;
|
|
202
|
-
return /* @__PURE__ */ n(
|
|
203
|
-
}),
|
|
201
|
+
return /* @__PURE__ */ n(_t, { ref: e, "data-highlight": g(r), ...t });
|
|
202
|
+
}), At = a("button", {
|
|
204
203
|
_id: "aiChatExampleQuestionButton"
|
|
205
|
-
}),
|
|
204
|
+
}), In = (t) => {
|
|
206
205
|
const { question: e, onClick: i, ...r } = t, { handleSubmit: o } = b();
|
|
207
206
|
return /* @__PURE__ */ n(
|
|
208
|
-
|
|
207
|
+
At,
|
|
209
208
|
{
|
|
210
209
|
onClick: h(i, () => o(e)),
|
|
211
210
|
children: e,
|
|
212
211
|
...r
|
|
213
212
|
}
|
|
214
213
|
);
|
|
215
|
-
},
|
|
214
|
+
}, Pt = a("div", {
|
|
216
215
|
_id: "aiChatWorkflows"
|
|
217
|
-
}),
|
|
216
|
+
}), En = (t) => {
|
|
218
217
|
const { aiChatSettings: e } = p(), { messages: i } = b();
|
|
219
|
-
return !e.workflows?.length || i.length ? null : /* @__PURE__ */ n(
|
|
220
|
-
},
|
|
218
|
+
return !e.workflows?.length || i.length ? null : /* @__PURE__ */ n(Pt, { ...t });
|
|
219
|
+
}, Ft = a("h3", {
|
|
221
220
|
_id: "aiChatWorkflowsLabel"
|
|
222
|
-
}),
|
|
221
|
+
}), Sn = E((t) => {
|
|
223
222
|
const { aiChatSettings: e } = p();
|
|
224
|
-
return /* @__PURE__ */ n(
|
|
225
|
-
}),
|
|
223
|
+
return /* @__PURE__ */ n(Ft, { children: e.workflowsHeader, ...t });
|
|
224
|
+
}), ft = a("div", {
|
|
226
225
|
_id: "aiChatWorkflowsList"
|
|
227
|
-
}),
|
|
226
|
+
}), kn = E(
|
|
228
227
|
(t) => {
|
|
229
228
|
const { aiChatSettings: e } = p(), i = e.workflows, { children: r, ...o } = t;
|
|
230
|
-
return /* @__PURE__ */ n(
|
|
229
|
+
return /* @__PURE__ */ n(ft, { children: y(r, i), ...o });
|
|
231
230
|
}
|
|
232
|
-
),
|
|
231
|
+
), Mt = a("button", {
|
|
233
232
|
_id: "aiChatWorkflow"
|
|
234
|
-
}),
|
|
233
|
+
}), Bn = (t) => {
|
|
235
234
|
const { workflow: e, onClick: i, ...r } = t, o = (s) => {
|
|
236
235
|
};
|
|
237
236
|
return /* @__PURE__ */ n(
|
|
238
|
-
|
|
237
|
+
Mt,
|
|
239
238
|
{
|
|
240
239
|
onClick: h(i, () => o()),
|
|
241
240
|
children: e.displayName,
|
|
242
241
|
...r
|
|
243
242
|
}
|
|
244
243
|
);
|
|
245
|
-
},
|
|
244
|
+
}, It = a("div", {
|
|
246
245
|
_id: "aiChatMessageWrapper"
|
|
247
|
-
}),
|
|
246
|
+
}), Et = (t) => {
|
|
248
247
|
const { message: e, ...i } = t;
|
|
249
|
-
return e.role === "system" ? null : /* @__PURE__ */ n(
|
|
250
|
-
},
|
|
248
|
+
return e.role === "system" ? null : /* @__PURE__ */ n(Re, { message: e, children: /* @__PURE__ */ n(It, { "data-role": e.role, ...i }) });
|
|
249
|
+
}, yn = E(
|
|
251
250
|
(t) => {
|
|
252
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 ? `
|
|
253
252
|
|
|
@@ -255,59 +254,59 @@ const ot = "__intro__", st = a("div", {
|
|
|
255
254
|
|
|
256
255
|
How can I help?`, C = {
|
|
257
256
|
parts: [{ type: "text", text: r.introMessage ?? `${c}${m}` }],
|
|
258
|
-
id:
|
|
257
|
+
id: rt,
|
|
259
258
|
...e,
|
|
260
259
|
role: "assistant"
|
|
261
260
|
};
|
|
262
|
-
return /* @__PURE__ */ n(
|
|
261
|
+
return /* @__PURE__ */ n(Et, { message: C, ...i });
|
|
263
262
|
}
|
|
264
|
-
),
|
|
263
|
+
), St = a("div", {
|
|
265
264
|
_id: "aiChatMessageHeader"
|
|
266
|
-
}),
|
|
265
|
+
}), Tn = (t) => {
|
|
267
266
|
const { message: e } = f();
|
|
268
|
-
return /* @__PURE__ */ n(
|
|
269
|
-
},
|
|
267
|
+
return /* @__PURE__ */ n(St, { "data-role": e.role, ...t });
|
|
268
|
+
}, kt = a("div", {
|
|
270
269
|
_id: "aiChatMessageLoading",
|
|
271
270
|
children: "Thinking..."
|
|
272
|
-
}),
|
|
271
|
+
}), wn = (t) => /* @__PURE__ */ n(kt, { ...t }), Bt = a("div", {
|
|
273
272
|
_id: "aiChatMessageAvatar"
|
|
274
|
-
}),
|
|
273
|
+
}), Hn = (t) => {
|
|
275
274
|
const { message: e } = f();
|
|
276
|
-
return /* @__PURE__ */ n(
|
|
277
|
-
},
|
|
275
|
+
return /* @__PURE__ */ n(Bt, { "data-role": e.role, ...t });
|
|
276
|
+
}, yt = a(te.Root, {
|
|
278
277
|
_id: "aiChatMessageAvatarContent"
|
|
279
|
-
}),
|
|
278
|
+
}), Ln = (t) => {
|
|
280
279
|
const { message: e } = f(), { baseSettings: i } = p();
|
|
281
280
|
return /* @__PURE__ */ n(
|
|
282
|
-
|
|
281
|
+
yt,
|
|
283
282
|
{
|
|
284
283
|
"data-username": g(e.role === "user" && !!i.userProperties.name),
|
|
285
284
|
"data-role": e.role,
|
|
286
285
|
...t
|
|
287
286
|
}
|
|
288
287
|
);
|
|
289
|
-
},
|
|
288
|
+
}, Tt = a(te.Fallback, {
|
|
290
289
|
_id: "aiChatMessageAvatarFallback"
|
|
291
|
-
}),
|
|
290
|
+
}), xn = E(
|
|
292
291
|
(t) => {
|
|
293
292
|
const { baseSettings: e } = p(), { message: i } = f();
|
|
294
293
|
return e.userProperties.name ? /* @__PURE__ */ n(
|
|
295
|
-
|
|
294
|
+
Tt,
|
|
296
295
|
{
|
|
297
296
|
"data-role": i.role,
|
|
298
|
-
children:
|
|
297
|
+
children: Ve(e.userProperties.name),
|
|
299
298
|
...t
|
|
300
299
|
}
|
|
301
300
|
) : null;
|
|
302
301
|
}
|
|
303
302
|
), ue = a(te.Image, {
|
|
304
303
|
_id: "aiChatMessageAvatarImage"
|
|
305
|
-
}),
|
|
304
|
+
}), Dn = E(
|
|
306
305
|
(t) => {
|
|
307
306
|
const { onLoadingStatusChange: e, ...i } = t, {
|
|
308
307
|
aiChatSettings: r,
|
|
309
308
|
baseSettings: { userProperties: o }
|
|
310
|
-
} = p(), { message: s } = f(), { aiAssistantAvatar: c } = r ?? {}, d = typeof c == "string" ? c : c?.light, m = (typeof c == "string" ? c : c?.dark) ?? d, l =
|
|
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);
|
|
311
310
|
V(() => {
|
|
312
311
|
v(l);
|
|
313
312
|
}, [l]);
|
|
@@ -324,7 +323,7 @@ const ot = "__intro__", st = a("div", {
|
|
|
324
323
|
...t
|
|
325
324
|
}
|
|
326
325
|
) : /* @__PURE__ */ n(
|
|
327
|
-
|
|
326
|
+
Le,
|
|
328
327
|
{
|
|
329
328
|
"data-type": "icon",
|
|
330
329
|
"data-role": s.role,
|
|
@@ -344,7 +343,7 @@ const ot = "__intro__", st = a("div", {
|
|
|
344
343
|
...i
|
|
345
344
|
}
|
|
346
345
|
) : /* @__PURE__ */ n(
|
|
347
|
-
|
|
346
|
+
He,
|
|
348
347
|
{
|
|
349
348
|
"data-type": "icon",
|
|
350
349
|
"data-role": s.role,
|
|
@@ -352,51 +351,51 @@ const ot = "__intro__", st = a("div", {
|
|
|
352
351
|
}
|
|
353
352
|
);
|
|
354
353
|
}
|
|
355
|
-
),
|
|
354
|
+
), wt = a("span", {
|
|
356
355
|
_id: "aiChatMessageName"
|
|
357
|
-
}),
|
|
356
|
+
}), On = (t) => {
|
|
358
357
|
const { message: e } = f();
|
|
359
358
|
return /* @__PURE__ */ n(
|
|
360
|
-
|
|
359
|
+
wt,
|
|
361
360
|
{
|
|
362
361
|
"data-role": e.role,
|
|
363
362
|
children: e.role === "user" ? "You" : "AI assistant",
|
|
364
363
|
...t
|
|
365
364
|
}
|
|
366
365
|
);
|
|
367
|
-
},
|
|
366
|
+
}, Ht = a("div", {
|
|
368
367
|
_id: "aiChatMessageContentWrapper"
|
|
369
|
-
}),
|
|
368
|
+
}), Wn = (t) => {
|
|
370
369
|
const { message: e } = f(), { messageButtons: i } = b(), r = i[e.id] || [];
|
|
371
370
|
return /* @__PURE__ */ n(
|
|
372
|
-
|
|
371
|
+
Ht,
|
|
373
372
|
{
|
|
374
373
|
"data-role": e.role,
|
|
375
374
|
"data-has-message-buttons": g(!!r.length),
|
|
376
375
|
...t
|
|
377
376
|
}
|
|
378
377
|
);
|
|
379
|
-
},
|
|
378
|
+
}, Lt = a("div", {
|
|
380
379
|
_id: "aiChatMessageContent"
|
|
381
|
-
}),
|
|
380
|
+
}), Rn = (t) => {
|
|
382
381
|
const { message: e } = f();
|
|
383
|
-
return /* @__PURE__ */ n(
|
|
384
|
-
},
|
|
382
|
+
return /* @__PURE__ */ n(Lt, { "data-role": e.role, ...t });
|
|
383
|
+
}, xt = a("div", {
|
|
385
384
|
_id: "aiChatMessageAttachments"
|
|
386
|
-
}),
|
|
385
|
+
}), Nn = (t) => {
|
|
387
386
|
const { message: e } = f(), i = [];
|
|
388
|
-
return e.role !== "user" || !i?.length ? null : /* @__PURE__ */ n(
|
|
389
|
-
},
|
|
387
|
+
return e.role !== "user" || !i?.length ? null : /* @__PURE__ */ n(We, { children: /* @__PURE__ */ n(xt, { ...t }) });
|
|
388
|
+
}, Dt = a("div", {
|
|
390
389
|
_id: "aiChatMessageAttachments__List"
|
|
391
|
-
}),
|
|
390
|
+
}), Vn = (t) => {
|
|
392
391
|
const { children: e, ...i } = t, r = [];
|
|
393
|
-
return r ? /* @__PURE__ */ n(
|
|
394
|
-
},
|
|
392
|
+
return r ? /* @__PURE__ */ n(Dt, { children: y(e, r), ...i }) : null;
|
|
393
|
+
}, Ot = a("div", {
|
|
395
394
|
_id: "aiChatMessageAttachments__Item"
|
|
396
|
-
}),
|
|
395
|
+
}), $n = (t) => {
|
|
397
396
|
const { attachment: e, onClick: i, ...r } = t, { selectItem: o, onOpen: s } = j();
|
|
398
397
|
return /* @__PURE__ */ n(pe, { attachment: e, children: /* @__PURE__ */ n(
|
|
399
|
-
|
|
398
|
+
Ot,
|
|
400
399
|
{
|
|
401
400
|
onClick: h(i, () => {
|
|
402
401
|
o(e), s();
|
|
@@ -404,22 +403,22 @@ const ot = "__intro__", st = a("div", {
|
|
|
404
403
|
...r
|
|
405
404
|
}
|
|
406
405
|
) });
|
|
407
|
-
},
|
|
406
|
+
}, Wt = a(H, {
|
|
408
407
|
_id: "aiChatMessageAttachments__ItemIcon"
|
|
409
|
-
}),
|
|
408
|
+
}), Qn = (t) => {
|
|
410
409
|
const { attachment: e } = q(), i = e.contentType?.attachmentIcon;
|
|
411
|
-
return i ? /* @__PURE__ */ n(
|
|
412
|
-
},
|
|
410
|
+
return i ? /* @__PURE__ */ n(Wt, { iconSettings: i, ...t }) : null;
|
|
411
|
+
}, Rt = a("span", {
|
|
413
412
|
_id: "aiChatMessageAttachments__ItemTitle"
|
|
414
|
-
}),
|
|
413
|
+
}), Un = (t) => {
|
|
415
414
|
const { attachment: e } = q();
|
|
416
|
-
return /* @__PURE__ */ n(
|
|
417
|
-
},
|
|
415
|
+
return /* @__PURE__ */ n(Rt, { children: e.title, ...t });
|
|
416
|
+
}, Nt = a(oe, {
|
|
418
417
|
_id: "aiChatMessageAttachmentsPreview"
|
|
419
|
-
}),
|
|
418
|
+
}), Kn = (t) => {
|
|
420
419
|
const { onOpenChange: e, ...i } = t, { selectItem: r, isOpen: o, onClose: s, selectedItem: c } = j();
|
|
421
420
|
return /* @__PURE__ */ n(
|
|
422
|
-
|
|
421
|
+
Nt,
|
|
423
422
|
{
|
|
424
423
|
open: o && c !== null,
|
|
425
424
|
onOpenChange: h(e, (m) => {
|
|
@@ -428,31 +427,31 @@ const ot = "__intro__", st = a("div", {
|
|
|
428
427
|
...i
|
|
429
428
|
}
|
|
430
429
|
);
|
|
431
|
-
},
|
|
430
|
+
}, qn = a(ie, {
|
|
432
431
|
_id: "aiChatMessageAttachmentsPreview__Overlay"
|
|
433
|
-
}),
|
|
432
|
+
}), jn = a(ae, {
|
|
434
433
|
_id: "aiChatMessageAttachmentsPreview__Content",
|
|
435
434
|
"aria-describedby": void 0
|
|
436
|
-
}),
|
|
435
|
+
}), Vt = a(re, {
|
|
437
436
|
_id: "aiChatMessageAttachmentsPreview__Header"
|
|
438
|
-
}),
|
|
437
|
+
}), zn = (t) => {
|
|
439
438
|
const { selectedItem: e } = j();
|
|
440
439
|
return /* @__PURE__ */ n(
|
|
441
|
-
|
|
440
|
+
Vt,
|
|
442
441
|
{
|
|
443
442
|
children: e?.title || "Attachment",
|
|
444
443
|
...t
|
|
445
444
|
}
|
|
446
445
|
);
|
|
447
|
-
},
|
|
446
|
+
}, Gn = a(ne, {
|
|
448
447
|
_id: "aiChatMessageAttachmentsPreview__Close",
|
|
449
448
|
children: /* @__PURE__ */ n(I, { iconKey: "close" })
|
|
450
|
-
}),
|
|
449
|
+
}), $t = a("p", {
|
|
451
450
|
_id: "aiChatMessageAttachmentsPreview__Body"
|
|
452
|
-
}),
|
|
451
|
+
}), Yn = (t) => {
|
|
453
452
|
const { selectedItem: e } = j();
|
|
454
|
-
return /* @__PURE__ */ n(
|
|
455
|
-
},
|
|
453
|
+
return /* @__PURE__ */ n($t, { children: e?.content, ...t });
|
|
454
|
+
}, Jn = (t) => {
|
|
456
455
|
const { text: e, componentStyles: i, ...r } = t, { aiChatSettings: o } = p(), { shouldOpenLinksInNewTab: s } = o;
|
|
457
456
|
return /* @__PURE__ */ n(
|
|
458
457
|
K,
|
|
@@ -463,19 +462,19 @@ const ot = "__intro__", st = a("div", {
|
|
|
463
462
|
...r
|
|
464
463
|
}
|
|
465
464
|
);
|
|
466
|
-
},
|
|
465
|
+
}, Xn = ({
|
|
467
466
|
name: t,
|
|
468
467
|
props: e,
|
|
469
468
|
componentDef: i
|
|
470
469
|
}) => {
|
|
471
|
-
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);
|
|
472
471
|
Ce(() => {
|
|
473
472
|
i !== _.current && (typeof i == "function" && typeof _.current == "function" ? i.toString() !== _.current.toString() && (_.current = i) : _.current = i);
|
|
474
473
|
}, [i]);
|
|
475
474
|
const B = _.current;
|
|
476
475
|
return V(() => {
|
|
477
476
|
s.current || (s.current = `dyn:${t}:${crypto.randomUUID()}`, C(!0));
|
|
478
|
-
}, [t]),
|
|
477
|
+
}, [t]), Fe(() => {
|
|
479
478
|
if (!B || !o || !l || !s.current)
|
|
480
479
|
return;
|
|
481
480
|
const P = s.current, F = document.createElement("div");
|
|
@@ -521,28 +520,28 @@ const ot = "__intro__", st = a("div", {
|
|
|
521
520
|
}
|
|
522
521
|
if (J.isValidElement(M) || typeof M == "string") {
|
|
523
522
|
if (m.current) return;
|
|
524
|
-
d.current || (d.current =
|
|
523
|
+
d.current || (d.current = fe.createRoot(P)), !m.current && d.current && d.current.render(M);
|
|
525
524
|
return;
|
|
526
525
|
}
|
|
527
526
|
d.current && !m.current && d.current.render(null);
|
|
528
527
|
}, [i, e, v]), /* @__PURE__ */ n("slot", { name: s.current });
|
|
529
|
-
},
|
|
528
|
+
}, Zn = a("div", {
|
|
530
529
|
_id: "aiChatMessagePart"
|
|
531
|
-
}),
|
|
530
|
+
}), Qt = a("div", {
|
|
532
531
|
_id: "aiChatMessageToolbar"
|
|
533
|
-
}),
|
|
532
|
+
}), er = (t) => {
|
|
534
533
|
const { isLoading: e, messages: i } = b(), { message: r } = f();
|
|
535
|
-
return i.at(-1)?.id === r?.id && e || r.role === "user" ? null : /* @__PURE__ */ n(
|
|
536
|
-
},
|
|
534
|
+
return i.at(-1)?.id === r?.id && e || r.role === "user" ? null : /* @__PURE__ */ n(Qt, { ...t });
|
|
535
|
+
}, Ut = a("div", {
|
|
537
536
|
_id: "aiChatMessageAnnotationActions"
|
|
538
|
-
}),
|
|
537
|
+
}), tr = (t) => {
|
|
539
538
|
const { children: e, ...i } = t, { message: r } = f(), { messageButtons: o } = b(), s = o[r.id] || [];
|
|
540
|
-
return /* @__PURE__ */ n(
|
|
541
|
-
},
|
|
539
|
+
return /* @__PURE__ */ n(Ut, { children: y(e, s), ...i });
|
|
540
|
+
}, Kt = a("a", {
|
|
542
541
|
_id: "aiChatMessageAnnotationAction"
|
|
543
|
-
}),
|
|
542
|
+
}), qt = a("button", {
|
|
544
543
|
_id: "aiChatMessageAnnotationAction"
|
|
545
|
-
}),
|
|
544
|
+
}), ir = (t) => {
|
|
546
545
|
const { onClick: e, action: i, ...r } = t, { handleAction: o } = de(i), { logEvent: s } = le(), { conversationId: c } = b(), d = () => {
|
|
547
546
|
o(), s({
|
|
548
547
|
eventName: "user_escalation_indicated",
|
|
@@ -556,7 +555,7 @@ const ot = "__intro__", st = a("div", {
|
|
|
556
555
|
m
|
|
557
556
|
] });
|
|
558
557
|
return i.action.type === "open_link" ? /* @__PURE__ */ n(
|
|
559
|
-
|
|
558
|
+
Kt,
|
|
560
559
|
{
|
|
561
560
|
href: i.action.url,
|
|
562
561
|
target: "_blank",
|
|
@@ -567,7 +566,7 @@ const ot = "__intro__", st = a("div", {
|
|
|
567
566
|
...r
|
|
568
567
|
}
|
|
569
568
|
) : /* @__PURE__ */ n(
|
|
570
|
-
|
|
569
|
+
qt,
|
|
571
570
|
{
|
|
572
571
|
"data-type": i.action.type,
|
|
573
572
|
onClick: h(e, d),
|
|
@@ -575,12 +574,12 @@ const ot = "__intro__", st = a("div", {
|
|
|
575
574
|
...r
|
|
576
575
|
}
|
|
577
576
|
);
|
|
578
|
-
},
|
|
577
|
+
}, jt = a("button", {
|
|
579
578
|
_id: "aiChatMessageAction"
|
|
580
|
-
}),
|
|
579
|
+
}), ar = (t) => {
|
|
581
580
|
const { action: e, onClick: i, className: r, ...o } = t, { conversationId: s } = b(), {
|
|
582
581
|
baseSettings: { onFeedback: c }
|
|
583
|
-
} = 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";
|
|
584
583
|
if (D && m || !z) return null;
|
|
585
584
|
const R = {
|
|
586
585
|
copy() {
|
|
@@ -607,7 +606,7 @@ const ot = "__intro__", st = a("div", {
|
|
|
607
606
|
copy: /* @__PURE__ */ n(I, { iconKey: C ? "messageCopied" : "messageCopy" }),
|
|
608
607
|
upvote: /* @__PURE__ */ n(I, { iconKey: M ? "messageCopied" : "thumbsUp" }),
|
|
609
608
|
downvote: /* @__PURE__ */ n(I, { iconKey: "thumbsDown" })
|
|
610
|
-
},
|
|
609
|
+
}, Pe = {
|
|
611
610
|
copy: { "data-copied": g(C) },
|
|
612
611
|
upvote: {
|
|
613
612
|
"data-upvoted": g(u[d.id]?.type === "positive")
|
|
@@ -622,10 +621,10 @@ const ot = "__intro__", st = a("div", {
|
|
|
622
621
|
upvote: !c,
|
|
623
622
|
downvote: !c
|
|
624
623
|
}[e] ? null : /* @__PURE__ */ n(
|
|
625
|
-
|
|
624
|
+
jt,
|
|
626
625
|
{
|
|
627
626
|
"data-action": e,
|
|
628
|
-
...
|
|
627
|
+
...Pe[e],
|
|
629
628
|
children: Y[e],
|
|
630
629
|
"aria-label": G[e],
|
|
631
630
|
className: `${r} ${e}`,
|
|
@@ -633,18 +632,18 @@ const ot = "__intro__", st = a("div", {
|
|
|
633
632
|
...o
|
|
634
633
|
}
|
|
635
634
|
);
|
|
636
|
-
},
|
|
635
|
+
}, zt = a("div", {
|
|
637
636
|
_id: "aiChatMessageSources"
|
|
638
|
-
}),
|
|
637
|
+
}), nr = (t) => {
|
|
639
638
|
const { message: e } = f();
|
|
640
639
|
return e.role !== "assistant" || !e.parts.filter(
|
|
641
|
-
(r) => r.type === "data-artifact" && r.data?.type?.toLowerCase() ===
|
|
642
|
-
)?.length ? null : /* @__PURE__ */ n(
|
|
643
|
-
},
|
|
640
|
+
(r) => r.type === "data-artifact" && r.data?.type?.toLowerCase() === "citation"
|
|
641
|
+
)?.length ? null : /* @__PURE__ */ n(zt, { ...t });
|
|
642
|
+
}, Gt = a("div", {
|
|
644
643
|
_id: "aiChatMessageSources__Header"
|
|
645
|
-
}),
|
|
644
|
+
}), rr = (t) => /* @__PURE__ */ n(Gt, { children: "Sources", ...t }), Yt = a("div", {
|
|
646
645
|
_id: "aiChatMessageSources__List"
|
|
647
|
-
}),
|
|
646
|
+
}), or = (t) => {
|
|
648
647
|
const { message: e } = f(), { children: i, ...r } = t, {
|
|
649
648
|
baseSettings: { transformSource: o, organizationDisplayName: s },
|
|
650
649
|
aiChatSettings: { shouldOpenLinksInNewTab: c },
|
|
@@ -652,7 +651,7 @@ const ot = "__intro__", st = a("div", {
|
|
|
652
651
|
} = p();
|
|
653
652
|
if (e.role !== "assistant") return null;
|
|
654
653
|
const m = e.parts.filter(
|
|
655
|
-
(v) => v.type === "data-artifact" && v.data?.type?.toLowerCase() ===
|
|
654
|
+
(v) => v.type === "data-artifact" && v.data?.type?.toLowerCase() === "citation"
|
|
656
655
|
);
|
|
657
656
|
if (!m?.length) return null;
|
|
658
657
|
const l = /* @__PURE__ */ new Map(), C = m.filter((v) => {
|
|
@@ -671,17 +670,17 @@ const ot = "__intro__", st = a("div", {
|
|
|
671
670
|
}, P = (o ?? ((M) => ({
|
|
672
671
|
...M,
|
|
673
672
|
shouldOpenInNewTab: c,
|
|
674
|
-
icon:
|
|
673
|
+
icon: nt(M)
|
|
675
674
|
})))(_, "chatSourceItem", {
|
|
676
675
|
organizationDisplayName: s,
|
|
677
676
|
tabs: d
|
|
678
677
|
}), F = P.shouldOpenInNewTab !== void 0 ? P.shouldOpenInNewTab : c;
|
|
679
678
|
return { ...P, isExternal: F };
|
|
680
679
|
});
|
|
681
|
-
return /* @__PURE__ */ n(
|
|
682
|
-
},
|
|
680
|
+
return /* @__PURE__ */ n(Yt, { children: y(i, C), ...r });
|
|
681
|
+
}, Jt = a(xe, {
|
|
683
682
|
_id: "aiChatMessageSourceItem"
|
|
684
|
-
}),
|
|
683
|
+
}), sr = (t) => {
|
|
685
684
|
const { source: e, onClick: i, ...r } = t, { logEvent: o } = le(), { conversationId: s } = b(), c = () => {
|
|
686
685
|
o({
|
|
687
686
|
eventName: "assistant_source_item_clicked",
|
|
@@ -691,8 +690,8 @@ const ot = "__intro__", st = a("div", {
|
|
|
691
690
|
}
|
|
692
691
|
});
|
|
693
692
|
};
|
|
694
|
-
return /* @__PURE__ */ n(
|
|
695
|
-
|
|
693
|
+
return /* @__PURE__ */ n(Oe, { source: e, children: /* @__PURE__ */ n(
|
|
694
|
+
Jt,
|
|
696
695
|
{
|
|
697
696
|
"data-type": e.type,
|
|
698
697
|
appendToUrl: e.appendToUrl,
|
|
@@ -702,47 +701,47 @@ const ot = "__intro__", st = a("div", {
|
|
|
702
701
|
...r
|
|
703
702
|
}
|
|
704
703
|
) });
|
|
705
|
-
},
|
|
704
|
+
}, Xt = a("div", {
|
|
706
705
|
_id: "aiChatMessageSourceItem__Breadcrumbs"
|
|
707
|
-
}),
|
|
706
|
+
}), cr = (t) => {
|
|
708
707
|
const { source: e } = L();
|
|
709
|
-
return e.breadcrumbs?.length ? /* @__PURE__ */ n(
|
|
710
|
-
},
|
|
708
|
+
return e.breadcrumbs?.length ? /* @__PURE__ */ n(Xt, { "data-type": e.type, ...t }) : null;
|
|
709
|
+
}, dr = a(I, {
|
|
711
710
|
_id: "aiChatMessageSourceItem__BreadcrumbIcon",
|
|
712
711
|
iconKey: "breadcrumbSeparator"
|
|
713
|
-
}),
|
|
712
|
+
}), Zt = a(H, {
|
|
714
713
|
_id: "aiChatMessageSourceItem__Icon"
|
|
715
|
-
}),
|
|
714
|
+
}), mr = (t) => {
|
|
716
715
|
const { source: e } = L();
|
|
717
|
-
return /* @__PURE__ */ n(
|
|
718
|
-
},
|
|
716
|
+
return /* @__PURE__ */ n(Zt, { iconSettings: e.icon, "data-type": e.type, ...t });
|
|
717
|
+
}, ei = a("span", {
|
|
719
718
|
_id: "aiChatMessageSourceItem__Title"
|
|
720
|
-
}),
|
|
719
|
+
}), lr = (t) => {
|
|
721
720
|
const { source: e } = L();
|
|
722
|
-
return /* @__PURE__ */ n(
|
|
723
|
-
},
|
|
721
|
+
return /* @__PURE__ */ n(ei, { "data-type": e.type, children: e.title, ...t });
|
|
722
|
+
}, ti = a("span", {
|
|
724
723
|
_id: "aiChatMessageSourceItem__Tag"
|
|
725
|
-
}),
|
|
724
|
+
}), hr = (t) => {
|
|
726
725
|
const { source: e } = L();
|
|
727
|
-
return /* @__PURE__ */ n(
|
|
728
|
-
},
|
|
726
|
+
return /* @__PURE__ */ n(ti, { "data-type": e.type, ...t });
|
|
727
|
+
}, ii = a("span", {
|
|
729
728
|
_id: "aiChatMessageSourceItem__Description"
|
|
730
|
-
}),
|
|
731
|
-
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]);
|
|
732
731
|
return o.length ? /* @__PURE__ */ n(
|
|
733
|
-
|
|
732
|
+
ii,
|
|
734
733
|
{
|
|
735
734
|
"data-type": e.type,
|
|
736
735
|
children: y(i, o),
|
|
737
736
|
...r
|
|
738
737
|
}
|
|
739
738
|
) : null;
|
|
740
|
-
},
|
|
739
|
+
}, ai = a("span", {
|
|
741
740
|
_id: "aiChatMessageSourceItem__DescriptionPart"
|
|
742
|
-
}),
|
|
741
|
+
}), Cr = (t) => {
|
|
743
742
|
const { part: e, ...i } = t, { source: r } = L();
|
|
744
743
|
return typeof e == "string" ? e : /* @__PURE__ */ n(
|
|
745
|
-
|
|
744
|
+
ai,
|
|
746
745
|
{
|
|
747
746
|
"data-type": r.type,
|
|
748
747
|
children: e.content,
|
|
@@ -750,32 +749,32 @@ const ot = "__intro__", st = a("div", {
|
|
|
750
749
|
...i
|
|
751
750
|
}
|
|
752
751
|
);
|
|
753
|
-
},
|
|
752
|
+
}, ni = a(I, {
|
|
754
753
|
_id: "aiChatMessageSourceItem__Indicator"
|
|
755
|
-
}),
|
|
754
|
+
}), pr = (t) => {
|
|
756
755
|
const { source: e } = L();
|
|
757
756
|
return /* @__PURE__ */ n(
|
|
758
|
-
|
|
757
|
+
ni,
|
|
759
758
|
{
|
|
760
759
|
iconKey: e.isExternal ? "openLinkInNewTab" : "openLinkInSameTab",
|
|
761
760
|
...t
|
|
762
761
|
}
|
|
763
762
|
);
|
|
764
|
-
},
|
|
763
|
+
}, vr = a("div", {
|
|
765
764
|
_id: "aiChatFooter"
|
|
766
|
-
}),
|
|
765
|
+
}), gr = a("div", {
|
|
767
766
|
_id: "aiChatInput__Fieldset"
|
|
768
|
-
}),
|
|
767
|
+
}), br = a("div", {
|
|
769
768
|
_id: "aiChatInput__Group"
|
|
770
|
-
}),
|
|
769
|
+
}), ri = a("textarea", {
|
|
771
770
|
_id: "aiChatInput"
|
|
772
|
-
}),
|
|
771
|
+
}), _r = Q(({ onChange: t, onKeyDown: e, ...i }, r) => {
|
|
773
772
|
const { handleInputChange: o, handleInputKeyDown: s, input: c, error: d, shouldAutoFocusInput: m, inputRef: l } = b(), { aiChatSettings: C } = p(), v = me(
|
|
774
773
|
r,
|
|
775
774
|
l
|
|
776
775
|
);
|
|
777
|
-
return
|
|
778
|
-
|
|
776
|
+
return it("chat", l, m), /* @__PURE__ */ n(
|
|
777
|
+
ri,
|
|
779
778
|
{
|
|
780
779
|
asChild: !0,
|
|
781
780
|
ref: v,
|
|
@@ -789,12 +788,12 @@ const ot = "__intro__", st = a("div", {
|
|
|
789
788
|
children: /* @__PURE__ */ n(ee, {})
|
|
790
789
|
}
|
|
791
790
|
);
|
|
792
|
-
}),
|
|
791
|
+
}), oi = a("button", {
|
|
793
792
|
_id: "aiChatInput__SendButton"
|
|
794
|
-
}),
|
|
793
|
+
}), Ar = (t) => {
|
|
795
794
|
const { handleSubmit: e, isSubmitDisabled: i, error: r } = b(), { aiChatSettings: o } = p(), { onClick: s, ...c } = t;
|
|
796
795
|
return /* @__PURE__ */ n(
|
|
797
|
-
|
|
796
|
+
oi,
|
|
798
797
|
{
|
|
799
798
|
onClick: h(s, () => e()),
|
|
800
799
|
"aria-label": "Send message",
|
|
@@ -802,40 +801,40 @@ const ot = "__intro__", st = a("div", {
|
|
|
802
801
|
...c
|
|
803
802
|
}
|
|
804
803
|
);
|
|
805
|
-
},
|
|
804
|
+
}, Pr = a(I, {
|
|
806
805
|
_id: "aiChatInput__SendButtonIcon",
|
|
807
806
|
iconKey: "chatSubmit"
|
|
808
|
-
}),
|
|
807
|
+
}), si = a("div", {
|
|
809
808
|
_id: "aiChatAttachmentsBar"
|
|
810
|
-
}),
|
|
809
|
+
}), Fr = (t) => {
|
|
811
810
|
const e = { supportedInputs: [] };
|
|
812
|
-
return !e || !e.supportedInputs?.length ? null : /* @__PURE__ */ n(
|
|
813
|
-
},
|
|
811
|
+
return !e || !e.supportedInputs?.length ? null : /* @__PURE__ */ n(De, { children: /* @__PURE__ */ n(si, { ...t }) });
|
|
812
|
+
}, ci = a("div", {
|
|
814
813
|
_id: "aiChatAttachmentsBar__List"
|
|
815
|
-
}),
|
|
814
|
+
}), fr = (t) => {
|
|
816
815
|
const { children: e, ...i } = t;
|
|
817
|
-
return /* @__PURE__ */ n(
|
|
818
|
-
},
|
|
816
|
+
return /* @__PURE__ */ n(ci, { children: y(e, []), ...i });
|
|
817
|
+
}, di = a("div", {
|
|
819
818
|
_id: "aiChatAttachmentsBar__Attachment"
|
|
820
|
-
}),
|
|
819
|
+
}), Mr = (t) => {
|
|
821
820
|
const { attachment: e, ...i } = t;
|
|
822
|
-
return /* @__PURE__ */ n(pe, { attachment: e, children: /* @__PURE__ */ n(
|
|
823
|
-
},
|
|
821
|
+
return /* @__PURE__ */ n(pe, { attachment: e, children: /* @__PURE__ */ n(di, { ...i }) });
|
|
822
|
+
}, mi = a(H, {
|
|
824
823
|
_id: "aiChatAttachmentsBar__AttachmentIcon"
|
|
825
|
-
}),
|
|
824
|
+
}), Ir = (t) => {
|
|
826
825
|
const { attachment: e } = q(), i = e.contentType?.attachmentIcon;
|
|
827
|
-
return i ? /* @__PURE__ */ n(
|
|
828
|
-
},
|
|
826
|
+
return i ? /* @__PURE__ */ n(mi, { iconSettings: i, ...t }) : null;
|
|
827
|
+
}, li = a("span", {
|
|
829
828
|
_id: "aiChatAttachmentsBar__AttachmentTitle"
|
|
830
|
-
}),
|
|
829
|
+
}), Er = (t) => {
|
|
831
830
|
const { attachment: e } = q();
|
|
832
|
-
return /* @__PURE__ */ n(
|
|
833
|
-
},
|
|
831
|
+
return /* @__PURE__ */ n(li, { children: e.title, ...t });
|
|
832
|
+
}, hi = a("button", {
|
|
834
833
|
_id: "aiChatAttachmentsBar__AttachmentDelete"
|
|
835
|
-
}),
|
|
834
|
+
}), Sr = (t) => {
|
|
836
835
|
const { onClick: e, ...i } = t;
|
|
837
836
|
return /* @__PURE__ */ n(
|
|
838
|
-
|
|
837
|
+
hi,
|
|
839
838
|
{
|
|
840
839
|
"aria-label": "Remove attachment",
|
|
841
840
|
children: /* @__PURE__ */ n(I, { iconKey: "close" }),
|
|
@@ -844,39 +843,39 @@ const ot = "__intro__", st = a("div", {
|
|
|
844
843
|
...i
|
|
845
844
|
}
|
|
846
845
|
);
|
|
847
|
-
},
|
|
846
|
+
}, kr = a("div", {
|
|
848
847
|
_id: "aiChatAttachmentsBar__Actions"
|
|
849
|
-
}),
|
|
848
|
+
}), Br = a(w.Tooltip, {
|
|
850
849
|
_id: "aiChatAttachmentsBar__InfoTip",
|
|
851
850
|
delayDuration: 0
|
|
852
|
-
}),
|
|
851
|
+
}), yr = a(w.Trigger, {
|
|
853
852
|
_id: "aiChatAttachmentsBar__InfoTipIcon",
|
|
854
853
|
children: /* @__PURE__ */ n(I, { iconKey: "info" })
|
|
855
|
-
}),
|
|
854
|
+
}), ui = a(w.Arrow, {
|
|
856
855
|
_id: "aiChatAttachmentsBar__InfoTipArrow"
|
|
857
|
-
}),
|
|
856
|
+
}), Tr = a(w.Content, {
|
|
858
857
|
_id: "aiChatAttachmentsBar__InfoTipText",
|
|
859
858
|
side: "bottom",
|
|
860
859
|
sideOffset: 3,
|
|
861
860
|
align: "center",
|
|
862
861
|
children: /* @__PURE__ */ $(Z, { children: [
|
|
863
|
-
/* @__PURE__ */ n(
|
|
862
|
+
/* @__PURE__ */ n(ui, {}),
|
|
864
863
|
"Attachments will be kept in context for the entire conversation."
|
|
865
864
|
] })
|
|
866
|
-
}),
|
|
865
|
+
}), Ci = a("div", {
|
|
867
866
|
_id: "aiChatAttachmentsBar__Inputs"
|
|
868
|
-
}),
|
|
867
|
+
}), wr = (t) => {
|
|
869
868
|
const { children: e, ...i } = t, r = { supportedInputs: [] };
|
|
870
869
|
return r?.supportedInputs ? /* @__PURE__ */ n(
|
|
871
|
-
|
|
870
|
+
Ci,
|
|
872
871
|
{
|
|
873
872
|
children: y(e, r.supportedInputs),
|
|
874
873
|
...i
|
|
875
874
|
}
|
|
876
875
|
) : null;
|
|
877
|
-
},
|
|
876
|
+
}, pi = a("button", {
|
|
878
877
|
_id: "aiChatAttachmentsBar__Input"
|
|
879
|
-
}),
|
|
878
|
+
}), Hr = (t) => {
|
|
880
879
|
const { input: e, onClick: i, ...r } = t, o = { supportedInputs: [] }, s = [], c = () => {
|
|
881
880
|
}, { selectInput: d, onOpen: m } = k(), l = () => {
|
|
882
881
|
if (e.type === "FUNCTIONAL_MULTI_ATTACHMENT")
|
|
@@ -884,19 +883,19 @@ const ot = "__intro__", st = a("div", {
|
|
|
884
883
|
d(e), m();
|
|
885
884
|
};
|
|
886
885
|
return /* @__PURE__ */ n(
|
|
887
|
-
|
|
886
|
+
pi,
|
|
888
887
|
{
|
|
889
888
|
children: e.displayName,
|
|
890
889
|
onClick: h(i, l),
|
|
891
890
|
...r
|
|
892
891
|
}
|
|
893
892
|
);
|
|
894
|
-
},
|
|
893
|
+
}, vi = a(oe, {
|
|
895
894
|
_id: "aiChatAttachmentsBar__Modal"
|
|
896
|
-
}),
|
|
895
|
+
}), Lr = (t) => {
|
|
897
896
|
const { onOpenChange: e, ...i } = t, { selectInput: r, isOpen: o, onClose: s, selectedInput: c } = k();
|
|
898
897
|
return /* @__PURE__ */ n(
|
|
899
|
-
|
|
898
|
+
vi,
|
|
900
899
|
{
|
|
901
900
|
open: o && c !== null,
|
|
902
901
|
onOpenChange: h(e, (m) => {
|
|
@@ -905,65 +904,65 @@ const ot = "__intro__", st = a("div", {
|
|
|
905
904
|
...i
|
|
906
905
|
}
|
|
907
906
|
);
|
|
908
|
-
},
|
|
907
|
+
}, xr = a(ie, {
|
|
909
908
|
_id: "aiChatAttachmentsBar__ModalOverlay"
|
|
910
|
-
}),
|
|
909
|
+
}), Dr = a(ae, {
|
|
911
910
|
_id: "aiChatAttachmentsBar__ModalContent",
|
|
912
911
|
"aria-describedby": void 0
|
|
913
|
-
}),
|
|
912
|
+
}), Or = a("div", {
|
|
914
913
|
_id: "aiChatAttachmentsBar__ModalHeader"
|
|
915
|
-
}),
|
|
914
|
+
}), gi = a(re, {
|
|
916
915
|
_id: "aiChatAttachmentsBar__ModalHeading"
|
|
917
|
-
}),
|
|
916
|
+
}), Wr = (t) => {
|
|
918
917
|
const { selectedInput: e } = k(), i = `Add ${e?.displayName}`;
|
|
919
|
-
return /* @__PURE__ */ n(
|
|
920
|
-
},
|
|
918
|
+
return /* @__PURE__ */ n(gi, { children: i, ...t });
|
|
919
|
+
}, bi = a("span", {
|
|
921
920
|
_id: "aiChatAttachmentsBar__ModalDescription"
|
|
922
|
-
}),
|
|
921
|
+
}), Rr = (t) => {
|
|
923
922
|
const { selectedInput: e } = k(), i = e?.workflowModalProps?.modalHelpText;
|
|
924
|
-
return i ? /* @__PURE__ */ n(
|
|
925
|
-
},
|
|
923
|
+
return i ? /* @__PURE__ */ n(bi, { children: i, ...t }) : null;
|
|
924
|
+
}, _i = a("div", {
|
|
926
925
|
_id: "aiChatAttachmentsBar__ModalHelp"
|
|
927
|
-
}),
|
|
926
|
+
}), Nr = (t) => {
|
|
928
927
|
const { children: e, ...i } = t, { selectedInput: r } = k(), o = r?.workflowModalProps?.modalHelpElement;
|
|
929
|
-
return o ? /* @__PURE__ */ n(
|
|
930
|
-
},
|
|
928
|
+
return o ? /* @__PURE__ */ n(_i, { asChild: !e, children: e || o, ...i }) : null;
|
|
929
|
+
}, Vr = a(ne, {
|
|
931
930
|
_id: "aiChatAttachmentsBar__ModalClose",
|
|
932
931
|
children: /* @__PURE__ */ n(I, { iconKey: "close" })
|
|
933
|
-
}),
|
|
932
|
+
}), $r = a("div", {
|
|
934
933
|
_id: "aiChatAttachmentsBar__ModalBody"
|
|
935
|
-
}),
|
|
934
|
+
}), Ai = a("form", {
|
|
936
935
|
_id: "aiChatAttachmentsBar__Form"
|
|
937
|
-
}),
|
|
936
|
+
}), Qr = (t) => {
|
|
938
937
|
const { onSubmit: e, ...i } = t, { form: r } = k();
|
|
939
938
|
return /* @__PURE__ */ n(
|
|
940
|
-
|
|
939
|
+
Ai,
|
|
941
940
|
{
|
|
942
941
|
onSubmit: h(e, r.onSubmit),
|
|
943
942
|
...i
|
|
944
943
|
}
|
|
945
944
|
);
|
|
946
|
-
},
|
|
945
|
+
}, Ur = a("div", {
|
|
947
946
|
_id: "aiChatAttachmentsBar__FormTitle",
|
|
948
947
|
role: "group"
|
|
949
|
-
}),
|
|
948
|
+
}), Pi = a("label", {
|
|
950
949
|
_id: "aiChatAttachmentsBar__FormTitleLabel"
|
|
951
|
-
}),
|
|
950
|
+
}), Kr = (t) => {
|
|
952
951
|
const { form: e, selectedInput: i } = k();
|
|
953
952
|
return /* @__PURE__ */ n(
|
|
954
|
-
|
|
953
|
+
Pi,
|
|
955
954
|
{
|
|
956
955
|
htmlFor: `${i?.id}-title`,
|
|
957
956
|
children: e.labels.title,
|
|
958
957
|
...t
|
|
959
958
|
}
|
|
960
959
|
);
|
|
961
|
-
},
|
|
960
|
+
}, Fi = a("input", {
|
|
962
961
|
_id: "aiChatAttachmentsBar__FormTitleInput"
|
|
963
|
-
}),
|
|
962
|
+
}), qr = (t) => {
|
|
964
963
|
const { onChange: e, ...i } = t, { form: r, selectedInput: o } = k();
|
|
965
964
|
return /* @__PURE__ */ n(
|
|
966
|
-
|
|
965
|
+
Fi,
|
|
967
966
|
{
|
|
968
967
|
name: "title",
|
|
969
968
|
value: r.data.title,
|
|
@@ -974,39 +973,39 @@ const ot = "__intro__", st = a("div", {
|
|
|
974
973
|
...i
|
|
975
974
|
}
|
|
976
975
|
);
|
|
977
|
-
},
|
|
976
|
+
}, fi = a("span", {
|
|
978
977
|
_id: "aiChatAttachmentsBar__FormTitleError"
|
|
979
|
-
}),
|
|
978
|
+
}), jr = (t) => {
|
|
980
979
|
const { form: e } = k();
|
|
981
980
|
return e.errors.title ? /* @__PURE__ */ n(
|
|
982
|
-
|
|
981
|
+
fi,
|
|
983
982
|
{
|
|
984
983
|
"aria-live": "polite",
|
|
985
984
|
children: e.errors.title,
|
|
986
985
|
...t
|
|
987
986
|
}
|
|
988
987
|
) : null;
|
|
989
|
-
},
|
|
988
|
+
}, zr = a("div", {
|
|
990
989
|
_id: "aiChatAttachmentsBar__FormTitle",
|
|
991
990
|
role: "group"
|
|
992
|
-
}),
|
|
991
|
+
}), Mi = a("label", {
|
|
993
992
|
_id: "aiChatAttachmentsBar__FormContentLabel"
|
|
994
|
-
}),
|
|
993
|
+
}), Gr = (t) => {
|
|
995
994
|
const { form: e, selectedInput: i } = k();
|
|
996
995
|
return /* @__PURE__ */ n(
|
|
997
|
-
|
|
996
|
+
Mi,
|
|
998
997
|
{
|
|
999
998
|
htmlFor: `${i?.id}-content`,
|
|
1000
999
|
children: e.labels.content,
|
|
1001
1000
|
...t
|
|
1002
1001
|
}
|
|
1003
1002
|
);
|
|
1004
|
-
},
|
|
1003
|
+
}, Ii = a("textarea", {
|
|
1005
1004
|
_id: "aiChatAttachmentsBar__FormTitleInput"
|
|
1006
|
-
}),
|
|
1005
|
+
}), Yr = (t) => {
|
|
1007
1006
|
const { onChange: e, ...i } = t, { form: r, selectedInput: o } = k();
|
|
1008
1007
|
return /* @__PURE__ */ n(
|
|
1009
|
-
|
|
1008
|
+
Ii,
|
|
1010
1009
|
{
|
|
1011
1010
|
asChild: !0,
|
|
1012
1011
|
rows: 4,
|
|
@@ -1020,42 +1019,42 @@ const ot = "__intro__", st = a("div", {
|
|
|
1020
1019
|
children: /* @__PURE__ */ n(ee, { maxRows: 10 })
|
|
1021
1020
|
}
|
|
1022
1021
|
);
|
|
1023
|
-
},
|
|
1022
|
+
}, Ei = a("span", {
|
|
1024
1023
|
_id: "aiChatAttachmentsBar__FormContentError"
|
|
1025
|
-
}),
|
|
1024
|
+
}), Jr = (t) => {
|
|
1026
1025
|
const { form: e } = k();
|
|
1027
1026
|
return e.errors.content ? /* @__PURE__ */ n(
|
|
1028
|
-
|
|
1027
|
+
Ei,
|
|
1029
1028
|
{
|
|
1030
1029
|
"aria-live": "polite",
|
|
1031
1030
|
children: e.errors.content,
|
|
1032
1031
|
...t
|
|
1033
1032
|
}
|
|
1034
1033
|
) : null;
|
|
1035
|
-
},
|
|
1034
|
+
}, Xr = a("button", {
|
|
1036
1035
|
_id: "aiChatAttachmentsBar__FormSubmitButton",
|
|
1037
1036
|
children: "Upload",
|
|
1038
1037
|
type: "submit"
|
|
1039
|
-
}),
|
|
1038
|
+
}), Zr = a("div", {
|
|
1040
1039
|
_id: "aiChatActionBar"
|
|
1041
|
-
}),
|
|
1040
|
+
}), eo = a("div", {
|
|
1042
1041
|
_id: "aiChat__ChatActions"
|
|
1043
|
-
}),
|
|
1042
|
+
}), to = a("div", {
|
|
1044
1043
|
_id: "aiChatTagline__Container"
|
|
1045
|
-
}),
|
|
1044
|
+
}), io = a("span", {
|
|
1046
1045
|
_id: "aiChatTagline__Text",
|
|
1047
1046
|
children: "Powered by"
|
|
1048
|
-
}),
|
|
1047
|
+
}), ao = a($e, {
|
|
1049
1048
|
_id: "aiChatTagline__Logo"
|
|
1050
|
-
}),
|
|
1049
|
+
}), no = a("a", {
|
|
1051
1050
|
_id: "aiChatTagline__BrandName",
|
|
1052
1051
|
children: "inkeep",
|
|
1053
1052
|
href: "https://www.inkeep.com/",
|
|
1054
1053
|
target: "_blank",
|
|
1055
1054
|
rel: "noopener noreferrer"
|
|
1056
|
-
}),
|
|
1055
|
+
}), Si = a(w.Trigger, {
|
|
1057
1056
|
_id: "aiChat__ChatAction"
|
|
1058
|
-
}),
|
|
1057
|
+
}), _e = (t) => {
|
|
1059
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(), [
|
|
1060
1059
|
P
|
|
1061
1060
|
/* copyShareUri */
|
|
@@ -1093,19 +1092,19 @@ ${Y}`;
|
|
|
1093
1092
|
share: P
|
|
1094
1093
|
};
|
|
1095
1094
|
return /* @__PURE__ */ n(w.Tooltip, { delayDuration: 0, open: z[e], children: /* @__PURE__ */ n(
|
|
1096
|
-
|
|
1095
|
+
Si,
|
|
1097
1096
|
{
|
|
1098
1097
|
"data-type": e,
|
|
1099
1098
|
"data-copied": g(_ || P),
|
|
1100
1099
|
className: `${r} ${e}`,
|
|
1101
|
-
children: /* @__PURE__ */ n(
|
|
1100
|
+
children: /* @__PURE__ */ n(Bi, { action: e }),
|
|
1102
1101
|
onClick: h(i, D[e]),
|
|
1103
1102
|
...o
|
|
1104
1103
|
}
|
|
1105
1104
|
) });
|
|
1106
|
-
},
|
|
1105
|
+
}, ki = a("span", {
|
|
1107
1106
|
_id: "aiChat__ChatActionLabel"
|
|
1108
|
-
}),
|
|
1107
|
+
}), Bi = (t) => {
|
|
1109
1108
|
const { action: e, ...i } = t, { aiChatSettings: r } = p(), o = r.toolbarButtonLabels ?? {}, s = {
|
|
1110
1109
|
help: o.getHelp ?? "Get Help",
|
|
1111
1110
|
copy: o.copyChat ?? "Copy",
|
|
@@ -1113,21 +1112,21 @@ ${Y}`;
|
|
|
1113
1112
|
clear: o.clear ?? "Clear",
|
|
1114
1113
|
stop: o.stop ?? "Stop"
|
|
1115
1114
|
};
|
|
1116
|
-
return /* @__PURE__ */ n(
|
|
1117
|
-
},
|
|
1115
|
+
return /* @__PURE__ */ n(ki, { children: s[e], ...i });
|
|
1116
|
+
}, yi = a(w.TooltipContent, {
|
|
1118
1117
|
_id: "aiChat__ChatActionFeeback"
|
|
1119
|
-
}),
|
|
1118
|
+
}), ro = (t) => {
|
|
1120
1119
|
const { action: e, children: i, ...r } = t, o = {
|
|
1121
1120
|
copy: "Copied!",
|
|
1122
1121
|
share: "Link copied!"
|
|
1123
1122
|
};
|
|
1124
|
-
return /* @__PURE__ */ $(
|
|
1123
|
+
return /* @__PURE__ */ $(yi, { sideOffset: 5, ...r, children: [
|
|
1125
1124
|
/* @__PURE__ */ n(w.Arrow, {}),
|
|
1126
1125
|
i || o[e]
|
|
1127
1126
|
] });
|
|
1128
|
-
},
|
|
1127
|
+
}, Ti = a(T.Root, {
|
|
1129
1128
|
_id: "aiChatHelpActions"
|
|
1130
|
-
}),
|
|
1129
|
+
}), oo = (t) => {
|
|
1131
1130
|
const { children: e, ...i } = t, { aiChatSettings: r } = p(), { getHelpOptions: o } = r;
|
|
1132
1131
|
if (!o || (o ?? []).length === 0)
|
|
1133
1132
|
return null;
|
|
@@ -1137,9 +1136,9 @@ ${Y}`;
|
|
|
1137
1136
|
return { ...C, [u]: [...C[u], v] };
|
|
1138
1137
|
},
|
|
1139
1138
|
{ _pinned: [], _unpinned: [] }
|
|
1140
|
-
), d = c.length === 1 ? [...s, c[0]] : s, m = c.length === 1 ? [] : c, l =
|
|
1141
|
-
return /* @__PURE__ */ n(
|
|
1142
|
-
|
|
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,
|
|
1143
1142
|
{
|
|
1144
1143
|
open: l.open,
|
|
1145
1144
|
onOpenChange: l.setOpen,
|
|
@@ -1147,14 +1146,14 @@ ${Y}`;
|
|
|
1147
1146
|
...i
|
|
1148
1147
|
}
|
|
1149
1148
|
) });
|
|
1150
|
-
},
|
|
1149
|
+
}, wi = a(_e, {
|
|
1151
1150
|
_id: "aiChatHelpAction",
|
|
1152
1151
|
action: "help"
|
|
1153
|
-
}),
|
|
1152
|
+
}), Hi = a("a", {
|
|
1154
1153
|
_id: "aiChatHelpAction",
|
|
1155
1154
|
target: "_blank",
|
|
1156
1155
|
rel: "noreferrer"
|
|
1157
|
-
}),
|
|
1156
|
+
}), so = (t) => {
|
|
1158
1157
|
const { action: e, onClick: i, ...r } = t, { handleAction: o, logHelpAction: s } = de(e), c = e.action.type, d = {
|
|
1159
1158
|
"aria-label": e.name,
|
|
1160
1159
|
"data-name": e.name,
|
|
@@ -1165,18 +1164,18 @@ ${Y}`;
|
|
|
1165
1164
|
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
|
|
1166
1165
|
...r
|
|
1167
1166
|
};
|
|
1168
|
-
return c === "open_link" ? /* @__PURE__ */ n(
|
|
1169
|
-
},
|
|
1167
|
+
return c === "open_link" ? /* @__PURE__ */ n(Hi, { href: e.action.url, ...d }) : /* @__PURE__ */ n(wi, { ...d });
|
|
1168
|
+
}, Li = a(T.Trigger, {
|
|
1170
1169
|
_id: "aiChatHelpActions__Trigger"
|
|
1171
|
-
}),
|
|
1170
|
+
}), co = E(
|
|
1172
1171
|
(t) => {
|
|
1173
1172
|
const { aiChatSettings: e } = p();
|
|
1174
|
-
return /* @__PURE__ */ n(
|
|
1173
|
+
return /* @__PURE__ */ n(_e, { action: "help", ...t, asChild: !0, children: /* @__PURE__ */ n(Li, { children: e.toolbarButtonLabels?.getHelp ?? "Get Help" }) });
|
|
1175
1174
|
}
|
|
1176
|
-
),
|
|
1175
|
+
), xi = a(T.Content, {
|
|
1177
1176
|
_id: "aiChatHelpActions__Menu"
|
|
1178
|
-
}),
|
|
1179
|
-
|
|
1177
|
+
}), mo = (t) => /* @__PURE__ */ n(
|
|
1178
|
+
xi,
|
|
1180
1179
|
{
|
|
1181
1180
|
side: "top",
|
|
1182
1181
|
sideOffset: 8,
|
|
@@ -1184,10 +1183,10 @@ ${Y}`;
|
|
|
1184
1183
|
alignOffset: -10,
|
|
1185
1184
|
...t
|
|
1186
1185
|
}
|
|
1187
|
-
),
|
|
1186
|
+
), lo = a(T.Arrow, {
|
|
1188
1187
|
_id: "aiChatHelpActions__MenuArrow"
|
|
1189
|
-
}),
|
|
1190
|
-
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 = () => {
|
|
1191
1190
|
o({
|
|
1192
1191
|
onOpenForm: () => c(!1)
|
|
1193
1192
|
}), s();
|
|
@@ -1205,58 +1204,58 @@ ${Y}`;
|
|
|
1205
1204
|
onClick: h(i, d)
|
|
1206
1205
|
});
|
|
1207
1206
|
return /* @__PURE__ */ n(l, { ...r });
|
|
1208
|
-
},
|
|
1207
|
+
}, Di = a(H, {
|
|
1209
1208
|
_id: "aiChatHelpActions_MenuItemIcon"
|
|
1210
|
-
}),
|
|
1209
|
+
}), uo = (t) => {
|
|
1211
1210
|
const { action: e, ...i } = t;
|
|
1212
|
-
return e.icon ? /* @__PURE__ */ n(
|
|
1213
|
-
},
|
|
1211
|
+
return e.icon ? /* @__PURE__ */ n(Di, { iconSettings: e.icon, ...i }) : null;
|
|
1212
|
+
}, Oi = a(oe, {
|
|
1214
1213
|
_id: "aiChatFeedbackModal"
|
|
1215
|
-
}),
|
|
1214
|
+
}), Co = (t) => {
|
|
1216
1215
|
const { onOpenChange: e, ...i } = t, { currentFeedback: r, setCurrentFeedback: o } = se();
|
|
1217
1216
|
return /* @__PURE__ */ n(
|
|
1218
|
-
|
|
1217
|
+
Oi,
|
|
1219
1218
|
{
|
|
1220
1219
|
open: r !== null,
|
|
1221
1220
|
onOpenChange: h(e, () => o(null)),
|
|
1222
1221
|
...i
|
|
1223
1222
|
}
|
|
1224
1223
|
);
|
|
1225
|
-
},
|
|
1224
|
+
}, po = a(ie, {
|
|
1226
1225
|
_id: "aiChatFeedbackModal__Overlay"
|
|
1227
|
-
}),
|
|
1226
|
+
}), vo = a(ae, {
|
|
1228
1227
|
_id: "aiChatFeedbackModal__Content",
|
|
1229
1228
|
"aria-describedby": void 0
|
|
1230
|
-
}),
|
|
1229
|
+
}), go = a(re, {
|
|
1231
1230
|
_id: "aiChatFeedbackModal__Header",
|
|
1232
1231
|
children: "Help improve my answers!"
|
|
1233
|
-
}),
|
|
1232
|
+
}), bo = a(ne, {
|
|
1234
1233
|
_id: "aiChatFeedbackModal__Close",
|
|
1235
1234
|
children: /* @__PURE__ */ n(I, { iconKey: "close" })
|
|
1236
|
-
}),
|
|
1235
|
+
}), _o = a("div", {
|
|
1237
1236
|
_id: "aiChatFeedbackModal__Body"
|
|
1238
|
-
}),
|
|
1237
|
+
}), Wi = a("form", {
|
|
1239
1238
|
_id: "aiChatFeedbackForm"
|
|
1240
|
-
}),
|
|
1239
|
+
}), Ao = (t) => {
|
|
1241
1240
|
const { onSubmit: e, ...i } = t, { submitNegativeFeedback: r, currentFeedback: o, setCurrentFeedback: s } = se();
|
|
1242
|
-
return /* @__PURE__ */ n(
|
|
1241
|
+
return /* @__PURE__ */ n(Wi, { onSubmit: h(e, (d) => {
|
|
1243
1242
|
d.preventDefault();
|
|
1244
1243
|
const m = d.target, l = new FormData(m), C = Object.fromEntries(l.entries());
|
|
1245
1244
|
o && (r(o, C), s(null));
|
|
1246
1245
|
}), ...i });
|
|
1247
|
-
},
|
|
1246
|
+
}, Ri = a("div", {
|
|
1248
1247
|
_id: "aiChatFeedbackItem"
|
|
1249
|
-
}),
|
|
1248
|
+
}), Po = (t) => {
|
|
1250
1249
|
const { name: e, ...i } = t;
|
|
1251
|
-
return /* @__PURE__ */ n(
|
|
1252
|
-
},
|
|
1250
|
+
return /* @__PURE__ */ n(Ne, { name: e, children: /* @__PURE__ */ n(Ri, { ...i }) });
|
|
1251
|
+
}, Ni = a(U.Root, {
|
|
1253
1252
|
_id: "aiChatFeedbackItem__Checkbox"
|
|
1254
|
-
}),
|
|
1253
|
+
}), Fo = (t) => {
|
|
1255
1254
|
const { name: e, focusItem: i } = ce(), { onCheckedChange: r, ...o } = t, s = (c) => {
|
|
1256
1255
|
c && i?.current?.focus();
|
|
1257
1256
|
};
|
|
1258
1257
|
return /* @__PURE__ */ n(
|
|
1259
|
-
|
|
1258
|
+
Ni,
|
|
1260
1259
|
{
|
|
1261
1260
|
id: `feedback-${e}`,
|
|
1262
1261
|
name: e,
|
|
@@ -1264,47 +1263,47 @@ ${Y}`;
|
|
|
1264
1263
|
...o
|
|
1265
1264
|
}
|
|
1266
1265
|
);
|
|
1267
|
-
},
|
|
1266
|
+
}, fo = a(U.Indicator, {
|
|
1268
1267
|
_id: "aiChatFeedbackItem__CheckboxIndicator",
|
|
1269
1268
|
children: /* @__PURE__ */ n(ve, {})
|
|
1270
|
-
}),
|
|
1269
|
+
}), Vi = a("label", {
|
|
1271
1270
|
_id: "aiChatFeedbackItem__Label"
|
|
1272
|
-
}),
|
|
1271
|
+
}), Mo = (t) => {
|
|
1273
1272
|
const { name: e } = ce(), i = {
|
|
1274
1273
|
unrelated_response: "Didn't answer my question",
|
|
1275
1274
|
inaccurate_statement: "Inaccurate statement",
|
|
1276
1275
|
inaccurate_code_snippet: "Inaccurate code snippet",
|
|
1277
1276
|
irrelevant_citations: "Irrelevant citations"
|
|
1278
1277
|
};
|
|
1279
|
-
return /* @__PURE__ */ n(
|
|
1280
|
-
},
|
|
1278
|
+
return /* @__PURE__ */ n(Vi, { htmlFor: `feedback-${e}`, children: i[e], ...t });
|
|
1279
|
+
}, $i = a("textarea", {
|
|
1281
1280
|
_id: "aiChatFeedbackItem__Description",
|
|
1282
1281
|
placeholder: "Please describe"
|
|
1283
|
-
}),
|
|
1282
|
+
}), Io = (t) => {
|
|
1284
1283
|
const { name: e, focusItem: i } = ce();
|
|
1285
1284
|
return /* @__PURE__ */ n(
|
|
1286
|
-
|
|
1285
|
+
$i,
|
|
1287
1286
|
{
|
|
1288
1287
|
ref: i,
|
|
1289
1288
|
name: `${e}:description`,
|
|
1290
1289
|
...t
|
|
1291
1290
|
}
|
|
1292
1291
|
);
|
|
1293
|
-
},
|
|
1292
|
+
}, Eo = a("button", {
|
|
1294
1293
|
_id: "aiChatFeedbackForm__SubmitButton",
|
|
1295
1294
|
children: "Submit",
|
|
1296
1295
|
type: "submit"
|
|
1297
|
-
}),
|
|
1296
|
+
}), Qi = a("div", {
|
|
1298
1297
|
_id: "aiChatForm__Wrapper"
|
|
1299
|
-
}),
|
|
1298
|
+
}), So = (t) => {
|
|
1300
1299
|
const { form: e } = A();
|
|
1301
|
-
return e ? /* @__PURE__ */ n(
|
|
1302
|
-
},
|
|
1300
|
+
return e ? /* @__PURE__ */ n(Qi, { ...t }) : null;
|
|
1301
|
+
}, Ui = a("form", {
|
|
1303
1302
|
_id: "aiChatForm"
|
|
1304
|
-
}),
|
|
1303
|
+
}), ko = (t) => {
|
|
1305
1304
|
const { onSubmit: e, ...i } = t, { conversationId: r, messages: o } = b(), { handleSubmit: s, isSuccess: c } = A();
|
|
1306
1305
|
return c ? null : /* @__PURE__ */ n(
|
|
1307
|
-
|
|
1306
|
+
Ui,
|
|
1308
1307
|
{
|
|
1309
1308
|
onSubmit: h(
|
|
1310
1309
|
e,
|
|
@@ -1313,35 +1312,35 @@ ${Y}`;
|
|
|
1313
1312
|
...i
|
|
1314
1313
|
}
|
|
1315
1314
|
);
|
|
1316
|
-
},
|
|
1315
|
+
}, Ki = a("button", {
|
|
1317
1316
|
_id: "aiChatForm__Close",
|
|
1318
1317
|
children: /* @__PURE__ */ n(I, { iconKey: "close" })
|
|
1319
|
-
}),
|
|
1318
|
+
}), Bo = (t) => {
|
|
1320
1319
|
const { onClick: e, ...i } = t, { closeForm: r } = A();
|
|
1321
|
-
return /* @__PURE__ */ n(
|
|
1322
|
-
},
|
|
1320
|
+
return /* @__PURE__ */ n(Ki, { onClick: h(e, r), ...i });
|
|
1321
|
+
}, yo = a("div", {
|
|
1323
1322
|
_id: "aiChatForm__Header"
|
|
1324
|
-
}),
|
|
1323
|
+
}), qi = a("h2", {
|
|
1325
1324
|
_id: "aiChatForm__Heading"
|
|
1326
|
-
}),
|
|
1325
|
+
}), To = (t) => {
|
|
1327
1326
|
const { form: e } = A();
|
|
1328
|
-
return e?.heading ? /* @__PURE__ */ n(
|
|
1329
|
-
},
|
|
1327
|
+
return e?.heading ? /* @__PURE__ */ n(qi, { children: e.heading, ...t }) : null;
|
|
1328
|
+
}, ji = a(K, {
|
|
1330
1329
|
_id: "aiChatForm__Description"
|
|
1331
|
-
}),
|
|
1330
|
+
}), wo = (t) => {
|
|
1332
1331
|
const { form: e } = A();
|
|
1333
|
-
return e?.description ? /* @__PURE__ */ n(
|
|
1334
|
-
},
|
|
1332
|
+
return e?.description ? /* @__PURE__ */ n(ji, { children: e.description, ...t }) : null;
|
|
1333
|
+
}, zi = a("div", {
|
|
1335
1334
|
_id: "aiChatForm__Content"
|
|
1336
|
-
}),
|
|
1335
|
+
}), Ho = (t) => {
|
|
1337
1336
|
const { children: e, ...i } = t, { getFields: r } = A(), { conversationId: o } = b(), s = r(o) || [];
|
|
1338
|
-
return /* @__PURE__ */ n(
|
|
1339
|
-
},
|
|
1337
|
+
return /* @__PURE__ */ n(zi, { children: y(e, s), ...i });
|
|
1338
|
+
}, Gi = a("div", {
|
|
1340
1339
|
_id: "aiChatForm__Field"
|
|
1341
|
-
}),
|
|
1340
|
+
}), Lo = (t) => {
|
|
1342
1341
|
const { field: e, autoFocus: i, ...r } = t, { control: o, errors: s } = A();
|
|
1343
1342
|
return /* @__PURE__ */ n(
|
|
1344
|
-
|
|
1343
|
+
Ge,
|
|
1345
1344
|
{
|
|
1346
1345
|
name: e.name,
|
|
1347
1346
|
control: o,
|
|
@@ -1349,14 +1348,14 @@ ${Y}`;
|
|
|
1349
1348
|
render: ({ field: c }) => {
|
|
1350
1349
|
const d = c.value !== void 0 || e.inputType === "file";
|
|
1351
1350
|
return /* @__PURE__ */ n(
|
|
1352
|
-
|
|
1351
|
+
ze,
|
|
1353
1352
|
{
|
|
1354
1353
|
"data-invalid": g(!!s[e.name]),
|
|
1355
1354
|
field: e,
|
|
1356
1355
|
fieldProps: c,
|
|
1357
1356
|
autoFocus: i,
|
|
1358
1357
|
children: d && /* @__PURE__ */ n(
|
|
1359
|
-
|
|
1358
|
+
Gi,
|
|
1360
1359
|
{
|
|
1361
1360
|
"data-input-type": e.inputType,
|
|
1362
1361
|
"data-hidden": g(e.isHidden),
|
|
@@ -1368,12 +1367,12 @@ ${Y}`;
|
|
|
1368
1367
|
}
|
|
1369
1368
|
}
|
|
1370
1369
|
);
|
|
1371
|
-
},
|
|
1370
|
+
}, Yi = a("label", {
|
|
1372
1371
|
_id: "aiChatForm__FieldLabel"
|
|
1373
|
-
}),
|
|
1372
|
+
}), xo = (t) => {
|
|
1374
1373
|
const { field: e } = x();
|
|
1375
1374
|
return /* @__PURE__ */ n(
|
|
1376
|
-
|
|
1375
|
+
Yi,
|
|
1377
1376
|
{
|
|
1378
1377
|
"data-required": g(e.isRequired),
|
|
1379
1378
|
htmlFor: e.name,
|
|
@@ -1381,10 +1380,10 @@ ${Y}`;
|
|
|
1381
1380
|
...t
|
|
1382
1381
|
}
|
|
1383
1382
|
);
|
|
1384
|
-
},
|
|
1383
|
+
}, Ji = a("input", {
|
|
1385
1384
|
_id: "aiChatForm__FieldText",
|
|
1386
1385
|
type: "text"
|
|
1387
|
-
}),
|
|
1386
|
+
}), Ae = (t) => {
|
|
1388
1387
|
const {
|
|
1389
1388
|
field: e,
|
|
1390
1389
|
error: i,
|
|
@@ -1392,7 +1391,7 @@ ${Y}`;
|
|
|
1392
1391
|
autoFocus: c
|
|
1393
1392
|
} = x(), { onChange: d, onBlur: m, ...l } = t;
|
|
1394
1393
|
return /* @__PURE__ */ n(
|
|
1395
|
-
|
|
1394
|
+
Ji,
|
|
1396
1395
|
{
|
|
1397
1396
|
id: e.name,
|
|
1398
1397
|
autoFocus: c,
|
|
@@ -1404,14 +1403,14 @@ ${Y}`;
|
|
|
1404
1403
|
...l
|
|
1405
1404
|
}
|
|
1406
1405
|
);
|
|
1407
|
-
},
|
|
1406
|
+
}, Do = a(Ae, {
|
|
1408
1407
|
_id: "aiChatForm__FieldEmail",
|
|
1409
1408
|
type: "email"
|
|
1410
|
-
}),
|
|
1409
|
+
}), Xi = a("input", {
|
|
1411
1410
|
_id: "aiChatForm__FieldFile",
|
|
1412
1411
|
type: "file",
|
|
1413
1412
|
multiple: !0
|
|
1414
|
-
}),
|
|
1413
|
+
}), Oo = (t) => {
|
|
1415
1414
|
const {
|
|
1416
1415
|
field: e,
|
|
1417
1416
|
error: i,
|
|
@@ -1422,7 +1421,7 @@ ${Y}`;
|
|
|
1422
1421
|
o(_);
|
|
1423
1422
|
};
|
|
1424
1423
|
return /* @__PURE__ */ n(
|
|
1425
|
-
|
|
1424
|
+
Xi,
|
|
1426
1425
|
{
|
|
1427
1426
|
id: e.name,
|
|
1428
1427
|
autoFocus: d,
|
|
@@ -1434,17 +1433,17 @@ ${Y}`;
|
|
|
1434
1433
|
onBlur: h(l, s)
|
|
1435
1434
|
}
|
|
1436
1435
|
);
|
|
1437
|
-
},
|
|
1436
|
+
}, Wo = a(Ae, {
|
|
1438
1437
|
_id: "aiChatForm__FieldTextArea",
|
|
1439
1438
|
type: "textarea",
|
|
1440
1439
|
asChild: !0,
|
|
1441
1440
|
children: /* @__PURE__ */ n(ee, { maxRows: 8 })
|
|
1442
|
-
}),
|
|
1441
|
+
}), Zi = a(U.Root, {
|
|
1443
1442
|
_id: "aiChatForm__FieldCheckbox"
|
|
1444
|
-
}),
|
|
1443
|
+
}), Ro = (t) => {
|
|
1445
1444
|
const { field: e, error: i, fieldProps: r, autoFocus: o } = x(), { onCheckedChange: s, ...c } = t;
|
|
1446
1445
|
return /* @__PURE__ */ n(
|
|
1447
|
-
|
|
1446
|
+
Zi,
|
|
1448
1447
|
{
|
|
1449
1448
|
id: e.name,
|
|
1450
1449
|
name: e.name,
|
|
@@ -1455,15 +1454,15 @@ ${Y}`;
|
|
|
1455
1454
|
...c
|
|
1456
1455
|
}
|
|
1457
1456
|
);
|
|
1458
|
-
},
|
|
1457
|
+
}, No = a(U.Indicator, {
|
|
1459
1458
|
_id: "aiChatForm__FieldCheckboxIndicator",
|
|
1460
1459
|
children: /* @__PURE__ */ n(ve, {})
|
|
1461
|
-
}),
|
|
1460
|
+
}), ea = a(Te, {
|
|
1462
1461
|
_id: "aiChatForm__FieldSelect"
|
|
1463
|
-
}),
|
|
1462
|
+
}), Vo = (t) => {
|
|
1464
1463
|
const { field: e, error: i, fieldProps: r } = x(), { onValueChange: o, ...s } = t;
|
|
1465
1464
|
return /* @__PURE__ */ n(
|
|
1466
|
-
|
|
1465
|
+
ea,
|
|
1467
1466
|
{
|
|
1468
1467
|
name: e.name,
|
|
1469
1468
|
"data-invalid": g(!!i),
|
|
@@ -1472,88 +1471,88 @@ ${Y}`;
|
|
|
1472
1471
|
...s
|
|
1473
1472
|
}
|
|
1474
1473
|
);
|
|
1475
|
-
},
|
|
1474
|
+
}, $o = a(Ie, {
|
|
1476
1475
|
_id: "aiChatForm__FieldSelect__Trigger"
|
|
1477
|
-
}),
|
|
1476
|
+
}), ta = a(we, {
|
|
1478
1477
|
_id: "aiChatForm__FieldSelect__Value"
|
|
1479
|
-
}),
|
|
1478
|
+
}), Qo = (t) => {
|
|
1480
1479
|
const { field: e } = x();
|
|
1481
1480
|
return /* @__PURE__ */ n(
|
|
1482
|
-
|
|
1481
|
+
ta,
|
|
1483
1482
|
{
|
|
1484
1483
|
placeholder: "placeholder" in e ? e.placeholder : void 0,
|
|
1485
1484
|
...t
|
|
1486
1485
|
}
|
|
1487
1486
|
);
|
|
1488
|
-
},
|
|
1487
|
+
}, Uo = a(Ee, {
|
|
1489
1488
|
_id: "aiChatForm__FieldSelect__Icon",
|
|
1490
1489
|
asChild: !0,
|
|
1491
1490
|
children: /* @__PURE__ */ n(H, { iconSettings: { builtIn: "LuChevronDown" } })
|
|
1492
|
-
}),
|
|
1491
|
+
}), Ko = a(Se, {
|
|
1493
1492
|
_id: "aiChatForm__FieldSelect__Content",
|
|
1494
1493
|
position: "popper"
|
|
1495
|
-
}),
|
|
1494
|
+
}), qo = a(ke, {
|
|
1496
1495
|
_id: "aiChatForm__FieldSelect__Viewport"
|
|
1497
|
-
}),
|
|
1496
|
+
}), jo = a(Be, {
|
|
1498
1497
|
_id: "aiChatForm__FieldSelect__Item"
|
|
1499
|
-
}),
|
|
1498
|
+
}), zo = a(Me, {
|
|
1500
1499
|
_id: "aiChatForm__FieldSelect__ItemText"
|
|
1501
|
-
}),
|
|
1502
|
-
|
|
1500
|
+
}), Go = a(
|
|
1501
|
+
ye,
|
|
1503
1502
|
{
|
|
1504
1503
|
_id: "aiChatForm__FieldSelect__ItemIndicator",
|
|
1505
1504
|
asChild: !0,
|
|
1506
1505
|
children: /* @__PURE__ */ n(H, { iconSettings: { builtIn: "LuCheck" } })
|
|
1507
1506
|
}
|
|
1508
|
-
),
|
|
1507
|
+
), ia = a("span", {
|
|
1509
1508
|
_id: "aiChatForm__FieldError"
|
|
1510
|
-
}),
|
|
1509
|
+
}), Yo = (t) => {
|
|
1511
1510
|
const { error: e } = x();
|
|
1512
|
-
return e ? /* @__PURE__ */ n(
|
|
1513
|
-
},
|
|
1511
|
+
return e ? /* @__PURE__ */ n(ia, { children: e.message?.toString(), ...t }) : null;
|
|
1512
|
+
}, aa = a("span", {
|
|
1514
1513
|
_id: "aiChatForm__Error"
|
|
1515
|
-
}),
|
|
1514
|
+
}), Jo = (t) => {
|
|
1516
1515
|
const { formError: e } = A();
|
|
1517
|
-
return e ? /* @__PURE__ */ n(
|
|
1518
|
-
},
|
|
1516
|
+
return e ? /* @__PURE__ */ n(aa, { children: e.message, ...t }) : null;
|
|
1517
|
+
}, Xo = a("div", {
|
|
1519
1518
|
_id: "aiChatForm__Footer"
|
|
1520
|
-
}),
|
|
1519
|
+
}), na = a("button", {
|
|
1521
1520
|
_id: "aiChatForm__Cancel",
|
|
1522
1521
|
children: "Cancel",
|
|
1523
1522
|
type: "button"
|
|
1524
|
-
}),
|
|
1523
|
+
}), Zo = (t) => {
|
|
1525
1524
|
const { onClick: e, ...i } = t, { closeForm: r } = A();
|
|
1526
|
-
return /* @__PURE__ */ n(
|
|
1527
|
-
},
|
|
1525
|
+
return /* @__PURE__ */ n(na, { onClick: h(e, r), ...i });
|
|
1526
|
+
}, ra = a("button", {
|
|
1528
1527
|
_id: "aiChatForm__Submit",
|
|
1529
1528
|
children: "Submit",
|
|
1530
1529
|
type: "submit"
|
|
1531
|
-
}),
|
|
1530
|
+
}), es = (t) => {
|
|
1532
1531
|
const { onClick: e, ...i } = t, { isSubmitting: r, form: o } = A(), s = o?.buttons.submit.label || "Submit";
|
|
1533
|
-
return /* @__PURE__ */ n(
|
|
1534
|
-
},
|
|
1532
|
+
return /* @__PURE__ */ n(ra, { disabled: r, ...i, children: s });
|
|
1533
|
+
}, oa = a("div", {
|
|
1535
1534
|
_id: "aiChatForm__Success"
|
|
1536
|
-
}),
|
|
1535
|
+
}), ts = (t) => {
|
|
1537
1536
|
const { isSuccess: e } = A();
|
|
1538
|
-
return e ? /* @__PURE__ */ n(
|
|
1539
|
-
},
|
|
1537
|
+
return e ? /* @__PURE__ */ n(oa, { ...t }) : null;
|
|
1538
|
+
}, sa = a("h2", {
|
|
1540
1539
|
_id: "aiChatForm__SuccessHeading"
|
|
1541
|
-
}),
|
|
1540
|
+
}), is = (t) => {
|
|
1542
1541
|
const { form: e } = A();
|
|
1543
|
-
return /* @__PURE__ */ n(
|
|
1544
|
-
},
|
|
1542
|
+
return /* @__PURE__ */ n(sa, { children: e?.successView?.heading, ...t });
|
|
1543
|
+
}, ca = a(K, {
|
|
1545
1544
|
_id: "aiChatForm__SuccessMessage"
|
|
1546
|
-
}),
|
|
1545
|
+
}), as = (t) => {
|
|
1547
1546
|
const { form: e } = A();
|
|
1548
|
-
return /* @__PURE__ */ n(
|
|
1549
|
-
},
|
|
1547
|
+
return /* @__PURE__ */ n(ca, { children: e?.successView?.message, ...t });
|
|
1548
|
+
}, da = a("button", {
|
|
1550
1549
|
_id: "aiChatForm__SuccessButton"
|
|
1551
|
-
}),
|
|
1550
|
+
}), ns = (t) => {
|
|
1552
1551
|
const { onClick: e, ...i } = t, { form: r, closeForm: o } = A(), s = r?.successView?.doneButton;
|
|
1553
1552
|
if (!s) return null;
|
|
1554
1553
|
const c = s.icon && /* @__PURE__ */ n(H, { iconSettings: s.icon }), d = s.label;
|
|
1555
1554
|
return /* @__PURE__ */ n(
|
|
1556
|
-
|
|
1555
|
+
da,
|
|
1557
1556
|
{
|
|
1558
1557
|
onClick: h(e, o),
|
|
1559
1558
|
children: /* @__PURE__ */ $(Z, { children: [
|
|
@@ -1565,340 +1564,340 @@ ${Y}`;
|
|
|
1565
1564
|
);
|
|
1566
1565
|
};
|
|
1567
1566
|
export {
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
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
|
-
|
|
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
|
|
1904
1903
|
};
|