@inkeep/agents-ui 0.14.19 → 0.14.21

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