@inkeep/agents-ui 0.14.28 → 0.15.0

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 (111) hide show
  1. package/dist/index.cjs +1 -1
  2. package/dist/index.js +215 -203
  3. package/dist/primitives/atoms/icons/built-in-icons.cjs +1 -1
  4. package/dist/primitives/atoms/icons/built-in-icons.d.ts +1 -0
  5. package/dist/primitives/atoms/icons/built-in-icons.js +44 -43
  6. package/dist/primitives/atoms/icons/checkbox-icon.cjs +1 -1
  7. package/dist/primitives/atoms/icons/checkbox-icon.js +1 -1
  8. package/dist/primitives/atoms/icons/inkeep-default-icons.cjs +1 -1
  9. package/dist/primitives/atoms/icons/inkeep-default-icons.js +3 -2
  10. package/dist/primitives/components/chat-bubble/index.cjs +1 -0
  11. package/dist/primitives/components/chat-bubble/index.d.ts +10 -0
  12. package/dist/primitives/components/chat-bubble/index.js +38 -0
  13. package/dist/primitives/components/chat-button.cjs +1 -1
  14. package/dist/primitives/components/chat-button.d.ts +3 -1
  15. package/dist/primitives/components/chat-button.js +31 -26
  16. package/dist/primitives/components/index.cjs +1 -1
  17. package/dist/primitives/components/index.d.ts +1 -0
  18. package/dist/primitives/components/index.js +19 -17
  19. package/dist/primitives/components/modal/use-inkeep-modal.cjs +1 -1
  20. package/dist/primitives/components/modal/use-inkeep-modal.d.ts +2 -2
  21. package/dist/primitives/components/modal/use-inkeep-modal.js +6 -42
  22. package/dist/primitives/components/modal/widget-auto-focus.cjs +1 -1
  23. package/dist/primitives/components/modal/widget-auto-focus.js +21 -12
  24. package/dist/primitives/components/modal.d.ts +2 -2
  25. package/dist/primitives/components/searchbar.d.ts +3 -3
  26. package/dist/primitives/components/sidebar-chat/index.cjs +1 -1
  27. package/dist/primitives/components/sidebar-chat/index.js +48 -67
  28. package/dist/primitives/components/use-component-trigger.cjs +1 -1
  29. package/dist/primitives/components/use-component-trigger.d.ts +1 -1
  30. package/dist/primitives/components/use-component-trigger.js +4 -3
  31. package/dist/primitives/hooks/index.cjs +1 -1
  32. package/dist/primitives/hooks/index.d.ts +1 -0
  33. package/dist/primitives/hooks/index.js +18 -16
  34. package/dist/primitives/hooks/use-inkeep-open-state.cjs +1 -0
  35. package/dist/primitives/hooks/use-inkeep-open-state.d.ts +18 -0
  36. package/dist/primitives/hooks/use-inkeep-open-state.js +47 -0
  37. package/dist/primitives/index.cjs +1 -1
  38. package/dist/primitives/index.js +140 -130
  39. package/dist/primitives/providers/chat-bubble-provider.cjs +1 -0
  40. package/dist/primitives/providers/chat-bubble-provider.d.ts +22 -0
  41. package/dist/primitives/providers/chat-bubble-provider.js +19 -0
  42. package/dist/primitives/providers/index.cjs +1 -1
  43. package/dist/primitives/providers/index.d.ts +1 -0
  44. package/dist/primitives/providers/index.js +27 -22
  45. package/dist/primitives/providers/sidebar-chat-provider.cjs +1 -1
  46. package/dist/primitives/providers/sidebar-chat-provider.d.ts +3 -25
  47. package/dist/primitives/providers/sidebar-chat-provider.js +23 -27
  48. package/dist/primitives/utils/component-ids.cjs +1 -1
  49. package/dist/primitives/utils/component-ids.d.ts +10 -0
  50. package/dist/primitives/utils/component-ids.js +10 -3
  51. package/dist/react/chat-button.cjs +1 -1
  52. package/dist/react/chat-button.d.ts +7 -13
  53. package/dist/react/chat-button.js +55 -46
  54. package/dist/react/embedded-chat.cjs +1 -1
  55. package/dist/react/embedded-chat.d.ts +4 -3
  56. package/dist/react/embedded-chat.js +171 -177
  57. package/dist/react/index.cjs +1 -1
  58. package/dist/react/index.js +215 -203
  59. package/dist/react/modal.chat.cjs +1 -1
  60. package/dist/react/modal.chat.d.ts +3 -3
  61. package/dist/react/modal.chat.js +10 -10
  62. package/dist/react/modal.cjs +1 -1
  63. package/dist/react/modal.d.ts +2 -2
  64. package/dist/react/modal.js +5 -5
  65. package/dist/react/modal.search-and-chat.cjs +1 -1
  66. package/dist/react/modal.search-and-chat.d.ts +2 -2
  67. package/dist/react/modal.search-and-chat.js +15 -15
  68. package/dist/react/modal.search.cjs +1 -1
  69. package/dist/react/modal.search.d.ts +2 -2
  70. package/dist/react/modal.search.js +8 -8
  71. package/dist/react/searchbar.cjs +1 -1
  72. package/dist/react/searchbar.d.ts +4 -4
  73. package/dist/react/searchbar.js +12 -12
  74. package/dist/react/sidebar-chat.d.ts +1 -3
  75. package/dist/styled/components/chat-bubble.cjs +1 -0
  76. package/dist/styled/components/chat-bubble.d.ts +5 -0
  77. package/dist/styled/components/chat-bubble.js +70 -0
  78. package/dist/styled/components/chat-button.cjs +1 -1
  79. package/dist/styled/components/chat-button.d.ts +2 -1
  80. package/dist/styled/components/chat-button.js +10 -6
  81. package/dist/styled/components/embedded-chat.cjs +1 -1
  82. package/dist/styled/components/embedded-chat.js +331 -320
  83. package/dist/styled/components/embedded-search.cjs +1 -1
  84. package/dist/styled/components/embedded-search.js +3 -3
  85. package/dist/styled/components/index.cjs +1 -1
  86. package/dist/styled/components/index.d.ts +1 -0
  87. package/dist/styled/components/index.js +14 -12
  88. package/dist/styled/components/message.cjs +1 -1
  89. package/dist/styled/components/message.js +28 -25
  90. package/dist/styled/components/ui/recipes/button.cjs +1 -1
  91. package/dist/styled/components/ui/recipes/button.js +1 -1
  92. package/dist/styled/components/ui/recipes/checkbox.cjs +1 -1
  93. package/dist/styled/components/ui/recipes/checkbox.js +1 -1
  94. package/dist/styled/components/ui/recipes/input.cjs +1 -1
  95. package/dist/styled/components/ui/recipes/input.js +2 -2
  96. package/dist/styled/components/ui/recipes/markdown.cjs +1 -1
  97. package/dist/styled/components/ui/recipes/markdown.js +3 -3
  98. package/dist/styled/components/ui/recipes/select.cjs +1 -1
  99. package/dist/styled/components/ui/recipes/select.js +2 -2
  100. package/dist/styled/index.cjs +1 -1
  101. package/dist/styled/index.js +174 -162
  102. package/dist/styled/inkeep.css.cjs +218 -99
  103. package/dist/styled/inkeep.css.js +218 -99
  104. package/dist/types/config/open-settings.d.ts +70 -0
  105. package/dist/types/events.d.ts +9 -1
  106. package/dist/types/icons/built-in.d.ts +1 -1
  107. package/dist/types/icons/custom.d.ts +1 -0
  108. package/dist/types/index.d.ts +1 -1
  109. package/dist/types/js/index.d.ts +2 -2
  110. package/package.json +1 -1
  111. package/dist/types/config/modal.d.ts +0 -33
