@inkeep/agents-ui 0.14.28 → 0.15.1

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