@arcadeai/design-system 3.41.1 → 3.42.4
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 +2 -2
- package/dist/assets/icons/mcp.js +2 -5
- package/dist/assets/icons/resend.js +10 -0
- package/dist/assets/icons/squareup.js +7 -11
- 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 +387 -379
- 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.js +8 -8
- package/dist/components/ui/atoms/icons/index.d.ts +1 -0
- package/dist/components/ui/atoms/icons/index.d.ts.map +1 -1
- package/dist/components/ui/atoms/icons/index.js +88 -86
- 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/icons/squareup.d.ts.map +1 -1
- package/dist/components/ui/atoms/icons/squareup.js +12 -13
- package/dist/components/ui/atoms/index.js +257 -255
- package/dist/components/ui/index.js +387 -379
- 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/toolkit-card.js +1 -1
- 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 +410 -400
- 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 +58 -56
- package/dist/metadata/toolkits.d.ts.map +1 -1
- package/dist/metadata/toolkits.js +13 -0
- package/dist/{toolkit-card-Dc104Z9e.js → toolkit-card-ryIR325K.js} +22 -20
- package/package.json +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pure geometry for `FlowConnector` curves. Produces N cubic-Bezier path
|
|
3
|
+
* strings that fan out at the icon edge and converge into a tight cluster
|
|
4
|
+
* at the hub edge — the "merge before the node" shape.
|
|
5
|
+
*
|
|
6
|
+
* Both sides use the same 0-100 `viewBox`. Paths always start at x=0 and
|
|
7
|
+
* end at x=100; the molecule scales the SVG via CSS so the path strings
|
|
8
|
+
* are layout-independent.
|
|
9
|
+
*
|
|
10
|
+
* side="left" icon is at x=0, hub is at x=100 (paths flow → hub)
|
|
11
|
+
* side="right" hub is at x=0, icon is at x=100 (paths flow → icon)
|
|
12
|
+
*
|
|
13
|
+
* Tunable constants are intentionally not exposed as props — the molecule
|
|
14
|
+
* owns the geometric language. Add a prop here only when a real callsite
|
|
15
|
+
* needs a different aesthetic.
|
|
16
|
+
*/
|
|
17
|
+
export declare function computeFlowPaths({ count, side, }: {
|
|
18
|
+
count: number;
|
|
19
|
+
side: "left" | "right";
|
|
20
|
+
}): readonly string[];
|
|
21
|
+
//# sourceMappingURL=compute-flow-paths.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"compute-flow-paths.d.ts","sourceRoot":"","sources":["../../../../lib/components/ui/atoms/compute-flow-paths.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AA6BH,wBAAgB,gBAAgB,CAAC,EAC/B,KAAK,EACL,IAAI,GACL,EAAE;IACD,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB,GAAG,SAAS,MAAM,EAAE,CAqBpB"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
const O = {
|
|
2
|
+
1: 0,
|
|
3
|
+
2: 56,
|
|
4
|
+
3: 72,
|
|
5
|
+
4: 80
|
|
6
|
+
};
|
|
7
|
+
function s({
|
|
8
|
+
count: _,
|
|
9
|
+
side: E
|
|
10
|
+
}) {
|
|
11
|
+
if (_ <= 0)
|
|
12
|
+
return [];
|
|
13
|
+
const C = N(_, L(_)), n = N(_, 0);
|
|
14
|
+
return C.map((T, e) => {
|
|
15
|
+
const r = n[e] ?? 50;
|
|
16
|
+
return E === "left" ? `M 0 ${t(T)} L 8 ${t(T)} C 22 ${t(T)} 50 ${t(r)} 100 ${t(r)}` : `M 0 ${t(r)} C 50 ${t(r)} 78 ${t(T)} 92 ${t(T)} L 100 ${t(T)}`;
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
function L(_) {
|
|
20
|
+
return O[_] ?? 88;
|
|
21
|
+
}
|
|
22
|
+
function N(_, E) {
|
|
23
|
+
if (_ <= 0)
|
|
24
|
+
return [];
|
|
25
|
+
if (_ === 1)
|
|
26
|
+
return [50];
|
|
27
|
+
const C = E / (_ - 1);
|
|
28
|
+
return Array.from(
|
|
29
|
+
{ length: _ },
|
|
30
|
+
(n, T) => 50 + (T - (_ - 1) / 2) * C
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
function t(_) {
|
|
34
|
+
return Number(_.toFixed(2)).toString();
|
|
35
|
+
}
|
|
36
|
+
export {
|
|
37
|
+
s as computeFlowPaths
|
|
38
|
+
};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { ComponentProps } from 'react';
|
|
2
|
+
type FlowConnectorVariant = "flow" | "dot";
|
|
3
|
+
type FlowConnectorLineStyle = "dashed" | "dotted";
|
|
4
|
+
type FlowConnectorClusterSide = "start" | "end";
|
|
5
|
+
type FlowConnectorProps = {
|
|
6
|
+
/**
|
|
7
|
+
* SVG path strings to render. Each path should fit in the 0-100
|
|
8
|
+
* `viewBox`. Use `computeFlowPaths` to generate them analytically.
|
|
9
|
+
*/
|
|
10
|
+
paths: readonly string[];
|
|
11
|
+
/**
|
|
12
|
+
* Animation style. `flow` drifts the dashed pattern uniformly along
|
|
13
|
+
* every path. `dot` runs a circular packet along each path on top of
|
|
14
|
+
* a static track. Defaults to `flow`.
|
|
15
|
+
*/
|
|
16
|
+
variant?: FlowConnectorVariant;
|
|
17
|
+
/**
|
|
18
|
+
* Stroke pattern. `dashed` is the default for `flow`; `dotted` is the
|
|
19
|
+
* default for `dot`. Override to mix and match.
|
|
20
|
+
*/
|
|
21
|
+
lineStyle?: FlowConnectorLineStyle;
|
|
22
|
+
/**
|
|
23
|
+
* Which end of the path strings holds the single-point cluster. When
|
|
24
|
+
* set, the stroke fades to transparent at that end so multiple paths
|
|
25
|
+
* meeting there don't compound their opacity into a visible blob.
|
|
26
|
+
*/
|
|
27
|
+
clusterSide?: FlowConnectorClusterSide;
|
|
28
|
+
/**
|
|
29
|
+
* When false, paths render statically. Defaults to true.
|
|
30
|
+
*/
|
|
31
|
+
animated?: boolean;
|
|
32
|
+
} & Omit<ComponentProps<"svg">, "children">;
|
|
33
|
+
/**
|
|
34
|
+
* Animated SVG connector for `FlowDiagram`. Renders each path as a
|
|
35
|
+
* single clean dashed (or dotted) stroke. The atom is dumb — it draws
|
|
36
|
+
* whatever path strings it's handed; `computeFlowPaths` decides the
|
|
37
|
+
* geometry.
|
|
38
|
+
*
|
|
39
|
+
* Color defaults to `text-success`; override via `className` with any
|
|
40
|
+
* `text-*` token to retheme.
|
|
41
|
+
*
|
|
42
|
+
* Reduced-motion is honored automatically: `motion-reduce:animate-none`
|
|
43
|
+
* stops every animated stroke.
|
|
44
|
+
*/
|
|
45
|
+
declare function FlowConnector({ paths, className, variant, lineStyle, clusterSide, animated, ...props }: FlowConnectorProps): import("react/jsx-runtime").JSX.Element;
|
|
46
|
+
export { FlowConnector };
|
|
47
|
+
export type { FlowConnectorClusterSide, FlowConnectorLineStyle, FlowConnectorProps, FlowConnectorVariant, };
|
|
48
|
+
//# sourceMappingURL=flow-connector.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flow-connector.d.ts","sourceRoot":"","sources":["../../../../lib/components/ui/atoms/flow-connector.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAAS,MAAM,OAAO,CAAC;AAMnD,KAAK,oBAAoB,GAAG,MAAM,GAAG,KAAK,CAAC;AAC3C,KAAK,sBAAsB,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAClD,KAAK,wBAAwB,GAAG,OAAO,GAAG,KAAK,CAAC;AAmBhD,KAAK,kBAAkB,GAAG;IACxB;;;OAGG;IACH,KAAK,EAAE,SAAS,MAAM,EAAE,CAAC;IACzB;;;;OAIG;IACH,OAAO,CAAC,EAAE,oBAAoB,CAAC;IAC/B;;;OAGG;IACH,SAAS,CAAC,EAAE,sBAAsB,CAAC;IACnC;;;;OAIG;IACH,WAAW,CAAC,EAAE,wBAAwB,CAAC;IACvC;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,EAAE,UAAU,CAAC,CAAC;AAE5C;;;;;;;;;;;GAWG;AACH,iBAAS,aAAa,CAAC,EACrB,KAAK,EACL,SAAS,EACT,OAAgB,EAChB,SAAS,EACT,WAAW,EACX,QAAe,EACf,GAAG,KAAK,EACT,EAAE,kBAAkB,2CA8JpB;AAED,OAAO,EAAE,aAAa,EAAE,CAAC;AACzB,YAAY,EACV,wBAAwB,EACxB,sBAAsB,EACtB,kBAAkB,EAClB,oBAAoB,GACrB,CAAC"}
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
import { jsxs as r, jsx as o, Fragment as a } from "react/jsx-runtime";
|
|
2
|
+
import { useId as T } from "react";
|
|
3
|
+
import { cn as C } from "../../../lib/utils.js";
|
|
4
|
+
const g = 2.8, A = "10 14", E = "1.5 6", I = "0.01 1000", R = 4.5, x = 1.8, e = 0.55, c = 0.32;
|
|
5
|
+
function S({
|
|
6
|
+
paths: l,
|
|
7
|
+
className: y,
|
|
8
|
+
variant: p = "flow",
|
|
9
|
+
lineStyle: O,
|
|
10
|
+
clusterSide: t,
|
|
11
|
+
animated: f = !0,
|
|
12
|
+
...u
|
|
13
|
+
}) {
|
|
14
|
+
const h = l.length, d = O ?? (p === "dot" ? "dotted" : "dashed"), m = d === "dotted" ? E : A, k = d === "dotted" ? "animate-gateway-flow-dotted" : "animate-gateway-flow", s = `flow-${T().replace(/[^a-zA-Z0-9]/g, "")}`, w = t ? `url(#${s}-track)` : "currentColor", D = t ? `url(#${s}-dot)` : "currentColor";
|
|
15
|
+
return /* @__PURE__ */ r(
|
|
16
|
+
"svg",
|
|
17
|
+
{
|
|
18
|
+
"aria-hidden": !0,
|
|
19
|
+
className: C("shrink-0 overflow-visible text-success", y),
|
|
20
|
+
"data-slot": "flow-connector",
|
|
21
|
+
preserveAspectRatio: "none",
|
|
22
|
+
viewBox: "0 0 100 100",
|
|
23
|
+
...u,
|
|
24
|
+
children: [
|
|
25
|
+
/* @__PURE__ */ o("title", { children: "Connection flow" }),
|
|
26
|
+
t ? /* @__PURE__ */ r("defs", { children: [
|
|
27
|
+
/* @__PURE__ */ o(
|
|
28
|
+
"linearGradient",
|
|
29
|
+
{
|
|
30
|
+
gradientUnits: "userSpaceOnUse",
|
|
31
|
+
id: `${s}-track`,
|
|
32
|
+
x1: "0",
|
|
33
|
+
x2: "100",
|
|
34
|
+
y1: "50",
|
|
35
|
+
y2: "50",
|
|
36
|
+
children: t === "start" ? /* @__PURE__ */ r(a, { children: [
|
|
37
|
+
/* @__PURE__ */ o("stop", { offset: "0", stopColor: "currentColor", stopOpacity: 0 }),
|
|
38
|
+
/* @__PURE__ */ o(
|
|
39
|
+
"stop",
|
|
40
|
+
{
|
|
41
|
+
offset: c,
|
|
42
|
+
stopColor: "currentColor",
|
|
43
|
+
stopOpacity: e
|
|
44
|
+
}
|
|
45
|
+
),
|
|
46
|
+
/* @__PURE__ */ o(
|
|
47
|
+
"stop",
|
|
48
|
+
{
|
|
49
|
+
offset: "1",
|
|
50
|
+
stopColor: "currentColor",
|
|
51
|
+
stopOpacity: e
|
|
52
|
+
}
|
|
53
|
+
)
|
|
54
|
+
] }) : /* @__PURE__ */ r(a, { children: [
|
|
55
|
+
/* @__PURE__ */ o(
|
|
56
|
+
"stop",
|
|
57
|
+
{
|
|
58
|
+
offset: "0",
|
|
59
|
+
stopColor: "currentColor",
|
|
60
|
+
stopOpacity: e
|
|
61
|
+
}
|
|
62
|
+
),
|
|
63
|
+
/* @__PURE__ */ o(
|
|
64
|
+
"stop",
|
|
65
|
+
{
|
|
66
|
+
offset: 1 - c,
|
|
67
|
+
stopColor: "currentColor",
|
|
68
|
+
stopOpacity: e
|
|
69
|
+
}
|
|
70
|
+
),
|
|
71
|
+
/* @__PURE__ */ o("stop", { offset: "1", stopColor: "currentColor", stopOpacity: 0 })
|
|
72
|
+
] })
|
|
73
|
+
}
|
|
74
|
+
),
|
|
75
|
+
/* @__PURE__ */ o(
|
|
76
|
+
"linearGradient",
|
|
77
|
+
{
|
|
78
|
+
gradientUnits: "userSpaceOnUse",
|
|
79
|
+
id: `${s}-dot`,
|
|
80
|
+
x1: "0",
|
|
81
|
+
x2: "100",
|
|
82
|
+
y1: "50",
|
|
83
|
+
y2: "50",
|
|
84
|
+
children: t === "start" ? /* @__PURE__ */ r(a, { children: [
|
|
85
|
+
/* @__PURE__ */ o("stop", { offset: "0", stopColor: "currentColor", stopOpacity: 0 }),
|
|
86
|
+
/* @__PURE__ */ o(
|
|
87
|
+
"stop",
|
|
88
|
+
{
|
|
89
|
+
offset: c,
|
|
90
|
+
stopColor: "currentColor",
|
|
91
|
+
stopOpacity: 1
|
|
92
|
+
}
|
|
93
|
+
),
|
|
94
|
+
/* @__PURE__ */ o("stop", { offset: "1", stopColor: "currentColor", stopOpacity: 1 })
|
|
95
|
+
] }) : /* @__PURE__ */ r(a, { children: [
|
|
96
|
+
/* @__PURE__ */ o("stop", { offset: "0", stopColor: "currentColor", stopOpacity: 1 }),
|
|
97
|
+
/* @__PURE__ */ o(
|
|
98
|
+
"stop",
|
|
99
|
+
{
|
|
100
|
+
offset: 1 - c,
|
|
101
|
+
stopColor: "currentColor",
|
|
102
|
+
stopOpacity: 1
|
|
103
|
+
}
|
|
104
|
+
),
|
|
105
|
+
/* @__PURE__ */ o("stop", { offset: "1", stopColor: "currentColor", stopOpacity: 0 })
|
|
106
|
+
] })
|
|
107
|
+
}
|
|
108
|
+
)
|
|
109
|
+
] }) : null,
|
|
110
|
+
l.map((i, n) => /* @__PURE__ */ o(
|
|
111
|
+
"path",
|
|
112
|
+
{
|
|
113
|
+
className: C(
|
|
114
|
+
"motion-reduce:animate-none",
|
|
115
|
+
f && p === "flow" && k
|
|
116
|
+
),
|
|
117
|
+
d: i,
|
|
118
|
+
fill: "none",
|
|
119
|
+
stroke: w,
|
|
120
|
+
strokeDasharray: m,
|
|
121
|
+
strokeLinecap: "round",
|
|
122
|
+
strokeOpacity: t ? void 0 : e,
|
|
123
|
+
strokeWidth: x,
|
|
124
|
+
vectorEffect: "non-scaling-stroke"
|
|
125
|
+
},
|
|
126
|
+
`path-${n}`
|
|
127
|
+
)),
|
|
128
|
+
f && p === "dot" ? l.map((i, n) => /* @__PURE__ */ o(
|
|
129
|
+
"path",
|
|
130
|
+
{
|
|
131
|
+
className: "animate-gateway-flow-dot motion-reduce:animate-none",
|
|
132
|
+
d: i,
|
|
133
|
+
fill: "none",
|
|
134
|
+
pathLength: 100,
|
|
135
|
+
stroke: D,
|
|
136
|
+
strokeDasharray: I,
|
|
137
|
+
strokeLinecap: "round",
|
|
138
|
+
strokeOpacity: t ? void 0 : 1,
|
|
139
|
+
strokeWidth: R,
|
|
140
|
+
style: {
|
|
141
|
+
animationDelay: `${n * g / Math.max(h, 1)}s`
|
|
142
|
+
},
|
|
143
|
+
vectorEffect: "non-scaling-stroke"
|
|
144
|
+
},
|
|
145
|
+
`dot-${n}`
|
|
146
|
+
)) : null
|
|
147
|
+
]
|
|
148
|
+
}
|
|
149
|
+
);
|
|
150
|
+
}
|
|
151
|
+
export {
|
|
152
|
+
S as FlowConnector
|
|
153
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { VariantProps } from 'class-variance-authority';
|
|
2
|
+
import { ComponentProps, ReactNode } from 'react';
|
|
3
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
4
|
+
/**
|
|
5
|
+
* Outer wrapper holds a 2px padding band that callers paint via
|
|
6
|
+
* `className` (typically a gradient). Inner fill takes the available
|
|
7
|
+
* space and renders the children on a dark background.
|
|
8
|
+
*
|
|
9
|
+
* Radius math: outer `rounded-2xl` = 18px in our token scale. With 2px
|
|
10
|
+
* padding the inner radius must be 16px to keep the gradient band an
|
|
11
|
+
* even thickness around the curve (outer − padding = inner).
|
|
12
|
+
*/
|
|
13
|
+
declare const flowHubVariants: (props?: ({
|
|
14
|
+
size?: "sm" | "lg" | "md" | "xl" | null | undefined;
|
|
15
|
+
} & ClassProp) | undefined) => string;
|
|
16
|
+
type FlowHubProps = {
|
|
17
|
+
/**
|
|
18
|
+
* Center content (logo, icon, glyph). Rendered inside a dark fill —
|
|
19
|
+
* children should use `text-background` or similar to read clearly.
|
|
20
|
+
*/
|
|
21
|
+
children: ReactNode;
|
|
22
|
+
} & ComponentProps<"span"> & VariantProps<typeof flowHubVariants>;
|
|
23
|
+
declare function FlowHub({ children, className, size, ...props }: FlowHubProps): import("react/jsx-runtime").JSX.Element;
|
|
24
|
+
export { FlowHub, flowHubVariants };
|
|
25
|
+
export type { FlowHubProps };
|
|
26
|
+
//# sourceMappingURL=flow-hub.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flow-hub.d.ts","sourceRoot":"","sources":["../../../../lib/components/ui/atoms/flow-hub.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,KAAK,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIvD;;;;;;;;GAQG;AACH,QAAA,MAAM,eAAe;;8EAepB,CAAC;AAEF,KAAK,YAAY,GAAG;IAClB;;;OAGG;IACH,QAAQ,EAAE,SAAS,CAAC;CACrB,GAAG,cAAc,CAAC,MAAM,CAAC,GACxB,YAAY,CAAC,OAAO,eAAe,CAAC,CAAC;AAEvC,iBAAS,OAAO,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,IAAI,EAAE,GAAG,KAAK,EAAE,EAAE,YAAY,2CAYrE;AAED,OAAO,EAAE,OAAO,EAAE,eAAe,EAAE,CAAC;AACpC,YAAY,EAAE,YAAY,EAAE,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { c as n } from "../../../index-UgeK3A8s.js";
|
|
3
|
+
import { cn as a } from "../../../lib/utils.js";
|
|
4
|
+
const l = n(
|
|
5
|
+
"relative inline-flex shrink-0 items-center justify-center rounded-2xl p-[2px] [&_svg]:shrink-0",
|
|
6
|
+
{
|
|
7
|
+
variants: {
|
|
8
|
+
size: {
|
|
9
|
+
sm: "size-12 [&_svg]:size-5",
|
|
10
|
+
md: "size-16 [&_svg]:size-7",
|
|
11
|
+
lg: "size-20 [&_svg]:size-9",
|
|
12
|
+
xl: "size-28 [&_svg]:size-12"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
defaultVariants: {
|
|
16
|
+
size: "lg"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
function u({ children: s, className: i, size: r, ...t }) {
|
|
21
|
+
return /* @__PURE__ */ e(
|
|
22
|
+
"span",
|
|
23
|
+
{
|
|
24
|
+
className: a(l({ size: r, className: i })),
|
|
25
|
+
"data-slot": "flow-hub",
|
|
26
|
+
...t,
|
|
27
|
+
children: /* @__PURE__ */ e("span", { className: "flex size-full items-center justify-center rounded-[16px] bg-foreground text-background", children: s })
|
|
28
|
+
}
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export {
|
|
32
|
+
u as FlowHub,
|
|
33
|
+
l as flowHubVariants
|
|
34
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { VariantProps } from 'class-variance-authority';
|
|
2
|
+
import { ComponentProps, ReactNode } from 'react';
|
|
3
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
4
|
+
declare const flowTileVariants: (props?: ({
|
|
5
|
+
size?: "xs" | "sm" | "lg" | "md" | "xl" | null | undefined;
|
|
6
|
+
variant?: "default" | "muted" | null | undefined;
|
|
7
|
+
} & ClassProp) | undefined) => string;
|
|
8
|
+
type FlowTileProps = {
|
|
9
|
+
children: ReactNode;
|
|
10
|
+
/**
|
|
11
|
+
* Accessible label for the tile. Sets both `aria-label` and `title`
|
|
12
|
+
* so screen readers announce it and sighted users see a hover tooltip.
|
|
13
|
+
*/
|
|
14
|
+
label?: string;
|
|
15
|
+
} & Omit<ComponentProps<"span">, "title"> & VariantProps<typeof flowTileVariants>;
|
|
16
|
+
declare function FlowTile({ children, className, label, size, variant, ...props }: FlowTileProps): import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export { FlowTile, flowTileVariants };
|
|
18
|
+
export type { FlowTileProps };
|
|
19
|
+
//# sourceMappingURL=flow-tile.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flow-tile.d.ts","sourceRoot":"","sources":["../../../../lib/components/ui/atoms/flow-tile.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,KAAK,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIvD,QAAA,MAAM,gBAAgB;;;8EAqBrB,CAAC;AAEF,KAAK,aAAa,GAAG;IACnB,QAAQ,EAAE,SAAS,CAAC;IACpB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,GAAG,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC,GACvC,YAAY,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAExC,iBAAS,QAAQ,CAAC,EAChB,QAAQ,EACR,SAAS,EACT,KAAK,EACL,IAAI,EACJ,OAAO,EACP,GAAG,KAAK,EACT,EAAE,aAAa,2CAef;AAED,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,CAAC;AACtC,YAAY,EAAE,aAAa,EAAE,CAAC"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { jsx as n } from "react/jsx-runtime";
|
|
2
|
+
import { c as d } from "../../../index-UgeK3A8s.js";
|
|
3
|
+
import { cn as l } from "../../../lib/utils.js";
|
|
4
|
+
const m = d(
|
|
5
|
+
"inline-flex shrink-0 items-center justify-center rounded-xl border border-border/60 bg-background shadow-black/5 shadow-sm [&>svg]:shrink-0",
|
|
6
|
+
{
|
|
7
|
+
variants: {
|
|
8
|
+
size: {
|
|
9
|
+
xs: "size-6 [&>svg]:size-3",
|
|
10
|
+
sm: "size-8 [&>svg]:size-4",
|
|
11
|
+
md: "size-10 [&>svg]:size-5",
|
|
12
|
+
lg: "size-14 [&>svg]:size-7",
|
|
13
|
+
xl: "size-18 [&>svg]:size-9"
|
|
14
|
+
},
|
|
15
|
+
variant: {
|
|
16
|
+
default: "",
|
|
17
|
+
muted: "text-muted-foreground"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
defaultVariants: {
|
|
21
|
+
size: "md",
|
|
22
|
+
variant: "default"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
);
|
|
26
|
+
function c({
|
|
27
|
+
children: s,
|
|
28
|
+
className: i,
|
|
29
|
+
label: e,
|
|
30
|
+
size: r,
|
|
31
|
+
variant: t,
|
|
32
|
+
...a
|
|
33
|
+
}) {
|
|
34
|
+
const o = e ? { "aria-label": e, role: "img", title: e } : { "aria-hidden": !0 };
|
|
35
|
+
return /* @__PURE__ */ n(
|
|
36
|
+
"span",
|
|
37
|
+
{
|
|
38
|
+
className: l(m({ size: r, variant: t, className: i })),
|
|
39
|
+
"data-slot": "flow-tile",
|
|
40
|
+
...o,
|
|
41
|
+
...a,
|
|
42
|
+
children: s
|
|
43
|
+
}
|
|
44
|
+
);
|
|
45
|
+
}
|
|
46
|
+
export {
|
|
47
|
+
c as FlowTile,
|
|
48
|
+
m as flowTileVariants
|
|
49
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cursor.d.ts","sourceRoot":"","sources":["../../../../../lib/components/ui/atoms/icons/cursor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,eAAO,MAAM,MAAM,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,
|
|
1
|
+
{"version":3,"file":"cursor.d.ts","sourceRoot":"","sources":["../../../../../lib/components/ui/atoms/icons/cursor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,eAAO,MAAM,MAAM,GAAI,OAAO,QAAQ,CAAC,aAAa,CAAC,4CAapD,CAAC;AAEF,eAAe,MAAM,CAAC"}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
const o = (
|
|
1
|
+
import { jsxs as r, jsx as l } from "react/jsx-runtime";
|
|
2
|
+
const o = (e) => /* @__PURE__ */ r(
|
|
3
3
|
"svg",
|
|
4
4
|
{
|
|
5
5
|
fill: "currentColor",
|
|
6
|
+
fillRule: "evenodd",
|
|
6
7
|
height: "1em",
|
|
7
|
-
viewBox: "0 0
|
|
8
|
+
viewBox: "0 0 24 24",
|
|
8
9
|
width: "1em",
|
|
9
10
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
-
...
|
|
11
|
+
...e,
|
|
11
12
|
children: [
|
|
12
|
-
/* @__PURE__ */
|
|
13
|
-
" "
|
|
14
|
-
/* @__PURE__ */ r("path", { d: "M22.106 5.68L12.5.135a.998.998 0 00-.998 0L1.893 5.68a.84.84 0 00-.419.726v11.186c0 .3.16.577.42.727l9.607 5.547a.999.999 0 00.998 0l9.608-5.547a.84.84 0 00.42-.727V6.407a.84.84 0 00-.42-.726zm-.603 1.176L12.228 22.92c-.063.108-.228.064-.228-.061V12.34a.59.59 0 00-.295-.51l-9.11-5.26c-.107-.062-.063-.228.062-.228h18.55c.264 0 .428.286.296.514z" })
|
|
13
|
+
/* @__PURE__ */ l("title", { children: "Cursor" }),
|
|
14
|
+
/* @__PURE__ */ l("path", { d: "M22.106 5.68L12.5.135a.998.998 0 00-.998 0L1.893 5.68a.84.84 0 00-.419.726v11.186c0 .3.16.577.42.727l9.607 5.547a.999.999 0 00.998 0l9.608-5.547a.84.84 0 00.42-.727V6.407a.84.84 0 00-.42-.726zm-.603 1.176L12.228 22.92c-.063.108-.228.064-.228-.061V12.34a.59.59 0 00-.295-.51l-9.11-5.26c-.107-.062-.063-.228.062-.228h18.55c.264 0 .428.286.296.514z" })
|
|
15
15
|
]
|
|
16
16
|
}
|
|
17
17
|
);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { jsxs as e, jsx as
|
|
2
|
-
const
|
|
1
|
+
import { jsxs as e, jsx as r } from "react/jsx-runtime";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e(
|
|
3
3
|
"svg",
|
|
4
4
|
{
|
|
5
5
|
fill: "none",
|
|
@@ -7,17 +7,17 @@ const L = (l) => /* @__PURE__ */ e(
|
|
|
7
7
|
viewBox: "0 0 60 60",
|
|
8
8
|
width: "1em",
|
|
9
9
|
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
-
...
|
|
10
|
+
...t,
|
|
11
11
|
children: [
|
|
12
|
-
/* @__PURE__ */
|
|
12
|
+
/* @__PURE__ */ r("title", { children: "Forkable" }),
|
|
13
13
|
" ",
|
|
14
14
|
/* @__PURE__ */ e("g", { transform: "translate(0, 18)", children: [
|
|
15
15
|
" ",
|
|
16
|
-
/* @__PURE__ */
|
|
16
|
+
/* @__PURE__ */ r(
|
|
17
17
|
"path",
|
|
18
18
|
{
|
|
19
19
|
d: "M24 8.8418L60 5.14258V18.8564L24 15.1572V24H0L0 20.5713H20.5713L20.5713 3.42871L0 3.42871L0 0L24 0V8.8418ZM15.4287 17.1426H0L0 13.7139H15.4287L15.4287 17.1426ZM27.4287 11.9502V12.0498L56.5713 14.666V9.33301L27.4287 11.9502ZM15.4287 10.2861H0L0 6.85742H15.4287V10.2861Z",
|
|
20
|
-
fill: "
|
|
20
|
+
fill: "currentColor"
|
|
21
21
|
}
|
|
22
22
|
),
|
|
23
23
|
" "
|
|
@@ -26,6 +26,6 @@ const L = (l) => /* @__PURE__ */ e(
|
|
|
26
26
|
}
|
|
27
27
|
);
|
|
28
28
|
export {
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
o as Forkable,
|
|
30
|
+
o as default
|
|
31
31
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../lib/components/ui/atoms/icons/index.tsx"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../lib/components/ui/atoms/icons/index.tsx"],"names":[],"mappings":"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"}
|