@@ -1,177 +1,189 @@
1
1
  import * as e from "./components/embedded-chat.js";
2
2
  import * as o from "./components/sidebar-chat.js";
3
- import * as r from "./components/embedded-search.js";
4
- import * as t from "./components/modal.js";
5
- import * as a from "./components/chat-button.js";
6
- import * as m from "./components/searchbar.js";
7
- import { Shadow as C } from "./components/shadow.js";
3
+ import * as r from "./components/chat-bubble.js";
4
+ import * as t from "./components/embedded-search.js";
5
+ import * as a from "./components/modal.js";
6
+ import * as m from "./components/chat-button.js";
7
+ import * as s from "./components/searchbar.js";
8
+ import { Shadow as l } from "./components/shadow.js";
8
9
  import { LoadingIndicator as c } from "./components/loading-indicator.js";
9
- import { widgetToggle as S } from "./components/ui/recipes/widget-toggle.js";
10
+ import { widgetToggle as I } from "./components/ui/recipes/widget-toggle.js";
10
11
  import { EmbeddedChatMessagePart as v } from "./components/message.js";
11
- import { DataSummaryGroup as b } from "./components/data-summary-group.js";
12
- import { AttachmentItemProvider as M, useAttachmentItem as B } from "../primitives/providers/attachment-item-provider.js";
13
- import { AttachmentsBarProvider as k, useAttachmentsBar as w } from "../primitives/providers/attachments-bar-provider.js";
14
- import { BaseEventsProvider as E, useBaseEvents as y } from "../primitives/providers/base-events-provider.js";
15
- import { ChatFormProvider as T, useChatForm as W, useChatFormState as $ } from "../primitives/providers/chat-form-provider.js";
16
- import { InkeepConfigProvider as H, WebWidgetInteractionType as L, useInkeepConfig as O } from "../primitives/providers/config-provider.js";
17
- import { FeedbackItemProvider as j, useFeedbackItem as G } from "../primitives/providers/feedback-item-provider.js";
18
- import { FeedbackProvider as N, useMessageFeedback as Q } from "../primitives/providers/feedback-provider.js";
19
- import { FormFieldProvider as q, useFormField as J } from "../primitives/providers/form-field-provider.js";
20
- import { HelpMenuProvider as X, useHelpMenu as Y, useHelpMenuState as Z } from "../primitives/providers/help-menu-provider.js";
21
- import { ChatMarkdownProvider as ee, useChatMarkdown as oe } from "../primitives/providers/markdown-provider.js";
22
- import { MessageAttachmentsProvider as te, useMessageAttachments as ae } from "../primitives/providers/message-attachments-provider.js";
23
- import { MessageProvider as se, useMessage as de, useOptionalMessage as pe } from "../primitives/providers/message-provider.js";
24
- import { RootProvider as ne } from "../primitives/providers/root-provider.js";
25
- import { SourceItemProvider as xe, useSourceItem as ue } from "../primitives/providers/source-item-provider.js";
26
- import { ThemeProvider as he } from "../primitives/providers/theme-provider.js";
27
- import { WidgetProvider as le, useWidget as Se } from "../primitives/providers/widget-provider.js";
28
- import { SidebarChatProvider as ve, useInkeepSidebarChat as Ie, useOptionalSidebarChat as be, useSidebarChat as ge } from "../primitives/providers/sidebar-chat-provider.js";
29
- import { ikp as Be, jsxFactory as Fe } from "../primitives/components/factory.js";
30
- import * as s from "../primitives/components/embedded-chat.js";
31
- import * as d from "../primitives/components/sidebar-chat/index.js";
32
- import { ChatProvider as we, useChat as Ae } from "../primitives/components/embedded-chat/chat-provider.js";
33
- import * as p from "../primitives/components/embedded-search.js";
34
- import { SearchProvider as ye, SearchProviderImpl as Re, useSearch as Te } from "../primitives/components/embedded-search/search-provider.js";
35
- import * as i from "../primitives/components/modal.js";
36
- import { ModalProvider as $e, useModal as De } from "../primitives/components/modal/modal-provider.js";
37
- import * as n from "../primitives/components/chat-button.js";
12
+ import { DataSummaryGroup as B } from "./components/data-summary-group.js";
13
+ import { AttachmentItemProvider as k, useAttachmentItem as F } from "../primitives/providers/attachment-item-provider.js";
14
+ import { AttachmentsBarProvider as A, useAttachmentsBar as E } from "../primitives/providers/attachments-bar-provider.js";
15
+ import { BaseEventsProvider as R, useBaseEvents as $ } from "../primitives/providers/base-events-provider.js";
16
+ import { ChatFormProvider as T, useChatForm as W, useChatFormState as D } from "../primitives/providers/chat-form-provider.js";
17
+ import { InkeepConfigProvider as L, WebWidgetInteractionType as z, useInkeepConfig as j } from "../primitives/providers/config-provider.js";
18
+ import { FeedbackItemProvider as K, useFeedbackItem as N } from "../primitives/providers/feedback-item-provider.js";
19
+ import { FeedbackProvider as U, useMessageFeedback as q } from "../primitives/providers/feedback-provider.js";
20
+ import { FormFieldProvider as V, useFormField as X } from "../primitives/providers/form-field-provider.js";
21
+ import { HelpMenuProvider as Z, useHelpMenu as _, useHelpMenuState as ee } from "../primitives/providers/help-menu-provider.js";
22
+ import { ChatMarkdownProvider as re, useChatMarkdown as te } from "../primitives/providers/markdown-provider.js";
23
+ import { MessageAttachmentsProvider as me, useMessageAttachments as se } from "../primitives/providers/message-attachments-provider.js";
24
+ import { MessageProvider as pe, useMessage as ie, useOptionalMessage as ne } from "../primitives/providers/message-provider.js";
25
+ import { RootProvider as fe } from "../primitives/providers/root-provider.js";
26
+ import { SourceItemProvider as Ce, useSourceItem as he } from "../primitives/providers/source-item-provider.js";
27
+ import { ThemeProvider as be } from "../primitives/providers/theme-provider.js";
28
+ import { WidgetProvider as Se, useWidget as Ie } from "../primitives/providers/widget-provider.js";
29
+ import { SidebarChatProvider as ve, useInkeepSidebarChat as ge, useOptionalSidebarChat as Be, useSidebarChat as Me } from "../primitives/providers/sidebar-chat-provider.js";
30
+ import { ChatBubbleProvider as Fe, useChatBubble as we, useInkeepChatBubble as Ae, useOptionalChatBubble as Ee } from "../primitives/providers/chat-bubble-provider.js";
31
+ import { ikp as Re, jsxFactory as $e } from "../primitives/components/factory.js";
32
+ import * as d from "../primitives/components/embedded-chat.js";
33
+ import * as p from "../primitives/components/sidebar-chat/index.js";
34
+ import { ChatProvider as Te, useChat as We } from "../primitives/components/embedded-chat/chat-provider.js";
35
+ import * as i from "../primitives/components/embedded-search.js";
36
+ import { SearchProvider as He, SearchProviderImpl as Le, useSearch as ze } from "../primitives/components/embedded-search/search-provider.js";
37
+ import * as n from "../primitives/components/modal.js";
38
+ import { ModalProvider as Ge, useModal as Ke } from "../primitives/components/modal/modal-provider.js";
39
+ import * as u from "../primitives/components/chat-button.js";
38
40
  import * as f from "../primitives/components/searchbar.js";
