@arcadeai/design-system 3.39.3 → 3.40.0

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.
@@ -0,0 +1,44 @@
1
+ import { InputHTMLAttributes } from 'react';
2
+ export type TagsInputValidationResult = {
3
+ /** Normalized value to store. Falls back to the trimmed input if omitted. */
4
+ normalizedValue?: string;
5
+ /** Human-readable error message. Undefined means valid. */
6
+ error?: string;
7
+ };
8
+ type ForwardedInputProps = Omit<InputHTMLAttributes<HTMLInputElement>, "className" | "defaultValue" | "disabled" | "onBlur" | "onChange" | "onKeyDown" | "onPaste" | "placeholder" | "type" | "value">;
9
+ export type TagsInputProps = {
10
+ values: string[];
11
+ onChange: (values: string[]) => void;
12
+ placeholder?: string;
13
+ /** Commit the pending input value when the field loses focus. Default: true. */
14
+ addOnBlur?: boolean;
15
+ /**
16
+ * Validate (and optionally normalize) a trimmed input string before it is added.
17
+ * Return `{ error }` to reject with a message, `{ normalizedValue }` to accept
18
+ * with a transformed value, or `{}` to accept as-is.
19
+ */
20
+ validateValue?: (trimmed: string, currentValues: string[]) => TagsInputValidationResult;
21
+ /**
22
+ * Determine whether `incoming` is a duplicate of an existing `stored` value.
23
+ * Return `true` to reject with the default "Already added" message, or a
24
+ * non-empty string to reject with that string as the error. Defaults to
25
+ * exact string equality with "Already added".
26
+ */
27
+ isDuplicate?: (incoming: string, stored: string) => boolean | string;
28
+ /**
29
+ * Render a custom chip for each committed value. Receives the value and a
30
+ * `remove` callback. When omitted a plain Badge with an X button is rendered.
31
+ * Keys are managed by TagsInput — do not add a `key` prop to the returned element.
32
+ */
33
+ renderValue?: (value: string, remove: () => void) => React.ReactNode;
34
+ className?: string;
35
+ disabled?: boolean;
36
+ } & ForwardedInputProps;
37
+ export type TagsInputValueProps = {
38
+ value: string;
39
+ onRemove: () => void;
40
+ };
41
+ export declare function TagsInputValue({ value, onRemove }: TagsInputValueProps): import("react/jsx-runtime").JSX.Element;
42
+ export declare function TagsInput({ values, onChange, placeholder, addOnBlur, validateValue, isDuplicate, renderValue, className, disabled, id, ...inputProps }: TagsInputProps): import("react/jsx-runtime").JSX.Element;
43
+ export {};
44
+ //# sourceMappingURL=tags-input.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tags-input.d.ts","sourceRoot":"","sources":["../../../../lib/components/ui/molecules/tags-input.tsx"],"names":[],"mappings":"AAIA,OAAO,EAEL,KAAK,mBAAmB,EAKzB,MAAM,OAAO,CAAC;AAIf,MAAM,MAAM,yBAAyB,GAAG;IACtC,6EAA6E;IAC7E,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,2DAA2D;IAC3D,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,KAAK,mBAAmB,GAAG,IAAI,CAC7B,mBAAmB,CAAC,gBAAgB,CAAC,EACnC,WAAW,GACX,cAAc,GACd,UAAU,GACV,QAAQ,GACR,UAAU,GACV,WAAW,GACX,SAAS,GACT,aAAa,GACb,MAAM,GACN,OAAO,CACV,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG;IAC3B,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,IAAI,CAAC;IACrC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gFAAgF;IAChF,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;;OAIG;IACH,aAAa,CAAC,EAAE,CACd,OAAO,EAAE,MAAM,EACf,aAAa,EAAE,MAAM,EAAE,KACpB,yBAAyB,CAAC;IAC/B;;;;;OAKG;IACH,WAAW,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,KAAK,OAAO,GAAG,MAAM,CAAC;IACrE;;;;OAIG;IACH,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,IAAI,KAAK,KAAK,CAAC,SAAS,CAAC;IACrE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,mBAAmB,CAAC;AAExB,MAAM,MAAM,mBAAmB,GAAG;IAChC,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,IAAI,CAAC;CACtB,CAAC;AAEF,wBAAgB,cAAc,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,EAAE,mBAAmB,2CAiBtE;AAMD,wBAAgB,SAAS,CAAC,EACxB,MAAM,EACN,QAAQ,EACR,WAAW,EACX,SAAgB,EAChB,aAAa,EACb,WAAW,EACX,WAAW,EACX,SAAS,EACT,QAAgB,EAChB,EAAE,EACF,GAAG,UAAU,EACd,EAAE,cAAc,2CA+JhB"}
@@ -0,0 +1,139 @@
1
+ import { jsxs as h, jsx as c } from "react/jsx-runtime";
2
+ import { X as _ } from "lucide-react";
3
+ import { useId as C, useState as D, useRef as P, Fragment as L } from "react";
4
+ import { Badge as X } from "../atoms/badge.js";
5
+ import { cn as $ } from "../../../lib/utils.js";
6
+ const T = /[,\n\r]+/;
7
+ function q({ value: n, onRemove: s }) {
8
+ return /* @__PURE__ */ h(X, { className: "gap-1 pr-1", variant: "secondary", children: [
9
+ /* @__PURE__ */ c("span", { className: "max-w-[220px] truncate", children: n }),
10
+ /* @__PURE__ */ c(
11
+ "button",
12
+ {
13
+ "aria-label": `Remove ${n}`,
14
+ className: "ml-0.5 rounded text-muted-foreground hover:text-foreground",
15
+ onClick: (p) => {
16
+ p.stopPropagation(), s();
17
+ },
18
+ type: "button",
19
+ children: /* @__PURE__ */ c(_, { className: "size-3" })
20
+ }
21
+ )
22
+ ] });
23
+ }
24
+ function G(n, s) {
25
+ return /* @__PURE__ */ c(q, { onRemove: s, value: n });
26
+ }
27
+ function W({
28
+ values: n,
29
+ onChange: s,
30
+ placeholder: p,
31
+ addOnBlur: z = !0,
32
+ validateValue: f,
33
+ isDuplicate: x,
34
+ renderValue: B,
35
+ className: V,
36
+ disabled: y = !1,
37
+ id: A,
38
+ ...F
39
+ }) {
40
+ const S = C(), b = A ?? S, [i, m] = D(""), [w, d] = D(null), k = P(null), l = P(n);
41
+ l.current = n;
42
+ const j = B ?? G, I = (e, t) => {
43
+ for (const o of t) {
44
+ const r = x ? x(e, o) : e === o;
45
+ if (r === !0)
46
+ return "Already added";
47
+ if (typeof r == "string" && r)
48
+ return r;
49
+ }
50
+ return null;
51
+ }, N = (e) => {
52
+ const t = e.trim();
53
+ if (!t)
54
+ return;
55
+ const o = l.current, r = f ? f(t, o) : {};
56
+ if (r.error) {
57
+ d(r.error);
58
+ return;
59
+ }
60
+ const u = r.normalizedValue ?? t, a = I(u, o);
61
+ if (a) {
62
+ d(a);
63
+ return;
64
+ }
65
+ s([...o, u]), m(""), d(null);
66
+ }, v = (e) => {
67
+ s(l.current.filter((t) => t !== e));
68
+ }, K = (e) => {
69
+ if ((e.key === "Enter" || e.key === ",") && !e.nativeEvent.isComposing)
70
+ e.preventDefault(), N(i);
71
+ else if (e.key === "Backspace" && i === "") {
72
+ const t = l.current.at(-1);
73
+ t !== void 0 && v(t);
74
+ } else
75
+ d(null);
76
+ }, M = (e) => {
77
+ const t = e.clipboardData.getData("text");
78
+ if (!T.test(t))
79
+ return;
80
+ e.preventDefault();
81
+ const o = t.split(T).map((a) => a.trim()).filter(Boolean);
82
+ let r = [...l.current], u = null;
83
+ for (const a of o) {
84
+ const g = f ? f(a, r) : {};
85
+ if (g.error) {
86
+ u = g.error;
87
+ break;
88
+ }
89
+ const E = g.normalizedValue ?? a, R = I(E, r);
90
+ if (R) {
91
+ u = R;
92
+ break;
93
+ }
94
+ r = [...r, E];
95
+ }
96
+ r.length > l.current.length && s(r), m(""), d(u);
97
+ };
98
+ return /* @__PURE__ */ h("div", { className: "space-y-1", children: [
99
+ /* @__PURE__ */ h(
100
+ "label",
101
+ {
102
+ className: $(
103
+ "flex min-h-10 w-full cursor-text flex-wrap items-center gap-1.5 rounded-md border border-input bg-transparent px-3 py-2 text-sm transition-[color,box-shadow] focus-within:border-ring focus-within:ring-[3px] focus-within:ring-ring/50",
104
+ y && "cursor-not-allowed opacity-50",
105
+ V
106
+ ),
107
+ htmlFor: b,
108
+ ref: k,
109
+ children: [
110
+ n.map((e) => /* @__PURE__ */ c(L, { children: j(e, () => v(e)) }, e)),
111
+ /* @__PURE__ */ c(
112
+ "input",
113
+ {
114
+ ...F,
115
+ className: "min-w-32 flex-1 bg-transparent outline-none placeholder:text-muted-foreground",
116
+ disabled: y,
117
+ id: b,
118
+ onBlur: (e) => {
119
+ const t = k.current?.contains(e.relatedTarget);
120
+ z && i.trim() && !t && N(i);
121
+ },
122
+ onChange: (e) => m(e.target.value),
123
+ onKeyDown: K,
124
+ onPaste: M,
125
+ placeholder: n.length === 0 ? p : "",
126
+ type: "text",
127
+ value: i
128
+ }
129
+ )
130
+ ]
131
+ }
132
+ ),
133
+ w && /* @__PURE__ */ c("p", { className: "text-destructive text-sm", children: w })
134
+ ] });
135
+ }
136
+ export {
137
+ W as TagsInput,
138
+ q as TagsInputValue
139
+ };
package/dist/main.js CHANGED
@@ -217,21 +217,22 @@ import { PromptInput as ff, PromptInputAction as xf, PromptInputActions as df, P
217
217
  import { R as gf, T as Cf } from "./toolkit-card-Dc104Z9e.js";
218
218
  import { StepsProgress as cf } from "./components/ui/molecules/steps-progress.js";
219
219
  import { SuggestionCard as hf, SuggestionCardSkeleton as Af } from "./components/ui/molecules/suggestion-card.js";
220
- import { ToolAuthorization as Df, ToolAuthorizationArgs as If, ToolAuthorizationContent as Mf, ToolAuthorizationHeader as Pf, ToolAuthorizationMessage as Bf } from "./components/ui/molecules/tool-authorization.js";
221
- import { ToolCallAccordion as Gf, ToolCallAccordionContent as Lf, ToolCallAccordionItem as vf, ToolCallAccordionTrigger as Of } from "./components/ui/molecules/tool-call-accordion.js";
222
- import { ToolCard as Rf } from "./components/ui/molecules/tool-card.js";
223
- import { UserNav as Ef } from "./components/ui/molecules/user-nav.js";
224
- import { ChatPageSkeleton as Vf } from "./components/ui/pages/chat-page-skeleton.js";
225
- import { LoginPage as Uf } from "./components/ui/pages/login-page.js";
226
- import { AuthTemplate as zf, AuthTemplateCard as Nf, AuthTemplateContent as Wf, AuthTemplateDefaultBackground as Kf, AuthTemplateDescription as Zf, AuthTemplateFooter as qf, AuthTemplateGridOverlay as Jf, AuthTemplateHeader as Xf, AuthTemplateLegal as Yf, AuthTemplateLegalLink as jf, AuthTemplateLogo as Qf, AuthTemplatePrompt as $f, AuthTemplatePromptLink as ox, AuthTemplateTitle as rx, AuthTemplateVideoBackground as ex } from "./components/ui/templates/auth-template.js";
227
- import { ChatTemplate as ax, ChatTemplateBody as px, ChatTemplateFooter as mx, ChatTemplateHeader as ix, ChatTemplateHeaderGroup as lx, ChatTemplateOverview as nx, ChatTemplateOverviewSubtitle as fx, ChatTemplateOverviewTitle as xx, ChatTemplateSuggestions as dx } from "./components/ui/templates/chat-template.js";
228
- import { ChatBodySkeleton as ux, ChatContentSkeleton as gx, ChatFooterSkeleton as Cx, ChatHeaderSkeleton as Tx, ChatSidebarSkeleton as cx } from "./components/ui/templates/chat-template-skeletons.js";
229
- import { ErrorTemplate as hx, ErrorTemplateActions as Ax, ErrorTemplateContent as bx, ErrorTemplateDescription as Dx, ErrorTemplateIcon as Ix, ErrorTemplateLogo as Mx, ErrorTemplateTitle as Px, ErrorTemplateUrl as Bx } from "./components/ui/templates/error-template.js";
230
- import { PUBLIC_ICON_URL as Gx, PUBLIC_VIDEO_URL as Lx } from "./metadata/constants.js";
231
- import { MCP_OAUTH2_PROVIDER as Ox, OAUTH2_PROVIDER as yx, OAUTH_PROVIDERS as Rx, OAUTH_PROVIDER_CATALOGUE as wx, OAuthId as Ex, OAuthProviderId as Hx, OTHER_OAUTH_PROVIDERS as Vx, PREBUILT_OAUTH_PROVIDERS as _x } from "./metadata/oauth-providers.js";
232
- import { TOOLKIT_ICON_MAP as Fx, getToolIconByToolkitName as zx, getToolkitIcon as Nx, getToolkitIconByName as Wx } from "./metadata/toolkit-icons.js";
233
- import { CATEGORIES as Zx, TOOLKITS as qx, TOOLKIT_CATALOGUE as Jx } from "./metadata/toolkits.js";
234
- import { findPrebuiltProviderById as Yx, findPrebuiltProviderByProviderId as jx, findToolkitByName as Qx, isKnownToolkit as $x, isPrebuiltProvider as od } from "./metadata/utils.js";
220
+ import { TagsInput as Df, TagsInputValue as If } from "./components/ui/molecules/tags-input.js";
221
+ import { ToolAuthorization as Pf, ToolAuthorizationArgs as Bf, ToolAuthorizationContent as kf, ToolAuthorizationHeader as Gf, ToolAuthorizationMessage as Lf } from "./components/ui/molecules/tool-authorization.js";
222
+ import { ToolCallAccordion as Of, ToolCallAccordionContent as yf, ToolCallAccordionItem as Rf, ToolCallAccordionTrigger as wf } from "./components/ui/molecules/tool-call-accordion.js";
223
+ import { ToolCard as Hf } from "./components/ui/molecules/tool-card.js";
224
+ import { UserNav as _f } from "./components/ui/molecules/user-nav.js";
225
+ import { ChatPageSkeleton as Ff } from "./components/ui/pages/chat-page-skeleton.js";
226
+ import { LoginPage as Nf } from "./components/ui/pages/login-page.js";
227
+ import { AuthTemplate as Kf, AuthTemplateCard as Zf, AuthTemplateContent as qf, AuthTemplateDefaultBackground as Jf, AuthTemplateDescription as Xf, AuthTemplateFooter as Yf, AuthTemplateGridOverlay as jf, AuthTemplateHeader as Qf, AuthTemplateLegal as $f, AuthTemplateLegalLink as ox, AuthTemplateLogo as rx, AuthTemplatePrompt as ex, AuthTemplatePromptLink as tx, AuthTemplateTitle as ax, AuthTemplateVideoBackground as px } from "./components/ui/templates/auth-template.js";
228
+ import { ChatTemplate as ix, ChatTemplateBody as lx, ChatTemplateFooter as nx, ChatTemplateHeader as fx, ChatTemplateHeaderGroup as xx, ChatTemplateOverview as dx, ChatTemplateOverviewSubtitle as sx, ChatTemplateOverviewTitle as ux, ChatTemplateSuggestions as gx } from "./components/ui/templates/chat-template.js";
229
+ import { ChatBodySkeleton as Tx, ChatContentSkeleton as cx, ChatFooterSkeleton as Sx, ChatHeaderSkeleton as hx, ChatSidebarSkeleton as Ax } from "./components/ui/templates/chat-template-skeletons.js";
230
+ import { ErrorTemplate as Dx, ErrorTemplateActions as Ix, ErrorTemplateContent as Mx, ErrorTemplateDescription as Px, ErrorTemplateIcon as Bx, ErrorTemplateLogo as kx, ErrorTemplateTitle as Gx, ErrorTemplateUrl as Lx } from "./components/ui/templates/error-template.js";
231
+ import { PUBLIC_ICON_URL as Ox, PUBLIC_VIDEO_URL as yx } from "./metadata/constants.js";
232
+ import { MCP_OAUTH2_PROVIDER as wx, OAUTH2_PROVIDER as Ex, OAUTH_PROVIDERS as Hx, OAUTH_PROVIDER_CATALOGUE as Vx, OAuthId as _x, OAuthProviderId as Ux, OTHER_OAUTH_PROVIDERS as Fx, PREBUILT_OAUTH_PROVIDERS as zx } from "./metadata/oauth-providers.js";
233
+ import { TOOLKIT_ICON_MAP as Wx, getToolIconByToolkitName as Kx, getToolkitIcon as Zx, getToolkitIconByName as qx } from "./metadata/toolkit-icons.js";
234
+ import { CATEGORIES as Xx, TOOLKITS as Yx, TOOLKIT_CATALOGUE as jx } from "./metadata/toolkits.js";
235
+ import { findPrebuiltProviderById as $x, findPrebuiltProviderByProviderId as od, findToolkitByName as rd, isKnownToolkit as ed, isPrebuiltProvider as td } from "./metadata/utils.js";
235
236
  export {
236
237
  e as Accordion,
237
238
  t as AccordionContent,
@@ -265,21 +266,21 @@ export {
265
266
  _r as Atlassian,
266
267
  Fr as Attio,
267
268
  Nr as Auth0,
268
- zf as AuthTemplate,
269
- Nf as AuthTemplateCard,
270
- Wf as AuthTemplateContent,
271
- Kf as AuthTemplateDefaultBackground,
272
- Zf as AuthTemplateDescription,
273
- qf as AuthTemplateFooter,
274
- Jf as AuthTemplateGridOverlay,
275
- Xf as AuthTemplateHeader,
276
- Yf as AuthTemplateLegal,
277
- jf as AuthTemplateLegalLink,
278
- Qf as AuthTemplateLogo,
279
- $f as AuthTemplatePrompt,
280
- ox as AuthTemplatePromptLink,
281
- rx as AuthTemplateTitle,
282
- ex as AuthTemplateVideoBackground,
269
+ Kf as AuthTemplate,
270
+ Zf as AuthTemplateCard,
271
+ qf as AuthTemplateContent,
272
+ Jf as AuthTemplateDefaultBackground,
273
+ Xf as AuthTemplateDescription,
274
+ Yf as AuthTemplateFooter,
275
+ jf as AuthTemplateGridOverlay,
276
+ Qf as AuthTemplateHeader,
277
+ $f as AuthTemplateLegal,
278
+ ox as AuthTemplateLegalLink,
279
+ rx as AuthTemplateLogo,
280
+ ex as AuthTemplatePrompt,
281
+ tx as AuthTemplatePromptLink,
282
+ ax as AuthTemplateTitle,
283
+ px as AuthTemplateVideoBackground,
283
284
  B as Avatar,
284
285
  k as AvatarBadge,
285
286
  G as AvatarFallback,
@@ -309,7 +310,7 @@ export {
309
310
  xe as Buffer,
310
311
  Y as Button,
311
312
  $ as ByocBadge,
312
- Zx as CATEGORIES,
313
+ Xx as CATEGORIES,
313
314
  ro as Calendar,
314
315
  eo as CalendarDayButton,
315
316
  se as Calendly,
@@ -327,28 +328,28 @@ export {
327
328
  To as ChartTooltip,
328
329
  co as ChartTooltipContent,
329
330
  _n as ChatAssistantMessage,
330
- ux as ChatBodySkeleton,
331
+ Tx as ChatBodySkeleton,
331
332
  ho as ChatContainerContent,
332
333
  Ao as ChatContainerRoot,
333
334
  bo as ChatContainerScrollAnchor,
334
- gx as ChatContentSkeleton,
335
- Cx as ChatFooterSkeleton,
336
- Tx as ChatHeaderSkeleton,
335
+ cx as ChatContentSkeleton,
336
+ Sx as ChatFooterSkeleton,
337
+ hx as ChatHeaderSkeleton,
337
338
  Hn as ChatHistoryItem,
338
339
  Un as ChatMessageList,
339
340
  Fn as ChatMessageListSkeleton,
340
- Vf as ChatPageSkeleton,
341
- cx as ChatSidebarSkeleton,
341
+ Ff as ChatPageSkeleton,
342
+ Ax as ChatSidebarSkeleton,
342
343
  zn as ChatStreamingIndicator,
343
- ax as ChatTemplate,
344
- px as ChatTemplateBody,
345
- mx as ChatTemplateFooter,
346
- ix as ChatTemplateHeader,
347
- lx as ChatTemplateHeaderGroup,
348
- nx as ChatTemplateOverview,
349
- fx as ChatTemplateOverviewSubtitle,
350
- xx as ChatTemplateOverviewTitle,
351
- dx as ChatTemplateSuggestions,
344
+ ix as ChatTemplate,
345
+ lx as ChatTemplateBody,
346
+ nx as ChatTemplateFooter,
347
+ fx as ChatTemplateHeader,
348
+ xx as ChatTemplateHeaderGroup,
349
+ dx as ChatTemplateOverview,
350
+ sx as ChatTemplateOverviewSubtitle,
351
+ ux as ChatTemplateOverviewTitle,
352
+ gx as ChatTemplateSuggestions,
352
353
  Nn as ChatUserMessage,
353
354
  Io as Checkbox,
354
355
  ge as Claude,
@@ -420,14 +421,14 @@ export {
420
421
  rt as Ebay,
421
422
  $n as EmptyState,
422
423
  rf as ErrorState,
423
- hx as ErrorTemplate,
424
- Ax as ErrorTemplateActions,
425
- bx as ErrorTemplateContent,
426
- Dx as ErrorTemplateDescription,
427
- Ix as ErrorTemplateIcon,
428
- Mx as ErrorTemplateLogo,
429
- Px as ErrorTemplateTitle,
430
- Bx as ErrorTemplateUrl,
424
+ Dx as ErrorTemplate,
425
+ Ix as ErrorTemplateActions,
426
+ Mx as ErrorTemplateContent,
427
+ Px as ErrorTemplateDescription,
428
+ Bx as ErrorTemplateIcon,
429
+ kx as ErrorTemplateLogo,
430
+ Gx as ErrorTemplateTitle,
431
+ Lx as ErrorTemplateUrl,
431
432
  tt as Evernote,
432
433
  pt as Exa,
433
434
  it as Factorial,
@@ -479,9 +480,9 @@ export {
479
480
  Aa as Linear,
480
481
  Da as Linkedin,
481
482
  Si as Loader,
482
- Uf as LoginPage,
483
+ Nf as LoginPage,
483
484
  Ma as Luma,
484
- Ox as MCP_OAUTH2_PROVIDER,
485
+ wx as MCP_OAUTH2_PROVIDER,
485
486
  Ba as Mailchimp,
486
487
  Ai as Markdown,
487
488
  Ga as Mastra,
@@ -512,19 +513,19 @@ export {
512
513
  ip as MongoDB,
513
514
  np as Netsuite,
514
515
  xp as Notion,
515
- yx as OAUTH2_PROVIDER,
516
- Rx as OAUTH_PROVIDERS,
517
- wx as OAUTH_PROVIDER_CATALOGUE,
518
- Ex as OAuthId,
519
- Hx as OAuthProviderId,
520
- Vx as OTHER_OAUTH_PROVIDERS,
516
+ Ex as OAUTH2_PROVIDER,
517
+ Hx as OAUTH_PROVIDERS,
518
+ Vx as OAUTH_PROVIDER_CATALOGUE,
519
+ _x as OAuthId,
520
+ Ux as OAuthProviderId,
521
+ Fx as OTHER_OAUTH_PROVIDERS,
521
522
  sp as Oauth,
522
523
  gp as Obsidian,
523
524
  Tp as Okta,
524
525
  Sp as Openai,
525
- _x as PREBUILT_OAUTH_PROVIDERS,
526
- Gx as PUBLIC_ICON_URL,
527
- Lx as PUBLIC_VIDEO_URL,
526
+ zx as PREBUILT_OAUTH_PROVIDERS,
527
+ Ox as PUBLIC_ICON_URL,
528
+ yx as PUBLIC_VIDEO_URL,
528
529
  Ap as Pagerduty,
529
530
  Dp as Pinecone,
530
531
  Mp as Pinterest,
@@ -622,9 +623,9 @@ export {
622
623
  hf as SuggestionCard,
623
624
  Af as SuggestionCardSkeleton,
624
625
  pn as Switch,
625
- qx as TOOLKITS,
626
- Jx as TOOLKIT_CATALOGUE,
627
- Fx as TOOLKIT_ICON_MAP,
626
+ Yx as TOOLKITS,
627
+ jx as TOOLKIT_CATALOGUE,
628
+ Wx as TOOLKIT_ICON_MAP,
628
629
  ln as Table,
629
630
  nn as TableBody,
630
631
  fn as TableCaption,
@@ -637,22 +638,24 @@ export {
637
638
  cn as TabsContent,
638
639
  Sn as TabsList,
639
640
  hn as TabsTrigger,
641
+ Df as TagsInput,
642
+ If as TagsInputValue,
640
643
  xm as Telegram,
641
644
  sm as Tesla,
642
645
  Dn as Textarea,
643
646
  gm as Ticktick,
644
647
  Tm as Tiktok,
645
648
  Mn as Toggle,
646
- Df as ToolAuthorization,
647
- If as ToolAuthorizationArgs,
648
- Mf as ToolAuthorizationContent,
649
- Pf as ToolAuthorizationHeader,
650
- Bf as ToolAuthorizationMessage,
651
- Gf as ToolCallAccordion,
652
- Lf as ToolCallAccordionContent,
653
- vf as ToolCallAccordionItem,
654
- Of as ToolCallAccordionTrigger,
655
- Rf as ToolCard,
649
+ Pf as ToolAuthorization,
650
+ Bf as ToolAuthorizationArgs,
651
+ kf as ToolAuthorizationContent,
652
+ Gf as ToolAuthorizationHeader,
653
+ Lf as ToolAuthorizationMessage,
654
+ Of as ToolCallAccordion,
655
+ yf as ToolCallAccordionContent,
656
+ Rf as ToolCallAccordionItem,
657
+ wf as ToolCallAccordionTrigger,
658
+ Hf as ToolCard,
656
659
  Cf as ToolkitCard,
657
660
  kn as Tooltip,
658
661
  Gn as TooltipContent,
@@ -661,7 +664,7 @@ export {
661
664
  Sm as Trello,
662
665
  Am as Twilio,
663
666
  Dm as Twitch,
664
- Ef as UserNav,
667
+ _f as UserNav,
665
668
  Mm as Vercel,
666
669
  Bm as VercelLogotype,
667
670
  yn as ViewToolsControl,
@@ -684,14 +687,14 @@ export {
684
687
  w as avatarBadgeVariants,
685
688
  V as badgeVariants,
686
689
  j as buttonVariants,
687
- Yx as findPrebuiltProviderById,
688
- jx as findPrebuiltProviderByProviderId,
689
- Qx as findToolkitByName,
690
- zx as getToolIconByToolkitName,
691
- Nx as getToolkitIcon,
692
- Wx as getToolkitIconByName,
693
- $x as isKnownToolkit,
694
- od as isPrebuiltProvider,
690
+ $x as findPrebuiltProviderById,
691
+ od as findPrebuiltProviderByProviderId,
692
+ rd as findToolkitByName,
693
+ Kx as getToolIconByToolkitName,
694
+ Zx as getToolkitIcon,
695
+ qx as getToolkitIconByName,
696
+ ed as isKnownToolkit,
697
+ td as isPrebuiltProvider,
695
698
  gi as jsonHighlightVariants,
696
699
  en as stepIndicatorIconVariants,
697
700
  tn as stepIndicatorLabelVariants,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arcadeai/design-system",
3
3
  "private": false,
4
- "version": "3.39.3",
4
+ "version": "3.40.0",
5
5
  "type": "module",
6
6
  "main": "./dist/main.js",
7
7
  "types": "./dist/main.d.ts",
@@ -96,12 +96,12 @@
96
96
  "react": "19.2.5",
97
97
  "react-dom": "19.2.5",
98
98
  "react-hook-form": "7.72.1",
99
- "recharts": "3.8.0",
99
+ "recharts": "3.8.1",
100
100
  "storybook": "10.3.5",
101
101
  "tailwindcss": "4.2.2",
102
102
  "tw-animate-css": "1.4.0",
103
103
  "typescript": "5.9.3",
104
- "vite": "7.3.1",
104
+ "vite": "7.3.2",
105
105
  "vite-plugin-dts": "4.5.4",
106
106
  "vite-plugin-svgr": "4.5.0",
107
107
  "vite-tsconfig-paths": "6.1.1",