@inkeep/agents-ui 0.16.0 → 0.16.2
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 +167 -161
- 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/icons/built-in-icons.cjs +1 -1
- package/dist/primitives/atoms/icons/built-in-icons.d.ts +4 -1
- package/dist/primitives/atoms/icons/built-in-icons.js +94 -91
- package/dist/primitives/atoms/icons/collections/pi.cjs +1 -1
- package/dist/primitives/atoms/icons/collections/pi.d.ts +3 -0
- package/dist/primitives/atoms/icons/collections/pi.js +82 -37
- package/dist/primitives/atoms/icons/inkeep-default-icons.cjs +1 -1
- package/dist/primitives/atoms/icons/inkeep-default-icons.js +4 -1
- 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 -2
- package/dist/primitives/components/embedded-chat/file-upload-input.js +359 -217
- package/dist/primitives/components/embedded-chat/image-preview-modal.js +3 -3
- package/dist/primitives/components/embedded-chat/use-chat-action.cjs +1 -1
- package/dist/primitives/components/embedded-chat/use-chat-action.js +16 -14
- 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 +312 -284
- 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 +2 -3
- package/dist/primitives/components/embedded-chat.js +122 -114
- 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/components/tagline-logo-icon.js +50 -9
- package/dist/primitives/hooks/use-events-api.cjs +1 -0
- package/dist/primitives/hooks/use-events-api.d.ts +29 -0
- package/dist/primitives/hooks/use-events-api.js +43 -0
- package/dist/primitives/hooks/use-initial-conversation.js +4 -1
- package/dist/primitives/hooks/use-input-notification.js +9 -9
- package/dist/primitives/index.cjs +1 -1
- package/dist/primitives/index.js +150 -144
- package/dist/primitives/providers/base-events-provider.cjs +1 -1
- package/dist/primitives/providers/base-events-provider.d.ts +2 -0
- package/dist/primitives/providers/base-events-provider.js +23 -22
- package/dist/primitives/providers/chat-auth-provider.cjs +1 -0
- package/dist/primitives/providers/chat-auth-provider.d.ts +27 -0
- package/dist/primitives/providers/chat-auth-provider.js +46 -0
- package/dist/primitives/providers/chat-base-events-provider.cjs +1 -0
- package/dist/primitives/providers/chat-base-events-provider.d.ts +12 -0
- package/dist/primitives/providers/chat-base-events-provider.js +73 -0
- 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.cjs +1 -1
- package/dist/primitives/providers/feedback-provider.js +37 -31
- 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/index.cjs +1 -1
- package/dist/primitives/providers/index.d.ts +2 -0
- package/dist/primitives/providers/index.js +57 -51
- 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/misc.cjs +1 -1
- package/dist/primitives/utils/misc.js +2 -2
- package/dist/react/chat-button.js +1 -1
- package/dist/react/embedded-chat.cjs +1 -1
- package/dist/react/embedded-chat.js +104 -102
- 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 +167 -161
- 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 +14 -7
- package/dist/styled/components/embedded-chat.cjs +1 -1
- package/dist/styled/components/embedded-chat.js +211 -199
- package/dist/styled/components/embedded-search.cjs +1 -1
- package/dist/styled/components/embedded-search.js +72 -66
- 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 +142 -139
- 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 +155 -149
- 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 +5 -0
- package/dist/types/events.d.ts +11 -0
- package/dist/types/icons/built-in.d.ts +1 -1
- package/dist/types/icons/custom.d.ts +3 -0
- package/package.json +2 -2
- 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,11 +774,17 @@ 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,
|
|
781
|
-
children: /* @__PURE__ */ a(
|
|
781
|
+
children: /* @__PURE__ */ a(
|
|
782
|
+
ma,
|
|
783
|
+
{
|
|
784
|
+
className: "text-gray-500 dark:text-white-alpha-600 ml-1 mt-0.5 w-11 h-auto",
|
|
785
|
+
"aria-hidden": "true"
|
|
786
|
+
}
|
|
787
|
+
)
|
|
782
788
|
}
|
|
783
789
|
), u = d(
|
|
784
790
|
o({ size: "xs", variant: "outline" }),
|
|
@@ -786,14 +792,14 @@ const Wa = Xt, Qa = p(
|
|
|
786
792
|
), Xd = ({
|
|
787
793
|
className: e,
|
|
788
794
|
...t
|
|
789
|
-
}) => /* @__PURE__ */ a(
|
|
795
|
+
}) => /* @__PURE__ */ a(V, { className: d(u, e), ...t }), Yd = ({
|
|
790
796
|
className: e,
|
|
791
797
|
...t
|
|
792
|
-
}) => /* @__PURE__ */ a(
|
|
798
|
+
}) => /* @__PURE__ */ a(O, { className: d("cursor-pointer", e), ...t }), eo = ({
|
|
793
799
|
className: e,
|
|
794
800
|
...t
|
|
795
801
|
}) => /* @__PURE__ */ a(
|
|
796
|
-
|
|
802
|
+
R,
|
|
797
803
|
{
|
|
798
804
|
className: d(
|
|
799
805
|
"bg-white text-gray-800 fill-white",
|
|
@@ -804,14 +810,14 @@ const Wa = Xt, Qa = p(
|
|
|
804
810
|
),
|
|
805
811
|
...t
|
|
806
812
|
}
|
|
807
|
-
), to =
|
|
813
|
+
), to = _, ao = ({
|
|
808
814
|
className: e,
|
|
809
815
|
...t
|
|
810
|
-
}) => /* @__PURE__ */ a(
|
|
816
|
+
}) => /* @__PURE__ */ a(mt, { className: d(u, e), ...t }), oo = ({
|
|
811
817
|
className: e,
|
|
812
818
|
...t
|
|
813
819
|
}) => /* @__PURE__ */ a(
|
|
814
|
-
|
|
820
|
+
ht,
|
|
815
821
|
{
|
|
816
822
|
className: d(u, e),
|
|
817
823
|
...t
|
|
@@ -820,7 +826,7 @@ const Wa = Xt, Qa = p(
|
|
|
820
826
|
className: e,
|
|
821
827
|
...t
|
|
822
828
|
}) => /* @__PURE__ */ a(
|
|
823
|
-
|
|
829
|
+
lt,
|
|
824
830
|
{
|
|
825
831
|
className: d(
|
|
826
832
|
b({ slot: "content" }),
|
|
@@ -834,7 +840,7 @@ const Wa = Xt, Qa = p(
|
|
|
834
840
|
className: e,
|
|
835
841
|
...t
|
|
836
842
|
}) => /* @__PURE__ */ a(
|
|
837
|
-
|
|
843
|
+
nt,
|
|
838
844
|
{
|
|
839
845
|
className: d(b({ slot: "arrow" }), e),
|
|
840
846
|
...t
|
|
@@ -843,7 +849,7 @@ const Wa = Xt, Qa = p(
|
|
|
843
849
|
className: e,
|
|
844
850
|
...t
|
|
845
851
|
}) => /* @__PURE__ */ a(
|
|
846
|
-
|
|
852
|
+
ct,
|
|
847
853
|
{
|
|
848
854
|
className: d("flex items-center cursor-pointer hover:underline", e),
|
|
849
855
|
...t
|
|
@@ -852,16 +858,16 @@ const Wa = Xt, Qa = p(
|
|
|
852
858
|
className: e,
|
|
853
859
|
...t
|
|
854
860
|
}) => /* @__PURE__ */ a(
|
|
855
|
-
|
|
861
|
+
bt,
|
|
856
862
|
{
|
|
857
863
|
className: d("mr-2 text-inkeep-primary-medium", e),
|
|
858
864
|
...t
|
|
859
865
|
}
|
|
860
|
-
), lo =
|
|
866
|
+
), lo = S, no = ({
|
|
861
867
|
className: e,
|
|
862
868
|
...t
|
|
863
869
|
}) => /* @__PURE__ */ a(
|
|
864
|
-
|
|
870
|
+
ue,
|
|
865
871
|
{
|
|
866
872
|
className: d(m({ slot: "overlay" }), e),
|
|
867
873
|
...t
|
|
@@ -870,7 +876,7 @@ const Wa = Xt, Qa = p(
|
|
|
870
876
|
className: e,
|
|
871
877
|
...t
|
|
872
878
|
}) => /* @__PURE__ */ a(
|
|
873
|
-
|
|
879
|
+
Ce,
|
|
874
880
|
{
|
|
875
881
|
className: d(
|
|
876
882
|
m({ slot: "content" }),
|
|
@@ -884,7 +890,7 @@ const Wa = Xt, Qa = p(
|
|
|
884
890
|
className: e,
|
|
885
891
|
...t
|
|
886
892
|
}) => /* @__PURE__ */ a(
|
|
887
|
-
|
|
893
|
+
pe,
|
|
888
894
|
{
|
|
889
895
|
className: d(m({ slot: "header" }), "px-0 pt-0 pb-6", "font-semibold", e),
|
|
890
896
|
...t
|
|
@@ -893,49 +899,55 @@ const Wa = Xt, Qa = p(
|
|
|
893
899
|
className: e,
|
|
894
900
|
...t
|
|
895
901
|
}) => /* @__PURE__ */ a(
|
|
896
|
-
|
|
902
|
+
he,
|
|
897
903
|
{
|
|
898
904
|
className: d(m({ slot: "close" }), e),
|
|
899
905
|
...t
|
|
900
906
|
}
|
|
901
|
-
),
|
|
907
|
+
), Co = ({
|
|
902
908
|
className: e,
|
|
903
909
|
...t
|
|
904
910
|
}) => /* @__PURE__ */ a(
|
|
905
|
-
|
|
911
|
+
be,
|
|
906
912
|
{
|
|
907
913
|
className: d(m({ slot: "body" }), "p-0", e),
|
|
908
914
|
...t
|
|
909
915
|
}
|
|
910
|
-
),
|
|
916
|
+
), po = ({
|
|
911
917
|
className: e,
|
|
912
918
|
...t
|
|
913
|
-
}) => /* @__PURE__ */ a(
|
|
919
|
+
}) => /* @__PURE__ */ a(le, { className: d("flex flex-col gap-8", e), ...t }), uo = ({
|
|
914
920
|
className: e,
|
|
915
921
|
...t
|
|
916
|
-
}) => /* @__PURE__ */ a(
|
|
922
|
+
}) => /* @__PURE__ */ a(
|
|
923
|
+
me,
|
|
924
|
+
{
|
|
925
|
+
className: d("flex flex-col gap-2", e),
|
|
926
|
+
...t
|
|
927
|
+
}
|
|
928
|
+
), go = ({
|
|
917
929
|
className: e,
|
|
918
930
|
...t
|
|
919
931
|
}) => /* @__PURE__ */ a(
|
|
920
|
-
|
|
932
|
+
ce,
|
|
921
933
|
{
|
|
922
934
|
className: d("font-medium text-sm", "text-gray-700 dark:text-white-alpha-700", e),
|
|
923
935
|
...t
|
|
924
936
|
}
|
|
925
|
-
),
|
|
937
|
+
), Fo = ({
|
|
926
938
|
className: e,
|
|
927
939
|
...t
|
|
928
940
|
}) => /* @__PURE__ */ a(
|
|
929
|
-
|
|
941
|
+
ne,
|
|
930
942
|
{
|
|
931
943
|
className: d("flex-[0_0_100%]", "min-h-20 border rounded-md", "px-3 py-2 text-sm", e),
|
|
932
944
|
...t
|
|
933
945
|
}
|
|
934
|
-
),
|
|
946
|
+
), Eo = ({
|
|
935
947
|
className: e,
|
|
936
948
|
...t
|
|
937
949
|
}) => /* @__PURE__ */ a(
|
|
938
|
-
|
|
950
|
+
ge,
|
|
939
951
|
{
|
|
940
952
|
className: d(o({ variant: "primaryFilled" }), "ml-auto", e),
|
|
941
953
|
...t
|
|
@@ -944,7 +956,7 @@ const Wa = Xt, Qa = p(
|
|
|
944
956
|
className: e,
|
|
945
957
|
...t
|
|
946
958
|
}) => /* @__PURE__ */ a(
|
|
947
|
-
|
|
959
|
+
ot,
|
|
948
960
|
{
|
|
949
961
|
className: d("w-full overflow-y-auto [scrollbar-width:thin]", e),
|
|
950
962
|
...t
|
|
@@ -953,7 +965,7 @@ const Wa = Xt, Qa = p(
|
|
|
953
965
|
className: e,
|
|
954
966
|
...t
|
|
955
967
|
}) => /* @__PURE__ */ a(
|
|
956
|
-
|
|
968
|
+
Ee,
|
|
957
969
|
{
|
|
958
970
|
className: d(
|
|
959
971
|
h({ section: "content" }),
|
|
@@ -968,7 +980,7 @@ const Wa = Xt, Qa = p(
|
|
|
968
980
|
className: e,
|
|
969
981
|
...t
|
|
970
982
|
}) => /* @__PURE__ */ a(
|
|
971
|
-
|
|
983
|
+
fe,
|
|
972
984
|
{
|
|
973
985
|
className: d(
|
|
974
986
|
o({ variant: "ghost" }),
|
|
@@ -982,7 +994,7 @@ const Wa = Xt, Qa = p(
|
|
|
982
994
|
className: e,
|
|
983
995
|
...t
|
|
984
996
|
}) => /* @__PURE__ */ a(
|
|
985
|
-
|
|
997
|
+
Xe,
|
|
986
998
|
{
|
|
987
999
|
className: d("mt-8 flex flex-col gap-6", e),
|
|
988
1000
|
...t
|
|
@@ -991,28 +1003,28 @@ const Wa = Xt, Qa = p(
|
|
|
991
1003
|
className: e,
|
|
992
1004
|
...t
|
|
993
1005
|
}) => /* @__PURE__ */ a(
|
|
994
|
-
|
|
1006
|
+
Ye,
|
|
995
1007
|
{
|
|
996
1008
|
className: d("font-semibold text-xl leading-5", e),
|
|
997
1009
|
...t
|
|
998
1010
|
}
|
|
999
|
-
),
|
|
1011
|
+
), wo = ({
|
|
1000
1012
|
className: e,
|
|
1001
1013
|
...t
|
|
1002
1014
|
}) => /* @__PURE__ */ a(
|
|
1003
|
-
|
|
1015
|
+
ke,
|
|
1004
1016
|
{
|
|
1005
1017
|
className: d("text-gray-700 dark:text-white-alpha-700 text-sm", e),
|
|
1006
1018
|
...t
|
|
1007
1019
|
}
|
|
1008
|
-
),
|
|
1020
|
+
), Po = ({
|
|
1009
1021
|
className: e,
|
|
1010
1022
|
...t
|
|
1011
|
-
}) => /* @__PURE__ */ a(
|
|
1023
|
+
}) => /* @__PURE__ */ a(ve, { className: d("w-full space-y-8", e), ...t }), Io = ({
|
|
1012
1024
|
className: e,
|
|
1013
1025
|
...t
|
|
1014
1026
|
}) => /* @__PURE__ */ a(
|
|
1015
|
-
|
|
1027
|
+
we,
|
|
1016
1028
|
{
|
|
1017
1029
|
className: d(
|
|
1018
1030
|
"group flex flex-col gap-2 data-[hidden]:hidden",
|
|
@@ -1025,7 +1037,7 @@ const Wa = Xt, Qa = p(
|
|
|
1025
1037
|
className: e,
|
|
1026
1038
|
...t
|
|
1027
1039
|
}) => /* @__PURE__ */ a(
|
|
1028
|
-
|
|
1040
|
+
Ve,
|
|
1029
1041
|
{
|
|
1030
1042
|
className: d(
|
|
1031
1043
|
"font-medium text-sm text-gray-700",
|
|
@@ -1046,7 +1058,7 @@ const Wa = Xt, Qa = p(
|
|
|
1046
1058
|
className: e,
|
|
1047
1059
|
...t
|
|
1048
1060
|
}) => /* @__PURE__ */ a(
|
|
1049
|
-
|
|
1061
|
+
Ze,
|
|
1050
1062
|
{
|
|
1051
1063
|
className: d(c({ size: "md", variant: "outline" }), e),
|
|
1052
1064
|
...t
|
|
@@ -1055,7 +1067,7 @@ const Wa = Xt, Qa = p(
|
|
|
1055
1067
|
className: e,
|
|
1056
1068
|
...t
|
|
1057
1069
|
}) => /* @__PURE__ */ a(
|
|
1058
|
-
|
|
1070
|
+
We,
|
|
1059
1071
|
{
|
|
1060
1072
|
className: d(c({ size: "md", variant: "outline" }), e),
|
|
1061
1073
|
...t
|
|
@@ -1064,7 +1076,7 @@ const Wa = Xt, Qa = p(
|
|
|
1064
1076
|
className: e,
|
|
1065
1077
|
...t
|
|
1066
1078
|
}) => /* @__PURE__ */ a(
|
|
1067
|
-
|
|
1079
|
+
je,
|
|
1068
1080
|
{
|
|
1069
1081
|
className: d(
|
|
1070
1082
|
c({ size: "md", variant: "outline" }),
|
|
@@ -1079,7 +1091,7 @@ const Wa = Xt, Qa = p(
|
|
|
1079
1091
|
className: e,
|
|
1080
1092
|
...t
|
|
1081
1093
|
}) => /* @__PURE__ */ a(
|
|
1082
|
-
|
|
1094
|
+
$e,
|
|
1083
1095
|
{
|
|
1084
1096
|
className: d(
|
|
1085
1097
|
c({ size: "md", variant: "outline" }),
|
|
@@ -1092,34 +1104,34 @@ const Wa = Xt, Qa = p(
|
|
|
1092
1104
|
className: e,
|
|
1093
1105
|
...t
|
|
1094
1106
|
}) => /* @__PURE__ */ a(
|
|
1095
|
-
|
|
1107
|
+
Pe,
|
|
1096
1108
|
{
|
|
1097
|
-
className: d(
|
|
1109
|
+
className: d(E({ slot: "root" }), e),
|
|
1098
1110
|
...t
|
|
1099
1111
|
}
|
|
1100
1112
|
), Lo = ({
|
|
1101
1113
|
className: e,
|
|
1102
1114
|
...t
|
|
1103
1115
|
}) => /* @__PURE__ */ a(
|
|
1104
|
-
|
|
1116
|
+
Ie,
|
|
1105
1117
|
{
|
|
1106
|
-
className: d(
|
|
1118
|
+
className: d(E({ slot: "indicator" }), e),
|
|
1107
1119
|
...t
|
|
1108
1120
|
}
|
|
1109
|
-
),
|
|
1121
|
+
), Do = L, Bo = ({
|
|
1110
1122
|
className: e,
|
|
1111
1123
|
...t
|
|
1112
1124
|
}) => /* @__PURE__ */ a(
|
|
1113
|
-
|
|
1125
|
+
Ke,
|
|
1114
1126
|
{
|
|
1115
1127
|
className: d(l({ slot: "trigger" }), e),
|
|
1116
1128
|
...t
|
|
1117
1129
|
}
|
|
1118
|
-
), zo =
|
|
1130
|
+
), zo = B, _o = ({
|
|
1119
1131
|
className: e,
|
|
1120
1132
|
...t
|
|
1121
1133
|
}) => /* @__PURE__ */ a(
|
|
1122
|
-
|
|
1134
|
+
Oe,
|
|
1123
1135
|
{
|
|
1124
1136
|
className: d("h-4 w-4 opacity-45", e),
|
|
1125
1137
|
...t
|
|
@@ -1128,7 +1140,7 @@ const Wa = Xt, Qa = p(
|
|
|
1128
1140
|
className: e,
|
|
1129
1141
|
...t
|
|
1130
1142
|
}) => /* @__PURE__ */ a(
|
|
1131
|
-
|
|
1143
|
+
Re,
|
|
1132
1144
|
{
|
|
1133
1145
|
className: d(l({ slot: "content" }), e),
|
|
1134
1146
|
...t
|
|
@@ -1137,7 +1149,7 @@ const Wa = Xt, Qa = p(
|
|
|
1137
1149
|
className: e,
|
|
1138
1150
|
...t
|
|
1139
1151
|
}) => /* @__PURE__ */ a(
|
|
1140
|
-
|
|
1152
|
+
Ue,
|
|
1141
1153
|
{
|
|
1142
1154
|
className: d(l({ slot: "viewport" }), e),
|
|
1143
1155
|
...t
|
|
@@ -1146,25 +1158,25 @@ const Wa = Xt, Qa = p(
|
|
|
1146
1158
|
className: e,
|
|
1147
1159
|
...t
|
|
1148
1160
|
}) => /* @__PURE__ */ a(
|
|
1149
|
-
|
|
1161
|
+
qe,
|
|
1150
1162
|
{
|
|
1151
1163
|
className: d(l({ slot: "item" }), e),
|
|
1152
1164
|
...t
|
|
1153
1165
|
}
|
|
1154
|
-
),
|
|
1166
|
+
), Vo = D, Ro = ({
|
|
1155
1167
|
className: e,
|
|
1156
1168
|
...t
|
|
1157
1169
|
}) => /* @__PURE__ */ a(
|
|
1158
|
-
|
|
1170
|
+
Ge,
|
|
1159
1171
|
{
|
|
1160
1172
|
className: d(l({ slot: "itemIndicator" }), e),
|
|
1161
1173
|
...t
|
|
1162
1174
|
}
|
|
1163
|
-
), Oo =
|
|
1175
|
+
), Oo = A, qo = ({
|
|
1164
1176
|
className: e,
|
|
1165
1177
|
...t
|
|
1166
1178
|
}) => /* @__PURE__ */ a(
|
|
1167
|
-
|
|
1179
|
+
Ne,
|
|
1168
1180
|
{
|
|
1169
1181
|
className: d(s({ slot: "control" }), e),
|
|
1170
1182
|
...t
|
|
@@ -1172,11 +1184,11 @@ const Wa = Xt, Qa = p(
|
|
|
1172
1184
|
), Go = ({
|
|
1173
1185
|
className: e,
|
|
1174
1186
|
...t
|
|
1175
|
-
}) => /* @__PURE__ */ a(
|
|
1187
|
+
}) => /* @__PURE__ */ a(De, { className: e, ...t }), Ko = ({
|
|
1176
1188
|
className: e,
|
|
1177
1189
|
...t
|
|
1178
1190
|
}) => /* @__PURE__ */ a(
|
|
1179
|
-
|
|
1191
|
+
Se,
|
|
1180
1192
|
{
|
|
1181
1193
|
className: d(s({ slot: "input" }), e),
|
|
1182
1194
|
...t
|
|
@@ -1185,7 +1197,7 @@ const Wa = Xt, Qa = p(
|
|
|
1185
1197
|
className: e,
|
|
1186
1198
|
...t
|
|
1187
1199
|
}) => /* @__PURE__ */ a(
|
|
1188
|
-
|
|
1200
|
+
ze,
|
|
1189
1201
|
{
|
|
1190
1202
|
className: d(s({ slot: "trigger" }), e),
|
|
1191
1203
|
...t
|
|
@@ -1194,7 +1206,7 @@ const Wa = Xt, Qa = p(
|
|
|
1194
1206
|
className: e,
|
|
1195
1207
|
...t
|
|
1196
1208
|
}) => /* @__PURE__ */ a(
|
|
1197
|
-
|
|
1209
|
+
Be,
|
|
1198
1210
|
{
|
|
1199
1211
|
className: d(s({ slot: "selectedTags" }), e),
|
|
1200
1212
|
...t
|
|
@@ -1203,7 +1215,7 @@ const Wa = Xt, Qa = p(
|
|
|
1203
1215
|
className: e,
|
|
1204
1216
|
...t
|
|
1205
1217
|
}) => /* @__PURE__ */ a(
|
|
1206
|
-
|
|
1218
|
+
Me,
|
|
1207
1219
|
{
|
|
1208
1220
|
className: d(s({ slot: "content" }), e),
|
|
1209
1221
|
...t
|
|
@@ -1212,16 +1224,16 @@ const Wa = Xt, Qa = p(
|
|
|
1212
1224
|
className: e,
|
|
1213
1225
|
...t
|
|
1214
1226
|
}) => /* @__PURE__ */ a(
|
|
1215
|
-
|
|
1227
|
+
He,
|
|
1216
1228
|
{
|
|
1217
1229
|
className: d(s({ slot: "list" }), e),
|
|
1218
1230
|
...t
|
|
1219
1231
|
}
|
|
1220
|
-
), Xo =
|
|
1232
|
+
), Xo = H, Yo = ({
|
|
1221
1233
|
className: e,
|
|
1222
1234
|
...t
|
|
1223
1235
|
}) => /* @__PURE__ */ a(
|
|
1224
|
-
|
|
1236
|
+
Le,
|
|
1225
1237
|
{
|
|
1226
1238
|
className: d(s({ slot: "emptyMessage" }), e),
|
|
1227
1239
|
...t
|
|
@@ -1230,16 +1242,16 @@ const Wa = Xt, Qa = p(
|
|
|
1230
1242
|
className: e,
|
|
1231
1243
|
...t
|
|
1232
1244
|
}) => /* @__PURE__ */ a(
|
|
1233
|
-
|
|
1245
|
+
Ae,
|
|
1234
1246
|
{
|
|
1235
1247
|
className: d(s({ slot: "item" }), e),
|
|
1236
1248
|
...t
|
|
1237
1249
|
}
|
|
1238
|
-
), tr =
|
|
1250
|
+
), tr = T, ar = ({
|
|
1239
1251
|
className: e,
|
|
1240
1252
|
...t
|
|
1241
1253
|
}) => /* @__PURE__ */ a(
|
|
1242
|
-
|
|
1254
|
+
Te,
|
|
1243
1255
|
{
|
|
1244
1256
|
className: d(s({ slot: "itemIndicator" }), e),
|
|
1245
1257
|
...t
|
|
@@ -1248,7 +1260,7 @@ const Wa = Xt, Qa = p(
|
|
|
1248
1260
|
className: e,
|
|
1249
1261
|
...t
|
|
1250
1262
|
}) => /* @__PURE__ */ a(
|
|
1251
|
-
|
|
1263
|
+
_e,
|
|
1252
1264
|
{
|
|
1253
1265
|
className: d(
|
|
1254
1266
|
"text-sm text-gray-600 dark:text-white-alpha-600",
|
|
@@ -1261,7 +1273,7 @@ const Wa = Xt, Qa = p(
|
|
|
1261
1273
|
className: e,
|
|
1262
1274
|
...t
|
|
1263
1275
|
}) => /* @__PURE__ */ a(
|
|
1264
|
-
|
|
1276
|
+
Qe,
|
|
1265
1277
|
{
|
|
1266
1278
|
className: d(
|
|
1267
1279
|
"text-sm flex items-center text-red-500 dark:text-red-300",
|
|
@@ -1274,7 +1286,7 @@ const Wa = Xt, Qa = p(
|
|
|
1274
1286
|
className: e,
|
|
1275
1287
|
...t
|
|
1276
1288
|
}) => /* @__PURE__ */ a(
|
|
1277
|
-
|
|
1289
|
+
ye,
|
|
1278
1290
|
{
|
|
1279
1291
|
className: d("text-red-500 dark:text-red-300", e),
|
|
1280
1292
|
...t
|
|
@@ -1283,7 +1295,7 @@ const Wa = Xt, Qa = p(
|
|
|
1283
1295
|
className: e,
|
|
1284
1296
|
...t
|
|
1285
1297
|
}) => /* @__PURE__ */ a(
|
|
1286
|
-
|
|
1298
|
+
Je,
|
|
1287
1299
|
{
|
|
1288
1300
|
className: d("flex items-center justify-end gap-4 w-full", e),
|
|
1289
1301
|
...t
|
|
@@ -1292,7 +1304,7 @@ const Wa = Xt, Qa = p(
|
|
|
1292
1304
|
className: e,
|
|
1293
1305
|
...t
|
|
1294
1306
|
}) => /* @__PURE__ */ a(
|
|
1295
|
-
|
|
1307
|
+
xe,
|
|
1296
1308
|
{
|
|
1297
1309
|
className: d(o({ variant: "outline" }), e),
|
|
1298
1310
|
...t
|
|
@@ -1301,7 +1313,7 @@ const Wa = Xt, Qa = p(
|
|
|
1301
1313
|
className: e,
|
|
1302
1314
|
...t
|
|
1303
1315
|
}) => /* @__PURE__ */ a(
|
|
1304
|
-
|
|
1316
|
+
et,
|
|
1305
1317
|
{
|
|
1306
1318
|
className: d(o({ variant: "primaryFilled" }), e),
|
|
1307
1319
|
...t
|
|
@@ -1310,7 +1322,7 @@ const Wa = Xt, Qa = p(
|
|
|
1310
1322
|
className: e,
|
|
1311
1323
|
...t
|
|
1312
1324
|
}) => /* @__PURE__ */ a(
|
|
1313
|
-
|
|
1325
|
+
tt,
|
|
1314
1326
|
{
|
|
1315
1327
|
className: d(
|
|
1316
1328
|
"flex flex-col items-center justify-center h-auto",
|
|
@@ -1323,7 +1335,7 @@ const Wa = Xt, Qa = p(
|
|
|
1323
1335
|
className: e,
|
|
1324
1336
|
...t
|
|
1325
1337
|
}) => /* @__PURE__ */ a(
|
|
1326
|
-
|
|
1338
|
+
dt,
|
|
1327
1339
|
{
|
|
1328
1340
|
className: d(
|
|
1329
1341
|
"mb-6 font-bold tracking-tight",
|
|
@@ -1332,11 +1344,11 @@ const Wa = Xt, Qa = p(
|
|
|
1332
1344
|
),
|
|
1333
1345
|
...t
|
|
1334
1346
|
}
|
|
1335
|
-
), cr =
|
|
1347
|
+
), cr = z, br = ({
|
|
1336
1348
|
className: e,
|
|
1337
1349
|
...t
|
|
1338
1350
|
}) => /* @__PURE__ */ a(
|
|
1339
|
-
|
|
1351
|
+
at,
|
|
1340
1352
|
{
|
|
1341
1353
|
className: d(o({ variant: "primaryFilled" }), "w-full mt-12 gap-2 shrink-0", e),
|
|
1342
1354
|
...t
|
|
@@ -1349,7 +1361,7 @@ export {
|
|
|
1349
1361
|
eo as ChatActionFeedback,
|
|
1350
1362
|
Yd as ChatActionLabel,
|
|
1351
1363
|
ca as ChatHistoryButton,
|
|
1352
|
-
|
|
1364
|
+
F as ChatHistoryButtonIcon,
|
|
1353
1365
|
Ga as ChatHistoryTrigger,
|
|
1354
1366
|
Ka as Content,
|
|
1355
1367
|
Ua as ContentScrollArea,
|
|
@@ -1371,32 +1383,32 @@ export {
|
|
|
1371
1383
|
id as ExampleQuestionsLabel,
|
|
1372
1384
|
sd as ExampleQuestionsList,
|
|
1373
1385
|
uo as FeedbackField,
|
|
1374
|
-
|
|
1375
|
-
|
|
1386
|
+
po as FeedbackForm,
|
|
1387
|
+
Fo as FeedbackItemDescription,
|
|
1376
1388
|
go as FeedbackItemLabel,
|
|
1377
1389
|
lo as FeedbackModal,
|
|
1378
|
-
|
|
1390
|
+
Co as FeedbackModalBody,
|
|
1379
1391
|
ho as FeedbackModalClose,
|
|
1380
1392
|
co as FeedbackModalContent,
|
|
1381
1393
|
bo as FeedbackModalHeader,
|
|
1382
1394
|
no as FeedbackModalOverlay,
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1395
|
+
Eo as FeedbackSubmitButton,
|
|
1396
|
+
Fr as FileContent,
|
|
1397
|
+
Er as FileInput,
|
|
1386
1398
|
xr as FileItem,
|
|
1387
1399
|
fr as FileList,
|
|
1388
1400
|
vr as FileName,
|
|
1389
1401
|
kr as FilePreviewTrigger,
|
|
1390
1402
|
yr as FileRemove,
|
|
1391
|
-
|
|
1392
|
-
|
|
1403
|
+
wr as FileThumbnail,
|
|
1404
|
+
Pr as FileTypeIcon,
|
|
1393
1405
|
Ir as FileUploadButton,
|
|
1394
1406
|
jd as Footer,
|
|
1395
1407
|
fo as Form,
|
|
1396
1408
|
sr as FormCancel,
|
|
1397
1409
|
vo as FormClose,
|
|
1398
|
-
|
|
1399
|
-
|
|
1410
|
+
Po as FormContent,
|
|
1411
|
+
wo as FormDescription,
|
|
1400
1412
|
rr as FormError,
|
|
1401
1413
|
Io as FormField,
|
|
1402
1414
|
Ho as FormFieldCheckbox,
|
|
@@ -1419,13 +1431,13 @@ export {
|
|
|
1419
1431
|
or as FormFieldError,
|
|
1420
1432
|
Ao as FormFieldFile,
|
|
1421
1433
|
Mo as FormFieldLabel,
|
|
1422
|
-
|
|
1434
|
+
Do as FormFieldSelect,
|
|
1423
1435
|
Wo as FormFieldSelectContent,
|
|
1424
1436
|
_o as FormFieldSelectIcon,
|
|
1425
1437
|
jo as FormFieldSelectItem,
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1438
|
+
Ro as FormFieldSelectItemIndicator,
|
|
1439
|
+
Vo as FormFieldSelectItemText,
|
|
1440
|
+
Bo as FormFieldSelectTrigger,
|
|
1429
1441
|
zo as FormFieldSelectValue,
|
|
1430
1442
|
Qo as FormFieldSelectViewport,
|
|
1431
1443
|
No as FormFieldText,
|
|
@@ -1439,8 +1451,8 @@ export {
|
|
|
1439
1451
|
nr as FormSuccessHeading,
|
|
1440
1452
|
cr as FormSuccessMessage,
|
|
1441
1453
|
xo as FormWrapper,
|
|
1442
|
-
|
|
1443
|
-
|
|
1454
|
+
Va as Header,
|
|
1455
|
+
Ra as HeaderToolbar,
|
|
1444
1456
|
Oa as HeaderToolbarWrapper,
|
|
1445
1457
|
ao as HelpAction,
|
|
1446
1458
|
to as HelpActions,
|
|
@@ -1454,11 +1466,11 @@ export {
|
|
|
1454
1466
|
Wr as ImagePreviewModalContent,
|
|
1455
1467
|
Qr as ImagePreviewModalFileName,
|
|
1456
1468
|
jr as ImagePreviewModalFooter,
|
|
1457
|
-
|
|
1458
|
-
|
|
1469
|
+
Vr as ImagePreviewModalImage,
|
|
1470
|
+
Rr as ImagePreviewModalOverlay,
|
|
1459
1471
|
Od as Input,
|
|
1460
|
-
|
|
1461
|
-
|
|
1472
|
+
Vd as InputFieldset,
|
|
1473
|
+
Rd as InputGroup,
|
|
1462
1474
|
Mr as InputNotification,
|
|
1463
1475
|
Nr as InputNotificationClose,
|
|
1464
1476
|
Sr as InputNotificationContent,
|
|
@@ -1470,34 +1482,34 @@ export {
|
|
|
1470
1482
|
Md as MessageAction,
|
|
1471
1483
|
ud as MessageAvatar,
|
|
1472
1484
|
gd as MessageAvatarContent,
|
|
1473
|
-
|
|
1474
|
-
|
|
1485
|
+
Fd as MessageAvatarFallback,
|
|
1486
|
+
Ed as MessageAvatarImage,
|
|
1475
1487
|
vd as MessageContent,
|
|
1476
1488
|
fd as MessageContentWrapper,
|
|
1477
1489
|
Id as MessageCustomAction,
|
|
1478
|
-
|
|
1490
|
+
Pd as MessageCustomActions,
|
|
1479
1491
|
Lr as MessageFile,
|
|
1480
|
-
|
|
1492
|
+
Dr as MessageFiles,
|
|
1481
1493
|
hd as MessageHeader,
|
|
1482
|
-
|
|
1494
|
+
Cd as MessageLoading,
|
|
1483
1495
|
xd as MessageName,
|
|
1484
|
-
|
|
1496
|
+
pr as MessagePart,
|
|
1485
1497
|
Td as MessageSourceItem,
|
|
1486
1498
|
Ld as MessageSourceItemBreadcrumbIcon,
|
|
1487
1499
|
Hd as MessageSourceItemBreadcrumbs,
|
|
1488
1500
|
_d as MessageSourceItemDescription,
|
|
1489
1501
|
Wd as MessageSourceItemDescriptionPart,
|
|
1490
|
-
|
|
1502
|
+
Dd as MessageSourceItemIcon,
|
|
1491
1503
|
Qd as MessageSourceItemIndicator,
|
|
1492
1504
|
zd as MessageSourceItemTag,
|
|
1493
|
-
|
|
1505
|
+
Bd as MessageSourceItemTitle,
|
|
1494
1506
|
Nd as MessageSources,
|
|
1495
1507
|
Sd as MessageSourcesHeader,
|
|
1496
1508
|
Ad as MessageSourcesList,
|
|
1497
|
-
|
|
1509
|
+
wd as MessageToolbar,
|
|
1498
1510
|
cd as MessageWrapper,
|
|
1499
1511
|
nd as Messages,
|
|
1500
|
-
|
|
1512
|
+
pd as MessagesSessionLoading,
|
|
1501
1513
|
Wa as Provider,
|
|
1502
1514
|
ja as Root,
|
|
1503
1515
|
qd as SendButton,
|