39
- import { useBoolean as Le } from "../primitives/hooks/use-boolean.js";
40
- import { useComponentClassNames as ze } from "../primitives/hooks/use-component-classnames.js";
41
- import { useContainerSize as Ge } from "../primitives/hooks/use-container-size.js";
42
- import { useCopyToClipboard as Ne } from "../primitives/hooks/use-copy-to-clipboard.js";
43
- import { useInstantUpdate as Ue } from "../primitives/hooks/use-instant-update.js";
44
- import { useIsMounted as Je } from "../primitives/hooks/use-is-mounted.js";
45
- import { useMediaQuery as Xe } from "../primitives/hooks/use-media-query.js";
46
- import { useResizeObserver as Ze } from "../primitives/hooks/use-resize-observer.js";
47
- import { useScrollingFades as eo } from "../primitives/hooks/use-scrolling-fades.js";
48
- import { useSettleAction as ro } from "../primitives/hooks/use-settle-action.js";
49
- import { useSimpleScroll as ao } from "../primitives/hooks/use-simple-scroll.js";
50
- import { callAll as so, dataAttr as po, getInitials as io, getMessageContent as no, isString as fo, maybeRender as xo, toKebabCase as uo } from "../primitives/utils/misc.js";
51
- import { SearchBarComponentIds as ho, SidebarChatComponentIds as co, aiChatComponentIds as lo, aiSearchComponentIds as So, chatButtonComponentIds as Po, componentIDs as vo, markDownComponentIds as Io, miscellanousComponentIds as bo, modalComponentIds as go } from "../primitives/utils/component-ids.js";
52
- import { composeRefs as Bo, useComposedRefs as Fo } from "../primitives/utils/compose-refs.js";
53
- import { mergeProps as wo } from "../primitives/utils/merge-props.js";
54
- import { Portal as Eo } from "../primitives/atoms/portal.js";
55
- import { CustomIcon as Ro } from "../primitives/atoms/icons/custom-icon.js";
56
- import { BuiltInIconRenderer as Wo } from "../primitives/atoms/icons/built-in-icon-renderer.js";
57
- import { PortalWithTheme as Do } from "../primitives/atoms/portal-with-theme.js";
58
- import { Command as Lo, CommandDialog as Oo, CommandEmpty as zo, CommandInput as jo, CommandItem as Go, CommandList as Ko, CommandLoading as No, CommandRoot as Qo, CommandSeparator as Uo, defaultFilter as qo, useCommandState as Jo, useCommandStore as Vo } from "../primitives/atoms/cmdk/index.js";
59
- import { ErrorBoundary as Yo } from "../primitives/atoms/error-boundary.js";
60
- import { InkeepShadow as _o, InkeepShadowProvider as er, ShadowContext as or, useShadow as rr } from "../primitives/atoms/shadow/context.js";
41
+ import * as x from "../primitives/components/chat-bubble/index.js";
42
+ import { useBoolean as Qe } from "../primitives/hooks/use-boolean.js";
43
+ import { useComponentClassNames as qe } from "../primitives/hooks/use-component-classnames.js";
44
+ import { useContainerSize as Ve } from "../primitives/hooks/use-container-size.js";
45
+ import { useInkeepOpenState as Ye } from "../primitives/hooks/use-inkeep-open-state.js";
46
+ import { useCopyToClipboard as _e } from "../primitives/hooks/use-copy-to-clipboard.js";
47
+ import { useInstantUpdate as oo } from "../primitives/hooks/use-instant-update.js";
48
+ import { useIsMounted as to } from "../primitives/hooks/use-is-mounted.js";
49
+ import { useMediaQuery as mo } from "../primitives/hooks/use-media-query.js";
50
+ import { useResizeObserver as po } from "../primitives/hooks/use-resize-observer.js";
51
+ import { useScrollingFades as no } from "../primitives/hooks/use-scrolling-fades.js";
52
+ import { useSettleAction as fo } from "../primitives/hooks/use-settle-action.js";
53
+ import { useSimpleScroll as Co } from "../primitives/hooks/use-simple-scroll.js";
54
+ import { callAll as lo, dataAttr as bo, getInitials as co, getMessageContent as So, isString as Io, maybeRender as Po, toKebabCase as vo } from "../primitives/utils/misc.js";
55
+ import { ChatBubbleComponentIds as Bo, SearchBarComponentIds as Mo, SidebarChatComponentIds as ko, aiChatComponentIds as Fo, aiSearchComponentIds as wo, chatButtonComponentIds as Ao, componentIDs as Eo, markDownComponentIds as yo, miscellanousComponentIds as Ro, modalComponentIds as $o } from "../primitives/utils/component-ids.js";
56
+ import { composeRefs as To, useComposedRefs as Wo } from "../primitives/utils/compose-refs.js";
57
+ import { mergeProps as Ho } from "../primitives/utils/merge-props.js";
58
+ import { Portal as zo } from "../primitives/atoms/portal.js";
59
+ import { CustomIcon as Go } from "../primitives/atoms/icons/custom-icon.js";
60
+ import { BuiltInIconRenderer as No } from "../primitives/atoms/icons/built-in-icon-renderer.js";
61
+ import { PortalWithTheme as Uo } from "../primitives/atoms/portal-with-theme.js";
62
+ import { Command as Jo, CommandDialog as Vo, CommandEmpty as Xo, CommandInput as Yo, CommandItem as Zo, CommandList as _o, CommandLoading as er, CommandRoot as or, CommandSeparator as rr, defaultFilter as tr, useCommandState as ar, useCommandStore as mr } from "../primitives/atoms/cmdk/index.js";
63
+ import { ErrorBoundary as dr } from "../primitives/atoms/error-boundary.js";
64
+ import { InkeepShadow as ir, InkeepShadowProvider as nr, ShadowContext as ur, useShadow as fr } from "../primitives/atoms/shadow/context.js";
61
65
  export {
62
- M as AttachmentItemProvider,
63
- k as AttachmentsBarProvider,
64
- E as BaseEventsProvider,
65
- Wo as BuiltInIconRenderer,
66
- a as ChatButton,
67
- n as ChatButtonPrimitive,
66
+ k as AttachmentItemProvider,
67
+ A as AttachmentsBarProvider,
68
+ R as BaseEventsProvider,
69
+ No as BuiltInIconRenderer,
70
+ r as ChatBubble,
71
+ Bo as ChatBubbleComponentIds,
72
+ x as ChatBubblePrimitive,
73
+ Fe as ChatBubbleProvider,
74
+ m as ChatButton,
75
+ u as ChatButtonPrimitive,
68
76
  T as ChatFormProvider,
69
- ee as ChatMarkdownProvider,
70
- we as ChatProvider,
71
- Lo as Command,
72
- Oo as CommandDialog,
73
- zo as CommandEmpty,
74
- jo as CommandInput,
75
- Go as CommandItem,
76
- Ko as CommandList,
77
- No as CommandLoading,
78
- Qo as CommandRoot,
79
- Uo as CommandSeparator,
80
- Ro as CustomIcon,
81
- b as DataSummaryGroup,
77
+ re as ChatMarkdownProvider,
78
+ Te as ChatProvider,
79
+ Jo as Command,
80
+ Vo as CommandDialog,
81
+ Xo as CommandEmpty,
82
+ Yo as CommandInput,
83
+ Zo as CommandItem,
84
+ _o as CommandList,
85
+ er as CommandLoading,
86
+ or as CommandRoot,
87
+ rr as CommandSeparator,
88
+ Go as CustomIcon,
89
+ B as DataSummaryGroup,
82
90
  e as EmbeddedChat,
83
91
  v as EmbeddedChatMessagePart,
84
- s as EmbeddedChatPrimitive,
85
- r as EmbeddedSearch,
86
- p as EmbeddedSearchPrimitive,
87
- Yo as ErrorBoundary,
88
- j as FeedbackItemProvider,
89
- N as FeedbackProvider,
90
- q as FormFieldProvider,
91
- X as HelpMenuProvider,
92
- H as InkeepConfigProvider,
93
- _o as InkeepShadow,
94
- er as InkeepShadowProvider,
92
+ d as EmbeddedChatPrimitive,
93
+ t as EmbeddedSearch,
94
+ i as EmbeddedSearchPrimitive,
95
+ dr as ErrorBoundary,
96
+ K as FeedbackItemProvider,
97
+ U as FeedbackProvider,
98
+ V as FormFieldProvider,
99
+ Z as HelpMenuProvider,
100
+ L as InkeepConfigProvider,
101
+ ir as InkeepShadow,
102
+ nr as InkeepShadowProvider,
95
103
  c as LoadingIndicator,
96
- te as MessageAttachmentsProvider,
97
- se as MessageProvider,
98
- t as Modal,
99
- i as ModalPrimitive,
100
- $e as ModalProvider,
101
- Eo as Portal,
102
- Do as PortalWithTheme,
103
- ne as RootProvider,
104
- m as SearchBar,
105
- ho as SearchBarComponentIds,
104
+ me as MessageAttachmentsProvider,
105
+ pe as MessageProvider,
106
+ a as Modal,
107
+ n as ModalPrimitive,
108
+ Ge as ModalProvider,
109
+ zo as Portal,
110
+ Uo as PortalWithTheme,
111
+ fe as RootProvider,
112
+ s as SearchBar,
113
+ Mo as SearchBarComponentIds,
106
114
  f as SearchBarPrimitive,
107
- ye as SearchProvider,
108
- Re as SearchProviderImpl,
109
- C as Shadow,
110
- or as ShadowContext,
115
+ He as SearchProvider,
116
+ Le as SearchProviderImpl,
117
+ l as Shadow,
118
+ ur as ShadowContext,
111
119
  o as SidebarChat,
112
- co as SidebarChatComponentIds,
113
- d as SidebarChatPrimitive,
120
+ ko as SidebarChatComponentIds,
121
+ p as SidebarChatPrimitive,
114
122
  ve as SidebarChatProvider,
115
- xe as SourceItemProvider,
116
- he as ThemeProvider,
117
- L as WebWidgetInteractionType,
118
- le as WidgetProvider,
119
- lo as aiChatComponentIds,
120
- So as aiSearchComponentIds,
121
- so as callAll,
122
- Po as chatButtonComponentIds,
123
- vo as componentIDs,
124
- Bo as composeRefs,
125
- po as dataAttr,
126
- qo as defaultFilter,
127
- io as getInitials,
128
- no as getMessageContent,
129
- Be as ikp,
130
- fo as isString,
131
- Fe as jsxFactory,
132
- Io as markDownComponentIds,
133
- xo as maybeRender,
134
- wo as mergeProps,
135
- bo as miscellanousComponentIds,
136
- go as modalComponentIds,
137
- uo as toKebabCase,
138
- B as useAttachmentItem,
139
- w as useAttachmentsBar,
140
- y as useBaseEvents,
141
- Le as useBoolean,
142
- Ae as useChat,
123
+ Ce as SourceItemProvider,
124
+ be as ThemeProvider,
125
+ z as WebWidgetInteractionType,
126
+ Se as WidgetProvider,
127
+ Fo as aiChatComponentIds,
128
+ wo as aiSearchComponentIds,
129
+ lo as callAll,
130
+ Ao as chatButtonComponentIds,
131
+ Eo as componentIDs,
132
+ To as composeRefs,
133
+ bo as dataAttr,
134
+ tr as defaultFilter,
135
+ co as getInitials,
136
+ So as getMessageContent,
137
+ Re as ikp,
138
+ Io as isString,
139
+ $e as jsxFactory,
140
+ yo as markDownComponentIds,
141
+ Po as maybeRender,
142
+ Ho as mergeProps,
143
+ Ro as miscellanousComponentIds,
144
+ $o as modalComponentIds,
145
+ vo as toKebabCase,
146
+ F as useAttachmentItem,
147
+ E as useAttachmentsBar,
148
+ $ as useBaseEvents,
149
+ Qe as useBoolean,
150
+ We as useChat,
151
+ we as useChatBubble,
143
152
  W as useChatForm,
144
- $ as useChatFormState,
145
- oe as useChatMarkdown,
146
- Jo as useCommandState,
147
- Vo as useCommandStore,
148
- ze as useComponentClassNames,
149
- Fo as useComposedRefs,
150
- Ge as useContainerSize,
151
- Ne as useCopyToClipboard,
152
- G as useFeedbackItem,
153
- J as useFormField,
154
- Y as useHelpMenu,
155
- Z as useHelpMenuState,
156
- O as useInkeepConfig,
157
- Ie as useInkeepSidebarChat,
158
- Ue as useInstantUpdate,
159
- Je as useIsMounted,
160
- Xe as useMediaQuery,
161
- de as useMessage,
162
- ae as useMessageAttachments,
163
- Q as useMessageFeedback,
164
- De as useModal,
165
- pe as useOptionalMessage,
166
- be as useOptionalSidebarChat,
167
- Ze as useResizeObserver,
168
- eo as useScrollingFades,
169
- Te as useSearch,
170
- ro as useSettleAction,
171
- rr as useShadow,
172
- ge as useSidebarChat,
173
- ao as useSimpleScroll,
174
- ue as useSourceItem,
175
- Se as useWidget,
176
- S as widgetToggle
153
+ D as useChatFormState,
154
+ te as useChatMarkdown,
155
+ ar as useCommandState,
156
+ mr as useCommandStore,
157
+ qe as useComponentClassNames,
158
+ Wo as useComposedRefs,
159
+ Ve as useContainerSize,
160
+ _e as useCopyToClipboard,
161
+ N as useFeedbackItem,
162
+ X as useFormField,
163
+ _ as useHelpMenu,
164
+ ee as useHelpMenuState,
165
+ Ae as useInkeepChatBubble,
166
+ j as useInkeepConfig,
167
+ Ye as useInkeepOpenState,
168
+ ge as useInkeepSidebarChat,
169
+ oo as useInstantUpdate,
170
+ to as useIsMounted,
171
+ mo as useMediaQuery,
172
+ ie as useMessage,
173
+ se as useMessageAttachments,
174
+ q as useMessageFeedback,
175
+ Ke as useModal,
176
+ Ee as useOptionalChatBubble,
177
+ ne as useOptionalMessage,
178
+ Be as useOptionalSidebarChat,
179
+ po as useResizeObserver,
180
+ no as useScrollingFades,
181
+ ze as useSearch,
182
+ fo as useSettleAction,
183
+ fr as useShadow,
184
+ Me as useSidebarChat,
185
+ Co as useSimpleScroll,
186
+ he as useSourceItem,
187
+ Ie as useWidget,
188
+ I as widgetToggle
177
189
  };