@arcadeai/design-system 3.40.0 → 3.42.3
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/assets/icons/cursor.js +6 -9
- package/dist/assets/icons/forkable.js +10 -0
- package/dist/assets/icons/mcp.js +2 -5
- package/dist/assets/icons/resend.js +10 -0
- package/dist/assets/index.css +1 -1
- package/dist/assets/tokens.css +1 -1
- package/dist/assets/variables.css +1 -1
- package/dist/components/index.js +504 -494
- package/dist/components/ui/atoms/badge.js +5 -5
- package/dist/components/ui/atoms/button.js +1 -1
- package/dist/components/ui/atoms/compute-flow-paths.d.ts +21 -0
- package/dist/components/ui/atoms/compute-flow-paths.d.ts.map +1 -0
- package/dist/components/ui/atoms/compute-flow-paths.js +38 -0
- package/dist/components/ui/atoms/flow-connector.d.ts +48 -0
- package/dist/components/ui/atoms/flow-connector.d.ts.map +1 -0
- package/dist/components/ui/atoms/flow-connector.js +153 -0
- package/dist/components/ui/atoms/flow-hub.d.ts +26 -0
- package/dist/components/ui/atoms/flow-hub.d.ts.map +1 -0
- package/dist/components/ui/atoms/flow-hub.js +34 -0
- package/dist/components/ui/atoms/flow-tile.d.ts +19 -0
- package/dist/components/ui/atoms/flow-tile.d.ts.map +1 -0
- package/dist/components/ui/atoms/flow-tile.js +49 -0
- package/dist/components/ui/atoms/icons/cursor.d.ts.map +1 -1
- package/dist/components/ui/atoms/icons/cursor.js +7 -7
- package/dist/components/ui/atoms/icons/forkable.d.ts +4 -0
- package/dist/components/ui/atoms/icons/forkable.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/forkable.js +31 -0
- package/dist/components/ui/atoms/icons/index.d.ts +2 -0
- package/dist/components/ui/atoms/icons/index.d.ts.map +1 -1
- package/dist/components/ui/atoms/icons/index.js +230 -226
- package/dist/components/ui/atoms/icons/mcp.d.ts.map +1 -1
- package/dist/components/ui/atoms/icons/mcp.js +3 -4
- package/dist/components/ui/atoms/icons/resend.d.ts +4 -0
- package/dist/components/ui/atoms/icons/resend.d.ts.map +1 -0
- package/dist/components/ui/atoms/icons/resend.js +24 -0
- package/dist/components/ui/atoms/index.js +372 -368
- package/dist/components/ui/atoms/switch.js +19 -19
- package/dist/components/ui/index.js +504 -494
- package/dist/components/ui/molecules/date-time-picker.js +1 -1
- package/dist/components/ui/molecules/flow-diagram.d.ts +56 -0
- package/dist/components/ui/molecules/flow-diagram.d.ts.map +1 -0
- package/dist/components/ui/molecules/flow-diagram.js +232 -0
- package/dist/components/ui/molecules/index.d.ts +2 -0
- package/dist/components/ui/molecules/index.d.ts.map +1 -1
- package/dist/components/ui/molecules/index.js +42 -40
- package/dist/components/ui/molecules/requirement-badges.js +6 -4
- package/dist/components/ui/molecules/tool-card.d.ts.map +1 -1
- package/dist/components/ui/molecules/tool-card.js +19 -22
- package/dist/components/ui/molecules/toolkit-card.js +1 -1
- package/dist/components/ui/pages/login-page.js +13 -13
- package/dist/components/ui/templates/gateway-diagram.d.ts +28 -0
- package/dist/components/ui/templates/gateway-diagram.d.ts.map +1 -0
- package/dist/components/ui/templates/gateway-diagram.js +76 -0
- package/dist/components/ui/templates/index.d.ts +2 -0
- package/dist/components/ui/templates/index.d.ts.map +1 -1
- package/dist/components/ui/templates/index.js +31 -27
- package/dist/main.js +534 -522
- package/dist/metadata/index.d.ts +1 -0
- package/dist/metadata/index.d.ts.map +1 -1
- package/dist/metadata/index.js +25 -23
- package/dist/metadata/mcp-clients.d.ts +54 -0
- package/dist/metadata/mcp-clients.d.ts.map +1 -0
- package/dist/metadata/mcp-clients.js +23 -0
- package/dist/metadata/toolkit-icons.d.ts.map +1 -1
- package/dist/metadata/toolkit-icons.js +162 -158
- package/dist/metadata/toolkits.d.ts.map +1 -1
- package/dist/metadata/toolkits.js +26 -0
- package/dist/{toolkit-card-Dc104Z9e.js → toolkit-card-ryIR325K.js} +22 -20
- package/package.json +5 -5
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ComponentProps } from 'react';
|
|
2
|
+
import { FlowDiagramProps } from '../molecules/flow-diagram';
|
|
3
|
+
import { McpClientId } from '../../../metadata/mcp-clients';
|
|
4
|
+
/**
|
|
5
|
+
* Default client IDs shown on the left when none are provided. These map
|
|
6
|
+
* into `MCP_CLIENT_METADATA` for label + icon resolution.
|
|
7
|
+
*/
|
|
8
|
+
export declare const DEFAULT_MCP_CLIENT_IDS: readonly McpClientId[];
|
|
9
|
+
/**
|
|
10
|
+
* Default toolkit IDs shown on the right when none are provided. These
|
|
11
|
+
* map into `TOOLKIT_ICON_MAP` (for the icon) and `TOOLKITS` (for the
|
|
12
|
+
* label).
|
|
13
|
+
*/
|
|
14
|
+
export declare const DEFAULT_MCP_SERVER_IDS: readonly string[];
|
|
15
|
+
type GatewayDiagramProps = {
|
|
16
|
+
/** MCP client identifiers shown on the left. */
|
|
17
|
+
mcpClientIds?: readonly McpClientId[];
|
|
18
|
+
/** Toolkit identifiers shown on the right (MCP servers). */
|
|
19
|
+
mcpServerIds?: readonly string[];
|
|
20
|
+
animate?: FlowDiagramProps["animate"];
|
|
21
|
+
animation?: FlowDiagramProps["animation"];
|
|
22
|
+
lineStyle?: FlowDiagramProps["lineStyle"];
|
|
23
|
+
size?: FlowDiagramProps["size"];
|
|
24
|
+
} & Omit<ComponentProps<"div">, "children">;
|
|
25
|
+
declare function GatewayDiagram({ mcpClientIds, mcpServerIds, animate, animation, lineStyle, size, "aria-label": ariaLabel, ...props }: GatewayDiagramProps): import("react/jsx-runtime").JSX.Element;
|
|
26
|
+
export { GatewayDiagram };
|
|
27
|
+
export type { GatewayDiagramProps };
|
|
28
|
+
//# sourceMappingURL=gateway-diagram.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"gateway-diagram.d.ts","sourceRoot":"","sources":["../../../../lib/components/ui/templates/gateway-diagram.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAI5C,OAAO,EAEL,KAAK,gBAAgB,EACtB,MAAM,wCAAwC,CAAC;AAChD,OAAO,EAAuB,KAAK,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAI/E;;;GAGG;AACH,eAAO,MAAM,sBAAsB,EAAE,SAAS,WAAW,EAQxD,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,sBAAsB,EAAE,SAAS,MAAM,EAYnD,CAAC;AAKF,KAAK,mBAAmB,GAAG;IACzB,gDAAgD;IAChD,YAAY,CAAC,EAAE,SAAS,WAAW,EAAE,CAAC;IACtC,4DAA4D;IAC5D,YAAY,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IACjC,OAAO,CAAC,EAAE,gBAAgB,CAAC,SAAS,CAAC,CAAC;IACtC,SAAS,CAAC,EAAE,gBAAgB,CAAC,WAAW,CAAC,CAAC;IAC1C,SAAS,CAAC,EAAE,gBAAgB,CAAC,WAAW,CAAC,CAAC;IAC1C,IAAI,CAAC,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;CACjC,GAAG,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,EAAE,UAAU,CAAC,CAAC;AAsB5C,iBAAS,cAAc,CAAC,EACtB,YAAqC,EACrC,YAAqC,EACrC,OAAgB,EAChB,SAAkB,EAClB,SAAS,EACT,IAAW,EACX,YAAY,EAAE,SAAwC,EACtD,GAAG,KAAK,EACT,EAAE,mBAAmB,2CAmDrB;AAED,OAAO,EAAE,cAAc,EAAE,CAAC;AAC1B,YAAY,EAAE,mBAAmB,EAAE,CAAC"}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { FlowHub as p } from "../atoms/flow-hub.js";
|
|
3
|
+
import { FlowTile as n } from "../atoms/flow-tile.js";
|
|
4
|
+
import { Arcade as S } from "../atoms/icons/arcade.js";
|
|
5
|
+
import { FlowDiagram as T } from "../molecules/flow-diagram.js";
|
|
6
|
+
import { MCP_CLIENT_METADATA as A } from "../../../metadata/mcp-clients.js";
|
|
7
|
+
import { TOOLKIT_ICON_MAP as E } from "../../../metadata/toolkit-icons.js";
|
|
8
|
+
import { TOOLKITS as I } from "../../../metadata/toolkits.js";
|
|
9
|
+
const w = [
|
|
10
|
+
"claude_code",
|
|
11
|
+
"cursor",
|
|
12
|
+
"vscode",
|
|
13
|
+
"codex",
|
|
14
|
+
"gemini_cli",
|
|
15
|
+
"claude_desktop",
|
|
16
|
+
"windsurf"
|
|
17
|
+
], C = [
|
|
18
|
+
"Gmail",
|
|
19
|
+
"Slack",
|
|
20
|
+
"Github",
|
|
21
|
+
"Linear",
|
|
22
|
+
"Notion",
|
|
23
|
+
"Jira",
|
|
24
|
+
"Hubspot",
|
|
25
|
+
"GoogleCalendar",
|
|
26
|
+
"GoogleDrive",
|
|
27
|
+
"Salesforce",
|
|
28
|
+
"Stripe"
|
|
29
|
+
], D = "shadow-amber-950/25 shadow-xl bg-[linear-gradient(135deg,oklch(from_var(--brand-yellow)_l_c_h_/_0.55),oklch(from_var(--brand-green)_l_c_h_/_0.4),oklch(from_var(--brand-fuchsia)_l_c_h_/_0.45))]", L = {
|
|
30
|
+
sm: "md",
|
|
31
|
+
md: "lg",
|
|
32
|
+
lg: "xl"
|
|
33
|
+
};
|
|
34
|
+
function P({
|
|
35
|
+
mcpClientIds: c = w,
|
|
36
|
+
mcpServerIds: _ = C,
|
|
37
|
+
animate: m = "both",
|
|
38
|
+
animation: s = "flow",
|
|
39
|
+
lineStyle: d,
|
|
40
|
+
size: l = "md",
|
|
41
|
+
"aria-label": f = "Arcade MCP gateway diagram",
|
|
42
|
+
...u
|
|
43
|
+
}) {
|
|
44
|
+
const i = l, h = L[l], b = c.map((r) => {
|
|
45
|
+
const o = A[r];
|
|
46
|
+
if (!o)
|
|
47
|
+
return null;
|
|
48
|
+
const { label: a, Icon: t } = o;
|
|
49
|
+
return /* @__PURE__ */ e(n, { label: a, size: i, children: /* @__PURE__ */ e(t, {}) }, r);
|
|
50
|
+
}).filter((r) => r !== null), g = _.map((r) => {
|
|
51
|
+
const o = E[r];
|
|
52
|
+
if (!o)
|
|
53
|
+
return null;
|
|
54
|
+
const a = I.find((t) => t.id === r)?.label ?? r;
|
|
55
|
+
return /* @__PURE__ */ e(n, { label: a, size: i, children: /* @__PURE__ */ e(o, {}) }, r);
|
|
56
|
+
}).filter((r) => r !== null);
|
|
57
|
+
return /* @__PURE__ */ e(
|
|
58
|
+
T,
|
|
59
|
+
{
|
|
60
|
+
animate: m,
|
|
61
|
+
animation: s,
|
|
62
|
+
"aria-label": f,
|
|
63
|
+
center: /* @__PURE__ */ e(p, { className: D, size: h, children: /* @__PURE__ */ e(S, { "aria-hidden": !0 }) }),
|
|
64
|
+
left: b,
|
|
65
|
+
lineStyle: d,
|
|
66
|
+
right: g,
|
|
67
|
+
size: l,
|
|
68
|
+
...u
|
|
69
|
+
}
|
|
70
|
+
);
|
|
71
|
+
}
|
|
72
|
+
export {
|
|
73
|
+
w as DEFAULT_MCP_CLIENT_IDS,
|
|
74
|
+
C as DEFAULT_MCP_SERVER_IDS,
|
|
75
|
+
P as GatewayDiagram
|
|
76
|
+
};
|
|
@@ -7,4 +7,6 @@ export type { ChatBodySkeletonProps, ChatContentSkeletonProps, ChatFooterSkeleto
|
|
|
7
7
|
export { ChatBodySkeleton, ChatContentSkeleton, ChatFooterSkeleton, ChatHeaderSkeleton, ChatSidebarSkeleton, } from './chat-template-skeletons';
|
|
8
8
|
export type { ErrorTemplateActionsProps, ErrorTemplateContentProps, ErrorTemplateDescriptionProps, ErrorTemplateIconProps, ErrorTemplateLogoProps, ErrorTemplateProps, ErrorTemplateTitleProps, ErrorTemplateUrlProps, } from './error-template';
|
|
9
9
|
export { ErrorTemplate, ErrorTemplateActions, ErrorTemplateContent, ErrorTemplateDescription, ErrorTemplateIcon, ErrorTemplateLogo, ErrorTemplateTitle, ErrorTemplateUrl, } from './error-template';
|
|
10
|
+
export type { GatewayDiagramProps } from './gateway-diagram';
|
|
11
|
+
export { DEFAULT_MCP_CLIENT_IDS, DEFAULT_MCP_SERVER_IDS, GatewayDiagram, } from './gateway-diagram';
|
|
10
12
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../lib/components/ui/templates/index.ts"],"names":[],"mappings":"AAAA,+GAA+G;AAE/G,YAAY,EACV,qBAAqB,EACrB,wBAAwB,EACxB,kCAAkC,EAClC,4BAA4B,EAC5B,uBAAuB,EACvB,4BAA4B,EAC5B,uBAAuB,EACvB,0BAA0B,EAC1B,sBAAsB,EACtB,qBAAqB,EACrB,2BAA2B,EAC3B,uBAAuB,EACvB,iBAAiB,EACjB,sBAAsB,EACtB,gCAAgC,GACjC,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,YAAY,EACZ,gBAAgB,EAChB,mBAAmB,EACnB,6BAA6B,EAC7B,uBAAuB,EACvB,kBAAkB,EAClB,uBAAuB,EACvB,kBAAkB,EAClB,iBAAiB,EACjB,qBAAqB,EACrB,gBAAgB,EAChB,kBAAkB,EAClB,sBAAsB,EACtB,iBAAiB,EACjB,2BAA2B,GAC5B,MAAM,iBAAiB,CAAC;AACzB,YAAY,EACV,qBAAqB,EACrB,uBAAuB,EACvB,4BAA4B,EAC5B,uBAAuB,EACvB,yBAAyB,EACzB,iCAAiC,EACjC,8BAA8B,EAC9B,iBAAiB,EACjB,4BAA4B,GAC7B,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,YAAY,EACZ,gBAAgB,EAChB,kBAAkB,EAClB,kBAAkB,EAClB,uBAAuB,EACvB,oBAAoB,EACpB,4BAA4B,EAC5B,yBAAyB,EACzB,uBAAuB,GACxB,MAAM,iBAAiB,CAAC;AACzB,YAAY,EACV,qBAAqB,EACrB,wBAAwB,EACxB,uBAAuB,EACvB,uBAAuB,EACvB,wBAAwB,GACzB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EACL,gBAAgB,EAChB,mBAAmB,EACnB,kBAAkB,EAClB,kBAAkB,EAClB,mBAAmB,GACpB,MAAM,2BAA2B,CAAC;AACnC,YAAY,EACV,yBAAyB,EACzB,yBAAyB,EACzB,6BAA6B,EAC7B,sBAAsB,EACtB,sBAAsB,EACtB,kBAAkB,EAClB,uBAAuB,EACvB,qBAAqB,GACtB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,aAAa,EACb,oBAAoB,EACpB,oBAAoB,EACpB,wBAAwB,EACxB,iBAAiB,EACjB,iBAAiB,EACjB,kBAAkB,EAClB,gBAAgB,GACjB,MAAM,kBAAkB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../lib/components/ui/templates/index.ts"],"names":[],"mappings":"AAAA,+GAA+G;AAE/G,YAAY,EACV,qBAAqB,EACrB,wBAAwB,EACxB,kCAAkC,EAClC,4BAA4B,EAC5B,uBAAuB,EACvB,4BAA4B,EAC5B,uBAAuB,EACvB,0BAA0B,EAC1B,sBAAsB,EACtB,qBAAqB,EACrB,2BAA2B,EAC3B,uBAAuB,EACvB,iBAAiB,EACjB,sBAAsB,EACtB,gCAAgC,GACjC,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,YAAY,EACZ,gBAAgB,EAChB,mBAAmB,EACnB,6BAA6B,EAC7B,uBAAuB,EACvB,kBAAkB,EAClB,uBAAuB,EACvB,kBAAkB,EAClB,iBAAiB,EACjB,qBAAqB,EACrB,gBAAgB,EAChB,kBAAkB,EAClB,sBAAsB,EACtB,iBAAiB,EACjB,2BAA2B,GAC5B,MAAM,iBAAiB,CAAC;AACzB,YAAY,EACV,qBAAqB,EACrB,uBAAuB,EACvB,4BAA4B,EAC5B,uBAAuB,EACvB,yBAAyB,EACzB,iCAAiC,EACjC,8BAA8B,EAC9B,iBAAiB,EACjB,4BAA4B,GAC7B,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,YAAY,EACZ,gBAAgB,EAChB,kBAAkB,EAClB,kBAAkB,EAClB,uBAAuB,EACvB,oBAAoB,EACpB,4BAA4B,EAC5B,yBAAyB,EACzB,uBAAuB,GACxB,MAAM,iBAAiB,CAAC;AACzB,YAAY,EACV,qBAAqB,EACrB,wBAAwB,EACxB,uBAAuB,EACvB,uBAAuB,EACvB,wBAAwB,GACzB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EACL,gBAAgB,EAChB,mBAAmB,EACnB,kBAAkB,EAClB,kBAAkB,EAClB,mBAAmB,GACpB,MAAM,2BAA2B,CAAC;AACnC,YAAY,EACV,yBAAyB,EACzB,yBAAyB,EACzB,6BAA6B,EAC7B,sBAAsB,EACtB,sBAAsB,EACtB,kBAAkB,EAClB,uBAAuB,EACvB,qBAAqB,GACtB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,aAAa,EACb,oBAAoB,EACpB,oBAAoB,EACpB,wBAAwB,EACxB,iBAAiB,EACjB,iBAAiB,EACjB,kBAAkB,EAClB,gBAAgB,GACjB,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAC7D,OAAO,EACL,sBAAsB,EACtB,sBAAsB,EACtB,cAAc,GACf,MAAM,mBAAmB,CAAC"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { AuthTemplate as a, AuthTemplateCard as r, AuthTemplateContent as o, AuthTemplateDefaultBackground as l, AuthTemplateDescription as p, AuthTemplateFooter as m, AuthTemplateGridOverlay as T, AuthTemplateHeader as h, AuthTemplateLegal as u, AuthTemplateLegalLink as
|
|
2
|
-
import { ChatTemplate as
|
|
3
|
-
import { ChatBodySkeleton as
|
|
4
|
-
import { ErrorTemplate as
|
|
1
|
+
import { AuthTemplate as a, AuthTemplateCard as r, AuthTemplateContent as o, AuthTemplateDefaultBackground as l, AuthTemplateDescription as p, AuthTemplateFooter as m, AuthTemplateGridOverlay as T, AuthTemplateHeader as h, AuthTemplateLegal as u, AuthTemplateLegalLink as C, AuthTemplateLogo as n, AuthTemplatePrompt as i, AuthTemplatePromptLink as A, AuthTemplateTitle as E, AuthTemplateVideoBackground as d } from "./auth-template.js";
|
|
2
|
+
import { ChatTemplate as g, ChatTemplateBody as k, ChatTemplateFooter as L, ChatTemplateHeader as D, ChatTemplateHeaderGroup as v, ChatTemplateOverview as c, ChatTemplateOverviewSubtitle as f, ChatTemplateOverviewTitle as _, ChatTemplateSuggestions as s } from "./chat-template.js";
|
|
3
|
+
import { ChatBodySkeleton as F, ChatContentSkeleton as w, ChatFooterSkeleton as y, ChatHeaderSkeleton as B, ChatSidebarSkeleton as H } from "./chat-template-skeletons.js";
|
|
4
|
+
import { ErrorTemplate as O, ErrorTemplateActions as P, ErrorTemplateContent as G, ErrorTemplateDescription as U, ErrorTemplateIcon as b, ErrorTemplateLogo as M, ErrorTemplateTitle as R, ErrorTemplateUrl as V } from "./error-template.js";
|
|
5
|
+
import { DEFAULT_MCP_CLIENT_IDS as j, DEFAULT_MCP_SERVER_IDS as q, GatewayDiagram as z } from "./gateway-diagram.js";
|
|
5
6
|
export {
|
|
6
7
|
a as AuthTemplate,
|
|
7
8
|
r as AuthTemplateCard,
|
|
@@ -12,32 +13,35 @@ export {
|
|
|
12
13
|
T as AuthTemplateGridOverlay,
|
|
13
14
|
h as AuthTemplateHeader,
|
|
14
15
|
u as AuthTemplateLegal,
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
C as AuthTemplateLegalLink,
|
|
17
|
+
n as AuthTemplateLogo,
|
|
18
|
+
i as AuthTemplatePrompt,
|
|
18
19
|
A as AuthTemplatePromptLink,
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
E as AuthTemplateTitle,
|
|
21
|
+
d as AuthTemplateVideoBackground,
|
|
22
|
+
F as ChatBodySkeleton,
|
|
22
23
|
w as ChatContentSkeleton,
|
|
23
24
|
y as ChatFooterSkeleton,
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
25
|
+
B as ChatHeaderSkeleton,
|
|
26
|
+
H as ChatSidebarSkeleton,
|
|
27
|
+
g as ChatTemplate,
|
|
28
|
+
k as ChatTemplateBody,
|
|
29
|
+
L as ChatTemplateFooter,
|
|
30
|
+
D as ChatTemplateHeader,
|
|
31
|
+
v as ChatTemplateHeaderGroup,
|
|
32
|
+
c as ChatTemplateOverview,
|
|
33
|
+
f as ChatTemplateOverviewSubtitle,
|
|
34
|
+
_ as ChatTemplateOverviewTitle,
|
|
35
|
+
s as ChatTemplateSuggestions,
|
|
36
|
+
j as DEFAULT_MCP_CLIENT_IDS,
|
|
37
|
+
q as DEFAULT_MCP_SERVER_IDS,
|
|
38
|
+
O as ErrorTemplate,
|
|
36
39
|
P as ErrorTemplateActions,
|
|
37
|
-
|
|
40
|
+
G as ErrorTemplateContent,
|
|
38
41
|
U as ErrorTemplateDescription,
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
42
|
+
b as ErrorTemplateIcon,
|
|
43
|
+
M as ErrorTemplateLogo,
|
|
44
|
+
R as ErrorTemplateTitle,
|
|
45
|
+
V as ErrorTemplateUrl,
|
|
46
|
+
z as GatewayDiagram
|
|
43
47
|
};
|