@inkeep/agents-ui 0.14.20 → 0.14.22

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