@inkeep/agents-ui 0.15.30 → 0.16.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.
- package/dist/color-mode/index.js +4 -4
- package/dist/index.cjs +1 -1
- package/dist/index.js +74 -73
- package/dist/node_modules/.pnpm/use-sync-external-store@1.6.0_react@19.3.0-canary-87ae75b3-20260128/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.cjs +9 -0
- package/dist/node_modules/.pnpm/{use-sync-external-store@1.5.0_react@19.0.0 → use-sync-external-store@1.6.0_react@19.3.0-canary-87ae75b3-20260128}/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.js +2 -2
- package/dist/primitives/atoms/cmdk/index.cjs +1 -1
- package/dist/primitives/atoms/cmdk/index.js +14 -2
- package/dist/primitives/atoms/combobox.d.ts +104 -0
- package/dist/primitives/atoms/markdown/index.cjs +1 -1
- package/dist/primitives/atoms/markdown/index.js +41 -39
- package/dist/primitives/atoms/portal.js +3 -3
- package/dist/primitives/atoms/select.cjs +1 -1
- package/dist/primitives/atoms/select.js +2 -2
- package/dist/primitives/atoms/shadow/context.js +4 -4
- package/dist/primitives/components/embedded-chat/chat-error-helpers.cjs +3 -0
- package/dist/primitives/components/embedded-chat/chat-error-helpers.d.ts +26 -0
- package/dist/primitives/components/embedded-chat/chat-error-helpers.js +32 -0
- package/dist/primitives/components/embedded-chat/file-upload-input.cjs +1 -1
- package/dist/primitives/components/embedded-chat/file-upload-input.d.ts +1 -1
- package/dist/primitives/components/embedded-chat/file-upload-input.js +119 -116
- package/dist/primitives/components/embedded-chat/image-preview-modal.js +3 -3
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.cjs +2 -4
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.d.ts +1 -2
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.js +305 -278
- package/dist/primitives/components/embedded-chat/use-stream-processor.cjs +1 -1
- package/dist/primitives/components/embedded-chat/use-stream-processor.js +1 -1
- package/dist/primitives/components/embedded-chat.cjs +3 -3
- package/dist/primitives/components/embedded-chat.d.ts +1 -2
- package/dist/primitives/components/embedded-chat.js +697 -701
- package/dist/primitives/components/embedded-search/search-provider.js +3 -3
- package/dist/primitives/components/embedded-search.cjs +1 -1
- package/dist/primitives/components/embedded-search.d.ts +1 -1
- package/dist/primitives/components/embedded-search.js +3 -3
- package/dist/primitives/components/modal/modal-provider.js +2 -2
- package/dist/primitives/components/modal.js +3 -3
- package/dist/primitives/components/sidebar-chat/index.js +1 -1
- package/dist/primitives/hooks/use-simple-scroll.cjs +1 -1
- package/dist/primitives/hooks/use-simple-scroll.d.ts +7 -0
- package/dist/primitives/hooks/use-simple-scroll.js +33 -30
- package/dist/primitives/index.cjs +1 -1
- package/dist/primitives/index.js +55 -54
- package/dist/primitives/providers/base-events-provider.cjs +1 -1
- package/dist/primitives/providers/base-events-provider.js +22 -22
- package/dist/primitives/providers/chat-bubble-provider.js +1 -1
- package/dist/primitives/providers/chat-form-provider.d.ts +1 -1
- package/dist/primitives/providers/chat-form-provider.js +4 -4
- package/dist/primitives/providers/chat-history-provider.js +3 -3
- package/dist/primitives/providers/config-provider.js +3 -3
- package/dist/primitives/providers/feedback-provider.js +3 -3
- package/dist/primitives/providers/form-field-provider.js +3 -3
- package/dist/primitives/providers/help-menu-provider.js +4 -4
- package/dist/primitives/providers/hover-popover-provider.js +3 -3
- package/dist/primitives/providers/image-preview-provider.js +5 -5
- package/dist/primitives/providers/markdown-provider.js +2 -2
- package/dist/primitives/providers/message-provider.js +1 -1
- package/dist/primitives/providers/sidebar-chat-provider.js +3 -3
- package/dist/primitives/providers/source-item-provider.js +3 -3
- package/dist/primitives/providers/widget-provider.js +2 -2
- package/dist/primitives/utils/default-settings.cjs +1 -1
- package/dist/primitives/utils/default-settings.d.ts +1 -0
- package/dist/primitives/utils/default-settings.js +6 -5
- package/dist/primitives/utils/misc.cjs +5 -1
- package/dist/primitives/utils/misc.d.ts +2 -1
- package/dist/primitives/utils/misc.js +47 -22
- package/dist/react/chat-button.js +1 -1
- package/dist/react/embedded-chat.cjs +1 -1
- package/dist/react/embedded-chat.js +6 -6
- package/dist/react/embedded-search.cjs +1 -1
- package/dist/react/embedded-search.js +18 -18
- package/dist/react/index.cjs +1 -1
- package/dist/react/index.js +74 -73
- package/dist/styled/components/chat-bubble.js +4 -4
- package/dist/styled/components/chat-button.cjs +1 -1
- package/dist/styled/components/chat-button.js +9 -9
- package/dist/styled/components/chat-history.cjs +1 -1
- package/dist/styled/components/chat-history.js +22 -22
- package/dist/styled/components/embedded-chat/file-upload-input.cjs +1 -1
- package/dist/styled/components/embedded-chat/file-upload-input.js +71 -72
- package/dist/styled/components/embedded-chat/image-preview-modal.js +5 -5
- package/dist/styled/components/embedded-chat.cjs +1 -1
- package/dist/styled/components/embedded-chat.js +198 -198
- package/dist/styled/components/embedded-search.cjs +1 -1
- package/dist/styled/components/embedded-search.js +65 -65
- package/dist/styled/components/loading-indicator.cjs +1 -1
- package/dist/styled/components/loading-indicator.js +1 -1
- package/dist/styled/components/message.cjs +1 -1
- package/dist/styled/components/message.js +106 -108
- package/dist/styled/components/modal.js +3 -3
- package/dist/styled/components/searchbar.js +8 -8
- package/dist/styled/components/sidebar-chat.cjs +1 -1
- package/dist/styled/components/sidebar-chat.js +5 -5
- package/dist/styled/index.cjs +1 -1
- package/dist/styled/index.js +60 -59
- package/dist/styled/inkeep.css.cjs +13 -3
- package/dist/styled/inkeep.css.js +13 -3
- package/dist/theme/utils/generate-theme-variables.js +6 -6
- package/dist/types/config/ai.d.ts +7 -0
- package/package.json +1 -1
- package/dist/node_modules/.pnpm/use-sync-external-store@1.5.0_react@19.0.0/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.cjs +0 -9
- /package/dist/node_modules/.pnpm/{use-sync-external-store@1.5.0_react@19.0.0 → use-sync-external-store@1.6.0_react@19.3.0-canary-87ae75b3-20260128}/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.cjs +0 -0
- /package/dist/node_modules/.pnpm/{use-sync-external-store@1.5.0_react@19.0.0 → use-sync-external-store@1.6.0_react@19.3.0-canary-87ae75b3-20260128}/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.js +0 -0
- /package/dist/node_modules/.pnpm/{use-sync-external-store@1.5.0_react@19.0.0 → use-sync-external-store@1.6.0_react@19.3.0-canary-87ae75b3-20260128}/node_modules/use-sync-external-store/shim/index.cjs +0 -0
- /package/dist/node_modules/.pnpm/{use-sync-external-store@1.5.0_react@19.0.0 → use-sync-external-store@1.6.0_react@19.3.0-canary-87ae75b3-20260128}/node_modules/use-sync-external-store/shim/index.js +0 -0
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as a, jsxs as g } from "react/jsx-runtime";
|
|
3
|
-
import { useChatHistory as
|
|
4
|
-
import { useInkeepConfig as
|
|
5
|
-
import {
|
|
3
|
+
import { useChatHistory as w } from "../../primitives/providers/chat-history-provider.js";
|
|
4
|
+
import { useInkeepConfig as P } from "../../primitives/providers/config-provider.js";
|
|
5
|
+
import { ContentScrollAreaCorner as I, DisclaimerText as M, DynamicComponent as N, EmbeddedChatPrimitiveFeedbackModal as S, EmbeddedChatPrimitiveFormFieldCombobox as A, EmbeddedChatPrimitiveFormFieldComboboxItemText as T, EmbeddedChatPrimitiveFormFieldComboboxListItems as H, EmbeddedChatPrimitiveFormFieldSelect as L, EmbeddedChatPrimitiveFormFieldSelectItemText as D, EmbeddedChatPrimitiveFormFieldSelectValue as B, EmbeddedChatPrimitiveFormSuccessMessage as z, EmbeddedChatPrimitiveHelpActions as _, EmbeddedChatPrimitiveMessageSources as W, ActionBar as Q, Actions as j, ChatAction as V, ChatActionFeedback as R, ChatActionLabel as O, ChatHistoryButton as q, ChatHistoryButtonIcon as G, Content as K, ContentScrollArea as U, ContentScrollAreaScrollbar as Z, ContentScrollAreaThumb as $, ContentScrollAreaViewport as J, Disclaimer as X, DisclaimerArrow as Y, DisclaimerContent as ee, DisclaimerLabel as te, DisclaimerTrigger as ae, EmbeddedChatPrimitiveExampleQuestion as de, EmbeddedChatPrimitiveExampleQuestionButton as oe, EmbeddedChatPrimitiveExampleQuestions as re, EmbeddedChatPrimitiveExampleQuestionsLabel as ie, EmbeddedChatPrimitiveExampleQuestionsList as se, EmbeddedChatPrimitiveFeedbackField as me, EmbeddedChatPrimitiveFeedbackForm as le, EmbeddedChatPrimitiveFeedbackItemDescription as ne, EmbeddedChatPrimitiveFeedbackItemLabel as ce, EmbeddedChatPrimitiveFeedbackModalBody as be, EmbeddedChatPrimitiveFeedbackModalClose as he, EmbeddedChatPrimitiveFeedbackModalContent as Ce, EmbeddedChatPrimitiveFeedbackModalHeader as pe, EmbeddedChatPrimitiveFeedbackModalOverlay as ue, EmbeddedChatPrimitiveFeedbackSubmitButton as ge, EmbeddedChatPrimitiveFooter as Fe, EmbeddedChatPrimitiveForm as Ee, EmbeddedChatPrimitiveFormCancel as xe, EmbeddedChatPrimitiveFormClose as fe, EmbeddedChatPrimitiveFormContent as ve, EmbeddedChatPrimitiveFormDescription as ke, EmbeddedChatPrimitiveFormError as ye, EmbeddedChatPrimitiveFormField as we, EmbeddedChatPrimitiveFormFieldCheckbox as Pe, EmbeddedChatPrimitiveFormFieldCheckboxIndicator as Ie, EmbeddedChatPrimitiveFormFieldComboboxContent as Me, EmbeddedChatPrimitiveFormFieldComboboxControl as Ne, EmbeddedChatPrimitiveFormFieldComboboxInput as Se, EmbeddedChatPrimitiveFormFieldComboboxItem as Ae, EmbeddedChatPrimitiveFormFieldComboboxItemIndicator as Te, EmbeddedChatPrimitiveFormFieldComboboxList as He, EmbeddedChatPrimitiveFormFieldComboboxListEmpty as Le, EmbeddedChatPrimitiveFormFieldComboboxPositioner as De, EmbeddedChatPrimitiveFormFieldComboboxSelectedTags as Be, EmbeddedChatPrimitiveFormFieldComboboxTrigger as ze, EmbeddedChatPrimitiveFormFieldDescription as _e, EmbeddedChatPrimitiveFormFieldEmail as We, EmbeddedChatPrimitiveFormFieldError as Qe, EmbeddedChatPrimitiveFormFieldFile as je, EmbeddedChatPrimitiveFormFieldLabel as Ve, EmbeddedChatPrimitiveFormFieldSelectContent as Re, EmbeddedChatPrimitiveFormFieldSelectIcon as Oe, EmbeddedChatPrimitiveFormFieldSelectItem as qe, EmbeddedChatPrimitiveFormFieldSelectItemIndicator as Ge, EmbeddedChatPrimitiveFormFieldSelectTrigger as Ke, EmbeddedChatPrimitiveFormFieldSelectViewport as Ue, EmbeddedChatPrimitiveFormFieldText as Ze, EmbeddedChatPrimitiveFormFieldTextArea as $e, EmbeddedChatPrimitiveFormFooter as Je, EmbeddedChatPrimitiveFormHeader as Xe, EmbeddedChatPrimitiveFormHeading as Ye, EmbeddedChatPrimitiveFormSubmit as et, EmbeddedChatPrimitiveFormSuccess as tt, EmbeddedChatPrimitiveFormSuccessButton as at, EmbeddedChatPrimitiveFormSuccessHeading as dt, EmbeddedChatPrimitiveFormWrapper as ot, Header as rt, EmbeddedChatPrimitiveHeaderToolbar as it, EmbeddedChatPrimitiveToolbarHeaderWrapper as st, ChatHelpAction as mt, EmbeddedChatPrimitiveHelpActionsMenu as lt, EmbeddedChatPrimitiveHelpActionsMenuArrow as nt, EmbeddedChatPrimitiveHelpActionsMenuItem as ct, EmbeddedChatPrimitiveHelpActionsMenuItemIcon as bt, EmbeddedChatPrimitiveHelpActionsTrigger as ht, EmbeddedChatPrimitiveInput as Ct, EmbeddedChatPrimitiveInputGroup as pt, EmbeddedChatPrimitiveIntroMessageWrapper as ut, EmbeddedChatPrimitiveMarkdown as gt, EmbeddedChatPrimitiveMessageAction as Ft, EmbeddedChatPrimitiveMessageAvatar as Et, EmbeddedChatPrimitiveMessageAvatarContent as xt, EmbeddedChatPrimitiveMessageAvatarFallback as ft, EmbeddedChatPrimitiveMessageAvatarImage as vt, EmbeddedChatPrimitiveMessageContent as kt, EmbeddedChatPrimitiveMessageContentWrapper as yt, EmbeddedChatPrimitiveMessageCustomAction as wt, EmbeddedChatPrimitiveMessageCustomActions as Pt, EmbeddedChatPrimitiveMessageHeader as It, EmbeddedChatPrimitiveMessageLoading as Mt, EmbeddedChatPrimitiveMessageName as Nt, EmbeddedChatPrimitiveMessageSourceItem as St, MessageSourceItemBreadcrumbIcon as At, EmbeddedChatPrimitiveMessageSourceItemBreadcrumbs as Tt, EmbeddedChatPrimitiveMessageSourceItemDescription as Ht, EmbeddedChatPrimitiveMessageSourceItemDescriptionPart as Lt, EmbeddedChatPrimitiveMessageSourceItemIcon as Dt, EmbeddedChatPrimitiveMessageSourceItemIndicator as Bt, EmbeddedChatPrimitiveMessageSourceItemTag as zt, EmbeddedChatPrimitiveMessageSourceItemTitle as _t, EmbeddedChatPrimitiveMessageSourcesHeader as Wt, EmbeddedChatPrimitiveMessageSourcesList as Qt, EmbeddedChatPrimitiveMessageToolbar as jt, EmbeddedChatPrimitiveMessageWrapper as Vt, EmbeddedChatPrimitiveMessages as Rt, EmbeddedChatPrimitiveRoot as Ot, EmbeddedChatPrimitiveSendButton as qt, EmbeddedChatPrimitiveSendButtonIcon as Gt, EmbeddedChatPrimitiveTaglineContainer as Kt, EmbeddedChatPrimitiveTaglineLogo as Ut, EmbeddedChatPrimitiveTaglineText as Zt, EmbeddedChatPrimitiveToolbarHeader as $t, EmbeddedChatPrimitiveWrapper as Jt } from "../../primitives/components/embedded-chat.js";
|
|
6
6
|
import { ChatProvider as Xt } from "../../primitives/components/embedded-chat/chat-provider.js";
|
|
7
7
|
import { useResizeObserver as Yt } from "../../primitives/hooks/use-resize-observer.js";
|
|
8
8
|
import { composeRefs as ea } from "../../primitives/utils/compose-refs.js";
|
|
9
9
|
import { aiChatPageWrapper as ta } from "./ui/recipes/ai-chat-page-wrapper.js";
|
|
10
10
|
import { button as o } from "./ui/recipes/button.js";
|
|
11
|
-
import { checkbox as
|
|
11
|
+
import { checkbox as E } from "./ui/recipes/checkbox.js";
|
|
12
12
|
import { citation as i } from "./ui/recipes/citation.js";
|
|
13
13
|
import { combobox as s } from "./ui/recipes/combobox.js";
|
|
14
14
|
import { icon as aa } from "./ui/recipes/icon.js";
|
|
@@ -19,19 +19,19 @@ import { scrollable as h } from "./ui/recipes/scrollable.js";
|
|
|
19
19
|
import { select as l } from "./ui/recipes/select.js";
|
|
20
20
|
import { cva as da } from "class-variance-authority";
|
|
21
21
|
import { merge as oa } from "merge-anything";
|
|
22
|
-
import { forwardRef as
|
|
22
|
+
import { forwardRef as C, useRef as ra } from "react";
|
|
23
23
|
import { cn as d } from "../utils.js";
|
|
24
24
|
import { markdownStyles as ia } from "./ui/markdown-styles.js";
|
|
25
25
|
import { LoadingIndicator as sa } from "./loading-indicator.js";
|
|
26
26
|
import ma from "../../primitives/components/tagline-logo-icon.js";
|
|
27
27
|
import { MessagesSessionLoading as la } from "./embedded-chat/session-loading.js";
|
|
28
|
-
import { EmbeddedChatMessagePart as
|
|
29
|
-
import { EmbeddedChatDropZone as gr, EmbeddedChatFileContent as
|
|
30
|
-
import { EmbeddedChatImagePreviewModal as zr, EmbeddedChatImagePreviewModalClose as _r, EmbeddedChatImagePreviewModalContent as Wr, EmbeddedChatImagePreviewModalFileName as Qr, EmbeddedChatImagePreviewModalFooter as jr, EmbeddedChatImagePreviewModalImage as
|
|
28
|
+
import { EmbeddedChatMessagePart as pr } from "./message.js";
|
|
29
|
+
import { EmbeddedChatDropZone as gr, EmbeddedChatFileContent as Fr, EmbeddedChatFileInput as Er, EmbeddedChatFileItem as xr, EmbeddedChatFileList as fr, EmbeddedChatFileName as vr, EmbeddedChatFilePreviewTrigger as kr, EmbeddedChatFileRemove as yr, EmbeddedChatFileThumbnail as wr, EmbeddedChatFileTypeIcon as Pr, EmbeddedChatFileUploadButton as Ir, EmbeddedChatInputNotification as Mr, EmbeddedChatInputNotificationClose as Nr, EmbeddedChatInputNotificationContent as Sr, EmbeddedChatInputNotificationHeader as Ar, EmbeddedChatInputNotificationMessage as Tr, EmbeddedChatInputNotificationTitle as Hr, EmbeddedChatMessageFile as Lr, EmbeddedChatMessageFiles as Dr } from "./embedded-chat/file-upload-input.js";
|
|
30
|
+
import { EmbeddedChatImagePreviewModal as zr, EmbeddedChatImagePreviewModalClose as _r, EmbeddedChatImagePreviewModalContent as Wr, EmbeddedChatImagePreviewModalFileName as Qr, EmbeddedChatImagePreviewModalFooter as jr, EmbeddedChatImagePreviewModalImage as Vr, EmbeddedChatImagePreviewModalOverlay as Rr } from "./embedded-chat/image-preview-modal.js";
|
|
31
31
|
import { EmbeddedChatPrimitiveInputFieldset as na } from "../../primitives/components/embedded-chat/file-upload-input.js";
|
|
32
|
-
const Wa = Xt, Qa =
|
|
33
|
-
({ className: e, size: t, variant: r, ...
|
|
34
|
-
|
|
32
|
+
const Wa = Xt, Qa = C(
|
|
33
|
+
({ className: e, size: t, variant: r, ...p }, n) => /* @__PURE__ */ a(
|
|
34
|
+
Jt,
|
|
35
35
|
{
|
|
36
36
|
ref: n,
|
|
37
37
|
className: d(
|
|
@@ -51,14 +51,14 @@ const Wa = Xt, Qa = p(
|
|
|
51
51
|
"data-[chat-history-layout=sidepane]:flex-row",
|
|
52
52
|
e
|
|
53
53
|
),
|
|
54
|
-
...
|
|
54
|
+
...p
|
|
55
55
|
}
|
|
56
56
|
)
|
|
57
57
|
), ja = ({
|
|
58
58
|
className: e,
|
|
59
59
|
...t
|
|
60
60
|
}) => /* @__PURE__ */ a(
|
|
61
|
-
|
|
61
|
+
Ot,
|
|
62
62
|
{
|
|
63
63
|
className: d(
|
|
64
64
|
h({ section: "wrapper" }),
|
|
@@ -72,11 +72,11 @@ const Wa = Xt, Qa = p(
|
|
|
72
72
|
),
|
|
73
73
|
...t
|
|
74
74
|
}
|
|
75
|
-
),
|
|
75
|
+
), Va = ({
|
|
76
76
|
className: e,
|
|
77
77
|
...t
|
|
78
78
|
}) => /* @__PURE__ */ a(
|
|
79
|
-
|
|
79
|
+
rt,
|
|
80
80
|
{
|
|
81
81
|
className: d(
|
|
82
82
|
h({ section: "header" }),
|
|
@@ -95,11 +95,11 @@ const Wa = Xt, Qa = p(
|
|
|
95
95
|
),
|
|
96
96
|
...t
|
|
97
97
|
}
|
|
98
|
-
),
|
|
98
|
+
), Ra = ({
|
|
99
99
|
className: e,
|
|
100
100
|
...t
|
|
101
101
|
}) => /* @__PURE__ */ a(
|
|
102
|
-
|
|
102
|
+
it,
|
|
103
103
|
{
|
|
104
104
|
className: d(
|
|
105
105
|
"flex items-center gap-3 w-full",
|
|
@@ -113,7 +113,7 @@ const Wa = Xt, Qa = p(
|
|
|
113
113
|
className: e,
|
|
114
114
|
...t
|
|
115
115
|
}) => /* @__PURE__ */ a(
|
|
116
|
-
|
|
116
|
+
st,
|
|
117
117
|
{
|
|
118
118
|
className: d("flex items-center gap-1.5", e),
|
|
119
119
|
...t
|
|
@@ -122,19 +122,19 @@ const Wa = Xt, Qa = p(
|
|
|
122
122
|
className: e,
|
|
123
123
|
...t
|
|
124
124
|
}) => /* @__PURE__ */ a(
|
|
125
|
-
|
|
125
|
+
$t,
|
|
126
126
|
{
|
|
127
127
|
className: d("text-gray-600 dark:text-gray-dark-100 text-sm", e),
|
|
128
128
|
...t
|
|
129
129
|
}
|
|
130
|
-
),
|
|
130
|
+
), F = ({
|
|
131
131
|
className: e,
|
|
132
132
|
...t
|
|
133
133
|
}) => /* @__PURE__ */ a(G, { className: d("text-sm", e), ...t }), ca = ({
|
|
134
134
|
className: e,
|
|
135
135
|
...t
|
|
136
136
|
}) => /* @__PURE__ */ a(
|
|
137
|
-
|
|
137
|
+
q,
|
|
138
138
|
{
|
|
139
139
|
className: d(
|
|
140
140
|
o({ size: "xs", variant: "ghost" }),
|
|
@@ -144,17 +144,17 @@ const Wa = Xt, Qa = p(
|
|
|
144
144
|
...t
|
|
145
145
|
}
|
|
146
146
|
), Ga = () => {
|
|
147
|
-
const { aiChatSettings: e } =
|
|
147
|
+
const { aiChatSettings: e } = P(), { setIsOpen: t, isOpen: r } = w();
|
|
148
148
|
return e.isChatHistoryButtonVisible ? /* @__PURE__ */ g(ca, { onClick: () => t(!r), "aria-label": "Chat history", children: [
|
|
149
149
|
/* @__PURE__ */ a(
|
|
150
|
-
|
|
150
|
+
F,
|
|
151
151
|
{
|
|
152
152
|
iconKey: "chatHistoryPanel",
|
|
153
153
|
className: "!hidden group-data-[chat-history-layout=sidepane]/chat-history:!block"
|
|
154
154
|
}
|
|
155
155
|
),
|
|
156
156
|
/* @__PURE__ */ g("span", { className: "flex items-center gap-1.5 group-data-[chat-history-layout=sidepane]/chat-history:hidden", children: [
|
|
157
|
-
/* @__PURE__ */ a(
|
|
157
|
+
/* @__PURE__ */ a(F, { iconKey: "chatHistory" }),
|
|
158
158
|
"Chat history"
|
|
159
159
|
] })
|
|
160
160
|
] }) : null;
|
|
@@ -162,7 +162,7 @@ const Wa = Xt, Qa = p(
|
|
|
162
162
|
className: e,
|
|
163
163
|
...t
|
|
164
164
|
}) => /* @__PURE__ */ a(
|
|
165
|
-
|
|
165
|
+
K,
|
|
166
166
|
{
|
|
167
167
|
className: d(h({ section: "content" }), "justify-end", e),
|
|
168
168
|
...t
|
|
@@ -171,13 +171,13 @@ const Wa = Xt, Qa = p(
|
|
|
171
171
|
className: e,
|
|
172
172
|
...t
|
|
173
173
|
}) => /* @__PURE__ */ a(
|
|
174
|
-
|
|
174
|
+
U,
|
|
175
175
|
{
|
|
176
176
|
className: d("overflow-hidden", e),
|
|
177
177
|
...t
|
|
178
178
|
}
|
|
179
|
-
), Za =
|
|
180
|
-
|
|
179
|
+
), Za = C(({ className: e, ...t }, r) => /* @__PURE__ */ a(
|
|
180
|
+
J,
|
|
181
181
|
{
|
|
182
182
|
ref: r,
|
|
183
183
|
className: d(
|
|
@@ -191,7 +191,7 @@ const Wa = Xt, Qa = p(
|
|
|
191
191
|
className: e,
|
|
192
192
|
...t
|
|
193
193
|
}) => /* @__PURE__ */ a(
|
|
194
|
-
|
|
194
|
+
Z,
|
|
195
195
|
{
|
|
196
196
|
className: d(
|
|
197
197
|
"flex select-none touch-none p-0.5",
|
|
@@ -205,7 +205,7 @@ const Wa = Xt, Qa = p(
|
|
|
205
205
|
className: e,
|
|
206
206
|
...t
|
|
207
207
|
}) => /* @__PURE__ */ a(
|
|
208
|
-
|
|
208
|
+
$,
|
|
209
209
|
{
|
|
210
210
|
className: d("relative flex-1 rounded-full", "bg-gray-300 dark:bg-white-alpha-200", e),
|
|
211
211
|
...t
|
|
@@ -214,7 +214,7 @@ const Wa = Xt, Qa = p(
|
|
|
214
214
|
className: e,
|
|
215
215
|
...t
|
|
216
216
|
}) => /* @__PURE__ */ a(
|
|
217
|
-
|
|
217
|
+
X,
|
|
218
218
|
{
|
|
219
219
|
className: d("ml-auto text-sm flex items-center gap-1", e),
|
|
220
220
|
...t
|
|
@@ -223,7 +223,7 @@ const Wa = Xt, Qa = p(
|
|
|
223
223
|
className: e,
|
|
224
224
|
...t
|
|
225
225
|
}) => /* @__PURE__ */ a(
|
|
226
|
-
|
|
226
|
+
te,
|
|
227
227
|
{
|
|
228
228
|
className: d("text-gray-700 dark:text-gray-dark-100", e),
|
|
229
229
|
...t
|
|
@@ -232,7 +232,7 @@ const Wa = Xt, Qa = p(
|
|
|
232
232
|
className: e,
|
|
233
233
|
...t
|
|
234
234
|
}) => /* @__PURE__ */ a(
|
|
235
|
-
|
|
235
|
+
ae,
|
|
236
236
|
{
|
|
237
237
|
className: d(
|
|
238
238
|
"cursor-pointer text-gray-700 dark:text-gray-dark-100",
|
|
@@ -245,7 +245,7 @@ const Wa = Xt, Qa = p(
|
|
|
245
245
|
className: e,
|
|
246
246
|
...t
|
|
247
247
|
}) => /* @__PURE__ */ a(
|
|
248
|
-
|
|
248
|
+
ee,
|
|
249
249
|
{
|
|
250
250
|
className: d(
|
|
251
251
|
b({ slot: "content" }),
|
|
@@ -259,7 +259,7 @@ const Wa = Xt, Qa = p(
|
|
|
259
259
|
className: e,
|
|
260
260
|
...t
|
|
261
261
|
}) => /* @__PURE__ */ a(
|
|
262
|
-
|
|
262
|
+
Y,
|
|
263
263
|
{
|
|
264
264
|
className: d(b({ slot: "arrow" }), e),
|
|
265
265
|
...t
|
|
@@ -268,7 +268,7 @@ const Wa = Xt, Qa = p(
|
|
|
268
268
|
className: e,
|
|
269
269
|
...t
|
|
270
270
|
}) => /* @__PURE__ */ a(
|
|
271
|
-
|
|
271
|
+
re,
|
|
272
272
|
{
|
|
273
273
|
className: d("mt-4 flex flex-col gap-2", e),
|
|
274
274
|
...t
|
|
@@ -277,7 +277,7 @@ const Wa = Xt, Qa = p(
|
|
|
277
277
|
className: e,
|
|
278
278
|
...t
|
|
279
279
|
}) => /* @__PURE__ */ a(
|
|
280
|
-
|
|
280
|
+
ie,
|
|
281
281
|
{
|
|
282
282
|
className: d(
|
|
283
283
|
"text-2xs uppercase font-semibold tracking-widest",
|
|
@@ -290,18 +290,18 @@ const Wa = Xt, Qa = p(
|
|
|
290
290
|
className: e,
|
|
291
291
|
...t
|
|
292
292
|
}) => /* @__PURE__ */ a(
|
|
293
|
-
|
|
293
|
+
se,
|
|
294
294
|
{
|
|
295
295
|
className: d("flex flex-col", "ikp-md:flex-row", "flex-wrap gap-2", e),
|
|
296
296
|
...t
|
|
297
297
|
}
|
|
298
|
-
), md =
|
|
299
|
-
const n = ra(null), f = ea(
|
|
298
|
+
), md = C(({ className: e, style: t, ...r }, p) => {
|
|
299
|
+
const n = ra(null), f = ea(p, n), { width: v = 0, height: k = 0 } = Yt({
|
|
300
300
|
ref: n,
|
|
301
301
|
box: "border-box"
|
|
302
302
|
}), y = Math.max(k, v);
|
|
303
303
|
return /* @__PURE__ */ a(
|
|
304
|
-
|
|
304
|
+
de,
|
|
305
305
|
{
|
|
306
306
|
ref: f,
|
|
307
307
|
style: {
|
|
@@ -331,7 +331,7 @@ const Wa = Xt, Qa = p(
|
|
|
331
331
|
className: e,
|
|
332
332
|
...t
|
|
333
333
|
}) => /* @__PURE__ */ a(
|
|
334
|
-
|
|
334
|
+
oe,
|
|
335
335
|
{
|
|
336
336
|
className: d(
|
|
337
337
|
o({ size: "sm" }),
|
|
@@ -350,7 +350,7 @@ const Wa = Xt, Qa = p(
|
|
|
350
350
|
className: e,
|
|
351
351
|
...t
|
|
352
352
|
}) => /* @__PURE__ */ a(
|
|
353
|
-
|
|
353
|
+
Rt,
|
|
354
354
|
{
|
|
355
355
|
className: d("flex flex-col w-full min-w-0 min-h-0 text-sm relative", e),
|
|
356
356
|
...t
|
|
@@ -363,11 +363,11 @@ const Wa = Xt, Qa = p(
|
|
|
363
363
|
]), cd = ({
|
|
364
364
|
className: e,
|
|
365
365
|
...t
|
|
366
|
-
}) => /* @__PURE__ */ a(
|
|
366
|
+
}) => /* @__PURE__ */ a(Vt, { className: d(x(), e), ...t }), bd = ({
|
|
367
367
|
className: e,
|
|
368
368
|
...t
|
|
369
369
|
}) => /* @__PURE__ */ a(
|
|
370
|
-
|
|
370
|
+
ut,
|
|
371
371
|
{
|
|
372
372
|
className: d(x(), e),
|
|
373
373
|
...t
|
|
@@ -376,7 +376,7 @@ const Wa = Xt, Qa = p(
|
|
|
376
376
|
className: e,
|
|
377
377
|
...t
|
|
378
378
|
}) => /* @__PURE__ */ a(
|
|
379
|
-
|
|
379
|
+
It,
|
|
380
380
|
{
|
|
381
381
|
className: d(
|
|
382
382
|
"flex justify-start overflow-hidden shrink-0 select-none",
|
|
@@ -390,21 +390,21 @@ const Wa = Xt, Qa = p(
|
|
|
390
390
|
),
|
|
391
391
|
...t
|
|
392
392
|
}
|
|
393
|
-
),
|
|
393
|
+
), Cd = ({
|
|
394
394
|
className: e,
|
|
395
395
|
...t
|
|
396
396
|
}) => /* @__PURE__ */ a(
|
|
397
|
-
|
|
397
|
+
Mt,
|
|
398
398
|
{
|
|
399
399
|
className: d("flex items-center gap-3 h-auto w-full", e),
|
|
400
400
|
children: /* @__PURE__ */ a(sa, {}),
|
|
401
401
|
...t
|
|
402
402
|
}
|
|
403
|
-
),
|
|
403
|
+
), pd = ({ className: e }) => /* @__PURE__ */ a("div", { className: d("w-full", e), children: /* @__PURE__ */ a(la, {}) }), ud = ({
|
|
404
404
|
className: e,
|
|
405
405
|
...t
|
|
406
406
|
}) => /* @__PURE__ */ a(
|
|
407
|
-
|
|
407
|
+
Et,
|
|
408
408
|
{
|
|
409
409
|
className: d("flex items-center justify-center rounded-full", "h-auto", e),
|
|
410
410
|
...t
|
|
@@ -413,7 +413,7 @@ const Wa = Xt, Qa = p(
|
|
|
413
413
|
className: e,
|
|
414
414
|
...t
|
|
415
415
|
}) => /* @__PURE__ */ a(
|
|
416
|
-
|
|
416
|
+
xt,
|
|
417
417
|
{
|
|
418
418
|
className: d(
|
|
419
419
|
"relative flex h-6 w-6 shrink-0 overflow-hidden",
|
|
@@ -426,20 +426,20 @@ const Wa = Xt, Qa = p(
|
|
|
426
426
|
),
|
|
427
427
|
...t
|
|
428
428
|
}
|
|
429
|
-
),
|
|
429
|
+
), Fd = ({
|
|
430
430
|
className: e,
|
|
431
431
|
...t
|
|
432
432
|
}) => /* @__PURE__ */ a(
|
|
433
|
-
|
|
433
|
+
ft,
|
|
434
434
|
{
|
|
435
435
|
className: d("hidden data-[role=user]:block", e),
|
|
436
436
|
...t
|
|
437
437
|
}
|
|
438
|
-
),
|
|
438
|
+
), Ed = ({
|
|
439
439
|
className: e,
|
|
440
440
|
...t
|
|
441
441
|
}) => /* @__PURE__ */ a(
|
|
442
|
-
|
|
442
|
+
vt,
|
|
443
443
|
{
|
|
444
444
|
className: d(
|
|
445
445
|
"data-[type=icon]:data-[role=user]:text-inkeep-primary-medium",
|
|
@@ -456,7 +456,7 @@ const Wa = Xt, Qa = p(
|
|
|
456
456
|
className: e,
|
|
457
457
|
...t
|
|
458
458
|
}) => /* @__PURE__ */ a(
|
|
459
|
-
|
|
459
|
+
Nt,
|
|
460
460
|
{
|
|
461
461
|
className: d(
|
|
462
462
|
"py-1 ml-3",
|
|
@@ -472,7 +472,7 @@ const Wa = Xt, Qa = p(
|
|
|
472
472
|
className: e,
|
|
473
473
|
...t
|
|
474
474
|
}) => /* @__PURE__ */ a(
|
|
475
|
-
|
|
475
|
+
yt,
|
|
476
476
|
{
|
|
477
477
|
className: d(
|
|
478
478
|
"overflow-hidden flex flex-col",
|
|
@@ -490,7 +490,7 @@ const Wa = Xt, Qa = p(
|
|
|
490
490
|
className: e,
|
|
491
491
|
...t
|
|
492
492
|
}) => /* @__PURE__ */ a(
|
|
493
|
-
|
|
493
|
+
kt,
|
|
494
494
|
{
|
|
495
495
|
className: d(
|
|
496
496
|
"text-sm flex-wrap break-words min-w-0 shrink-1 max-w-full data-[role=user]:py-2 data-[role=user]:px-4 data-[role=user]:bg-gray-100 data-[role=user]:dark:bg-white-alpha-100 rounded-3xl xs:data-[role=user]:max-w-[75%] rounded-br-sm",
|
|
@@ -502,25 +502,25 @@ const Wa = Xt, Qa = p(
|
|
|
502
502
|
componentStyles: e,
|
|
503
503
|
...t
|
|
504
504
|
}) => /* @__PURE__ */ a(
|
|
505
|
-
|
|
505
|
+
gt,
|
|
506
506
|
{
|
|
507
507
|
componentStyles: oa(ia, e ?? {}),
|
|
508
508
|
...t
|
|
509
509
|
}
|
|
510
|
-
),
|
|
510
|
+
), wd = ({
|
|
511
511
|
className: e,
|
|
512
512
|
...t
|
|
513
513
|
}) => /* @__PURE__ */ a(
|
|
514
|
-
|
|
514
|
+
jt,
|
|
515
515
|
{
|
|
516
516
|
className: d("flex items-center mt-2 mb-3", e),
|
|
517
517
|
...t
|
|
518
518
|
}
|
|
519
|
-
),
|
|
519
|
+
), Pd = ({
|
|
520
520
|
className: e,
|
|
521
521
|
...t
|
|
522
522
|
}) => /* @__PURE__ */ a(
|
|
523
|
-
|
|
523
|
+
Pt,
|
|
524
524
|
{
|
|
525
525
|
className: d("mr-auto flex items-center gap-2", e),
|
|
526
526
|
...t
|
|
@@ -529,7 +529,7 @@ const Wa = Xt, Qa = p(
|
|
|
529
529
|
className: e,
|
|
530
530
|
...t
|
|
531
531
|
}) => /* @__PURE__ */ a(
|
|
532
|
-
|
|
532
|
+
wt,
|
|
533
533
|
{
|
|
534
534
|
className: d(
|
|
535
535
|
o({ size: "xs", variant: "outline" }),
|
|
@@ -542,7 +542,7 @@ const Wa = Xt, Qa = p(
|
|
|
542
542
|
className: e,
|
|
543
543
|
...t
|
|
544
544
|
}) => /* @__PURE__ */ a(
|
|
545
|
-
|
|
545
|
+
Ft,
|
|
546
546
|
{
|
|
547
547
|
className: d(
|
|
548
548
|
o({ variant: "iconButton", size: "sm" }),
|
|
@@ -555,11 +555,11 @@ const Wa = Xt, Qa = p(
|
|
|
555
555
|
),
|
|
556
556
|
...t
|
|
557
557
|
}
|
|
558
|
-
), Nd =
|
|
558
|
+
), Nd = W, Sd = ({
|
|
559
559
|
className: e,
|
|
560
560
|
...t
|
|
561
561
|
}) => /* @__PURE__ */ a(
|
|
562
|
-
|
|
562
|
+
Wt,
|
|
563
563
|
{
|
|
564
564
|
className: d(
|
|
565
565
|
"block text-xs font-medium my-2 text-gray-700 dark:text-gray-dark-300",
|
|
@@ -571,7 +571,7 @@ const Wa = Xt, Qa = p(
|
|
|
571
571
|
className: e,
|
|
572
572
|
...t
|
|
573
573
|
}) => /* @__PURE__ */ a(
|
|
574
|
-
|
|
574
|
+
Qt,
|
|
575
575
|
{
|
|
576
576
|
className: d("w-full relative flex flex-col gap-3 py-[1px]", e),
|
|
577
577
|
...t
|
|
@@ -580,7 +580,7 @@ const Wa = Xt, Qa = p(
|
|
|
580
580
|
className: e,
|
|
581
581
|
...t
|
|
582
582
|
}) => /* @__PURE__ */ a(
|
|
583
|
-
|
|
583
|
+
St,
|
|
584
584
|
{
|
|
585
585
|
className: d(i({ slot: "root" }), e),
|
|
586
586
|
...t
|
|
@@ -589,7 +589,7 @@ const Wa = Xt, Qa = p(
|
|
|
589
589
|
className: e,
|
|
590
590
|
...t
|
|
591
591
|
}) => /* @__PURE__ */ a(
|
|
592
|
-
|
|
592
|
+
Tt,
|
|
593
593
|
{
|
|
594
594
|
className: d(i({ slot: "breadcrumbs" }), e),
|
|
595
595
|
...t
|
|
@@ -598,25 +598,25 @@ const Wa = Xt, Qa = p(
|
|
|
598
598
|
className: e,
|
|
599
599
|
...t
|
|
600
600
|
}) => /* @__PURE__ */ a(
|
|
601
|
-
|
|
601
|
+
At,
|
|
602
602
|
{
|
|
603
603
|
className: d(i({ slot: "breadcrumbsIcon" }), e),
|
|
604
604
|
...t
|
|
605
605
|
}
|
|
606
|
-
),
|
|
606
|
+
), Dd = ({
|
|
607
607
|
className: e,
|
|
608
608
|
...t
|
|
609
609
|
}) => /* @__PURE__ */ a(
|
|
610
|
-
|
|
610
|
+
Dt,
|
|
611
611
|
{
|
|
612
612
|
className: d(i({ slot: "icon" }), e),
|
|
613
613
|
...t
|
|
614
614
|
}
|
|
615
|
-
),
|
|
615
|
+
), Bd = ({
|
|
616
616
|
className: e,
|
|
617
617
|
...t
|
|
618
618
|
}) => /* @__PURE__ */ a(
|
|
619
|
-
|
|
619
|
+
_t,
|
|
620
620
|
{
|
|
621
621
|
className: d(i({ slot: "title" }), e),
|
|
622
622
|
...t
|
|
@@ -625,7 +625,7 @@ const Wa = Xt, Qa = p(
|
|
|
625
625
|
className: e,
|
|
626
626
|
...t
|
|
627
627
|
}) => /* @__PURE__ */ a(
|
|
628
|
-
|
|
628
|
+
zt,
|
|
629
629
|
{
|
|
630
630
|
className: d(i({ slot: "tag" }), e),
|
|
631
631
|
...t
|
|
@@ -634,7 +634,7 @@ const Wa = Xt, Qa = p(
|
|
|
634
634
|
className: e,
|
|
635
635
|
...t
|
|
636
636
|
}) => /* @__PURE__ */ a(
|
|
637
|
-
|
|
637
|
+
Ht,
|
|
638
638
|
{
|
|
639
639
|
className: d(i({ slot: "description" }), e),
|
|
640
640
|
...t
|
|
@@ -643,7 +643,7 @@ const Wa = Xt, Qa = p(
|
|
|
643
643
|
className: e,
|
|
644
644
|
...t
|
|
645
645
|
}) => /* @__PURE__ */ a(
|
|
646
|
-
|
|
646
|
+
Lt,
|
|
647
647
|
{
|
|
648
648
|
className: d(i({ slot: "descriptionPart" }), e),
|
|
649
649
|
...t
|
|
@@ -652,7 +652,7 @@ const Wa = Xt, Qa = p(
|
|
|
652
652
|
className: e,
|
|
653
653
|
...t
|
|
654
654
|
}) => /* @__PURE__ */ a(
|
|
655
|
-
|
|
655
|
+
Bt,
|
|
656
656
|
{
|
|
657
657
|
className: d(i({ slot: "indicator" }), e),
|
|
658
658
|
...t
|
|
@@ -661,7 +661,7 @@ const Wa = Xt, Qa = p(
|
|
|
661
661
|
className: e,
|
|
662
662
|
...t
|
|
663
663
|
}) => /* @__PURE__ */ a(
|
|
664
|
-
|
|
664
|
+
Fe,
|
|
665
665
|
{
|
|
666
666
|
className: d(
|
|
667
667
|
"bg-white dark:bg-gray-dark-950 pt-6 pb-4",
|
|
@@ -674,7 +674,7 @@ const Wa = Xt, Qa = p(
|
|
|
674
674
|
),
|
|
675
675
|
...t
|
|
676
676
|
}
|
|
677
|
-
),
|
|
677
|
+
), Vd = ({
|
|
678
678
|
className: e,
|
|
679
679
|
...t
|
|
680
680
|
}) => /* @__PURE__ */ a(
|
|
@@ -689,11 +689,11 @@ const Wa = Xt, Qa = p(
|
|
|
689
689
|
),
|
|
690
690
|
...t
|
|
691
691
|
}
|
|
692
|
-
),
|
|
692
|
+
), Rd = ({
|
|
693
693
|
className: e,
|
|
694
694
|
...t
|
|
695
|
-
}) => /* @__PURE__ */ a(
|
|
696
|
-
|
|
695
|
+
}) => /* @__PURE__ */ a(pt, { className: d("flex items-end", e), ...t }), Od = C(({ className: e, ...t }, r) => /* @__PURE__ */ a(
|
|
696
|
+
Ct,
|
|
697
697
|
{
|
|
698
698
|
ref: r,
|
|
699
699
|
className: d(
|
|
@@ -709,7 +709,7 @@ const Wa = Xt, Qa = p(
|
|
|
709
709
|
className: e,
|
|
710
710
|
...t
|
|
711
711
|
}) => /* @__PURE__ */ a(
|
|
712
|
-
|
|
712
|
+
qt,
|
|
713
713
|
{
|
|
714
714
|
className: d(
|
|
715
715
|
o({}),
|
|
@@ -729,7 +729,7 @@ const Wa = Xt, Qa = p(
|
|
|
729
729
|
className: e,
|
|
730
730
|
...t
|
|
731
731
|
}) => /* @__PURE__ */ a(
|
|
732
|
-
|
|
732
|
+
Gt,
|
|
733
733
|
{
|
|
734
734
|
className: d(aa(), "text-inherit group-disabled:opacity-60 ", e),
|
|
735
735
|
...t
|
|
@@ -738,7 +738,7 @@ const Wa = Xt, Qa = p(
|
|
|
738
738
|
className: e,
|
|
739
739
|
...t
|
|
740
740
|
}) => /* @__PURE__ */ a(
|
|
741
|
-
|
|
741
|
+
Q,
|
|
742
742
|
{
|
|
743
743
|
className: d("mt-4 flex items-center justify-between flex-wrap-reverse gap-2.5", e),
|
|
744
744
|
...t
|
|
@@ -747,7 +747,7 @@ const Wa = Xt, Qa = p(
|
|
|
747
747
|
className: e,
|
|
748
748
|
...t
|
|
749
749
|
}) => /* @__PURE__ */ a(
|
|
750
|
-
|
|
750
|
+
j,
|
|
751
751
|
{
|
|
752
752
|
className: d("flex items-center gap-2.5 flex-wrap", e),
|
|
753
753
|
...t
|
|
@@ -756,7 +756,7 @@ const Wa = Xt, Qa = p(
|
|
|
756
756
|
className: e,
|
|
757
757
|
...t
|
|
758
758
|
}) => /* @__PURE__ */ a(
|
|
759
|
-
|
|
759
|
+
Kt,
|
|
760
760
|
{
|
|
761
761
|
className: d("flex items-center whitespace-nowrap", e),
|
|
762
762
|
...t
|
|
@@ -765,7 +765,7 @@ const Wa = Xt, Qa = p(
|
|
|
765
765
|
className: e,
|
|
766
766
|
...t
|
|
767
767
|
}) => /* @__PURE__ */ a(
|
|
768
|
-
|
|
768
|
+
Zt,
|
|
769
769
|
{
|
|
770
770
|
className: d("text-xs text-gray-500 dark:text-white-alpha-600", e),
|
|
771
771
|
...t
|
|
@@ -774,7 +774,7 @@ const Wa = Xt, Qa = p(
|
|
|
774
774
|
className: e,
|
|
775
775
|
...t
|
|
776
776
|
}) => /* @__PURE__ */ a(
|
|
777
|
-
|
|
777
|
+
Ut,
|
|
778
778
|
{
|
|
779
779
|
className: d("inline-flex items-center", e),
|
|
780
780
|
...t,
|
|
@@ -786,14 +786,14 @@ const Wa = Xt, Qa = p(
|
|
|
786
786
|
), Xd = ({
|
|
787
787
|
className: e,
|
|
788
788
|
...t
|
|
789
|
-
}) => /* @__PURE__ */ a(
|
|
789
|
+
}) => /* @__PURE__ */ a(V, { className: d(u, e), ...t }), Yd = ({
|
|
790
790
|
className: e,
|
|
791
791
|
...t
|
|
792
|
-
}) => /* @__PURE__ */ a(
|
|
792
|
+
}) => /* @__PURE__ */ a(O, { className: d("cursor-pointer", e), ...t }), eo = ({
|
|
793
793
|
className: e,
|
|
794
794
|
...t
|
|
795
795
|
}) => /* @__PURE__ */ a(
|
|
796
|
-
|
|
796
|
+
R,
|
|
797
797
|
{
|
|
798
798
|
className: d(
|
|
799
799
|
"bg-white text-gray-800 fill-white",
|
|
@@ -804,14 +804,14 @@ const Wa = Xt, Qa = p(
|
|
|
804
804
|
),
|
|
805
805
|
...t
|
|
806
806
|
}
|
|
807
|
-
), to =
|
|
807
|
+
), to = _, ao = ({
|
|
808
808
|
className: e,
|
|
809
809
|
...t
|
|
810
|
-
}) => /* @__PURE__ */ a(
|
|
810
|
+
}) => /* @__PURE__ */ a(mt, { className: d(u, e), ...t }), oo = ({
|
|
811
811
|
className: e,
|
|
812
812
|
...t
|
|
813
813
|
}) => /* @__PURE__ */ a(
|
|
814
|
-
|
|
814
|
+
ht,
|
|
815
815
|
{
|
|
816
816
|
className: d(u, e),
|
|
817
817
|
...t
|
|
@@ -820,7 +820,7 @@ const Wa = Xt, Qa = p(
|
|
|
820
820
|
className: e,
|
|
821
821
|
...t
|
|
822
822
|
}) => /* @__PURE__ */ a(
|
|
823
|
-
|
|
823
|
+
lt,
|
|
824
824
|
{
|
|
825
825
|
className: d(
|
|
826
826
|
b({ slot: "content" }),
|
|
@@ -834,7 +834,7 @@ const Wa = Xt, Qa = p(
|
|
|
834
834
|
className: e,
|
|
835
835
|
...t
|
|
836
836
|
}) => /* @__PURE__ */ a(
|
|
837
|
-
|
|
837
|
+
nt,
|
|
838
838
|
{
|
|
839
839
|
className: d(b({ slot: "arrow" }), e),
|
|
840
840
|
...t
|
|
@@ -843,7 +843,7 @@ const Wa = Xt, Qa = p(
|
|
|
843
843
|
className: e,
|
|
844
844
|
...t
|
|
845
845
|
}) => /* @__PURE__ */ a(
|
|
846
|
-
|
|
846
|
+
ct,
|
|
847
847
|
{
|
|
848
848
|
className: d("flex items-center cursor-pointer hover:underline", e),
|
|
849
849
|
...t
|
|
@@ -852,16 +852,16 @@ const Wa = Xt, Qa = p(
|
|
|
852
852
|
className: e,
|
|
853
853
|
...t
|
|
854
854
|
}) => /* @__PURE__ */ a(
|
|
855
|
-
|
|
855
|
+
bt,
|
|
856
856
|
{
|
|
857
857
|
className: d("mr-2 text-inkeep-primary-medium", e),
|
|
858
858
|
...t
|
|
859
859
|
}
|
|
860
|
-
), lo =
|
|
860
|
+
), lo = S, no = ({
|
|
861
861
|
className: e,
|
|
862
862
|
...t
|
|
863
863
|
}) => /* @__PURE__ */ a(
|
|
864
|
-
|
|
864
|
+
ue,
|
|
865
865
|
{
|
|
866
866
|
className: d(m({ slot: "overlay" }), e),
|
|
867
867
|
...t
|
|
@@ -870,7 +870,7 @@ const Wa = Xt, Qa = p(
|
|
|
870
870
|
className: e,
|
|
871
871
|
...t
|
|
872
872
|
}) => /* @__PURE__ */ a(
|
|
873
|
-
|
|
873
|
+
Ce,
|
|
874
874
|
{
|
|
875
875
|
className: d(
|
|
876
876
|
m({ slot: "content" }),
|
|
@@ -884,7 +884,7 @@ const Wa = Xt, Qa = p(
|
|
|
884
884
|
className: e,
|
|
885
885
|
...t
|
|
886
886
|
}) => /* @__PURE__ */ a(
|
|
887
|
-
|
|
887
|
+
pe,
|
|
888
888
|
{
|
|
889
889
|
className: d(m({ slot: "header" }), "px-0 pt-0 pb-6", "font-semibold", e),
|
|
890
890
|
...t
|
|
@@ -893,49 +893,49 @@ const Wa = Xt, Qa = p(
|
|
|
893
893
|
className: e,
|
|
894
894
|
...t
|
|
895
895
|
}) => /* @__PURE__ */ a(
|
|
896
|
-
|
|
896
|
+
he,
|
|
897
897
|
{
|
|
898
898
|
className: d(m({ slot: "close" }), e),
|
|
899
899
|
...t
|
|
900
900
|
}
|
|
901
|
-
),
|
|
901
|
+
), Co = ({
|
|
902
902
|
className: e,
|
|
903
903
|
...t
|
|
904
904
|
}) => /* @__PURE__ */ a(
|
|
905
|
-
|
|
905
|
+
be,
|
|
906
906
|
{
|
|
907
907
|
className: d(m({ slot: "body" }), "p-0", e),
|
|
908
908
|
...t
|
|
909
909
|
}
|
|
910
|
-
),
|
|
910
|
+
), po = ({
|
|
911
911
|
className: e,
|
|
912
912
|
...t
|
|
913
|
-
}) => /* @__PURE__ */ a(
|
|
913
|
+
}) => /* @__PURE__ */ a(le, { className: d("flex flex-col gap-8", e), ...t }), uo = ({
|
|
914
914
|
className: e,
|
|
915
915
|
...t
|
|
916
|
-
}) => /* @__PURE__ */ a(
|
|
916
|
+
}) => /* @__PURE__ */ a(me, { className: d("flex flex-col gap-2", e), ...t }), go = ({
|
|
917
917
|
className: e,
|
|
918
918
|
...t
|
|
919
919
|
}) => /* @__PURE__ */ a(
|
|
920
|
-
|
|
920
|
+
ce,
|
|
921
921
|
{
|
|
922
922
|
className: d("font-medium text-sm", "text-gray-700 dark:text-white-alpha-700", e),
|
|
923
923
|
...t
|
|
924
924
|
}
|
|
925
|
-
),
|
|
925
|
+
), Fo = ({
|
|
926
926
|
className: e,
|
|
927
927
|
...t
|
|
928
928
|
}) => /* @__PURE__ */ a(
|
|
929
|
-
|
|
929
|
+
ne,
|
|
930
930
|
{
|
|
931
931
|
className: d("flex-[0_0_100%]", "min-h-20 border rounded-md", "px-3 py-2 text-sm", e),
|
|
932
932
|
...t
|
|
933
933
|
}
|
|
934
|
-
),
|
|
934
|
+
), Eo = ({
|
|
935
935
|
className: e,
|
|
936
936
|
...t
|
|
937
937
|
}) => /* @__PURE__ */ a(
|
|
938
|
-
|
|
938
|
+
ge,
|
|
939
939
|
{
|
|
940
940
|
className: d(o({ variant: "primaryFilled" }), "ml-auto", e),
|
|
941
941
|
...t
|
|
@@ -944,7 +944,7 @@ const Wa = Xt, Qa = p(
|
|
|
944
944
|
className: e,
|
|
945
945
|
...t
|
|
946
946
|
}) => /* @__PURE__ */ a(
|
|
947
|
-
|
|
947
|
+
ot,
|
|
948
948
|
{
|
|
949
949
|
className: d("w-full overflow-y-auto [scrollbar-width:thin]", e),
|
|
950
950
|
...t
|
|
@@ -953,7 +953,7 @@ const Wa = Xt, Qa = p(
|
|
|
953
953
|
className: e,
|
|
954
954
|
...t
|
|
955
955
|
}) => /* @__PURE__ */ a(
|
|
956
|
-
|
|
956
|
+
Ee,
|
|
957
957
|
{
|
|
958
958
|
className: d(
|
|
959
959
|
h({ section: "content" }),
|
|
@@ -968,7 +968,7 @@ const Wa = Xt, Qa = p(
|
|
|
968
968
|
className: e,
|
|
969
969
|
...t
|
|
970
970
|
}) => /* @__PURE__ */ a(
|
|
971
|
-
|
|
971
|
+
fe,
|
|
972
972
|
{
|
|
973
973
|
className: d(
|
|
974
974
|
o({ variant: "ghost" }),
|
|
@@ -982,7 +982,7 @@ const Wa = Xt, Qa = p(
|
|
|
982
982
|
className: e,
|
|
983
983
|
...t
|
|
984
984
|
}) => /* @__PURE__ */ a(
|
|
985
|
-
|
|
985
|
+
Xe,
|
|
986
986
|
{
|
|
987
987
|
className: d("mt-8 flex flex-col gap-6", e),
|
|
988
988
|
...t
|
|
@@ -991,28 +991,28 @@ const Wa = Xt, Qa = p(
|
|
|
991
991
|
className: e,
|
|
992
992
|
...t
|
|
993
993
|
}) => /* @__PURE__ */ a(
|
|
994
|
-
|
|
994
|
+
Ye,
|
|
995
995
|
{
|
|
996
996
|
className: d("font-semibold text-xl leading-5", e),
|
|
997
997
|
...t
|
|
998
998
|
}
|
|
999
|
-
),
|
|
999
|
+
), wo = ({
|
|
1000
1000
|
className: e,
|
|
1001
1001
|
...t
|
|
1002
1002
|
}) => /* @__PURE__ */ a(
|
|
1003
|
-
|
|
1003
|
+
ke,
|
|
1004
1004
|
{
|
|
1005
1005
|
className: d("text-gray-700 dark:text-white-alpha-700 text-sm", e),
|
|
1006
1006
|
...t
|
|
1007
1007
|
}
|
|
1008
|
-
),
|
|
1008
|
+
), Po = ({
|
|
1009
1009
|
className: e,
|
|
1010
1010
|
...t
|
|
1011
|
-
}) => /* @__PURE__ */ a(
|
|
1011
|
+
}) => /* @__PURE__ */ a(ve, { className: d("w-full space-y-8", e), ...t }), Io = ({
|
|
1012
1012
|
className: e,
|
|
1013
1013
|
...t
|
|
1014
1014
|
}) => /* @__PURE__ */ a(
|
|
1015
|
-
|
|
1015
|
+
we,
|
|
1016
1016
|
{
|
|
1017
1017
|
className: d(
|
|
1018
1018
|
"group flex flex-col gap-2 data-[hidden]:hidden",
|
|
@@ -1025,7 +1025,7 @@ const Wa = Xt, Qa = p(
|
|
|
1025
1025
|
className: e,
|
|
1026
1026
|
...t
|
|
1027
1027
|
}) => /* @__PURE__ */ a(
|
|
1028
|
-
|
|
1028
|
+
Ve,
|
|
1029
1029
|
{
|
|
1030
1030
|
className: d(
|
|
1031
1031
|
"font-medium text-sm text-gray-700",
|
|
@@ -1046,7 +1046,7 @@ const Wa = Xt, Qa = p(
|
|
|
1046
1046
|
className: e,
|
|
1047
1047
|
...t
|
|
1048
1048
|
}) => /* @__PURE__ */ a(
|
|
1049
|
-
|
|
1049
|
+
Ze,
|
|
1050
1050
|
{
|
|
1051
1051
|
className: d(c({ size: "md", variant: "outline" }), e),
|
|
1052
1052
|
...t
|
|
@@ -1055,7 +1055,7 @@ const Wa = Xt, Qa = p(
|
|
|
1055
1055
|
className: e,
|
|
1056
1056
|
...t
|
|
1057
1057
|
}) => /* @__PURE__ */ a(
|
|
1058
|
-
|
|
1058
|
+
We,
|
|
1059
1059
|
{
|
|
1060
1060
|
className: d(c({ size: "md", variant: "outline" }), e),
|
|
1061
1061
|
...t
|
|
@@ -1064,7 +1064,7 @@ const Wa = Xt, Qa = p(
|
|
|
1064
1064
|
className: e,
|
|
1065
1065
|
...t
|
|
1066
1066
|
}) => /* @__PURE__ */ a(
|
|
1067
|
-
|
|
1067
|
+
je,
|
|
1068
1068
|
{
|
|
1069
1069
|
className: d(
|
|
1070
1070
|
c({ size: "md", variant: "outline" }),
|
|
@@ -1079,7 +1079,7 @@ const Wa = Xt, Qa = p(
|
|
|
1079
1079
|
className: e,
|
|
1080
1080
|
...t
|
|
1081
1081
|
}) => /* @__PURE__ */ a(
|
|
1082
|
-
|
|
1082
|
+
$e,
|
|
1083
1083
|
{
|
|
1084
1084
|
className: d(
|
|
1085
1085
|
c({ size: "md", variant: "outline" }),
|
|
@@ -1092,34 +1092,34 @@ const Wa = Xt, Qa = p(
|
|
|
1092
1092
|
className: e,
|
|
1093
1093
|
...t
|
|
1094
1094
|
}) => /* @__PURE__ */ a(
|
|
1095
|
-
|
|
1095
|
+
Pe,
|
|
1096
1096
|
{
|
|
1097
|
-
className: d(
|
|
1097
|
+
className: d(E({ slot: "root" }), e),
|
|
1098
1098
|
...t
|
|
1099
1099
|
}
|
|
1100
1100
|
), Lo = ({
|
|
1101
1101
|
className: e,
|
|
1102
1102
|
...t
|
|
1103
1103
|
}) => /* @__PURE__ */ a(
|
|
1104
|
-
|
|
1104
|
+
Ie,
|
|
1105
1105
|
{
|
|
1106
|
-
className: d(
|
|
1106
|
+
className: d(E({ slot: "indicator" }), e),
|
|
1107
1107
|
...t
|
|
1108
1108
|
}
|
|
1109
|
-
),
|
|
1109
|
+
), Do = L, Bo = ({
|
|
1110
1110
|
className: e,
|
|
1111
1111
|
...t
|
|
1112
1112
|
}) => /* @__PURE__ */ a(
|
|
1113
|
-
|
|
1113
|
+
Ke,
|
|
1114
1114
|
{
|
|
1115
1115
|
className: d(l({ slot: "trigger" }), e),
|
|
1116
1116
|
...t
|
|
1117
1117
|
}
|
|
1118
|
-
), zo =
|
|
1118
|
+
), zo = B, _o = ({
|
|
1119
1119
|
className: e,
|
|
1120
1120
|
...t
|
|
1121
1121
|
}) => /* @__PURE__ */ a(
|
|
1122
|
-
|
|
1122
|
+
Oe,
|
|
1123
1123
|
{
|
|
1124
1124
|
className: d("h-4 w-4 opacity-45", e),
|
|
1125
1125
|
...t
|
|
@@ -1128,7 +1128,7 @@ const Wa = Xt, Qa = p(
|
|
|
1128
1128
|
className: e,
|
|
1129
1129
|
...t
|
|
1130
1130
|
}) => /* @__PURE__ */ a(
|
|
1131
|
-
|
|
1131
|
+
Re,
|
|
1132
1132
|
{
|
|
1133
1133
|
className: d(l({ slot: "content" }), e),
|
|
1134
1134
|
...t
|
|
@@ -1137,7 +1137,7 @@ const Wa = Xt, Qa = p(
|
|
|
1137
1137
|
className: e,
|
|
1138
1138
|
...t
|
|
1139
1139
|
}) => /* @__PURE__ */ a(
|
|
1140
|
-
|
|
1140
|
+
Ue,
|
|
1141
1141
|
{
|
|
1142
1142
|
className: d(l({ slot: "viewport" }), e),
|
|
1143
1143
|
...t
|
|
@@ -1146,25 +1146,25 @@ const Wa = Xt, Qa = p(
|
|
|
1146
1146
|
className: e,
|
|
1147
1147
|
...t
|
|
1148
1148
|
}) => /* @__PURE__ */ a(
|
|
1149
|
-
|
|
1149
|
+
qe,
|
|
1150
1150
|
{
|
|
1151
1151
|
className: d(l({ slot: "item" }), e),
|
|
1152
1152
|
...t
|
|
1153
1153
|
}
|
|
1154
|
-
),
|
|
1154
|
+
), Vo = D, Ro = ({
|
|
1155
1155
|
className: e,
|
|
1156
1156
|
...t
|
|
1157
1157
|
}) => /* @__PURE__ */ a(
|
|
1158
|
-
|
|
1158
|
+
Ge,
|
|
1159
1159
|
{
|
|
1160
1160
|
className: d(l({ slot: "itemIndicator" }), e),
|
|
1161
1161
|
...t
|
|
1162
1162
|
}
|
|
1163
|
-
), Oo =
|
|
1163
|
+
), Oo = A, qo = ({
|
|
1164
1164
|
className: e,
|
|
1165
1165
|
...t
|
|
1166
1166
|
}) => /* @__PURE__ */ a(
|
|
1167
|
-
|
|
1167
|
+
Ne,
|
|
1168
1168
|
{
|
|
1169
1169
|
className: d(s({ slot: "control" }), e),
|
|
1170
1170
|
...t
|
|
@@ -1172,11 +1172,11 @@ const Wa = Xt, Qa = p(
|
|
|
1172
1172
|
), Go = ({
|
|
1173
1173
|
className: e,
|
|
1174
1174
|
...t
|
|
1175
|
-
}) => /* @__PURE__ */ a(
|
|
1175
|
+
}) => /* @__PURE__ */ a(De, { className: e, ...t }), Ko = ({
|
|
1176
1176
|
className: e,
|
|
1177
1177
|
...t
|
|
1178
1178
|
}) => /* @__PURE__ */ a(
|
|
1179
|
-
|
|
1179
|
+
Se,
|
|
1180
1180
|
{
|
|
1181
1181
|
className: d(s({ slot: "input" }), e),
|
|
1182
1182
|
...t
|
|
@@ -1185,7 +1185,7 @@ const Wa = Xt, Qa = p(
|
|
|
1185
1185
|
className: e,
|
|
1186
1186
|
...t
|
|
1187
1187
|
}) => /* @__PURE__ */ a(
|
|
1188
|
-
|
|
1188
|
+
ze,
|
|
1189
1189
|
{
|
|
1190
1190
|
className: d(s({ slot: "trigger" }), e),
|
|
1191
1191
|
...t
|
|
@@ -1194,7 +1194,7 @@ const Wa = Xt, Qa = p(
|
|
|
1194
1194
|
className: e,
|
|
1195
1195
|
...t
|
|
1196
1196
|
}) => /* @__PURE__ */ a(
|
|
1197
|
-
|
|
1197
|
+
Be,
|
|
1198
1198
|
{
|
|
1199
1199
|
className: d(s({ slot: "selectedTags" }), e),
|
|
1200
1200
|
...t
|
|
@@ -1203,7 +1203,7 @@ const Wa = Xt, Qa = p(
|
|
|
1203
1203
|
className: e,
|
|
1204
1204
|
...t
|
|
1205
1205
|
}) => /* @__PURE__ */ a(
|
|
1206
|
-
|
|
1206
|
+
Me,
|
|
1207
1207
|
{
|
|
1208
1208
|
className: d(s({ slot: "content" }), e),
|
|
1209
1209
|
...t
|
|
@@ -1212,16 +1212,16 @@ const Wa = Xt, Qa = p(
|
|
|
1212
1212
|
className: e,
|
|
1213
1213
|
...t
|
|
1214
1214
|
}) => /* @__PURE__ */ a(
|
|
1215
|
-
|
|
1215
|
+
He,
|
|
1216
1216
|
{
|
|
1217
1217
|
className: d(s({ slot: "list" }), e),
|
|
1218
1218
|
...t
|
|
1219
1219
|
}
|
|
1220
|
-
), Xo =
|
|
1220
|
+
), Xo = H, Yo = ({
|
|
1221
1221
|
className: e,
|
|
1222
1222
|
...t
|
|
1223
1223
|
}) => /* @__PURE__ */ a(
|
|
1224
|
-
|
|
1224
|
+
Le,
|
|
1225
1225
|
{
|
|
1226
1226
|
className: d(s({ slot: "emptyMessage" }), e),
|
|
1227
1227
|
...t
|
|
@@ -1230,16 +1230,16 @@ const Wa = Xt, Qa = p(
|
|
|
1230
1230
|
className: e,
|
|
1231
1231
|
...t
|
|
1232
1232
|
}) => /* @__PURE__ */ a(
|
|
1233
|
-
|
|
1233
|
+
Ae,
|
|
1234
1234
|
{
|
|
1235
1235
|
className: d(s({ slot: "item" }), e),
|
|
1236
1236
|
...t
|
|
1237
1237
|
}
|
|
1238
|
-
), tr =
|
|
1238
|
+
), tr = T, ar = ({
|
|
1239
1239
|
className: e,
|
|
1240
1240
|
...t
|
|
1241
1241
|
}) => /* @__PURE__ */ a(
|
|
1242
|
-
|
|
1242
|
+
Te,
|
|
1243
1243
|
{
|
|
1244
1244
|
className: d(s({ slot: "itemIndicator" }), e),
|
|
1245
1245
|
...t
|
|
@@ -1248,7 +1248,7 @@ const Wa = Xt, Qa = p(
|
|
|
1248
1248
|
className: e,
|
|
1249
1249
|
...t
|
|
1250
1250
|
}) => /* @__PURE__ */ a(
|
|
1251
|
-
|
|
1251
|
+
_e,
|
|
1252
1252
|
{
|
|
1253
1253
|
className: d(
|
|
1254
1254
|
"text-sm text-gray-600 dark:text-white-alpha-600",
|
|
@@ -1261,7 +1261,7 @@ const Wa = Xt, Qa = p(
|
|
|
1261
1261
|
className: e,
|
|
1262
1262
|
...t
|
|
1263
1263
|
}) => /* @__PURE__ */ a(
|
|
1264
|
-
|
|
1264
|
+
Qe,
|
|
1265
1265
|
{
|
|
1266
1266
|
className: d(
|
|
1267
1267
|
"text-sm flex items-center text-red-500 dark:text-red-300",
|
|
@@ -1274,7 +1274,7 @@ const Wa = Xt, Qa = p(
|
|
|
1274
1274
|
className: e,
|
|
1275
1275
|
...t
|
|
1276
1276
|
}) => /* @__PURE__ */ a(
|
|
1277
|
-
|
|
1277
|
+
ye,
|
|
1278
1278
|
{
|
|
1279
1279
|
className: d("text-red-500 dark:text-red-300", e),
|
|
1280
1280
|
...t
|
|
@@ -1283,7 +1283,7 @@ const Wa = Xt, Qa = p(
|
|
|
1283
1283
|
className: e,
|
|
1284
1284
|
...t
|
|
1285
1285
|
}) => /* @__PURE__ */ a(
|
|
1286
|
-
|
|
1286
|
+
Je,
|
|
1287
1287
|
{
|
|
1288
1288
|
className: d("flex items-center justify-end gap-4 w-full", e),
|
|
1289
1289
|
...t
|
|
@@ -1292,7 +1292,7 @@ const Wa = Xt, Qa = p(
|
|
|
1292
1292
|
className: e,
|
|
1293
1293
|
...t
|
|
1294
1294
|
}) => /* @__PURE__ */ a(
|
|
1295
|
-
|
|
1295
|
+
xe,
|
|
1296
1296
|
{
|
|
1297
1297
|
className: d(o({ variant: "outline" }), e),
|
|
1298
1298
|
...t
|
|
@@ -1301,7 +1301,7 @@ const Wa = Xt, Qa = p(
|
|
|
1301
1301
|
className: e,
|
|
1302
1302
|
...t
|
|
1303
1303
|
}) => /* @__PURE__ */ a(
|
|
1304
|
-
|
|
1304
|
+
et,
|
|
1305
1305
|
{
|
|
1306
1306
|
className: d(o({ variant: "primaryFilled" }), e),
|
|
1307
1307
|
...t
|
|
@@ -1310,7 +1310,7 @@ const Wa = Xt, Qa = p(
|
|
|
1310
1310
|
className: e,
|
|
1311
1311
|
...t
|
|
1312
1312
|
}) => /* @__PURE__ */ a(
|
|
1313
|
-
|
|
1313
|
+
tt,
|
|
1314
1314
|
{
|
|
1315
1315
|
className: d(
|
|
1316
1316
|
"flex flex-col items-center justify-center h-auto",
|
|
@@ -1323,7 +1323,7 @@ const Wa = Xt, Qa = p(
|
|
|
1323
1323
|
className: e,
|
|
1324
1324
|
...t
|
|
1325
1325
|
}) => /* @__PURE__ */ a(
|
|
1326
|
-
|
|
1326
|
+
dt,
|
|
1327
1327
|
{
|
|
1328
1328
|
className: d(
|
|
1329
1329
|
"mb-6 font-bold tracking-tight",
|
|
@@ -1332,11 +1332,11 @@ const Wa = Xt, Qa = p(
|
|
|
1332
1332
|
),
|
|
1333
1333
|
...t
|
|
1334
1334
|
}
|
|
1335
|
-
), cr =
|
|
1335
|
+
), cr = z, br = ({
|
|
1336
1336
|
className: e,
|
|
1337
1337
|
...t
|
|
1338
1338
|
}) => /* @__PURE__ */ a(
|
|
1339
|
-
|
|
1339
|
+
at,
|
|
1340
1340
|
{
|
|
1341
1341
|
className: d(o({ variant: "primaryFilled" }), "w-full mt-12 gap-2 shrink-0", e),
|
|
1342
1342
|
...t
|
|
@@ -1349,7 +1349,7 @@ export {
|
|
|
1349
1349
|
eo as ChatActionFeedback,
|
|
1350
1350
|
Yd as ChatActionLabel,
|
|
1351
1351
|
ca as ChatHistoryButton,
|
|
1352
|
-
|
|
1352
|
+
F as ChatHistoryButtonIcon,
|
|
1353
1353
|
Ga as ChatHistoryTrigger,
|
|
1354
1354
|
Ka as Content,
|
|
1355
1355
|
Ua as ContentScrollArea,
|
|
@@ -1371,32 +1371,32 @@ export {
|
|
|
1371
1371
|
id as ExampleQuestionsLabel,
|
|
1372
1372
|
sd as ExampleQuestionsList,
|
|
1373
1373
|
uo as FeedbackField,
|
|
1374
|
-
|
|
1375
|
-
|
|
1374
|
+
po as FeedbackForm,
|
|
1375
|
+
Fo as FeedbackItemDescription,
|
|
1376
1376
|
go as FeedbackItemLabel,
|
|
1377
1377
|
lo as FeedbackModal,
|
|
1378
|
-
|
|
1378
|
+
Co as FeedbackModalBody,
|
|
1379
1379
|
ho as FeedbackModalClose,
|
|
1380
1380
|
co as FeedbackModalContent,
|
|
1381
1381
|
bo as FeedbackModalHeader,
|
|
1382
1382
|
no as FeedbackModalOverlay,
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1383
|
+
Eo as FeedbackSubmitButton,
|
|
1384
|
+
Fr as FileContent,
|
|
1385
|
+
Er as FileInput,
|
|
1386
1386
|
xr as FileItem,
|
|
1387
1387
|
fr as FileList,
|
|
1388
1388
|
vr as FileName,
|
|
1389
1389
|
kr as FilePreviewTrigger,
|
|
1390
1390
|
yr as FileRemove,
|
|
1391
|
-
|
|
1392
|
-
|
|
1391
|
+
wr as FileThumbnail,
|
|
1392
|
+
Pr as FileTypeIcon,
|
|
1393
1393
|
Ir as FileUploadButton,
|
|
1394
1394
|
jd as Footer,
|
|
1395
1395
|
fo as Form,
|
|
1396
1396
|
sr as FormCancel,
|
|
1397
1397
|
vo as FormClose,
|
|
1398
|
-
|
|
1399
|
-
|
|
1398
|
+
Po as FormContent,
|
|
1399
|
+
wo as FormDescription,
|
|
1400
1400
|
rr as FormError,
|
|
1401
1401
|
Io as FormField,
|
|
1402
1402
|
Ho as FormFieldCheckbox,
|
|
@@ -1419,13 +1419,13 @@ export {
|
|
|
1419
1419
|
or as FormFieldError,
|
|
1420
1420
|
Ao as FormFieldFile,
|
|
1421
1421
|
Mo as FormFieldLabel,
|
|
1422
|
-
|
|
1422
|
+
Do as FormFieldSelect,
|
|
1423
1423
|
Wo as FormFieldSelectContent,
|
|
1424
1424
|
_o as FormFieldSelectIcon,
|
|
1425
1425
|
jo as FormFieldSelectItem,
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1426
|
+
Ro as FormFieldSelectItemIndicator,
|
|
1427
|
+
Vo as FormFieldSelectItemText,
|
|
1428
|
+
Bo as FormFieldSelectTrigger,
|
|
1429
1429
|
zo as FormFieldSelectValue,
|
|
1430
1430
|
Qo as FormFieldSelectViewport,
|
|
1431
1431
|
No as FormFieldText,
|
|
@@ -1439,8 +1439,8 @@ export {
|
|
|
1439
1439
|
nr as FormSuccessHeading,
|
|
1440
1440
|
cr as FormSuccessMessage,
|
|
1441
1441
|
xo as FormWrapper,
|
|
1442
|
-
|
|
1443
|
-
|
|
1442
|
+
Va as Header,
|
|
1443
|
+
Ra as HeaderToolbar,
|
|
1444
1444
|
Oa as HeaderToolbarWrapper,
|
|
1445
1445
|
ao as HelpAction,
|
|
1446
1446
|
to as HelpActions,
|
|
@@ -1454,11 +1454,11 @@ export {
|
|
|
1454
1454
|
Wr as ImagePreviewModalContent,
|
|
1455
1455
|
Qr as ImagePreviewModalFileName,
|
|
1456
1456
|
jr as ImagePreviewModalFooter,
|
|
1457
|
-
|
|
1458
|
-
|
|
1457
|
+
Vr as ImagePreviewModalImage,
|
|
1458
|
+
Rr as ImagePreviewModalOverlay,
|
|
1459
1459
|
Od as Input,
|
|
1460
|
-
|
|
1461
|
-
|
|
1460
|
+
Vd as InputFieldset,
|
|
1461
|
+
Rd as InputGroup,
|
|
1462
1462
|
Mr as InputNotification,
|
|
1463
1463
|
Nr as InputNotificationClose,
|
|
1464
1464
|
Sr as InputNotificationContent,
|
|
@@ -1470,34 +1470,34 @@ export {
|
|
|
1470
1470
|
Md as MessageAction,
|
|
1471
1471
|
ud as MessageAvatar,
|
|
1472
1472
|
gd as MessageAvatarContent,
|
|
1473
|
-
|
|
1474
|
-
|
|
1473
|
+
Fd as MessageAvatarFallback,
|
|
1474
|
+
Ed as MessageAvatarImage,
|
|
1475
1475
|
vd as MessageContent,
|
|
1476
1476
|
fd as MessageContentWrapper,
|
|
1477
1477
|
Id as MessageCustomAction,
|
|
1478
|
-
|
|
1478
|
+
Pd as MessageCustomActions,
|
|
1479
1479
|
Lr as MessageFile,
|
|
1480
|
-
|
|
1480
|
+
Dr as MessageFiles,
|
|
1481
1481
|
hd as MessageHeader,
|
|
1482
|
-
|
|
1482
|
+
Cd as MessageLoading,
|
|
1483
1483
|
xd as MessageName,
|
|
1484
|
-
|
|
1484
|
+
pr as MessagePart,
|
|
1485
1485
|
Td as MessageSourceItem,
|
|
1486
1486
|
Ld as MessageSourceItemBreadcrumbIcon,
|
|
1487
1487
|
Hd as MessageSourceItemBreadcrumbs,
|
|
1488
1488
|
_d as MessageSourceItemDescription,
|
|
1489
1489
|
Wd as MessageSourceItemDescriptionPart,
|
|
1490
|
-
|
|
1490
|
+
Dd as MessageSourceItemIcon,
|
|
1491
1491
|
Qd as MessageSourceItemIndicator,
|
|
1492
1492
|
zd as MessageSourceItemTag,
|
|
1493
|
-
|
|
1493
|
+
Bd as MessageSourceItemTitle,
|
|
1494
1494
|
Nd as MessageSources,
|
|
1495
1495
|
Sd as MessageSourcesHeader,
|
|
1496
1496
|
Ad as MessageSourcesList,
|
|
1497
|
-
|
|
1497
|
+
wd as MessageToolbar,
|
|
1498
1498
|
cd as MessageWrapper,
|
|
1499
1499
|
nd as Messages,
|
|
1500
|
-
|
|
1500
|
+
pd as MessagesSessionLoading,
|
|
1501
1501
|
Wa as Provider,
|
|
1502
1502
|
ja as Root,
|
|
1503
1503
|
qd as SendButton,
|