@inkeep/agents-ui 0.15.13 → 0.15.14
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/index.cjs +1 -1
- package/dist/index.js +230 -222
- package/dist/primitives/atoms/icons/built-in-icons.cjs +1 -1
- package/dist/primitives/atoms/icons/built-in-icons.d.ts +2 -0
- package/dist/primitives/atoms/icons/built-in-icons.js +33 -31
- 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/components/chat-history/index.cjs +1 -0
- package/dist/primitives/components/chat-history/index.d.ts +27 -0
- package/dist/primitives/components/chat-history/index.js +105 -0
- package/dist/primitives/components/embedded-chat/use-captcha.cjs +1 -0
- package/dist/primitives/components/embedded-chat/use-captcha.d.ts +23 -6
- package/dist/primitives/components/embedded-chat/use-captcha.js +67 -0
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.cjs +2 -2
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.d.ts +12 -3
- package/dist/primitives/components/embedded-chat/use-inkeep-chat.js +252 -144
- package/dist/primitives/components/embedded-chat/use-stream-processor.cjs +1 -1
- package/dist/primitives/components/embedded-chat/use-stream-processor.d.ts +2 -0
- package/dist/primitives/components/embedded-chat/use-stream-processor.js +120 -70
- package/dist/primitives/components/embedded-chat.cjs +3 -3
- package/dist/primitives/components/embedded-chat.d.ts +5 -2
- package/dist/primitives/components/embedded-chat.js +1010 -967
- package/dist/primitives/components/index.cjs +1 -1
- package/dist/primitives/components/index.d.ts +1 -0
- package/dist/primitives/components/index.js +20 -18
- package/dist/primitives/hooks/use-anonymous-session.cjs +1 -0
- package/dist/primitives/hooks/use-anonymous-session.d.ts +12 -0
- package/dist/primitives/hooks/use-anonymous-session.js +57 -0
- package/dist/primitives/hooks/use-conversation-loader.cjs +1 -0
- package/dist/primitives/hooks/use-conversation-loader.d.ts +13 -0
- package/dist/primitives/hooks/use-conversation-loader.js +36 -0
- package/dist/primitives/hooks/use-inkeep-api-client.cjs +1 -0
- package/dist/primitives/hooks/use-inkeep-api-client.d.ts +33 -0
- package/dist/primitives/hooks/use-inkeep-api-client.js +87 -0
- package/dist/primitives/hooks/use-local-storage.cjs +1 -0
- package/dist/primitives/hooks/use-local-storage.d.ts +8 -0
- package/dist/primitives/hooks/use-local-storage.js +26 -0
- package/dist/primitives/index.cjs +1 -1
- package/dist/primitives/index.js +157 -151
- package/dist/primitives/providers/base-events-provider.cjs +1 -1
- package/dist/primitives/providers/base-events-provider.js +1 -1
- package/dist/primitives/providers/chat-history-provider.cjs +1 -0
- package/dist/primitives/providers/chat-history-provider.d.ts +32 -0
- package/dist/primitives/providers/chat-history-provider.js +105 -0
- package/dist/primitives/providers/index.cjs +1 -1
- package/dist/primitives/providers/index.d.ts +1 -0
- package/dist/primitives/providers/index.js +55 -52
- package/dist/primitives/utils/component-ids.cjs +1 -1
- package/dist/primitives/utils/component-ids.d.ts +32 -0
- package/dist/primitives/utils/component-ids.js +19 -1
- package/dist/primitives/utils/default-settings.cjs +1 -1
- package/dist/primitives/utils/default-settings.d.ts +2 -0
- package/dist/primitives/utils/default-settings.js +6 -4
- package/dist/react/chat-button.cjs +1 -1
- package/dist/react/chat-button.js +42 -38
- package/dist/react/embedded-chat.cjs +1 -1
- package/dist/react/embedded-chat.js +256 -230
- package/dist/react/index.cjs +1 -1
- package/dist/react/index.js +230 -222
- package/dist/react/sidebar-chat.cjs +1 -1
- package/dist/react/sidebar-chat.js +26 -22
- package/dist/styled/components/chat-bubble.cjs +1 -1
- package/dist/styled/components/chat-bubble.js +1 -1
- package/dist/styled/components/chat-history.cjs +1 -0
- package/dist/styled/components/chat-history.d.ts +15 -0
- package/dist/styled/components/chat-history.js +197 -0
- package/dist/styled/components/data-summary-group.cjs +1 -1
- package/dist/styled/components/data-summary-group.js +24 -24
- package/dist/styled/components/embedded-chat/session-loading.cjs +1 -0
- package/dist/styled/components/embedded-chat/session-loading.d.ts +1 -0
- package/dist/styled/components/embedded-chat/session-loading.js +26 -0
- package/dist/styled/components/embedded-chat.cjs +1 -1
- package/dist/styled/components/embedded-chat.d.ts +7 -1
- package/dist/styled/components/embedded-chat.js +615 -563
- package/dist/styled/components/embedded-search.cjs +1 -1
- package/dist/styled/components/embedded-search.js +1 -1
- package/dist/styled/components/index.cjs +1 -1
- package/dist/styled/components/index.d.ts +1 -0
- package/dist/styled/components/index.js +22 -20
- package/dist/styled/components/sidebar-chat.cjs +1 -1
- package/dist/styled/components/sidebar-chat.js +1 -1
- package/dist/styled/components/ui/recipes/ai-chat-page-wrapper.cjs +1 -1
- package/dist/styled/components/ui/recipes/ai-chat-page-wrapper.js +3 -2
- package/dist/styled/index.cjs +1 -1
- package/dist/styled/index.js +193 -185
- package/dist/styled/inkeep.css.cjs +146 -4
- package/dist/styled/inkeep.css.js +146 -4
- package/dist/types/config/ai.d.ts +17 -1
- package/dist/types/config/base.d.ts +21 -0
- package/dist/types/icons/built-in.d.ts +1 -1
- package/dist/types/icons/custom.d.ts +3 -0
- package/package.json +1 -1
|
@@ -1,36 +1,39 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsx as a } from "react/jsx-runtime";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
2
|
+
import { jsx as a, jsxs as g } from "react/jsx-runtime";
|
|
3
|
+
import { useChatHistory as P } from "../../primitives/providers/chat-history-provider.js";
|
|
4
|
+
import { useInkeepConfig as w } from "../../primitives/providers/config-provider.js";
|
|
5
|
+
import { EmbeddedChatPrimitiveContentScrollAreaCorner as M, EmbeddedChatPrimitiveDisclaimerText as N, EmbeddedChatPrimitiveMessageAttachments as I, EmbeddedChatPrimitiveMessageAttachmentsPreview as B, EmbeddedChatPrimitiveDynamicComponent as S, EmbeddedChatPrimitiveMessageSources as T, EmbeddedChatPrimitiveAttachmentsBarInfoTip as H, EmbeddedChatPrimitiveAttachmentsBarInfoTipArrow as L, EmbeddedChatPrimitiveAttachmentsBarModal as D, EmbeddedChatPrimitiveAttachmentsBarModalHelp as W, EmbeddedChatPrimitiveHelpActions as _, EmbeddedChatPrimitiveFeedbackModal as z, EmbeddedChatPrimitiveFormFieldSelect as j, EmbeddedChatPrimitiveFormFieldSelectValue as Q, EmbeddedChatPrimitiveFormFieldSelectItemText as O, EmbeddedChatPrimitiveFormFieldCombobox as V, EmbeddedChatPrimitiveFormFieldComboboxListItems as R, EmbeddedChatPrimitiveFormFieldComboboxItemText as q, EmbeddedChatPrimitiveFormSuccessMessage as G, EmbeddedChatPrimitiveWrapper as K, EmbeddedChatPrimitiveRoot as $, Header as J, EmbeddedChatPrimitiveHeaderToolbar as U, EmbeddedChatPrimitiveToolbarHeaderWrapper as X, EmbeddedChatPrimitiveToolbarHeader as Y, EmbeddedChatPrimitiveChatHistoryButtonIcon as Z, EmbeddedChatPrimitiveChatHistoryButton as ee, EmbeddedChatPrimitiveContent as te, EmbeddedChatPrimitiveContentScrollArea as ae, EmbeddedChatPrimitiveContentScrollAreaViewport as de, EmbeddedChatPrimitiveContentScrollAreaScrollbar as se, EmbeddedChatPrimitiveContentScrollAreaThumb as re, EmbeddedChatPrimitiveMessages as oe, EmbeddedChatPrimitiveMessageWrapper as me, EmbeddedChatPrimitiveIntroMessageWrapper as ie, EmbeddedChatPrimitiveDisclaimer as ne, EmbeddedChatPrimitiveDisclaimerLabel as le, EmbeddedChatPrimitiveDisclaimerTrigger as ce, EmbeddedChatPrimitiveDisclaimerContent as he, EmbeddedChatPrimitiveDisclaimerArrow as be, EmbeddedChatPrimitiveExampleQuestions as Ce, EmbeddedChatPrimitiveExampleQuestionsLabel as pe, EmbeddedChatPrimitiveExampleQuestionsList as ue, EmbeddedChatPrimitiveExampleQuestion as Ee, EmbeddedChatPrimitiveExampleQuestionButton as xe, EmbeddedChatPrimitiveWorkflows as ge, EmbeddedChatPrimitiveWorkflowsLabel as Fe, EmbeddedChatPrimitiveWorkflowsList as fe, EmbeddedChatPrimitiveWorkflow as ve, EmbeddedChatPrimitiveMessageHeader as ke, EmbeddedChatPrimitiveMessageLoading as Ae, EmbeddedChatPrimitiveMessageAvatar as ye, EmbeddedChatPrimitiveMessageAvatarContent as Pe, EmbeddedChatPrimitiveMessageAvatarFallback as we, EmbeddedChatPrimitiveMessageAvatarImage as Me, EmbeddedChatPrimitiveMessageName as Ne, EmbeddedChatPrimitiveMessageContentWrapper as Ie, EmbeddedChatPrimitiveMessageContent as Be, EmbeddedChatPrimitiveMessageAttachmentsList as Se, EmbeddedChatPrimitiveMessageAttachmentsItem as Te, EmbeddedChatPrimitiveMessageAttachmentsItemIcon as He, EmbeddedChatPrimitiveMessageAttachmentsItemTitle as Le, EmbeddedChatPrimitiveMessageAttachmentsPreviewOverlay as De, EmbeddedChatPrimitiveMessageAttachmentsPreviewContent as We, EmbeddedChatPrimitiveMessageAttachmentsPreviewHeader as _e, EmbeddedChatPrimitiveMessageAttachmentsPreviewClose as ze, EmbeddedChatPrimitiveMessageAttachmentsPreviewBody as je, EmbeddedChatPrimitiveMarkdown as Qe, EmbeddedChatPrimitiveMessageToolbar as Oe, EmbeddedChatPrimitiveMessageCustomActions as Ve, EmbeddedChatPrimitiveMessageCustomAction as Re, EmbeddedChatPrimitiveMessageAction as qe, EmbeddedChatPrimitiveMessageSourcesHeader as Ge, EmbeddedChatPrimitiveMessageSourcesList as Ke, EmbeddedChatPrimitiveMessageSourceItem as $e, EmbeddedChatPrimitiveMessageSourceItemBreadcrumbs as Je, MessageSourceItemBreadcrumbIcon as Ue, EmbeddedChatPrimitiveMessageSourceItemIcon as Xe, EmbeddedChatPrimitiveMessageSourceItemTitle as Ye, EmbeddedChatPrimitiveMessageSourceItemTag as Ze, EmbeddedChatPrimitiveMessageSourceItemDescription as et, EmbeddedChatPrimitiveMessageSourceItemDescriptionPart as tt, EmbeddedChatPrimitiveMessageSourceItemIndicator as at, EmbeddedChatPrimitiveFooter as dt, EmbeddedChatPrimitiveInputFieldset as st, EmbeddedChatPrimitiveInputGroup as rt, EmbeddedChatPrimitiveInput as ot, EmbeddedChatPrimitiveSendButton as mt, EmbeddedChatPrimitiveSendButtonIcon as it, EmbeddedChatPrimitiveAttachmentsBar as nt, EmbeddedChatPrimitiveAttachmentsBarList as lt, EmbeddedChatPrimitiveAttachmentsBarAttachment as ct, EmbeddedChatPrimitiveAttachmentsBarAttachmentIcon as ht, EmbeddedChatPrimitiveAttachmentsBarAttachmentTitle as bt, EmbeddedChatPrimitiveAttachmentsBarAttachmentDelete as Ct, EmbeddedChatPrimitiveAttachmentsBarActions as pt, EmbeddedChatPrimitiveAttachmentsBarInfoTipIcon as ut, EmbeddedChatPrimitiveAttachmentsBarInfoTipText as Et, EmbeddedChatPrimitiveAttachmentsBarInputs as xt, EmbeddedChatPrimitiveAttachmentsBarInput as gt, EmbeddedChatPrimitiveAttachmentsBarModalOverlay as Ft, EmbeddedChatPrimitiveAttachmentsBarModalContent as ft, EmbeddedChatPrimitiveAttachmentsBarModalHeader as vt, EmbeddedChatPrimitiveAttachmentsBarModalHeading as kt, EmbeddedChatPrimitiveAttachmentsBarModalDescription as At, EmbeddedChatPrimitiveAttachmentsBarModalClose as yt, EmbeddedChatPrimitiveAttachmentsBarModalBody as Pt, EmbeddedChatPrimitiveAttachmentsBarForm as wt, EmbeddedChatPrimitiveAttachmentsBarFormTitle as Mt, EmbeddedChatPrimitiveAttachmentsBarFormTitleLabel as Nt, EmbeddedChatPrimitiveAttachmentsBarFormTitleInput as It, EmbeddedChatPrimitiveAttachmentsBarFormTitleError as Bt, EmbeddedChatPrimitiveAttachmentsBarFormContent as St, EmbeddedChatPrimitiveAttachmentsBarFormContentLabel as Tt, EmbeddedChatPrimitiveAttachmentsBarFormContentInput as Ht, EmbeddedChatPrimitiveAttachmentsBarFormContentError as Lt, EmbeddedChatPrimitiveAttachmentsBarFormSubmitButton as Dt, EmbeddedChatPrimitiveActionBar as Wt, EmbeddedChatPrimitiveActions as _t, EmbeddedChatPrimitiveTaglineContainer as zt, EmbeddedChatPrimitiveTaglineText as jt, EmbeddedChatPrimitiveTaglineLogo as Qt, EmbeddedChatPrimitiveTaglineBrandName as Ot, EmbeddedChatPrimitiveChatAction as Vt, EmbeddedChatPrimitiveChatActionLabel as Rt, EmbeddedChatPrimitiveChatActionFeedback as qt, EmbeddedChatPrimitiveChatHelpAction as Gt, EmbeddedChatPrimitiveHelpActionsTrigger as Kt, EmbeddedChatPrimitiveHelpActionsMenu as $t, EmbeddedChatPrimitiveHelpActionsMenuArrow as Jt, EmbeddedChatPrimitiveHelpActionsMenuItem as Ut, EmbeddedChatPrimitiveHelpActionsMenuItemIcon as Xt, EmbeddedChatPrimitiveFeedbackModalOverlay as Yt, EmbeddedChatPrimitiveFeedbackModalContent as Zt, EmbeddedChatPrimitiveFeedbackModalHeader as ea, EmbeddedChatPrimitiveFeedbackModalClose as ta, EmbeddedChatPrimitiveFeedbackModalBody as aa, EmbeddedChatPrimitiveFeedbackForm as da, EmbeddedChatPrimitiveFeedbackItem as sa, EmbeddedChatPrimitiveFeedbackItemCheckbox as ra, EmbeddedChatPrimitiveFeedbackItemCheckboxIndicator as oa, EmbeddedChatPrimitiveFeedbackItemLabel as ma, EmbeddedChatPrimitiveFeedbackItemDescription as ia, EmbeddedChatPrimitiveFeedbackSubmitButton as na, EmbeddedChatPrimitiveFormWrapper as la, EmbeddedChatPrimitiveForm as ca, EmbeddedChatPrimitiveFormClose as ha, EmbeddedChatPrimitiveFormHeader as ba, EmbeddedChatPrimitiveFormHeading as Ca, EmbeddedChatPrimitiveFormDescription as pa, EmbeddedChatPrimitiveFormContent as ua, EmbeddedChatPrimitiveFormField as Ea, EmbeddedChatPrimitiveFormFieldLabel as xa, EmbeddedChatPrimitiveFormFieldText as ga, EmbeddedChatPrimitiveFormFieldEmail as Fa, EmbeddedChatPrimitiveFormFieldFile as fa, EmbeddedChatPrimitiveFormFieldTextArea as va, EmbeddedChatPrimitiveFormFieldCheckbox as ka, EmbeddedChatPrimitiveFormFieldCheckboxIndicator as Aa, EmbeddedChatPrimitiveFormFieldSelectTrigger as ya, EmbeddedChatPrimitiveFormFieldSelectIcon as Pa, EmbeddedChatPrimitiveFormFieldSelectContent as wa, EmbeddedChatPrimitiveFormFieldSelectViewport as Ma, EmbeddedChatPrimitiveFormFieldSelectItem as Na, EmbeddedChatPrimitiveFormFieldSelectItemIndicator as Ia, EmbeddedChatPrimitiveFormFieldComboboxControl as Ba, EmbeddedChatPrimitiveFormFieldComboboxInput as Sa, EmbeddedChatPrimitiveFormFieldComboboxTrigger as Ta, EmbeddedChatPrimitiveFormFieldComboboxSelectedTags as Ha, EmbeddedChatPrimitiveFormFieldComboboxPositioner as La, EmbeddedChatPrimitiveFormFieldComboboxContent as Da, EmbeddedChatPrimitiveFormFieldComboboxList as Wa, EmbeddedChatPrimitiveFormFieldComboboxListEmpty as _a, EmbeddedChatPrimitiveFormFieldComboboxItem as za, EmbeddedChatPrimitiveFormFieldComboboxItemIndicator as ja, EmbeddedChatPrimitiveFormFieldDescription as Qa, EmbeddedChatPrimitiveFormFieldError as Oa, EmbeddedChatPrimitiveFormError as Va, EmbeddedChatPrimitiveFormFooter as Ra, EmbeddedChatPrimitiveFormCancel as qa, EmbeddedChatPrimitiveFormSubmit as Ga, EmbeddedChatPrimitiveFormSuccess as Ka, EmbeddedChatPrimitiveFormSuccessHeading as $a, EmbeddedChatPrimitiveFormSuccessButton as Ja } from "../../primitives/components/embedded-chat.js";
|
|
6
|
+
import { ChatProvider as Ua } from "../../primitives/components/embedded-chat/chat-provider.js";
|
|
7
|
+
import { useResizeObserver as Xa } from "../../primitives/hooks/use-resize-observer.js";
|
|
8
|
+
import { composeRefs as Ya } from "../../primitives/utils/compose-refs.js";
|
|
9
|
+
import { aiChatPageWrapper as Za } from "./ui/recipes/ai-chat-page-wrapper.js";
|
|
8
10
|
import { attachment as n } from "./ui/recipes/attachment.js";
|
|
9
11
|
import { button as s } from "./ui/recipes/button.js";
|
|
10
|
-
import { checkbox as
|
|
11
|
-
import { citation as
|
|
12
|
-
import { combobox as
|
|
13
|
-
import { icon as
|
|
12
|
+
import { checkbox as b } from "./ui/recipes/checkbox.js";
|
|
13
|
+
import { citation as m } from "./ui/recipes/citation.js";
|
|
14
|
+
import { combobox as i } from "./ui/recipes/combobox.js";
|
|
15
|
+
import { icon as ed } from "./ui/recipes/icon.js";
|
|
14
16
|
import { input as l } from "./ui/recipes/input.js";
|
|
15
|
-
import { link as
|
|
17
|
+
import { link as td } from "./ui/recipes/link.js";
|
|
16
18
|
import { modal as r } from "./ui/recipes/modal.js";
|
|
17
19
|
import { popover as C } from "./ui/recipes/popover.js";
|
|
18
20
|
import { scrollable as p } from "./ui/recipes/scrollable.js";
|
|
19
21
|
import { select as c } from "./ui/recipes/select.js";
|
|
20
|
-
import { cva as
|
|
21
|
-
import { merge as
|
|
22
|
-
import { forwardRef as
|
|
22
|
+
import { cva as ad } from "class-variance-authority";
|
|
23
|
+
import { merge as dd } from "merge-anything";
|
|
24
|
+
import { forwardRef as u, useRef as sd } from "react";
|
|
23
25
|
import { cn as d } from "../utils.js";
|
|
24
|
-
import { markdownStyles as
|
|
25
|
-
import { LoadingIndicator as
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
26
|
+
import { markdownStyles as rd } from "./ui/markdown-styles.js";
|
|
27
|
+
import { LoadingIndicator as od } from "./loading-indicator.js";
|
|
28
|
+
import { MessagesSessionLoading as md } from "./embedded-chat/session-loading.js";
|
|
29
|
+
import { EmbeddedChatMessagePart as im } from "./message.js";
|
|
30
|
+
const Dd = Ua, Wd = u(
|
|
31
|
+
({ className: e, size: t, variant: o, ...E }, h) => /* @__PURE__ */ a(
|
|
32
|
+
K,
|
|
30
33
|
{
|
|
31
|
-
ref:
|
|
34
|
+
ref: h,
|
|
32
35
|
className: d(
|
|
33
|
-
|
|
36
|
+
Za({ size: t, variant: o }),
|
|
34
37
|
"data-[hidden]:hidden rounded-md flex",
|
|
35
38
|
"bg-white dark:bg-gray-dark-950",
|
|
36
39
|
"data-[composite]:w-full",
|
|
@@ -40,25 +43,38 @@ const Pd = Ra, wd = E(
|
|
|
40
43
|
"[[data-sidebar]_&]:max-h-[unset]",
|
|
41
44
|
"[[data-chat-bubble]_&]:max-h-[unset]",
|
|
42
45
|
"[[data-chat-bubble]_&]:h-full [[data-chat-bubble]_&]:w-full [[data-chat-bubble]_&]:rounded-[inherit]",
|
|
46
|
+
// Chat history layout: named group avoids conflicts with other groups on page
|
|
47
|
+
"group/chat-history",
|
|
48
|
+
// Sidepane layout: flex row when wide enough
|
|
49
|
+
"data-[chat-history-layout=sidepane]:flex-row",
|
|
43
50
|
e
|
|
44
51
|
),
|
|
45
|
-
...
|
|
52
|
+
...E
|
|
46
53
|
}
|
|
47
54
|
)
|
|
48
|
-
),
|
|
55
|
+
), _d = ({
|
|
49
56
|
className: e,
|
|
50
57
|
...t
|
|
51
58
|
}) => /* @__PURE__ */ a(
|
|
52
|
-
|
|
59
|
+
$,
|
|
53
60
|
{
|
|
54
|
-
className: d(
|
|
61
|
+
className: d(
|
|
62
|
+
p({ section: "wrapper" }),
|
|
63
|
+
"rounded-[inherit] font-body",
|
|
64
|
+
// Sidepane layout: take remaining space
|
|
65
|
+
"group-data-[chat-history-layout=sidepane]/chat-history:flex-1",
|
|
66
|
+
"group-data-[chat-history-layout=sidepane]/chat-history:min-w-0",
|
|
67
|
+
// Stack layout: hide when chat history is open
|
|
68
|
+
"group-data-[stack-history-open]/chat-history:!hidden",
|
|
69
|
+
e
|
|
70
|
+
),
|
|
55
71
|
...t
|
|
56
72
|
}
|
|
57
|
-
),
|
|
73
|
+
), zd = ({
|
|
58
74
|
className: e,
|
|
59
75
|
...t
|
|
60
76
|
}) => /* @__PURE__ */ a(
|
|
61
|
-
|
|
77
|
+
J,
|
|
62
78
|
{
|
|
63
79
|
className: d(
|
|
64
80
|
p({ section: "header" }),
|
|
@@ -77,59 +93,91 @@ const Pd = Ra, wd = E(
|
|
|
77
93
|
),
|
|
78
94
|
...t
|
|
79
95
|
}
|
|
80
|
-
),
|
|
96
|
+
), jd = ({
|
|
81
97
|
className: e,
|
|
82
98
|
...t
|
|
83
99
|
}) => /* @__PURE__ */ a(
|
|
84
|
-
|
|
100
|
+
U,
|
|
85
101
|
{
|
|
86
102
|
className: d(
|
|
87
103
|
"flex items-center gap-3 w-full",
|
|
88
|
-
"px-5 py-2 pt-
|
|
104
|
+
"px-5 py-2 pt-3 justify-between *:m-0",
|
|
105
|
+
'data-[show-widget-toggle=""]:pt-4',
|
|
89
106
|
e
|
|
90
107
|
),
|
|
91
108
|
...t
|
|
92
109
|
}
|
|
93
|
-
),
|
|
110
|
+
), Qd = ({
|
|
94
111
|
className: e,
|
|
95
112
|
...t
|
|
96
113
|
}) => /* @__PURE__ */ a(
|
|
97
|
-
|
|
114
|
+
X,
|
|
98
115
|
{
|
|
99
116
|
className: d("flex items-center gap-1.5", e),
|
|
100
117
|
...t
|
|
101
118
|
}
|
|
102
|
-
),
|
|
119
|
+
), Od = ({
|
|
103
120
|
className: e,
|
|
104
121
|
...t
|
|
105
122
|
}) => /* @__PURE__ */ a(
|
|
106
|
-
|
|
123
|
+
Y,
|
|
107
124
|
{
|
|
108
125
|
className: d("text-gray-600 dark:text-gray-dark-100 text-sm", e),
|
|
109
126
|
...t
|
|
110
127
|
}
|
|
111
|
-
),
|
|
128
|
+
), F = ({
|
|
129
|
+
className: e,
|
|
130
|
+
...t
|
|
131
|
+
}) => /* @__PURE__ */ a(Z, { className: d("text-sm", e), ...t }), id = ({
|
|
132
|
+
className: e,
|
|
133
|
+
...t
|
|
134
|
+
}) => /* @__PURE__ */ a(
|
|
135
|
+
ee,
|
|
136
|
+
{
|
|
137
|
+
className: d(
|
|
138
|
+
s({ size: "xs", variant: "ghost" }),
|
|
139
|
+
"gap-1.5 text-gray-600 hover:text-gray-800 dark:text-white dark:opacity-60 dark:hover:text-white dark:hover:opacity-95",
|
|
140
|
+
e
|
|
141
|
+
),
|
|
142
|
+
...t
|
|
143
|
+
}
|
|
144
|
+
), Vd = () => {
|
|
145
|
+
const { aiChatSettings: e } = w(), { setIsOpen: t, isOpen: o } = P();
|
|
146
|
+
return e.isChatHistoryButtonVisible ? /* @__PURE__ */ g(id, { onClick: () => t(!o), "aria-label": "Chat history", children: [
|
|
147
|
+
/* @__PURE__ */ a(
|
|
148
|
+
F,
|
|
149
|
+
{
|
|
150
|
+
iconKey: "chatHistoryPanel",
|
|
151
|
+
className: "!hidden group-data-[chat-history-layout=sidepane]/chat-history:!block"
|
|
152
|
+
}
|
|
153
|
+
),
|
|
154
|
+
/* @__PURE__ */ g("span", { className: "flex items-center gap-1.5 group-data-[chat-history-layout=sidepane]/chat-history:hidden", children: [
|
|
155
|
+
/* @__PURE__ */ a(F, { iconKey: "chatHistory" }),
|
|
156
|
+
"Chat history"
|
|
157
|
+
] })
|
|
158
|
+
] }) : null;
|
|
159
|
+
}, Rd = ({
|
|
112
160
|
className: e,
|
|
113
161
|
...t
|
|
114
162
|
}) => /* @__PURE__ */ a(
|
|
115
|
-
|
|
163
|
+
te,
|
|
116
164
|
{
|
|
117
165
|
className: d(p({ section: "content" }), "justify-end", e),
|
|
118
166
|
...t
|
|
119
167
|
}
|
|
120
|
-
),
|
|
168
|
+
), qd = ({
|
|
121
169
|
className: e,
|
|
122
170
|
...t
|
|
123
171
|
}) => /* @__PURE__ */ a(
|
|
124
|
-
|
|
172
|
+
ae,
|
|
125
173
|
{
|
|
126
174
|
className: d("overflow-hidden", e),
|
|
127
175
|
...t
|
|
128
176
|
}
|
|
129
|
-
),
|
|
130
|
-
|
|
177
|
+
), Gd = u(({ className: e, ...t }, o) => /* @__PURE__ */ a(
|
|
178
|
+
de,
|
|
131
179
|
{
|
|
132
|
-
ref:
|
|
180
|
+
ref: o,
|
|
133
181
|
className: d(
|
|
134
182
|
"h-full w-full rounded-[inherit]",
|
|
135
183
|
"[[data-chat-bubble]_&]:overscroll-contain",
|
|
@@ -137,11 +185,11 @@ const Pd = Ra, wd = E(
|
|
|
137
185
|
),
|
|
138
186
|
...t
|
|
139
187
|
}
|
|
140
|
-
)),
|
|
188
|
+
)), Kd = ({
|
|
141
189
|
className: e,
|
|
142
190
|
...t
|
|
143
191
|
}) => /* @__PURE__ */ a(
|
|
144
|
-
|
|
192
|
+
se,
|
|
145
193
|
{
|
|
146
194
|
className: d(
|
|
147
195
|
"flex select-none touch-none p-0.5",
|
|
@@ -151,38 +199,38 @@ const Pd = Ra, wd = E(
|
|
|
151
199
|
),
|
|
152
200
|
...t
|
|
153
201
|
}
|
|
154
|
-
),
|
|
202
|
+
), $d = ({
|
|
155
203
|
className: e,
|
|
156
204
|
...t
|
|
157
205
|
}) => /* @__PURE__ */ a(
|
|
158
|
-
|
|
206
|
+
re,
|
|
159
207
|
{
|
|
160
208
|
className: d("relative flex-1 rounded-full", "bg-gray-300 dark:bg-white-alpha-200", e),
|
|
161
209
|
...t
|
|
162
210
|
}
|
|
163
|
-
),
|
|
211
|
+
), Jd = M, Ud = ({
|
|
164
212
|
className: e,
|
|
165
213
|
...t
|
|
166
214
|
}) => /* @__PURE__ */ a(
|
|
167
|
-
|
|
215
|
+
ne,
|
|
168
216
|
{
|
|
169
217
|
className: d("ml-auto text-sm flex items-center gap-1", e),
|
|
170
218
|
...t
|
|
171
219
|
}
|
|
172
|
-
),
|
|
220
|
+
), Xd = ({
|
|
173
221
|
className: e,
|
|
174
222
|
...t
|
|
175
223
|
}) => /* @__PURE__ */ a(
|
|
176
|
-
|
|
224
|
+
le,
|
|
177
225
|
{
|
|
178
226
|
className: d("text-gray-700 dark:text-gray-dark-100", e),
|
|
179
227
|
...t
|
|
180
228
|
}
|
|
181
|
-
),
|
|
229
|
+
), Yd = ({
|
|
182
230
|
className: e,
|
|
183
231
|
...t
|
|
184
232
|
}) => /* @__PURE__ */ a(
|
|
185
|
-
|
|
233
|
+
ce,
|
|
186
234
|
{
|
|
187
235
|
className: d(
|
|
188
236
|
"cursor-pointer text-gray-700 dark:text-gray-dark-100",
|
|
@@ -191,11 +239,11 @@ const Pd = Ra, wd = E(
|
|
|
191
239
|
),
|
|
192
240
|
...t
|
|
193
241
|
}
|
|
194
|
-
),
|
|
242
|
+
), Zd = ({
|
|
195
243
|
className: e,
|
|
196
244
|
...t
|
|
197
245
|
}) => /* @__PURE__ */ a(
|
|
198
|
-
|
|
246
|
+
he,
|
|
199
247
|
{
|
|
200
248
|
className: d(
|
|
201
249
|
C({ slot: "content" }),
|
|
@@ -205,29 +253,29 @@ const Pd = Ra, wd = E(
|
|
|
205
253
|
),
|
|
206
254
|
...t
|
|
207
255
|
}
|
|
208
|
-
),
|
|
256
|
+
), es = N, ts = ({
|
|
209
257
|
className: e,
|
|
210
258
|
...t
|
|
211
259
|
}) => /* @__PURE__ */ a(
|
|
212
|
-
|
|
260
|
+
be,
|
|
213
261
|
{
|
|
214
262
|
className: d(C({ slot: "arrow" }), e),
|
|
215
263
|
...t
|
|
216
264
|
}
|
|
217
|
-
),
|
|
265
|
+
), as = ({
|
|
218
266
|
className: e,
|
|
219
267
|
...t
|
|
220
268
|
}) => /* @__PURE__ */ a(
|
|
221
|
-
|
|
269
|
+
Ce,
|
|
222
270
|
{
|
|
223
271
|
className: d("mt-4 flex flex-col gap-2", e),
|
|
224
272
|
...t
|
|
225
273
|
}
|
|
226
|
-
),
|
|
274
|
+
), ds = ({
|
|
227
275
|
className: e,
|
|
228
276
|
...t
|
|
229
277
|
}) => /* @__PURE__ */ a(
|
|
230
|
-
|
|
278
|
+
pe,
|
|
231
279
|
{
|
|
232
280
|
className: d(
|
|
233
281
|
"text-2xs uppercase font-semibold tracking-widest",
|
|
@@ -236,26 +284,26 @@ const Pd = Ra, wd = E(
|
|
|
236
284
|
),
|
|
237
285
|
...t
|
|
238
286
|
}
|
|
239
|
-
),
|
|
287
|
+
), ss = ({
|
|
240
288
|
className: e,
|
|
241
289
|
...t
|
|
242
290
|
}) => /* @__PURE__ */ a(
|
|
243
|
-
|
|
291
|
+
ue,
|
|
244
292
|
{
|
|
245
293
|
className: d("flex flex-col", "ikp-md:flex-row", "flex-wrap gap-2", e),
|
|
246
294
|
...t
|
|
247
295
|
}
|
|
248
|
-
),
|
|
249
|
-
const
|
|
250
|
-
ref:
|
|
296
|
+
), rs = u(({ className: e, style: t, ...o }, E) => {
|
|
297
|
+
const h = sd(null), v = Ya(E, h), { width: k = 0, height: A = 0 } = Xa({
|
|
298
|
+
ref: h,
|
|
251
299
|
box: "border-box"
|
|
252
|
-
}),
|
|
300
|
+
}), y = Math.max(A, k);
|
|
253
301
|
return /* @__PURE__ */ a(
|
|
254
|
-
|
|
302
|
+
Ee,
|
|
255
303
|
{
|
|
256
|
-
ref:
|
|
304
|
+
ref: v,
|
|
257
305
|
style: {
|
|
258
|
-
"--before-size": `${
|
|
306
|
+
"--before-size": `${y + 100}px`,
|
|
259
307
|
...t
|
|
260
308
|
},
|
|
261
309
|
className: d(
|
|
@@ -274,14 +322,14 @@ const Pd = Ra, wd = E(
|
|
|
274
322
|
"after:rounded-[5px] after:bg-white dark:after:bg-gray-dark-950",
|
|
275
323
|
e
|
|
276
324
|
),
|
|
277
|
-
...
|
|
325
|
+
...o
|
|
278
326
|
}
|
|
279
327
|
);
|
|
280
|
-
}),
|
|
328
|
+
}), os = ({
|
|
281
329
|
className: e,
|
|
282
330
|
...t
|
|
283
331
|
}) => /* @__PURE__ */ a(
|
|
284
|
-
|
|
332
|
+
xe,
|
|
285
333
|
{
|
|
286
334
|
className: d(
|
|
287
335
|
s({ size: "sm" }),
|
|
@@ -296,20 +344,20 @@ const Pd = Ra, wd = E(
|
|
|
296
344
|
),
|
|
297
345
|
...t
|
|
298
346
|
}
|
|
299
|
-
),
|
|
347
|
+
), ms = ({
|
|
300
348
|
className: e,
|
|
301
349
|
...t
|
|
302
350
|
}) => /* @__PURE__ */ a(
|
|
303
|
-
|
|
351
|
+
ge,
|
|
304
352
|
{
|
|
305
353
|
className: d("mt-4 flex flex-col gap-2", e),
|
|
306
354
|
...t
|
|
307
355
|
}
|
|
308
|
-
),
|
|
356
|
+
), is = ({
|
|
309
357
|
className: e,
|
|
310
358
|
...t
|
|
311
359
|
}) => /* @__PURE__ */ a(
|
|
312
|
-
|
|
360
|
+
Fe,
|
|
313
361
|
{
|
|
314
362
|
className: d(
|
|
315
363
|
"text-2xs uppercase font-semibold tracking-widest",
|
|
@@ -318,20 +366,20 @@ const Pd = Ra, wd = E(
|
|
|
318
366
|
),
|
|
319
367
|
...t
|
|
320
368
|
}
|
|
321
|
-
),
|
|
369
|
+
), ns = ({
|
|
322
370
|
className: e,
|
|
323
371
|
...t
|
|
324
372
|
}) => /* @__PURE__ */ a(
|
|
325
|
-
|
|
373
|
+
fe,
|
|
326
374
|
{
|
|
327
375
|
className: d("flex flex-wrap gap-2", e),
|
|
328
376
|
...t
|
|
329
377
|
}
|
|
330
|
-
),
|
|
378
|
+
), ls = ({
|
|
331
379
|
className: e,
|
|
332
380
|
...t
|
|
333
381
|
}) => /* @__PURE__ */ a(
|
|
334
|
-
|
|
382
|
+
ve,
|
|
335
383
|
{
|
|
336
384
|
className: d(
|
|
337
385
|
s({ size: "sm" }),
|
|
@@ -346,37 +394,37 @@ const Pd = Ra, wd = E(
|
|
|
346
394
|
),
|
|
347
395
|
...t
|
|
348
396
|
}
|
|
349
|
-
),
|
|
397
|
+
), cs = ({
|
|
350
398
|
className: e,
|
|
351
399
|
...t
|
|
352
400
|
}) => /* @__PURE__ */ a(
|
|
353
|
-
|
|
401
|
+
oe,
|
|
354
402
|
{
|
|
355
403
|
className: d("flex flex-col w-full min-w-0 min-h-0 text-sm relative", e),
|
|
356
404
|
...t
|
|
357
405
|
}
|
|
358
|
-
),
|
|
406
|
+
), f = ad([
|
|
359
407
|
"flex relative w-full overflow-hidden ikp-md:py-6 py-4",
|
|
360
408
|
"px-5",
|
|
361
409
|
"flex-col ikp-md:flex-row",
|
|
362
410
|
"min-w-0 grow-[2] data-[role=user]:grow-0"
|
|
363
|
-
]),
|
|
411
|
+
]), hs = ({
|
|
364
412
|
className: e,
|
|
365
413
|
...t
|
|
366
|
-
}) => /* @__PURE__ */ a(
|
|
414
|
+
}) => /* @__PURE__ */ a(me, { className: d(f(), e), ...t }), bs = ({
|
|
367
415
|
className: e,
|
|
368
416
|
...t
|
|
369
417
|
}) => /* @__PURE__ */ a(
|
|
370
|
-
|
|
418
|
+
ie,
|
|
371
419
|
{
|
|
372
|
-
className: d(
|
|
420
|
+
className: d(f(), e),
|
|
373
421
|
...t
|
|
374
422
|
}
|
|
375
|
-
),
|
|
423
|
+
), Cs = ({
|
|
376
424
|
className: e,
|
|
377
425
|
...t
|
|
378
426
|
}) => /* @__PURE__ */ a(
|
|
379
|
-
|
|
427
|
+
ke,
|
|
380
428
|
{
|
|
381
429
|
className: d(
|
|
382
430
|
"flex justify-start overflow-hidden shrink-0 select-none",
|
|
@@ -390,30 +438,30 @@ const Pd = Ra, wd = E(
|
|
|
390
438
|
),
|
|
391
439
|
...t
|
|
392
440
|
}
|
|
393
|
-
),
|
|
441
|
+
), ps = ({
|
|
394
442
|
className: e,
|
|
395
443
|
...t
|
|
396
444
|
}) => /* @__PURE__ */ a(
|
|
397
|
-
|
|
445
|
+
Ae,
|
|
398
446
|
{
|
|
399
447
|
className: d("flex items-center gap-3 h-auto w-full", e),
|
|
400
|
-
children: /* @__PURE__ */ a(
|
|
448
|
+
children: /* @__PURE__ */ a(od, {}),
|
|
401
449
|
...t
|
|
402
450
|
}
|
|
403
|
-
),
|
|
451
|
+
), us = ({ className: e }) => /* @__PURE__ */ a("div", { className: d("w-full", e), children: /* @__PURE__ */ a(md, {}) }), Es = ({
|
|
404
452
|
className: e,
|
|
405
453
|
...t
|
|
406
454
|
}) => /* @__PURE__ */ a(
|
|
407
|
-
|
|
455
|
+
ye,
|
|
408
456
|
{
|
|
409
457
|
className: d("flex items-center justify-center rounded-full", "h-auto", e),
|
|
410
458
|
...t
|
|
411
459
|
}
|
|
412
|
-
),
|
|
460
|
+
), xs = ({
|
|
413
461
|
className: e,
|
|
414
462
|
...t
|
|
415
463
|
}) => /* @__PURE__ */ a(
|
|
416
|
-
|
|
464
|
+
Pe,
|
|
417
465
|
{
|
|
418
466
|
className: d(
|
|
419
467
|
"relative flex h-6 w-6 shrink-0 overflow-hidden",
|
|
@@ -426,20 +474,20 @@ const Pd = Ra, wd = E(
|
|
|
426
474
|
),
|
|
427
475
|
...t
|
|
428
476
|
}
|
|
429
|
-
),
|
|
477
|
+
), gs = ({
|
|
430
478
|
className: e,
|
|
431
479
|
...t
|
|
432
480
|
}) => /* @__PURE__ */ a(
|
|
433
|
-
|
|
481
|
+
we,
|
|
434
482
|
{
|
|
435
483
|
className: d("hidden data-[role=user]:block", e),
|
|
436
484
|
...t
|
|
437
485
|
}
|
|
438
|
-
),
|
|
486
|
+
), Fs = ({
|
|
439
487
|
className: e,
|
|
440
488
|
...t
|
|
441
489
|
}) => /* @__PURE__ */ a(
|
|
442
|
-
|
|
490
|
+
Me,
|
|
443
491
|
{
|
|
444
492
|
className: d(
|
|
445
493
|
"data-[type=icon]:data-[role=user]:text-inkeep-primary-medium",
|
|
@@ -452,11 +500,11 @@ const Pd = Ra, wd = E(
|
|
|
452
500
|
),
|
|
453
501
|
...t
|
|
454
502
|
}
|
|
455
|
-
),
|
|
503
|
+
), fs = ({
|
|
456
504
|
className: e,
|
|
457
505
|
...t
|
|
458
506
|
}) => /* @__PURE__ */ a(
|
|
459
|
-
|
|
507
|
+
Ne,
|
|
460
508
|
{
|
|
461
509
|
className: d(
|
|
462
510
|
"py-1 ml-3",
|
|
@@ -468,11 +516,11 @@ const Pd = Ra, wd = E(
|
|
|
468
516
|
),
|
|
469
517
|
...t
|
|
470
518
|
}
|
|
471
|
-
),
|
|
519
|
+
), vs = ({
|
|
472
520
|
className: e,
|
|
473
521
|
...t
|
|
474
522
|
}) => /* @__PURE__ */ a(
|
|
475
|
-
|
|
523
|
+
Ie,
|
|
476
524
|
{
|
|
477
525
|
className: d(
|
|
478
526
|
"overflow-hidden flex flex-col",
|
|
@@ -486,11 +534,11 @@ const Pd = Ra, wd = E(
|
|
|
486
534
|
),
|
|
487
535
|
...t
|
|
488
536
|
}
|
|
489
|
-
),
|
|
537
|
+
), ks = ({
|
|
490
538
|
className: e,
|
|
491
539
|
...t
|
|
492
540
|
}) => /* @__PURE__ */ a(
|
|
493
|
-
|
|
541
|
+
Be,
|
|
494
542
|
{
|
|
495
543
|
className: d(
|
|
496
544
|
"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",
|
|
@@ -498,20 +546,20 @@ const Pd = Ra, wd = E(
|
|
|
498
546
|
),
|
|
499
547
|
...t
|
|
500
548
|
}
|
|
501
|
-
),
|
|
549
|
+
), As = I, ys = ({
|
|
502
550
|
className: e,
|
|
503
551
|
...t
|
|
504
552
|
}) => /* @__PURE__ */ a(
|
|
505
|
-
|
|
553
|
+
Se,
|
|
506
554
|
{
|
|
507
555
|
className: d("flex flex-wrap gap-2", e),
|
|
508
556
|
...t
|
|
509
557
|
}
|
|
510
|
-
),
|
|
558
|
+
), Ps = ({
|
|
511
559
|
className: e,
|
|
512
560
|
...t
|
|
513
561
|
}) => /* @__PURE__ */ a(
|
|
514
|
-
|
|
562
|
+
Te,
|
|
515
563
|
{
|
|
516
564
|
className: d(
|
|
517
565
|
s({ variant: "ghost" }),
|
|
@@ -521,38 +569,38 @@ const Pd = Ra, wd = E(
|
|
|
521
569
|
),
|
|
522
570
|
...t
|
|
523
571
|
}
|
|
524
|
-
),
|
|
572
|
+
), ws = ({
|
|
525
573
|
className: e,
|
|
526
574
|
...t
|
|
527
575
|
}) => /* @__PURE__ */ a(
|
|
528
|
-
|
|
576
|
+
He,
|
|
529
577
|
{
|
|
530
578
|
className: d(n({ slot: "icon" }), e),
|
|
531
579
|
...t
|
|
532
580
|
}
|
|
533
|
-
),
|
|
581
|
+
), Ms = ({
|
|
534
582
|
className: e,
|
|
535
583
|
...t
|
|
536
584
|
}) => /* @__PURE__ */ a(
|
|
537
|
-
|
|
585
|
+
Le,
|
|
538
586
|
{
|
|
539
587
|
className: d(n({ slot: "title" }), e),
|
|
540
588
|
...t
|
|
541
589
|
}
|
|
542
|
-
),
|
|
590
|
+
), Ns = B, Is = ({
|
|
543
591
|
className: e,
|
|
544
592
|
...t
|
|
545
593
|
}) => /* @__PURE__ */ a(
|
|
546
|
-
|
|
594
|
+
De,
|
|
547
595
|
{
|
|
548
596
|
className: d(r({ slot: "overlay" }), e),
|
|
549
597
|
...t
|
|
550
598
|
}
|
|
551
|
-
),
|
|
599
|
+
), Bs = ({
|
|
552
600
|
className: e,
|
|
553
601
|
...t
|
|
554
602
|
}) => /* @__PURE__ */ a(
|
|
555
|
-
|
|
603
|
+
We,
|
|
556
604
|
{
|
|
557
605
|
className: d(
|
|
558
606
|
r({ slot: "content" }),
|
|
@@ -562,11 +610,11 @@ const Pd = Ra, wd = E(
|
|
|
562
610
|
),
|
|
563
611
|
...t
|
|
564
612
|
}
|
|
565
|
-
),
|
|
613
|
+
), Ss = ({
|
|
566
614
|
className: e,
|
|
567
615
|
...t
|
|
568
616
|
}) => /* @__PURE__ */ a(
|
|
569
|
-
|
|
617
|
+
_e,
|
|
570
618
|
{
|
|
571
619
|
className: d(
|
|
572
620
|
r({ slot: "header" }),
|
|
@@ -576,56 +624,56 @@ const Pd = Ra, wd = E(
|
|
|
576
624
|
),
|
|
577
625
|
...t
|
|
578
626
|
}
|
|
579
|
-
),
|
|
627
|
+
), Ts = ({
|
|
580
628
|
className: e,
|
|
581
629
|
...t
|
|
582
630
|
}) => /* @__PURE__ */ a(
|
|
583
|
-
|
|
631
|
+
ze,
|
|
584
632
|
{
|
|
585
633
|
className: d(r({ slot: "close" }), e),
|
|
586
634
|
...t
|
|
587
635
|
}
|
|
588
|
-
),
|
|
636
|
+
), Hs = ({
|
|
589
637
|
className: e,
|
|
590
638
|
...t
|
|
591
639
|
}) => /* @__PURE__ */ a(
|
|
592
|
-
|
|
640
|
+
je,
|
|
593
641
|
{
|
|
594
642
|
className: d(r({ slot: "body" }), "p-0", e),
|
|
595
643
|
...t
|
|
596
644
|
}
|
|
597
|
-
),
|
|
645
|
+
), Ls = S, Ds = ({
|
|
598
646
|
componentStyles: e,
|
|
599
647
|
...t
|
|
600
648
|
}) => /* @__PURE__ */ a(
|
|
601
|
-
|
|
649
|
+
Qe,
|
|
602
650
|
{
|
|
603
|
-
componentStyles:
|
|
651
|
+
componentStyles: dd(rd, e ?? {}),
|
|
604
652
|
...t
|
|
605
653
|
}
|
|
606
|
-
),
|
|
654
|
+
), Ws = ({
|
|
607
655
|
className: e,
|
|
608
656
|
...t
|
|
609
657
|
}) => /* @__PURE__ */ a(
|
|
610
|
-
|
|
658
|
+
Oe,
|
|
611
659
|
{
|
|
612
660
|
className: d("flex items-center mt-2 mb-3", e),
|
|
613
661
|
...t
|
|
614
662
|
}
|
|
615
|
-
),
|
|
663
|
+
), _s = ({
|
|
616
664
|
className: e,
|
|
617
665
|
...t
|
|
618
666
|
}) => /* @__PURE__ */ a(
|
|
619
|
-
|
|
667
|
+
Ve,
|
|
620
668
|
{
|
|
621
669
|
className: d("mr-auto flex items-center gap-2", e),
|
|
622
670
|
...t
|
|
623
671
|
}
|
|
624
|
-
),
|
|
672
|
+
), zs = ({
|
|
625
673
|
className: e,
|
|
626
674
|
...t
|
|
627
675
|
}) => /* @__PURE__ */ a(
|
|
628
|
-
|
|
676
|
+
Re,
|
|
629
677
|
{
|
|
630
678
|
className: d(
|
|
631
679
|
s({ size: "xs", variant: "outline" }),
|
|
@@ -634,11 +682,11 @@ const Pd = Ra, wd = E(
|
|
|
634
682
|
),
|
|
635
683
|
...t
|
|
636
684
|
}
|
|
637
|
-
),
|
|
685
|
+
), js = ({
|
|
638
686
|
className: e,
|
|
639
687
|
...t
|
|
640
688
|
}) => /* @__PURE__ */ a(
|
|
641
|
-
|
|
689
|
+
qe,
|
|
642
690
|
{
|
|
643
691
|
className: d(
|
|
644
692
|
s({ variant: "iconButton", size: "sm" }),
|
|
@@ -651,11 +699,11 @@ const Pd = Ra, wd = E(
|
|
|
651
699
|
),
|
|
652
700
|
...t
|
|
653
701
|
}
|
|
654
|
-
),
|
|
702
|
+
), Qs = T, Os = ({
|
|
655
703
|
className: e,
|
|
656
704
|
...t
|
|
657
705
|
}) => /* @__PURE__ */ a(
|
|
658
|
-
|
|
706
|
+
Ge,
|
|
659
707
|
{
|
|
660
708
|
className: d(
|
|
661
709
|
"block text-xs font-medium my-2 text-gray-700 dark:text-gray-dark-300",
|
|
@@ -663,101 +711,101 @@ const Pd = Ra, wd = E(
|
|
|
663
711
|
),
|
|
664
712
|
...t
|
|
665
713
|
}
|
|
666
|
-
),
|
|
714
|
+
), Vs = ({
|
|
667
715
|
className: e,
|
|
668
716
|
...t
|
|
669
717
|
}) => /* @__PURE__ */ a(
|
|
670
|
-
|
|
718
|
+
Ke,
|
|
671
719
|
{
|
|
672
720
|
className: d("w-full relative flex flex-col gap-3 py-[1px]", e),
|
|
673
721
|
...t
|
|
674
722
|
}
|
|
675
|
-
),
|
|
723
|
+
), Rs = ({
|
|
676
724
|
className: e,
|
|
677
725
|
...t
|
|
678
726
|
}) => /* @__PURE__ */ a(
|
|
679
|
-
|
|
727
|
+
$e,
|
|
680
728
|
{
|
|
681
|
-
className: d(
|
|
729
|
+
className: d(m({ slot: "root" }), e),
|
|
682
730
|
...t
|
|
683
731
|
}
|
|
684
|
-
),
|
|
732
|
+
), qs = ({
|
|
685
733
|
className: e,
|
|
686
734
|
...t
|
|
687
735
|
}) => /* @__PURE__ */ a(
|
|
688
|
-
|
|
736
|
+
Je,
|
|
689
737
|
{
|
|
690
|
-
className: d(
|
|
738
|
+
className: d(m({ slot: "breadcrumbs" }), e),
|
|
691
739
|
...t
|
|
692
740
|
}
|
|
693
|
-
),
|
|
741
|
+
), Gs = ({
|
|
694
742
|
className: e,
|
|
695
743
|
...t
|
|
696
744
|
}) => /* @__PURE__ */ a(
|
|
697
|
-
|
|
745
|
+
Ue,
|
|
698
746
|
{
|
|
699
|
-
className: d(
|
|
747
|
+
className: d(m({ slot: "breadcrumbsIcon" }), e),
|
|
700
748
|
...t
|
|
701
749
|
}
|
|
702
|
-
),
|
|
750
|
+
), Ks = ({
|
|
703
751
|
className: e,
|
|
704
752
|
...t
|
|
705
753
|
}) => /* @__PURE__ */ a(
|
|
706
|
-
|
|
754
|
+
Xe,
|
|
707
755
|
{
|
|
708
|
-
className: d(
|
|
756
|
+
className: d(m({ slot: "icon" }), e),
|
|
709
757
|
...t
|
|
710
758
|
}
|
|
711
|
-
),
|
|
759
|
+
), $s = ({
|
|
712
760
|
className: e,
|
|
713
761
|
...t
|
|
714
762
|
}) => /* @__PURE__ */ a(
|
|
715
|
-
|
|
763
|
+
Ye,
|
|
716
764
|
{
|
|
717
|
-
className: d(
|
|
765
|
+
className: d(m({ slot: "title" }), e),
|
|
718
766
|
...t
|
|
719
767
|
}
|
|
720
|
-
),
|
|
768
|
+
), Js = ({
|
|
721
769
|
className: e,
|
|
722
770
|
...t
|
|
723
771
|
}) => /* @__PURE__ */ a(
|
|
724
|
-
|
|
772
|
+
Ze,
|
|
725
773
|
{
|
|
726
|
-
className: d(
|
|
774
|
+
className: d(m({ slot: "tag" }), e),
|
|
727
775
|
...t
|
|
728
776
|
}
|
|
729
|
-
),
|
|
777
|
+
), Us = ({
|
|
730
778
|
className: e,
|
|
731
779
|
...t
|
|
732
780
|
}) => /* @__PURE__ */ a(
|
|
733
|
-
|
|
781
|
+
et,
|
|
734
782
|
{
|
|
735
|
-
className: d(
|
|
783
|
+
className: d(m({ slot: "description" }), e),
|
|
736
784
|
...t
|
|
737
785
|
}
|
|
738
|
-
),
|
|
786
|
+
), Xs = ({
|
|
739
787
|
className: e,
|
|
740
788
|
...t
|
|
741
789
|
}) => /* @__PURE__ */ a(
|
|
742
|
-
|
|
790
|
+
tt,
|
|
743
791
|
{
|
|
744
|
-
className: d(
|
|
792
|
+
className: d(m({ slot: "descriptionPart" }), e),
|
|
745
793
|
...t
|
|
746
794
|
}
|
|
747
|
-
),
|
|
795
|
+
), Ys = ({
|
|
748
796
|
className: e,
|
|
749
797
|
...t
|
|
750
798
|
}) => /* @__PURE__ */ a(
|
|
751
|
-
|
|
799
|
+
at,
|
|
752
800
|
{
|
|
753
|
-
className: d(
|
|
801
|
+
className: d(m({ slot: "indicator" }), e),
|
|
754
802
|
...t
|
|
755
803
|
}
|
|
756
|
-
),
|
|
804
|
+
), Zs = ({
|
|
757
805
|
className: e,
|
|
758
806
|
...t
|
|
759
807
|
}) => /* @__PURE__ */ a(
|
|
760
|
-
|
|
808
|
+
dt,
|
|
761
809
|
{
|
|
762
810
|
className: d(
|
|
763
811
|
"bg-white dark:bg-gray-dark-950 pt-6 pb-4",
|
|
@@ -770,11 +818,11 @@ const Pd = Ra, wd = E(
|
|
|
770
818
|
),
|
|
771
819
|
...t
|
|
772
820
|
}
|
|
773
|
-
),
|
|
821
|
+
), er = ({
|
|
774
822
|
className: e,
|
|
775
823
|
...t
|
|
776
824
|
}) => /* @__PURE__ */ a(
|
|
777
|
-
|
|
825
|
+
st,
|
|
778
826
|
{
|
|
779
827
|
className: d(
|
|
780
828
|
"relative flex flex-col w-full py-1 px-2",
|
|
@@ -784,13 +832,13 @@ const Pd = Ra, wd = E(
|
|
|
784
832
|
),
|
|
785
833
|
...t
|
|
786
834
|
}
|
|
787
|
-
),
|
|
835
|
+
), tr = ({
|
|
788
836
|
className: e,
|
|
789
837
|
...t
|
|
790
|
-
}) => /* @__PURE__ */ a(
|
|
791
|
-
|
|
838
|
+
}) => /* @__PURE__ */ a(rt, { className: d("flex", e), ...t }), ar = u(({ className: e, ...t }, o) => /* @__PURE__ */ a(
|
|
839
|
+
ot,
|
|
792
840
|
{
|
|
793
|
-
ref:
|
|
841
|
+
ref: o,
|
|
794
842
|
className: d(
|
|
795
843
|
"min-h-[unset] text-sm overflow-hidden w-full resize-none",
|
|
796
844
|
"placeholder:text-gray-500 dark:placeholder:text-gray-dark-200",
|
|
@@ -800,11 +848,11 @@ const Pd = Ra, wd = E(
|
|
|
800
848
|
),
|
|
801
849
|
...t
|
|
802
850
|
}
|
|
803
|
-
)),
|
|
851
|
+
)), dr = ({
|
|
804
852
|
className: e,
|
|
805
853
|
...t
|
|
806
854
|
}) => /* @__PURE__ */ a(
|
|
807
|
-
|
|
855
|
+
mt,
|
|
808
856
|
{
|
|
809
857
|
className: d(
|
|
810
858
|
s({}),
|
|
@@ -820,20 +868,20 @@ const Pd = Ra, wd = E(
|
|
|
820
868
|
),
|
|
821
869
|
...t
|
|
822
870
|
}
|
|
823
|
-
),
|
|
871
|
+
), sr = ({
|
|
824
872
|
className: e,
|
|
825
873
|
...t
|
|
826
874
|
}) => /* @__PURE__ */ a(
|
|
827
|
-
|
|
875
|
+
it,
|
|
828
876
|
{
|
|
829
|
-
className: d(
|
|
877
|
+
className: d(ed(), "text-inherit group-disabled:opacity-60 ", e),
|
|
830
878
|
...t
|
|
831
879
|
}
|
|
832
|
-
),
|
|
880
|
+
), rr = ({
|
|
833
881
|
className: e,
|
|
834
882
|
...t
|
|
835
883
|
}) => /* @__PURE__ */ a(
|
|
836
|
-
|
|
884
|
+
nt,
|
|
837
885
|
{
|
|
838
886
|
className: d(
|
|
839
887
|
"flex items-center justify-between",
|
|
@@ -842,74 +890,74 @@ const Pd = Ra, wd = E(
|
|
|
842
890
|
),
|
|
843
891
|
...t
|
|
844
892
|
}
|
|
845
|
-
),
|
|
893
|
+
), or = ({
|
|
846
894
|
className: e,
|
|
847
895
|
...t
|
|
848
896
|
}) => /* @__PURE__ */ a(
|
|
849
|
-
|
|
897
|
+
lt,
|
|
850
898
|
{
|
|
851
899
|
className: d("flex items-center gap-2 flex-wrap px-3 min-w-0", e),
|
|
852
900
|
...t
|
|
853
901
|
}
|
|
854
|
-
),
|
|
902
|
+
), mr = ({
|
|
855
903
|
className: e,
|
|
856
904
|
...t
|
|
857
905
|
}) => /* @__PURE__ */ a(
|
|
858
|
-
|
|
906
|
+
ct,
|
|
859
907
|
{
|
|
860
908
|
className: d(n({ slot: "root" }), e),
|
|
861
909
|
...t
|
|
862
910
|
}
|
|
863
|
-
),
|
|
911
|
+
), ir = ({
|
|
864
912
|
className: e,
|
|
865
913
|
...t
|
|
866
914
|
}) => /* @__PURE__ */ a(
|
|
867
|
-
|
|
915
|
+
ht,
|
|
868
916
|
{
|
|
869
917
|
className: d(n({ slot: "icon" }), e),
|
|
870
918
|
...t
|
|
871
919
|
}
|
|
872
|
-
),
|
|
920
|
+
), nr = ({
|
|
873
921
|
className: e,
|
|
874
922
|
...t
|
|
875
923
|
}) => /* @__PURE__ */ a(
|
|
876
|
-
|
|
924
|
+
bt,
|
|
877
925
|
{
|
|
878
926
|
className: d(n({ slot: "title" }), e),
|
|
879
927
|
...t
|
|
880
928
|
}
|
|
881
|
-
),
|
|
929
|
+
), lr = ({
|
|
882
930
|
className: e,
|
|
883
931
|
...t
|
|
884
932
|
}) => /* @__PURE__ */ a(
|
|
885
|
-
|
|
933
|
+
Ct,
|
|
886
934
|
{
|
|
887
935
|
className: d(n({ slot: "delete" }), e),
|
|
888
936
|
...t
|
|
889
937
|
}
|
|
890
|
-
),
|
|
938
|
+
), cr = ({
|
|
891
939
|
className: e,
|
|
892
940
|
...t
|
|
893
941
|
}) => /* @__PURE__ */ a(
|
|
894
|
-
|
|
942
|
+
pt,
|
|
895
943
|
{
|
|
896
944
|
className: d("flex items-center justify-between", "gap-2 flex-wrap px-3", e),
|
|
897
945
|
...t
|
|
898
946
|
}
|
|
899
|
-
),
|
|
947
|
+
), hr = H, br = ({
|
|
900
948
|
className: e,
|
|
901
949
|
...t
|
|
902
950
|
}) => /* @__PURE__ */ a(
|
|
903
|
-
|
|
951
|
+
ut,
|
|
904
952
|
{
|
|
905
953
|
className: d("cursor-pointer text-sm text-gray-600", "dark:text-white-alpha-600", e),
|
|
906
954
|
...t
|
|
907
955
|
}
|
|
908
|
-
),
|
|
956
|
+
), Cr = ({
|
|
909
957
|
className: e,
|
|
910
958
|
...t
|
|
911
959
|
}) => /* @__PURE__ */ a(
|
|
912
|
-
|
|
960
|
+
Et,
|
|
913
961
|
{
|
|
914
962
|
className: d(
|
|
915
963
|
"bg-white text-gray-800 fill-white",
|
|
@@ -920,14 +968,14 @@ const Pd = Ra, wd = E(
|
|
|
920
968
|
),
|
|
921
969
|
...t
|
|
922
970
|
}
|
|
923
|
-
),
|
|
971
|
+
), pr = L, ur = ({
|
|
924
972
|
className: e,
|
|
925
973
|
...t
|
|
926
|
-
}) => /* @__PURE__ */ a(
|
|
974
|
+
}) => /* @__PURE__ */ a(xt, { className: d("contents", e), ...t }), Er = ({
|
|
927
975
|
className: e,
|
|
928
976
|
...t
|
|
929
977
|
}) => /* @__PURE__ */ a(
|
|
930
|
-
|
|
978
|
+
gt,
|
|
931
979
|
{
|
|
932
980
|
className: d(
|
|
933
981
|
s({ variant: "outline", size: "xs" }),
|
|
@@ -936,20 +984,20 @@ const Pd = Ra, wd = E(
|
|
|
936
984
|
),
|
|
937
985
|
...t
|
|
938
986
|
}
|
|
939
|
-
),
|
|
987
|
+
), xr = D, gr = ({
|
|
940
988
|
className: e,
|
|
941
989
|
...t
|
|
942
990
|
}) => /* @__PURE__ */ a(
|
|
943
|
-
|
|
991
|
+
Ft,
|
|
944
992
|
{
|
|
945
993
|
className: d(r({ slot: "overlay" }), e),
|
|
946
994
|
...t
|
|
947
995
|
}
|
|
948
|
-
),
|
|
996
|
+
), Fr = ({
|
|
949
997
|
className: e,
|
|
950
998
|
...t
|
|
951
999
|
}) => /* @__PURE__ */ a(
|
|
952
|
-
|
|
1000
|
+
ft,
|
|
953
1001
|
{
|
|
954
1002
|
className: d(
|
|
955
1003
|
r({ slot: "content" }),
|
|
@@ -959,29 +1007,29 @@ const Pd = Ra, wd = E(
|
|
|
959
1007
|
),
|
|
960
1008
|
...t
|
|
961
1009
|
}
|
|
962
|
-
),
|
|
1010
|
+
), fr = ({
|
|
963
1011
|
className: e,
|
|
964
1012
|
...t
|
|
965
1013
|
}) => /* @__PURE__ */ a(
|
|
966
|
-
|
|
1014
|
+
vt,
|
|
967
1015
|
{
|
|
968
1016
|
className: d(r({ slot: "header" }), "px-0 pt-0 pb-8 gap-y-2", "font-semibold", e),
|
|
969
1017
|
...t
|
|
970
1018
|
}
|
|
971
|
-
),
|
|
1019
|
+
), vr = ({
|
|
972
1020
|
className: e,
|
|
973
1021
|
...t
|
|
974
1022
|
}) => /* @__PURE__ */ a(
|
|
975
|
-
|
|
1023
|
+
kt,
|
|
976
1024
|
{
|
|
977
1025
|
className: d("w-full semibold", e),
|
|
978
1026
|
...t
|
|
979
1027
|
}
|
|
980
|
-
),
|
|
1028
|
+
), kr = ({
|
|
981
1029
|
className: e,
|
|
982
1030
|
...t
|
|
983
1031
|
}) => /* @__PURE__ */ a(
|
|
984
|
-
|
|
1032
|
+
At,
|
|
985
1033
|
{
|
|
986
1034
|
className: d(
|
|
987
1035
|
"text-gray-700 dark:text-white-alpha-700",
|
|
@@ -990,56 +1038,56 @@ const Pd = Ra, wd = E(
|
|
|
990
1038
|
),
|
|
991
1039
|
...t
|
|
992
1040
|
}
|
|
993
|
-
),
|
|
1041
|
+
), Ar = W, yr = ({
|
|
994
1042
|
className: e,
|
|
995
1043
|
...t
|
|
996
1044
|
}) => /* @__PURE__ */ a(
|
|
997
|
-
|
|
1045
|
+
yt,
|
|
998
1046
|
{
|
|
999
1047
|
className: d(r({ slot: "close" }), e),
|
|
1000
1048
|
...t
|
|
1001
1049
|
}
|
|
1002
|
-
),
|
|
1050
|
+
), Pr = ({
|
|
1003
1051
|
className: e,
|
|
1004
1052
|
...t
|
|
1005
1053
|
}) => /* @__PURE__ */ a(
|
|
1006
|
-
|
|
1054
|
+
Pt,
|
|
1007
1055
|
{
|
|
1008
1056
|
className: d(r({ slot: "body" }), "p-0", e),
|
|
1009
1057
|
...t
|
|
1010
1058
|
}
|
|
1011
|
-
),
|
|
1059
|
+
), wr = ({
|
|
1012
1060
|
className: e,
|
|
1013
1061
|
...t
|
|
1014
1062
|
}) => /* @__PURE__ */ a(
|
|
1015
|
-
|
|
1063
|
+
wt,
|
|
1016
1064
|
{
|
|
1017
1065
|
className: d("flex flex-col gap-8", e),
|
|
1018
1066
|
...t
|
|
1019
1067
|
}
|
|
1020
|
-
),
|
|
1068
|
+
), Mr = ({
|
|
1021
1069
|
className: e,
|
|
1022
1070
|
...t
|
|
1023
1071
|
}) => /* @__PURE__ */ a(
|
|
1024
|
-
|
|
1072
|
+
Mt,
|
|
1025
1073
|
{
|
|
1026
1074
|
className: d("flex flex-col gap-2", e),
|
|
1027
1075
|
...t
|
|
1028
1076
|
}
|
|
1029
|
-
),
|
|
1077
|
+
), Nr = ({
|
|
1030
1078
|
className: e,
|
|
1031
1079
|
...t
|
|
1032
1080
|
}) => /* @__PURE__ */ a(
|
|
1033
|
-
|
|
1081
|
+
Nt,
|
|
1034
1082
|
{
|
|
1035
1083
|
className: d("text-sm font-medium text-gray-700 dark:text-white-alpha-700", e),
|
|
1036
1084
|
...t
|
|
1037
1085
|
}
|
|
1038
|
-
),
|
|
1086
|
+
), Ir = ({
|
|
1039
1087
|
className: e,
|
|
1040
1088
|
...t
|
|
1041
1089
|
}) => /* @__PURE__ */ a(
|
|
1042
|
-
|
|
1090
|
+
It,
|
|
1043
1091
|
{
|
|
1044
1092
|
className: d(
|
|
1045
1093
|
"h-9 px-3 rounded-md border",
|
|
@@ -1050,38 +1098,38 @@ const Pd = Ra, wd = E(
|
|
|
1050
1098
|
),
|
|
1051
1099
|
...t
|
|
1052
1100
|
}
|
|
1053
|
-
),
|
|
1101
|
+
), Br = ({
|
|
1054
1102
|
className: e,
|
|
1055
1103
|
...t
|
|
1056
1104
|
}) => /* @__PURE__ */ a(
|
|
1057
|
-
|
|
1105
|
+
Bt,
|
|
1058
1106
|
{
|
|
1059
1107
|
className: d("text-sm text-red-500", e),
|
|
1060
1108
|
...t
|
|
1061
1109
|
}
|
|
1062
|
-
),
|
|
1110
|
+
), Sr = ({
|
|
1063
1111
|
className: e,
|
|
1064
1112
|
...t
|
|
1065
1113
|
}) => /* @__PURE__ */ a(
|
|
1066
|
-
|
|
1114
|
+
St,
|
|
1067
1115
|
{
|
|
1068
1116
|
className: d("flex flex-col gap-2", e),
|
|
1069
1117
|
...t
|
|
1070
1118
|
}
|
|
1071
|
-
),
|
|
1119
|
+
), Tr = ({
|
|
1072
1120
|
className: e,
|
|
1073
1121
|
...t
|
|
1074
1122
|
}) => /* @__PURE__ */ a(
|
|
1075
|
-
|
|
1123
|
+
Tt,
|
|
1076
1124
|
{
|
|
1077
1125
|
className: d("text-sm font-medium text-gray-700 dark:text-white-alpha-700", e),
|
|
1078
1126
|
...t
|
|
1079
1127
|
}
|
|
1080
|
-
),
|
|
1128
|
+
), Hr = ({
|
|
1081
1129
|
className: e,
|
|
1082
1130
|
...t
|
|
1083
1131
|
}) => /* @__PURE__ */ a(
|
|
1084
|
-
|
|
1132
|
+
Ht,
|
|
1085
1133
|
{
|
|
1086
1134
|
className: d(
|
|
1087
1135
|
l({ size: "md", variant: "outline" }),
|
|
@@ -1090,97 +1138,97 @@ const Pd = Ra, wd = E(
|
|
|
1090
1138
|
),
|
|
1091
1139
|
...t
|
|
1092
1140
|
}
|
|
1093
|
-
),
|
|
1141
|
+
), Lr = ({
|
|
1094
1142
|
className: e,
|
|
1095
1143
|
...t
|
|
1096
1144
|
}) => /* @__PURE__ */ a(
|
|
1097
|
-
|
|
1145
|
+
Lt,
|
|
1098
1146
|
{
|
|
1099
1147
|
className: d("text-sm text-red-500", e),
|
|
1100
1148
|
...t
|
|
1101
1149
|
}
|
|
1102
|
-
),
|
|
1150
|
+
), Dr = ({
|
|
1103
1151
|
className: e,
|
|
1104
1152
|
...t
|
|
1105
1153
|
}) => /* @__PURE__ */ a(
|
|
1106
|
-
|
|
1154
|
+
Dt,
|
|
1107
1155
|
{
|
|
1108
1156
|
className: d(s({ variant: "primaryFilled" }), "ml-auto", e),
|
|
1109
1157
|
...t
|
|
1110
1158
|
}
|
|
1111
|
-
),
|
|
1159
|
+
), Wr = ({
|
|
1112
1160
|
className: e,
|
|
1113
1161
|
...t
|
|
1114
1162
|
}) => /* @__PURE__ */ a(
|
|
1115
|
-
|
|
1163
|
+
Wt,
|
|
1116
1164
|
{
|
|
1117
1165
|
className: d("mt-4 flex items-start justify-between flex-wrap-reverse gap-2.5", e),
|
|
1118
1166
|
...t
|
|
1119
1167
|
}
|
|
1120
|
-
),
|
|
1168
|
+
), _r = ({
|
|
1121
1169
|
className: e,
|
|
1122
1170
|
...t
|
|
1123
1171
|
}) => /* @__PURE__ */ a(
|
|
1124
|
-
|
|
1172
|
+
_t,
|
|
1125
1173
|
{
|
|
1126
1174
|
className: d("flex items-center gap-2.5 flex-wrap", e),
|
|
1127
1175
|
...t
|
|
1128
1176
|
}
|
|
1129
|
-
),
|
|
1177
|
+
), zr = ({
|
|
1130
1178
|
className: e,
|
|
1131
1179
|
...t
|
|
1132
1180
|
}) => /* @__PURE__ */ a(
|
|
1133
|
-
|
|
1181
|
+
zt,
|
|
1134
1182
|
{
|
|
1135
1183
|
className: d("flex items-center whitespace-nowrap", e),
|
|
1136
1184
|
...t
|
|
1137
1185
|
}
|
|
1138
|
-
),
|
|
1186
|
+
), jr = ({
|
|
1139
1187
|
className: e,
|
|
1140
1188
|
...t
|
|
1141
1189
|
}) => /* @__PURE__ */ a(
|
|
1142
|
-
|
|
1190
|
+
jt,
|
|
1143
1191
|
{
|
|
1144
1192
|
className: d("text-xs text-gray-500 dark:text-white-alpha-600", e),
|
|
1145
1193
|
...t
|
|
1146
1194
|
}
|
|
1147
|
-
),
|
|
1195
|
+
), Qr = ({
|
|
1148
1196
|
className: e,
|
|
1149
1197
|
...t
|
|
1150
1198
|
}) => /* @__PURE__ */ a(
|
|
1151
|
-
|
|
1199
|
+
Qt,
|
|
1152
1200
|
{
|
|
1153
|
-
className: d("text-gray-500 dark:text-white-
|
|
1201
|
+
className: d("text-gray-500 dark:text-white dark:opacity-60", "w-5 ml-1 mr-0.5", e),
|
|
1154
1202
|
...t
|
|
1155
1203
|
}
|
|
1156
|
-
),
|
|
1204
|
+
), Or = ({
|
|
1157
1205
|
className: e,
|
|
1158
1206
|
...t
|
|
1159
1207
|
}) => /* @__PURE__ */ a(
|
|
1160
|
-
|
|
1208
|
+
Ot,
|
|
1161
1209
|
{
|
|
1162
1210
|
className: d(
|
|
1163
|
-
|
|
1211
|
+
td(),
|
|
1164
1212
|
"inline-flex text-1sm text-gray-500",
|
|
1165
1213
|
"dark:text-white-alpha-600 font-medium",
|
|
1166
1214
|
e
|
|
1167
1215
|
),
|
|
1168
1216
|
...t
|
|
1169
1217
|
}
|
|
1170
|
-
),
|
|
1218
|
+
), x = d(
|
|
1171
1219
|
s({ size: "xs", variant: "outline" }),
|
|
1172
1220
|
"text-gray-700 dark:text-white-alpha-700"
|
|
1173
|
-
),
|
|
1221
|
+
), Vr = ({
|
|
1174
1222
|
className: e,
|
|
1175
1223
|
...t
|
|
1176
|
-
}) => /* @__PURE__ */ a(
|
|
1224
|
+
}) => /* @__PURE__ */ a(Vt, { className: d(x, e), ...t }), Rr = ({
|
|
1177
1225
|
className: e,
|
|
1178
1226
|
...t
|
|
1179
|
-
}) => /* @__PURE__ */ a(
|
|
1227
|
+
}) => /* @__PURE__ */ a(Rt, { className: d("cursor-pointer", e), ...t }), qr = ({
|
|
1180
1228
|
className: e,
|
|
1181
1229
|
...t
|
|
1182
1230
|
}) => /* @__PURE__ */ a(
|
|
1183
|
-
|
|
1231
|
+
qt,
|
|
1184
1232
|
{
|
|
1185
1233
|
className: d(
|
|
1186
1234
|
"bg-white text-gray-800 fill-white",
|
|
@@ -1191,23 +1239,23 @@ const Pd = Ra, wd = E(
|
|
|
1191
1239
|
),
|
|
1192
1240
|
...t
|
|
1193
1241
|
}
|
|
1194
|
-
),
|
|
1242
|
+
), Gr = _, Kr = ({
|
|
1195
1243
|
className: e,
|
|
1196
1244
|
...t
|
|
1197
|
-
}) => /* @__PURE__ */ a(
|
|
1245
|
+
}) => /* @__PURE__ */ a(Gt, { className: d(x, e), ...t }), $r = ({
|
|
1198
1246
|
className: e,
|
|
1199
1247
|
...t
|
|
1200
1248
|
}) => /* @__PURE__ */ a(
|
|
1201
|
-
|
|
1249
|
+
Kt,
|
|
1202
1250
|
{
|
|
1203
|
-
className: d(
|
|
1251
|
+
className: d(x, e),
|
|
1204
1252
|
...t
|
|
1205
1253
|
}
|
|
1206
|
-
),
|
|
1254
|
+
), Jr = ({
|
|
1207
1255
|
className: e,
|
|
1208
1256
|
...t
|
|
1209
1257
|
}) => /* @__PURE__ */ a(
|
|
1210
|
-
|
|
1258
|
+
$t,
|
|
1211
1259
|
{
|
|
1212
1260
|
className: d(
|
|
1213
1261
|
C({ slot: "content" }),
|
|
@@ -1217,47 +1265,47 @@ const Pd = Ra, wd = E(
|
|
|
1217
1265
|
),
|
|
1218
1266
|
...t
|
|
1219
1267
|
}
|
|
1220
|
-
),
|
|
1268
|
+
), Ur = ({
|
|
1221
1269
|
className: e,
|
|
1222
1270
|
...t
|
|
1223
1271
|
}) => /* @__PURE__ */ a(
|
|
1224
|
-
|
|
1272
|
+
Jt,
|
|
1225
1273
|
{
|
|
1226
1274
|
className: d(C({ slot: "arrow" }), e),
|
|
1227
1275
|
...t
|
|
1228
1276
|
}
|
|
1229
|
-
),
|
|
1277
|
+
), Xr = ({
|
|
1230
1278
|
className: e,
|
|
1231
1279
|
...t
|
|
1232
1280
|
}) => /* @__PURE__ */ a(
|
|
1233
|
-
|
|
1281
|
+
Ut,
|
|
1234
1282
|
{
|
|
1235
1283
|
className: d("flex items-center cursor-pointer hover:underline", e),
|
|
1236
1284
|
...t
|
|
1237
1285
|
}
|
|
1238
|
-
),
|
|
1286
|
+
), Yr = ({
|
|
1239
1287
|
className: e,
|
|
1240
1288
|
...t
|
|
1241
1289
|
}) => /* @__PURE__ */ a(
|
|
1242
|
-
|
|
1290
|
+
Xt,
|
|
1243
1291
|
{
|
|
1244
1292
|
className: d("mr-2 text-inkeep-primary-medium", e),
|
|
1245
1293
|
...t
|
|
1246
1294
|
}
|
|
1247
|
-
),
|
|
1295
|
+
), Zr = z, eo = ({
|
|
1248
1296
|
className: e,
|
|
1249
1297
|
...t
|
|
1250
1298
|
}) => /* @__PURE__ */ a(
|
|
1251
|
-
|
|
1299
|
+
Yt,
|
|
1252
1300
|
{
|
|
1253
1301
|
className: d(r({ slot: "overlay" }), e),
|
|
1254
1302
|
...t
|
|
1255
1303
|
}
|
|
1256
|
-
),
|
|
1304
|
+
), to = ({
|
|
1257
1305
|
className: e,
|
|
1258
1306
|
...t
|
|
1259
1307
|
}) => /* @__PURE__ */ a(
|
|
1260
|
-
|
|
1308
|
+
Zt,
|
|
1261
1309
|
{
|
|
1262
1310
|
className: d(
|
|
1263
1311
|
r({ slot: "content" }),
|
|
@@ -1267,68 +1315,68 @@ const Pd = Ra, wd = E(
|
|
|
1267
1315
|
),
|
|
1268
1316
|
...t
|
|
1269
1317
|
}
|
|
1270
|
-
),
|
|
1318
|
+
), ao = ({
|
|
1271
1319
|
className: e,
|
|
1272
1320
|
...t
|
|
1273
1321
|
}) => /* @__PURE__ */ a(
|
|
1274
|
-
|
|
1322
|
+
ea,
|
|
1275
1323
|
{
|
|
1276
1324
|
className: d(r({ slot: "header" }), "px-0 pt-0 pb-8", "font-semibold", e),
|
|
1277
1325
|
...t
|
|
1278
1326
|
}
|
|
1279
|
-
),
|
|
1327
|
+
), so = ({
|
|
1280
1328
|
className: e,
|
|
1281
1329
|
...t
|
|
1282
1330
|
}) => /* @__PURE__ */ a(
|
|
1283
|
-
|
|
1331
|
+
ta,
|
|
1284
1332
|
{
|
|
1285
1333
|
className: d(r({ slot: "close" }), e),
|
|
1286
1334
|
...t
|
|
1287
1335
|
}
|
|
1288
|
-
),
|
|
1336
|
+
), ro = ({
|
|
1289
1337
|
className: e,
|
|
1290
1338
|
...t
|
|
1291
1339
|
}) => /* @__PURE__ */ a(
|
|
1292
|
-
|
|
1340
|
+
aa,
|
|
1293
1341
|
{
|
|
1294
1342
|
className: d(r({ slot: "body" }), "p-0", e),
|
|
1295
1343
|
...t
|
|
1296
1344
|
}
|
|
1297
|
-
),
|
|
1345
|
+
), oo = ({
|
|
1298
1346
|
className: e,
|
|
1299
1347
|
...t
|
|
1300
|
-
}) => /* @__PURE__ */ a(
|
|
1348
|
+
}) => /* @__PURE__ */ a(da, { className: d("flex flex-col gap-8", e), ...t }), mo = ({
|
|
1301
1349
|
className: e,
|
|
1302
1350
|
...t
|
|
1303
1351
|
}) => /* @__PURE__ */ a(
|
|
1304
|
-
|
|
1352
|
+
sa,
|
|
1305
1353
|
{
|
|
1306
1354
|
className: d("flex flex-wrap items-center", "gap-[.75rem_0.5rem]", e),
|
|
1307
1355
|
...t
|
|
1308
1356
|
}
|
|
1309
|
-
),
|
|
1357
|
+
), io = ({
|
|
1310
1358
|
className: e,
|
|
1311
1359
|
...t
|
|
1312
1360
|
}) => /* @__PURE__ */ a(
|
|
1313
|
-
|
|
1361
|
+
ra,
|
|
1314
1362
|
{
|
|
1315
|
-
className: d(
|
|
1363
|
+
className: d(b({ slot: "root" }), e),
|
|
1316
1364
|
...t
|
|
1317
1365
|
}
|
|
1318
|
-
),
|
|
1366
|
+
), no = ({
|
|
1319
1367
|
className: e,
|
|
1320
1368
|
...t
|
|
1321
1369
|
}) => /* @__PURE__ */ a(
|
|
1322
|
-
|
|
1370
|
+
oa,
|
|
1323
1371
|
{
|
|
1324
|
-
className: d(
|
|
1372
|
+
className: d(b({ slot: "indicator" }), e),
|
|
1325
1373
|
...t
|
|
1326
1374
|
}
|
|
1327
|
-
),
|
|
1375
|
+
), lo = ({
|
|
1328
1376
|
className: e,
|
|
1329
1377
|
...t
|
|
1330
1378
|
}) => /* @__PURE__ */ a(
|
|
1331
|
-
|
|
1379
|
+
ma,
|
|
1332
1380
|
{
|
|
1333
1381
|
className: d(
|
|
1334
1382
|
"select-none cursor-pointer font-medium text-sm",
|
|
@@ -1337,38 +1385,38 @@ const Pd = Ra, wd = E(
|
|
|
1337
1385
|
),
|
|
1338
1386
|
...t
|
|
1339
1387
|
}
|
|
1340
|
-
),
|
|
1388
|
+
), co = ({
|
|
1341
1389
|
className: e,
|
|
1342
1390
|
...t
|
|
1343
1391
|
}) => /* @__PURE__ */ a(
|
|
1344
|
-
|
|
1392
|
+
ia,
|
|
1345
1393
|
{
|
|
1346
1394
|
className: d("flex-[0_0_100%]", "min-h-20 border rounded-md", "px-3 py-2 text-sm", e),
|
|
1347
1395
|
...t
|
|
1348
1396
|
}
|
|
1349
|
-
),
|
|
1397
|
+
), ho = ({
|
|
1350
1398
|
className: e,
|
|
1351
1399
|
...t
|
|
1352
1400
|
}) => /* @__PURE__ */ a(
|
|
1353
|
-
|
|
1401
|
+
na,
|
|
1354
1402
|
{
|
|
1355
1403
|
className: d(s({ variant: "primaryFilled" }), "ml-auto", e),
|
|
1356
1404
|
...t
|
|
1357
1405
|
}
|
|
1358
|
-
),
|
|
1406
|
+
), bo = ({
|
|
1359
1407
|
className: e,
|
|
1360
1408
|
...t
|
|
1361
1409
|
}) => /* @__PURE__ */ a(
|
|
1362
|
-
|
|
1410
|
+
la,
|
|
1363
1411
|
{
|
|
1364
1412
|
className: d("w-full overflow-y-auto [scrollbar-width:thin]", e),
|
|
1365
1413
|
...t
|
|
1366
1414
|
}
|
|
1367
|
-
),
|
|
1415
|
+
), Co = ({
|
|
1368
1416
|
className: e,
|
|
1369
1417
|
...t
|
|
1370
1418
|
}) => /* @__PURE__ */ a(
|
|
1371
|
-
|
|
1419
|
+
ca,
|
|
1372
1420
|
{
|
|
1373
1421
|
className: d(
|
|
1374
1422
|
p({ section: "content" }),
|
|
@@ -1379,11 +1427,11 @@ const Pd = Ra, wd = E(
|
|
|
1379
1427
|
),
|
|
1380
1428
|
...t
|
|
1381
1429
|
}
|
|
1382
|
-
),
|
|
1430
|
+
), po = ({
|
|
1383
1431
|
className: e,
|
|
1384
1432
|
...t
|
|
1385
1433
|
}) => /* @__PURE__ */ a(
|
|
1386
|
-
|
|
1434
|
+
ha,
|
|
1387
1435
|
{
|
|
1388
1436
|
className: d(
|
|
1389
1437
|
s({ variant: "ghost" }),
|
|
@@ -1393,41 +1441,41 @@ const Pd = Ra, wd = E(
|
|
|
1393
1441
|
),
|
|
1394
1442
|
...t
|
|
1395
1443
|
}
|
|
1396
|
-
),
|
|
1444
|
+
), uo = ({
|
|
1397
1445
|
className: e,
|
|
1398
1446
|
...t
|
|
1399
1447
|
}) => /* @__PURE__ */ a(
|
|
1400
|
-
|
|
1448
|
+
ba,
|
|
1401
1449
|
{
|
|
1402
1450
|
className: d("mt-8 flex flex-col gap-6", e),
|
|
1403
1451
|
...t
|
|
1404
1452
|
}
|
|
1405
|
-
),
|
|
1453
|
+
), Eo = ({
|
|
1406
1454
|
className: e,
|
|
1407
1455
|
...t
|
|
1408
1456
|
}) => /* @__PURE__ */ a(
|
|
1409
|
-
|
|
1457
|
+
Ca,
|
|
1410
1458
|
{
|
|
1411
1459
|
className: d("font-semibold text-xl leading-5", e),
|
|
1412
1460
|
...t
|
|
1413
1461
|
}
|
|
1414
|
-
),
|
|
1462
|
+
), xo = ({
|
|
1415
1463
|
className: e,
|
|
1416
1464
|
...t
|
|
1417
1465
|
}) => /* @__PURE__ */ a(
|
|
1418
|
-
|
|
1466
|
+
pa,
|
|
1419
1467
|
{
|
|
1420
1468
|
className: d("text-gray-700 dark:text-white-alpha-700 text-sm", e),
|
|
1421
1469
|
...t
|
|
1422
1470
|
}
|
|
1423
|
-
),
|
|
1471
|
+
), go = ({
|
|
1424
1472
|
className: e,
|
|
1425
1473
|
...t
|
|
1426
|
-
}) => /* @__PURE__ */ a(
|
|
1474
|
+
}) => /* @__PURE__ */ a(ua, { className: d("w-full space-y-8", e), ...t }), Fo = ({
|
|
1427
1475
|
className: e,
|
|
1428
1476
|
...t
|
|
1429
1477
|
}) => /* @__PURE__ */ a(
|
|
1430
|
-
|
|
1478
|
+
Ea,
|
|
1431
1479
|
{
|
|
1432
1480
|
className: d(
|
|
1433
1481
|
"group flex flex-col gap-2 data-[hidden]:hidden",
|
|
@@ -1436,11 +1484,11 @@ const Pd = Ra, wd = E(
|
|
|
1436
1484
|
),
|
|
1437
1485
|
...t
|
|
1438
1486
|
}
|
|
1439
|
-
),
|
|
1487
|
+
), fo = ({
|
|
1440
1488
|
className: e,
|
|
1441
1489
|
...t
|
|
1442
1490
|
}) => /* @__PURE__ */ a(
|
|
1443
|
-
|
|
1491
|
+
xa,
|
|
1444
1492
|
{
|
|
1445
1493
|
className: d(
|
|
1446
1494
|
"font-medium text-sm text-gray-700",
|
|
@@ -1457,29 +1505,29 @@ const Pd = Ra, wd = E(
|
|
|
1457
1505
|
),
|
|
1458
1506
|
...t
|
|
1459
1507
|
}
|
|
1460
|
-
),
|
|
1508
|
+
), vo = ({
|
|
1461
1509
|
className: e,
|
|
1462
1510
|
...t
|
|
1463
1511
|
}) => /* @__PURE__ */ a(
|
|
1464
|
-
|
|
1512
|
+
ga,
|
|
1465
1513
|
{
|
|
1466
1514
|
className: d(l({ size: "md", variant: "outline" }), e),
|
|
1467
1515
|
...t
|
|
1468
1516
|
}
|
|
1469
|
-
),
|
|
1517
|
+
), ko = ({
|
|
1470
1518
|
className: e,
|
|
1471
1519
|
...t
|
|
1472
1520
|
}) => /* @__PURE__ */ a(
|
|
1473
|
-
|
|
1521
|
+
Fa,
|
|
1474
1522
|
{
|
|
1475
1523
|
className: d(l({ size: "md", variant: "outline" }), e),
|
|
1476
1524
|
...t
|
|
1477
1525
|
}
|
|
1478
|
-
),
|
|
1526
|
+
), Ao = ({
|
|
1479
1527
|
className: e,
|
|
1480
1528
|
...t
|
|
1481
1529
|
}) => /* @__PURE__ */ a(
|
|
1482
|
-
|
|
1530
|
+
fa,
|
|
1483
1531
|
{
|
|
1484
1532
|
className: d(
|
|
1485
1533
|
l({ size: "md", variant: "outline" }),
|
|
@@ -1490,11 +1538,11 @@ const Pd = Ra, wd = E(
|
|
|
1490
1538
|
),
|
|
1491
1539
|
...t
|
|
1492
1540
|
}
|
|
1493
|
-
),
|
|
1541
|
+
), yo = ({
|
|
1494
1542
|
className: e,
|
|
1495
1543
|
...t
|
|
1496
1544
|
}) => /* @__PURE__ */ a(
|
|
1497
|
-
|
|
1545
|
+
va,
|
|
1498
1546
|
{
|
|
1499
1547
|
className: d(
|
|
1500
1548
|
l({ size: "md", variant: "outline" }),
|
|
@@ -1503,167 +1551,167 @@ const Pd = Ra, wd = E(
|
|
|
1503
1551
|
),
|
|
1504
1552
|
...t
|
|
1505
1553
|
}
|
|
1506
|
-
),
|
|
1554
|
+
), Po = ({
|
|
1507
1555
|
className: e,
|
|
1508
1556
|
...t
|
|
1509
1557
|
}) => /* @__PURE__ */ a(
|
|
1510
|
-
|
|
1558
|
+
ka,
|
|
1511
1559
|
{
|
|
1512
|
-
className: d(
|
|
1560
|
+
className: d(b({ slot: "root" }), e),
|
|
1513
1561
|
...t
|
|
1514
1562
|
}
|
|
1515
|
-
),
|
|
1563
|
+
), wo = ({
|
|
1516
1564
|
className: e,
|
|
1517
1565
|
...t
|
|
1518
1566
|
}) => /* @__PURE__ */ a(
|
|
1519
|
-
|
|
1567
|
+
Aa,
|
|
1520
1568
|
{
|
|
1521
|
-
className: d(
|
|
1569
|
+
className: d(b({ slot: "indicator" }), e),
|
|
1522
1570
|
...t
|
|
1523
1571
|
}
|
|
1524
|
-
),
|
|
1572
|
+
), Mo = j, No = ({
|
|
1525
1573
|
className: e,
|
|
1526
1574
|
...t
|
|
1527
1575
|
}) => /* @__PURE__ */ a(
|
|
1528
|
-
|
|
1576
|
+
ya,
|
|
1529
1577
|
{
|
|
1530
1578
|
className: d(c({ slot: "trigger" }), e),
|
|
1531
1579
|
...t
|
|
1532
1580
|
}
|
|
1533
|
-
),
|
|
1581
|
+
), Io = Q, Bo = ({
|
|
1534
1582
|
className: e,
|
|
1535
1583
|
...t
|
|
1536
1584
|
}) => /* @__PURE__ */ a(
|
|
1537
|
-
|
|
1585
|
+
Pa,
|
|
1538
1586
|
{
|
|
1539
1587
|
className: d("h-4 w-4 opacity-45", e),
|
|
1540
1588
|
...t
|
|
1541
1589
|
}
|
|
1542
|
-
),
|
|
1590
|
+
), So = ({
|
|
1543
1591
|
className: e,
|
|
1544
1592
|
...t
|
|
1545
1593
|
}) => /* @__PURE__ */ a(
|
|
1546
|
-
|
|
1594
|
+
wa,
|
|
1547
1595
|
{
|
|
1548
1596
|
className: d(c({ slot: "content" }), e),
|
|
1549
1597
|
...t
|
|
1550
1598
|
}
|
|
1551
|
-
),
|
|
1599
|
+
), To = ({
|
|
1552
1600
|
className: e,
|
|
1553
1601
|
...t
|
|
1554
1602
|
}) => /* @__PURE__ */ a(
|
|
1555
|
-
|
|
1603
|
+
Ma,
|
|
1556
1604
|
{
|
|
1557
1605
|
className: d(c({ slot: "viewport" }), e),
|
|
1558
1606
|
...t
|
|
1559
1607
|
}
|
|
1560
|
-
),
|
|
1608
|
+
), Ho = ({
|
|
1561
1609
|
className: e,
|
|
1562
1610
|
...t
|
|
1563
1611
|
}) => /* @__PURE__ */ a(
|
|
1564
|
-
|
|
1612
|
+
Na,
|
|
1565
1613
|
{
|
|
1566
1614
|
className: d(c({ slot: "item" }), e),
|
|
1567
1615
|
...t
|
|
1568
1616
|
}
|
|
1569
|
-
),
|
|
1617
|
+
), Lo = O, Do = ({
|
|
1570
1618
|
className: e,
|
|
1571
1619
|
...t
|
|
1572
1620
|
}) => /* @__PURE__ */ a(
|
|
1573
|
-
|
|
1621
|
+
Ia,
|
|
1574
1622
|
{
|
|
1575
1623
|
className: d(c({ slot: "itemIndicator" }), e),
|
|
1576
1624
|
...t
|
|
1577
1625
|
}
|
|
1578
|
-
),
|
|
1626
|
+
), Wo = V, _o = ({
|
|
1579
1627
|
className: e,
|
|
1580
1628
|
...t
|
|
1581
1629
|
}) => /* @__PURE__ */ a(
|
|
1582
|
-
|
|
1630
|
+
Ba,
|
|
1583
1631
|
{
|
|
1584
|
-
className: d(
|
|
1632
|
+
className: d(i({ slot: "control" }), e),
|
|
1585
1633
|
...t
|
|
1586
1634
|
}
|
|
1587
|
-
),
|
|
1635
|
+
), zo = ({
|
|
1588
1636
|
className: e,
|
|
1589
1637
|
...t
|
|
1590
|
-
}) => /* @__PURE__ */ a(
|
|
1638
|
+
}) => /* @__PURE__ */ a(La, { className: e, ...t }), jo = ({
|
|
1591
1639
|
className: e,
|
|
1592
1640
|
...t
|
|
1593
1641
|
}) => /* @__PURE__ */ a(
|
|
1594
|
-
|
|
1642
|
+
Sa,
|
|
1595
1643
|
{
|
|
1596
|
-
className: d(
|
|
1644
|
+
className: d(i({ slot: "input" }), e),
|
|
1597
1645
|
...t
|
|
1598
1646
|
}
|
|
1599
|
-
),
|
|
1647
|
+
), Qo = ({
|
|
1600
1648
|
className: e,
|
|
1601
1649
|
...t
|
|
1602
1650
|
}) => /* @__PURE__ */ a(
|
|
1603
|
-
|
|
1651
|
+
Ta,
|
|
1604
1652
|
{
|
|
1605
|
-
className: d(
|
|
1653
|
+
className: d(i({ slot: "trigger" }), e),
|
|
1606
1654
|
...t
|
|
1607
1655
|
}
|
|
1608
|
-
),
|
|
1656
|
+
), Oo = ({
|
|
1609
1657
|
className: e,
|
|
1610
1658
|
...t
|
|
1611
1659
|
}) => /* @__PURE__ */ a(
|
|
1612
|
-
|
|
1660
|
+
Ha,
|
|
1613
1661
|
{
|
|
1614
|
-
className: d(
|
|
1662
|
+
className: d(i({ slot: "selectedTags" }), e),
|
|
1615
1663
|
...t
|
|
1616
1664
|
}
|
|
1617
|
-
),
|
|
1665
|
+
), Vo = ({
|
|
1618
1666
|
className: e,
|
|
1619
1667
|
...t
|
|
1620
1668
|
}) => /* @__PURE__ */ a(
|
|
1621
|
-
|
|
1669
|
+
Da,
|
|
1622
1670
|
{
|
|
1623
|
-
className: d(
|
|
1671
|
+
className: d(i({ slot: "content" }), e),
|
|
1624
1672
|
...t
|
|
1625
1673
|
}
|
|
1626
|
-
),
|
|
1674
|
+
), Ro = ({
|
|
1627
1675
|
className: e,
|
|
1628
1676
|
...t
|
|
1629
1677
|
}) => /* @__PURE__ */ a(
|
|
1630
|
-
|
|
1678
|
+
Wa,
|
|
1631
1679
|
{
|
|
1632
|
-
className: d(
|
|
1680
|
+
className: d(i({ slot: "list" }), e),
|
|
1633
1681
|
...t
|
|
1634
1682
|
}
|
|
1635
|
-
),
|
|
1683
|
+
), qo = R, Go = ({
|
|
1636
1684
|
className: e,
|
|
1637
1685
|
...t
|
|
1638
1686
|
}) => /* @__PURE__ */ a(
|
|
1639
|
-
|
|
1687
|
+
_a,
|
|
1640
1688
|
{
|
|
1641
|
-
className: d(
|
|
1689
|
+
className: d(i({ slot: "emptyMessage" }), e),
|
|
1642
1690
|
...t
|
|
1643
1691
|
}
|
|
1644
|
-
),
|
|
1692
|
+
), Ko = ({
|
|
1645
1693
|
className: e,
|
|
1646
1694
|
...t
|
|
1647
1695
|
}) => /* @__PURE__ */ a(
|
|
1648
|
-
|
|
1696
|
+
za,
|
|
1649
1697
|
{
|
|
1650
|
-
className: d(
|
|
1698
|
+
className: d(i({ slot: "item" }), e),
|
|
1651
1699
|
...t
|
|
1652
1700
|
}
|
|
1653
|
-
),
|
|
1701
|
+
), $o = q, Jo = ({
|
|
1654
1702
|
className: e,
|
|
1655
1703
|
...t
|
|
1656
1704
|
}) => /* @__PURE__ */ a(
|
|
1657
|
-
|
|
1705
|
+
ja,
|
|
1658
1706
|
{
|
|
1659
|
-
className: d(
|
|
1707
|
+
className: d(i({ slot: "itemIndicator" }), e),
|
|
1660
1708
|
...t
|
|
1661
1709
|
}
|
|
1662
|
-
),
|
|
1710
|
+
), Uo = ({
|
|
1663
1711
|
className: e,
|
|
1664
1712
|
...t
|
|
1665
1713
|
}) => /* @__PURE__ */ a(
|
|
1666
|
-
|
|
1714
|
+
Qa,
|
|
1667
1715
|
{
|
|
1668
1716
|
className: d(
|
|
1669
1717
|
"text-sm text-gray-600 dark:text-white-alpha-600",
|
|
@@ -1672,11 +1720,11 @@ const Pd = Ra, wd = E(
|
|
|
1672
1720
|
),
|
|
1673
1721
|
...t
|
|
1674
1722
|
}
|
|
1675
|
-
),
|
|
1723
|
+
), Xo = ({
|
|
1676
1724
|
className: e,
|
|
1677
1725
|
...t
|
|
1678
1726
|
}) => /* @__PURE__ */ a(
|
|
1679
|
-
|
|
1727
|
+
Oa,
|
|
1680
1728
|
{
|
|
1681
1729
|
className: d(
|
|
1682
1730
|
"text-sm flex items-center text-red-500 dark:text-red-300",
|
|
@@ -1685,47 +1733,47 @@ const Pd = Ra, wd = E(
|
|
|
1685
1733
|
),
|
|
1686
1734
|
...t
|
|
1687
1735
|
}
|
|
1688
|
-
),
|
|
1736
|
+
), Yo = ({
|
|
1689
1737
|
className: e,
|
|
1690
1738
|
...t
|
|
1691
1739
|
}) => /* @__PURE__ */ a(
|
|
1692
|
-
|
|
1740
|
+
Va,
|
|
1693
1741
|
{
|
|
1694
1742
|
className: d("text-red-500 dark:text-red-300", e),
|
|
1695
1743
|
...t
|
|
1696
1744
|
}
|
|
1697
|
-
),
|
|
1745
|
+
), Zo = ({
|
|
1698
1746
|
className: e,
|
|
1699
1747
|
...t
|
|
1700
1748
|
}) => /* @__PURE__ */ a(
|
|
1701
|
-
|
|
1749
|
+
Ra,
|
|
1702
1750
|
{
|
|
1703
1751
|
className: d("flex items-center justify-end gap-4 w-full", e),
|
|
1704
1752
|
...t
|
|
1705
1753
|
}
|
|
1706
|
-
),
|
|
1754
|
+
), em = ({
|
|
1707
1755
|
className: e,
|
|
1708
1756
|
...t
|
|
1709
1757
|
}) => /* @__PURE__ */ a(
|
|
1710
|
-
|
|
1758
|
+
qa,
|
|
1711
1759
|
{
|
|
1712
1760
|
className: d(s({ variant: "outline" }), e),
|
|
1713
1761
|
...t
|
|
1714
1762
|
}
|
|
1715
|
-
),
|
|
1763
|
+
), tm = ({
|
|
1716
1764
|
className: e,
|
|
1717
1765
|
...t
|
|
1718
1766
|
}) => /* @__PURE__ */ a(
|
|
1719
|
-
|
|
1767
|
+
Ga,
|
|
1720
1768
|
{
|
|
1721
1769
|
className: d(s({ variant: "primaryFilled" }), e),
|
|
1722
1770
|
...t
|
|
1723
1771
|
}
|
|
1724
|
-
),
|
|
1772
|
+
), am = ({
|
|
1725
1773
|
className: e,
|
|
1726
1774
|
...t
|
|
1727
1775
|
}) => /* @__PURE__ */ a(
|
|
1728
|
-
|
|
1776
|
+
Ka,
|
|
1729
1777
|
{
|
|
1730
1778
|
className: d(
|
|
1731
1779
|
"flex flex-col items-center justify-center h-auto",
|
|
@@ -1734,11 +1782,11 @@ const Pd = Ra, wd = E(
|
|
|
1734
1782
|
),
|
|
1735
1783
|
...t
|
|
1736
1784
|
}
|
|
1737
|
-
),
|
|
1785
|
+
), dm = ({
|
|
1738
1786
|
className: e,
|
|
1739
1787
|
...t
|
|
1740
1788
|
}) => /* @__PURE__ */ a(
|
|
1741
|
-
|
|
1789
|
+
$a,
|
|
1742
1790
|
{
|
|
1743
1791
|
className: d(
|
|
1744
1792
|
"mb-6 font-bold tracking-tight",
|
|
@@ -1747,199 +1795,203 @@ const Pd = Ra, wd = E(
|
|
|
1747
1795
|
),
|
|
1748
1796
|
...t
|
|
1749
1797
|
}
|
|
1750
|
-
),
|
|
1798
|
+
), sm = G, rm = ({
|
|
1751
1799
|
className: e,
|
|
1752
1800
|
...t
|
|
1753
1801
|
}) => /* @__PURE__ */ a(
|
|
1754
|
-
|
|
1802
|
+
Ja,
|
|
1755
1803
|
{
|
|
1756
1804
|
className: d(s({ variant: "primaryFilled" }), "w-full mt-12 gap-2 shrink-0", e),
|
|
1757
1805
|
...t
|
|
1758
1806
|
}
|
|
1759
1807
|
);
|
|
1760
1808
|
export {
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
eo as
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1809
|
+
Wr as ActionBar,
|
|
1810
|
+
_r as Actions,
|
|
1811
|
+
rr as AttachmentsBar,
|
|
1812
|
+
cr as AttachmentsBarActions,
|
|
1813
|
+
mr as AttachmentsBarAttachment,
|
|
1814
|
+
lr as AttachmentsBarAttachmentDelete,
|
|
1815
|
+
ir as AttachmentsBarAttachmentIcon,
|
|
1816
|
+
nr as AttachmentsBarAttachmentTitle,
|
|
1817
|
+
wr as AttachmentsBarForm,
|
|
1818
|
+
Sr as AttachmentsBarFormContent,
|
|
1819
|
+
Lr as AttachmentsBarFormContentError,
|
|
1820
|
+
Hr as AttachmentsBarFormContentInput,
|
|
1821
|
+
Tr as AttachmentsBarFormContentLabel,
|
|
1822
|
+
Dr as AttachmentsBarFormSubmitButton,
|
|
1823
|
+
Mr as AttachmentsBarFormTitle,
|
|
1824
|
+
Br as AttachmentsBarFormTitleError,
|
|
1825
|
+
Ir as AttachmentsBarFormTitleInput,
|
|
1826
|
+
Nr as AttachmentsBarFormTitleLabel,
|
|
1827
|
+
hr as AttachmentsBarInfoTip,
|
|
1828
|
+
pr as AttachmentsBarInfoTipArrow,
|
|
1829
|
+
br as AttachmentsBarInfoTipIcon,
|
|
1830
|
+
Cr as AttachmentsBarInfoTipText,
|
|
1831
|
+
Er as AttachmentsBarInput,
|
|
1832
|
+
ur as AttachmentsBarInputs,
|
|
1833
|
+
or as AttachmentsBarList,
|
|
1834
|
+
xr as AttachmentsBarModal,
|
|
1835
|
+
Pr as AttachmentsBarModalBody,
|
|
1836
|
+
yr as AttachmentsBarModalClose,
|
|
1837
|
+
Fr as AttachmentsBarModalContent,
|
|
1838
|
+
kr as AttachmentsBarModalDescription,
|
|
1839
|
+
fr as AttachmentsBarModalHeader,
|
|
1840
|
+
vr as AttachmentsBarModalHeading,
|
|
1841
|
+
Ar as AttachmentsBarModalHelp,
|
|
1842
|
+
gr as AttachmentsBarModalOverlay,
|
|
1843
|
+
Vr as ChatAction,
|
|
1844
|
+
qr as ChatActionFeedback,
|
|
1845
|
+
Rr as ChatActionLabel,
|
|
1846
|
+
id as ChatHistoryButton,
|
|
1847
|
+
F as ChatHistoryButtonIcon,
|
|
1848
|
+
Vd as ChatHistoryTrigger,
|
|
1849
|
+
Rd as Content,
|
|
1850
|
+
qd as ContentScrollArea,
|
|
1851
|
+
Jd as ContentScrollAreaCorner,
|
|
1852
|
+
Kd as ContentScrollAreaScrollbar,
|
|
1853
|
+
$d as ContentScrollAreaThumb,
|
|
1854
|
+
Gd as ContentScrollAreaViewport,
|
|
1855
|
+
Ud as Disclaimer,
|
|
1856
|
+
ts as DisclaimerArrow,
|
|
1857
|
+
Zd as DisclaimerContent,
|
|
1858
|
+
Xd as DisclaimerLabel,
|
|
1859
|
+
es as DisclaimerText,
|
|
1860
|
+
Yd as DisclaimerTrigger,
|
|
1861
|
+
Ls as DynamicComponent,
|
|
1862
|
+
rs as ExampleQuestion,
|
|
1863
|
+
os as ExampleQuestionButton,
|
|
1864
|
+
as as ExampleQuestions,
|
|
1865
|
+
ds as ExampleQuestionsLabel,
|
|
1866
|
+
ss as ExampleQuestionsList,
|
|
1867
|
+
oo as FeedbackForm,
|
|
1868
|
+
mo as FeedbackItem,
|
|
1869
|
+
io as FeedbackItemCheckbox,
|
|
1870
|
+
no as FeedbackItemCheckboxIndicator,
|
|
1871
|
+
co as FeedbackItemDescription,
|
|
1872
|
+
lo as FeedbackItemLabel,
|
|
1873
|
+
Zr as FeedbackModal,
|
|
1874
|
+
ro as FeedbackModalBody,
|
|
1875
|
+
so as FeedbackModalClose,
|
|
1876
|
+
to as FeedbackModalContent,
|
|
1877
|
+
ao as FeedbackModalHeader,
|
|
1878
|
+
eo as FeedbackModalOverlay,
|
|
1879
|
+
ho as FeedbackSubmitButton,
|
|
1880
|
+
Zs as Footer,
|
|
1881
|
+
Co as Form,
|
|
1882
|
+
em as FormCancel,
|
|
1883
|
+
po as FormClose,
|
|
1884
|
+
go as FormContent,
|
|
1885
|
+
xo as FormDescription,
|
|
1886
|
+
Yo as FormError,
|
|
1887
|
+
Fo as FormField,
|
|
1888
|
+
Po as FormFieldCheckbox,
|
|
1889
|
+
wo as FormFieldCheckboxIndicator,
|
|
1890
|
+
Wo as FormFieldCombobox,
|
|
1891
|
+
Vo as FormFieldComboboxContent,
|
|
1892
|
+
_o as FormFieldComboboxControl,
|
|
1893
|
+
jo as FormFieldComboboxInput,
|
|
1894
|
+
Ko as FormFieldComboboxItem,
|
|
1895
|
+
Jo as FormFieldComboboxItemIndicator,
|
|
1896
|
+
$o as FormFieldComboboxItemText,
|
|
1897
|
+
Ro as FormFieldComboboxList,
|
|
1898
|
+
Go as FormFieldComboboxListEmpty,
|
|
1899
|
+
qo as FormFieldComboboxListItems,
|
|
1900
|
+
zo as FormFieldComboboxPositioner,
|
|
1901
|
+
Oo as FormFieldComboboxSelectedTags,
|
|
1902
|
+
Qo as FormFieldComboboxTrigger,
|
|
1903
|
+
Uo as FormFieldDescription,
|
|
1904
|
+
ko as FormFieldEmail,
|
|
1905
|
+
Xo as FormFieldError,
|
|
1906
|
+
Ao as FormFieldFile,
|
|
1907
|
+
fo as FormFieldLabel,
|
|
1908
|
+
Mo as FormFieldSelect,
|
|
1909
|
+
So as FormFieldSelectContent,
|
|
1910
|
+
Bo as FormFieldSelectIcon,
|
|
1911
|
+
Ho as FormFieldSelectItem,
|
|
1912
|
+
Do as FormFieldSelectItemIndicator,
|
|
1913
|
+
Lo as FormFieldSelectItemText,
|
|
1914
|
+
No as FormFieldSelectTrigger,
|
|
1915
|
+
Io as FormFieldSelectValue,
|
|
1916
|
+
To as FormFieldSelectViewport,
|
|
1917
|
+
vo as FormFieldText,
|
|
1918
|
+
yo as FormFieldTextArea,
|
|
1919
|
+
Zo as FormFooter,
|
|
1920
|
+
uo as FormHeader,
|
|
1921
|
+
Eo as FormHeading,
|
|
1922
|
+
tm as FormSubmit,
|
|
1923
|
+
am as FormSuccess,
|
|
1924
|
+
rm as FormSuccessButton,
|
|
1925
|
+
dm as FormSuccessHeading,
|
|
1926
|
+
sm as FormSuccessMessage,
|
|
1927
|
+
bo as FormWrapper,
|
|
1928
|
+
zd as Header,
|
|
1929
|
+
jd as HeaderToolbar,
|
|
1930
|
+
Qd as HeaderToolbarWrapper,
|
|
1931
|
+
Kr as HelpAction,
|
|
1932
|
+
Gr as HelpActions,
|
|
1933
|
+
Jr as HelpActionsMenu,
|
|
1934
|
+
Ur as HelpActionsMenuArrow,
|
|
1935
|
+
Xr as HelpActionsMenuItem,
|
|
1936
|
+
Yr as HelpActionsMenuItemIcon,
|
|
1937
|
+
$r as HelpActionsTrigger,
|
|
1938
|
+
ar as Input,
|
|
1939
|
+
er as InputFieldset,
|
|
1940
|
+
tr as InputGroup,
|
|
1941
|
+
bs as IntroMessageWrapper,
|
|
1942
|
+
Ds as Markdown,
|
|
1943
|
+
js as MessageAction,
|
|
1944
|
+
As as MessageAttachments,
|
|
1945
|
+
Ps as MessageAttachmentsItem,
|
|
1946
|
+
ws as MessageAttachmentsItemIcon,
|
|
1947
|
+
Ms as MessageAttachmentsItemTitle,
|
|
1948
|
+
ys as MessageAttachmentsList,
|
|
1949
|
+
Ns as MessageAttachmentsPreview,
|
|
1950
|
+
Hs as MessageAttachmentsPreviewBody,
|
|
1951
|
+
Ts as MessageAttachmentsPreviewClose,
|
|
1952
|
+
Bs as MessageAttachmentsPreviewContent,
|
|
1953
|
+
Ss as MessageAttachmentsPreviewHeader,
|
|
1954
|
+
Is as MessageAttachmentsPreviewOverlay,
|
|
1955
|
+
Es as MessageAvatar,
|
|
1956
|
+
xs as MessageAvatarContent,
|
|
1957
|
+
gs as MessageAvatarFallback,
|
|
1958
|
+
Fs as MessageAvatarImage,
|
|
1959
|
+
ks as MessageContent,
|
|
1960
|
+
vs as MessageContentWrapper,
|
|
1961
|
+
zs as MessageCustomAction,
|
|
1962
|
+
_s as MessageCustomActions,
|
|
1963
|
+
Cs as MessageHeader,
|
|
1964
|
+
ps as MessageLoading,
|
|
1965
|
+
fs as MessageName,
|
|
1966
|
+
im as MessagePart,
|
|
1967
|
+
Rs as MessageSourceItem,
|
|
1968
|
+
Gs as MessageSourceItemBreadcrumbIcon,
|
|
1969
|
+
qs as MessageSourceItemBreadcrumbs,
|
|
1970
|
+
Us as MessageSourceItemDescription,
|
|
1971
|
+
Xs as MessageSourceItemDescriptionPart,
|
|
1972
|
+
Ks as MessageSourceItemIcon,
|
|
1973
|
+
Ys as MessageSourceItemIndicator,
|
|
1974
|
+
Js as MessageSourceItemTag,
|
|
1975
|
+
$s as MessageSourceItemTitle,
|
|
1976
|
+
Qs as MessageSources,
|
|
1977
|
+
Os as MessageSourcesHeader,
|
|
1978
|
+
Vs as MessageSourcesList,
|
|
1979
|
+
Ws as MessageToolbar,
|
|
1980
|
+
hs as MessageWrapper,
|
|
1981
|
+
cs as Messages,
|
|
1982
|
+
us as MessagesSessionLoading,
|
|
1983
|
+
Dd as Provider,
|
|
1984
|
+
_d as Root,
|
|
1985
|
+
dr as SendButton,
|
|
1986
|
+
sr as SendButtonIcon,
|
|
1987
|
+
Or as TaglineBrandName,
|
|
1988
|
+
zr as TaglineContainer,
|
|
1989
|
+
Qr as TaglineLogo,
|
|
1990
|
+
jr as TaglineText,
|
|
1991
|
+
Od as ToolbarHeader,
|
|
1992
|
+
ls as Workflow,
|
|
1993
|
+
ms as Workflows,
|
|
1994
|
+
is as WorkflowsLabel,
|
|
1995
|
+
ns as WorkflowsList,
|
|
1996
|
+
Wd as Wrapper
|
|
1945
1997
|
};
|