@copilotkit/react-ui 0.11.0 → 0.13.0-alpha.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.
- package/.turbo/turbo-build.log +216 -197
- package/CHANGELOG.md +22 -0
- package/dist/components/chat-components/chat-list.mjs +440 -12
- package/dist/components/chat-components/chat-list.mjs.map +1 -1
- package/dist/components/chat-components/chat-message-actions.mjs +168 -7
- package/dist/components/chat-components/chat-message-actions.mjs.map +1 -1
- package/dist/components/chat-components/chat-message.mjs +403 -10
- package/dist/components/chat-components/chat-message.mjs.map +1 -1
- package/dist/components/chat-components/chat-panel.mjs +300 -9
- package/dist/components/chat-components/chat-panel.mjs.map +1 -1
- package/dist/components/chat-components/chat-scroll-anchor.mjs +44 -4
- package/dist/components/chat-components/chat-scroll-anchor.mjs.map +1 -1
- package/dist/components/chat-components/clear-history.mjs +273 -74
- package/dist/components/chat-components/clear-history.mjs.map +1 -1
- package/dist/components/chat-components/copilot-chat.mjs +808 -21
- package/dist/components/chat-components/copilot-chat.mjs.map +1 -1
- package/dist/components/chat-components/default-empty-screen.mjs +175 -7
- package/dist/components/chat-components/default-empty-screen.mjs.map +1 -1
- package/dist/components/chat-components/external-link.d.ts +1 -1
- package/dist/components/chat-components/external-link.mjs +25 -3
- package/dist/components/chat-components/external-link.mjs.map +1 -1
- package/dist/components/chat-components/markdown.mjs +10 -3
- package/dist/components/chat-components/markdown.mjs.map +1 -1
- package/dist/components/chat-components/prompt-form.d.ts +1 -1
- package/dist/components/chat-components/prompt-form.mjs +227 -8
- package/dist/components/chat-components/prompt-form.mjs.map +1 -1
- package/dist/components/chat-components/theme-toggle.mjs +143 -31
- package/dist/components/chat-components/theme-toggle.mjs.map +1 -1
- package/dist/components/chat-components/toaster.mjs +7 -3
- package/dist/components/chat-components/toaster.mjs.map +1 -1
- package/dist/components/chat-components/ui/alert-dialog.mjs +199 -5
- package/dist/components/chat-components/ui/alert-dialog.mjs.map +1 -1
- package/dist/components/chat-components/ui/badge.d.ts +1 -1
- package/dist/components/chat-components/ui/badge.mjs +50 -10
- package/dist/components/chat-components/ui/badge.mjs.map +1 -1
- package/dist/components/chat-components/ui/button.mjs +85 -4
- package/dist/components/chat-components/ui/button.mjs.map +1 -1
- package/dist/components/chat-components/ui/codeblock.mjs +283 -7
- package/dist/components/chat-components/ui/codeblock.mjs.map +1 -1
- package/dist/components/chat-components/ui/dialog.mjs +128 -85
- package/dist/components/chat-components/ui/dialog.mjs.map +1 -1
- package/dist/components/chat-components/ui/dropdown-menu.mjs +103 -47
- package/dist/components/chat-components/ui/dropdown-menu.mjs.map +1 -1
- package/dist/components/chat-components/ui/icons.mjs +554 -4
- package/dist/components/chat-components/ui/icons.mjs.map +1 -1
- package/dist/components/chat-components/ui/input.mjs +59 -15
- package/dist/components/chat-components/ui/input.mjs.map +1 -1
- package/dist/components/chat-components/ui/label.mjs +52 -13
- package/dist/components/chat-components/ui/label.mjs.map +1 -1
- package/dist/components/chat-components/ui/select.mjs +156 -71
- package/dist/components/chat-components/ui/select.mjs.map +1 -1
- package/dist/components/chat-components/ui/separator.mjs +68 -4
- package/dist/components/chat-components/ui/separator.mjs.map +1 -1
- package/dist/components/chat-components/ui/sheet.mjs +127 -74
- package/dist/components/chat-components/ui/sheet.mjs.map +1 -1
- package/dist/components/chat-components/ui/switch.mjs +69 -18
- package/dist/components/chat-components/ui/switch.mjs.map +1 -1
- package/dist/components/chat-components/ui/textarea.mjs +58 -14
- package/dist/components/chat-components/ui/textarea.mjs.map +1 -1
- package/dist/components/chat-components/ui/tooltip.mjs +72 -4
- package/dist/components/chat-components/ui/tooltip.mjs.map +1 -1
- package/dist/components/index.mjs +924 -25
- package/dist/components/index.mjs.map +1 -1
- package/dist/components/sidebar/copilot-sidebar-ui-provider.d.ts +1 -1
- package/dist/components/sidebar/copilot-sidebar-ui-provider.mjs +919 -24
- package/dist/components/sidebar/copilot-sidebar-ui-provider.mjs.map +1 -1
- package/dist/components/sidebar/copilot-sidebar.mjs +841 -22
- package/dist/components/sidebar/copilot-sidebar.mjs.map +1 -1
- package/dist/components/sidebar/sidebar-context.mjs +10 -3
- package/dist/components/sidebar/sidebar-context.mjs.map +1 -1
- package/dist/context/index.d.ts +1 -0
- package/dist/context/index.mjs +0 -2
- package/dist/context/index.mjs.map +1 -1
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.mjs +0 -2
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/hooks/use-at-bottom.mjs +19 -3
- package/dist/hooks/use-at-bottom.mjs.map +1 -1
- package/dist/hooks/use-copy-to-clipboard.d.ts +1 -1
- package/dist/hooks/use-copy-to-clipboard.mjs +26 -3
- package/dist/hooks/use-copy-to-clipboard.mjs.map +1 -1
- package/dist/hooks/use-enter-submit.mjs +16 -3
- package/dist/hooks/use-enter-submit.mjs.map +1 -1
- package/dist/index.mjs +924 -28
- package/dist/index.mjs.map +1 -1
- package/dist/lib/utils.mjs +62 -3
- package/dist/lib/utils.mjs.map +1 -1
- package/dist/lib/utils.test.d.ts +1 -0
- package/dist/lib/utils.test.mjs +0 -1
- package/dist/lib/utils.test.mjs.map +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.mjs +0 -2
- package/dist/types/index.mjs.map +1 -1
- package/dist/types/types.mjs +0 -2
- package/dist/types/types.mjs.map +1 -1
- package/package.json +6 -6
- package/src/components/chat-components/chat-list.tsx +2 -6
- package/src/components/chat-components/chat-message-actions.tsx +2 -6
- package/src/components/chat-components/chat-message.tsx +2 -6
- package/src/components/chat-components/chat-panel.tsx +3 -17
- package/src/components/chat-components/clear-history.tsx +1 -2
- package/src/components/chat-components/copilot-chat.tsx +6 -5
- package/src/components/chat-components/default-empty-screen.tsx +3 -9
- package/src/components/chat-components/external-link.tsx +2 -14
- package/src/components/chat-components/markdown.tsx +1 -2
- package/src/components/chat-components/prompt-form.tsx +2 -8
- package/src/components/chat-components/ui/alert-dialog.tsx +9 -33
- package/src/components/chat-components/ui/badge.tsx +3 -6
- package/src/components/chat-components/ui/button.tsx +7 -15
- package/src/components/chat-components/ui/codeblock.tsx +1 -4
- package/src/components/chat-components/ui/dialog.tsx +8 -30
- package/src/components/chat-components/ui/dropdown-menu.tsx +7 -18
- package/src/components/chat-components/ui/icons.tsx +6 -29
- package/src/components/chat-components/ui/input.tsx +3 -4
- package/src/components/chat-components/ui/label.tsx +3 -8
- package/src/components/chat-components/ui/select.tsx +4 -4
- package/src/components/chat-components/ui/separator.tsx +13 -18
- package/src/components/chat-components/ui/sheet.tsx +7 -23
- package/src/components/chat-components/ui/switch.tsx +2 -2
- package/src/components/chat-components/ui/textarea.tsx +3 -4
- package/src/components/chat-components/ui/tooltip.tsx +1 -1
- package/src/components/sidebar/copilot-sidebar-ui-provider.tsx +2 -6
- package/src/components/sidebar/copilot-sidebar.tsx +1 -3
- package/src/hooks/use-at-bottom.tsx +1 -4
- package/src/hooks/use-copy-to-clipboard.tsx +1 -3
- package/src/hooks/use-enter-submit.tsx +2 -8
- package/src/lib/utils.ts +2 -5
- package/dist/chunk-2NO6SF5H.mjs +0 -53
- package/dist/chunk-2NO6SF5H.mjs.map +0 -1
- package/dist/chunk-6LAC5RA2.mjs +0 -28
- package/dist/chunk-6LAC5RA2.mjs.map +0 -1
- package/dist/chunk-6LRNF2VU.mjs +0 -12
- package/dist/chunk-6LRNF2VU.mjs.map +0 -1
- package/dist/chunk-6UJWRTL6.mjs +0 -45
- package/dist/chunk-6UJWRTL6.mjs.map +0 -1
- package/dist/chunk-7KPMJBGH.mjs +0 -48
- package/dist/chunk-7KPMJBGH.mjs.map +0 -1
- package/dist/chunk-7NSRDJ5C.mjs +0 -3
- package/dist/chunk-7NSRDJ5C.mjs.map +0 -1
- package/dist/chunk-APH6ZQHG.mjs +0 -69
- package/dist/chunk-APH6ZQHG.mjs.map +0 -1
- package/dist/chunk-BIPCPNHG.mjs +0 -18
- package/dist/chunk-BIPCPNHG.mjs.map +0 -1
- package/dist/chunk-BS6RR2DJ.mjs +0 -25
- package/dist/chunk-BS6RR2DJ.mjs.map +0 -1
- package/dist/chunk-DOMJCSI6.mjs +0 -26
- package/dist/chunk-DOMJCSI6.mjs.map +0 -1
- package/dist/chunk-H4VKQGVU.mjs +0 -3
- package/dist/chunk-H4VKQGVU.mjs.map +0 -1
- package/dist/chunk-HKSY5T7Y.mjs +0 -140
- package/dist/chunk-HKSY5T7Y.mjs.map +0 -1
- package/dist/chunk-I2AB5FK4.mjs +0 -123
- package/dist/chunk-I2AB5FK4.mjs.map +0 -1
- package/dist/chunk-IU3WTXLQ.mjs +0 -3
- package/dist/chunk-IU3WTXLQ.mjs.map +0 -1
- package/dist/chunk-KR7MH7XO.mjs +0 -481
- package/dist/chunk-KR7MH7XO.mjs.map +0 -1
- package/dist/chunk-KXJV37FS.mjs +0 -33
- package/dist/chunk-KXJV37FS.mjs.map +0 -1
- package/dist/chunk-LMCFSE4V.mjs +0 -29
- package/dist/chunk-LMCFSE4V.mjs.map +0 -1
- package/dist/chunk-MC6KTH4X.mjs +0 -12
- package/dist/chunk-MC6KTH4X.mjs.map +0 -1
- package/dist/chunk-MRXNTQOX.mjs +0 -55
- package/dist/chunk-MRXNTQOX.mjs.map +0 -1
- package/dist/chunk-N7KB3Z57.mjs +0 -23
- package/dist/chunk-N7KB3Z57.mjs.map +0 -1
- package/dist/chunk-RSONJDLO.mjs +0 -28
- package/dist/chunk-RSONJDLO.mjs.map +0 -1
- package/dist/chunk-TUPGAO7T.mjs +0 -72
- package/dist/chunk-TUPGAO7T.mjs.map +0 -1
- package/dist/chunk-TVTG3V4F.mjs +0 -40
- package/dist/chunk-TVTG3V4F.mjs.map +0 -1
- package/dist/chunk-U6NJWGTV.mjs +0 -3
- package/dist/chunk-U6NJWGTV.mjs.map +0 -1
- package/dist/chunk-UKKJ6H2K.mjs +0 -90
- package/dist/chunk-UKKJ6H2K.mjs.map +0 -1
- package/dist/chunk-V6QYUEJR.mjs +0 -47
- package/dist/chunk-V6QYUEJR.mjs.map +0 -1
- package/dist/chunk-VSNDSL6W.mjs +0 -74
- package/dist/chunk-VSNDSL6W.mjs.map +0 -1
- package/dist/chunk-ZB6JHNDT.mjs +0 -75
- package/dist/chunk-ZB6JHNDT.mjs.map +0 -1
package/dist/chunk-I2AB5FK4.mjs
DELETED
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
import { buttonVariants } from './chunk-V6QYUEJR.mjs';
|
|
2
|
-
import { cn } from './chunk-TVTG3V4F.mjs';
|
|
3
|
-
import { __objRest, __spreadProps, __spreadValues } from './chunk-MRXNTQOX.mjs';
|
|
4
|
-
import * as React from 'react';
|
|
5
|
-
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
6
|
-
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
7
|
-
|
|
8
|
-
var AlertDialog = AlertDialogPrimitive.Root;
|
|
9
|
-
var AlertDialogTrigger = AlertDialogPrimitive.Trigger;
|
|
10
|
-
var AlertDialogPortal = (_a) => {
|
|
11
|
-
var _b = _a, {
|
|
12
|
-
className,
|
|
13
|
-
children
|
|
14
|
-
} = _b, props = __objRest(_b, [
|
|
15
|
-
"className",
|
|
16
|
-
"children"
|
|
17
|
-
]);
|
|
18
|
-
return /* @__PURE__ */ jsx(AlertDialogPrimitive.Portal, __spreadProps(__spreadValues({
|
|
19
|
-
className: cn(className)
|
|
20
|
-
}, props), {
|
|
21
|
-
children: /* @__PURE__ */ jsx("div", {
|
|
22
|
-
className: "fixed inset-0 z-50 flex items-end justify-center sm:items-center",
|
|
23
|
-
children
|
|
24
|
-
})
|
|
25
|
-
}));
|
|
26
|
-
};
|
|
27
|
-
AlertDialogPortal.displayName = AlertDialogPrimitive.Portal.displayName;
|
|
28
|
-
var AlertDialogOverlay = React.forwardRef((_a, ref) => {
|
|
29
|
-
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
30
|
-
return /* @__PURE__ */ jsx(AlertDialogPrimitive.Overlay, __spreadProps(__spreadValues({
|
|
31
|
-
className: cn(
|
|
32
|
-
"fixed inset-0 z-50 bg-background/80 backdrop-blur-sm transition-opacity animate-in fade-in",
|
|
33
|
-
className
|
|
34
|
-
)
|
|
35
|
-
}, props), {
|
|
36
|
-
ref
|
|
37
|
-
}));
|
|
38
|
-
});
|
|
39
|
-
AlertDialogOverlay.displayName = AlertDialogPrimitive.Overlay.displayName;
|
|
40
|
-
var AlertDialogContent = React.forwardRef((_a, ref) => {
|
|
41
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
42
|
-
return /* @__PURE__ */ jsxs(AlertDialogPortal, {
|
|
43
|
-
children: [
|
|
44
|
-
/* @__PURE__ */ jsx(AlertDialogOverlay, {}),
|
|
45
|
-
/* @__PURE__ */ jsx(AlertDialogPrimitive.Content, __spreadValues({
|
|
46
|
-
ref,
|
|
47
|
-
className: cn(
|
|
48
|
-
"fixed z-50 grid w-full max-w-lg scale-100 gap-4 border bg-background p-6 opacity-100 shadow-lg animate-in fade-in-90 slide-in-from-bottom-10 sm:rounded-lg sm:zoom-in-90 sm:slide-in-from-bottom-0 md:w-full",
|
|
49
|
-
className
|
|
50
|
-
)
|
|
51
|
-
}, props))
|
|
52
|
-
]
|
|
53
|
-
});
|
|
54
|
-
});
|
|
55
|
-
AlertDialogContent.displayName = AlertDialogPrimitive.Content.displayName;
|
|
56
|
-
var AlertDialogHeader = (_a) => {
|
|
57
|
-
var _b = _a, {
|
|
58
|
-
className
|
|
59
|
-
} = _b, props = __objRest(_b, [
|
|
60
|
-
"className"
|
|
61
|
-
]);
|
|
62
|
-
return /* @__PURE__ */ jsx("div", __spreadValues({
|
|
63
|
-
className: cn(
|
|
64
|
-
"flex flex-col space-y-2 text-center sm:text-left",
|
|
65
|
-
className
|
|
66
|
-
)
|
|
67
|
-
}, props));
|
|
68
|
-
};
|
|
69
|
-
AlertDialogHeader.displayName = "AlertDialogHeader";
|
|
70
|
-
var AlertDialogFooter = (_a) => {
|
|
71
|
-
var _b = _a, {
|
|
72
|
-
className
|
|
73
|
-
} = _b, props = __objRest(_b, [
|
|
74
|
-
"className"
|
|
75
|
-
]);
|
|
76
|
-
return /* @__PURE__ */ jsx("div", __spreadValues({
|
|
77
|
-
className: cn(
|
|
78
|
-
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
|
|
79
|
-
className
|
|
80
|
-
)
|
|
81
|
-
}, props));
|
|
82
|
-
};
|
|
83
|
-
AlertDialogFooter.displayName = "AlertDialogFooter";
|
|
84
|
-
var AlertDialogTitle = React.forwardRef((_a, ref) => {
|
|
85
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
86
|
-
return /* @__PURE__ */ jsx(AlertDialogPrimitive.Title, __spreadValues({
|
|
87
|
-
ref,
|
|
88
|
-
className: cn("text-lg font-semibold", className)
|
|
89
|
-
}, props));
|
|
90
|
-
});
|
|
91
|
-
AlertDialogTitle.displayName = AlertDialogPrimitive.Title.displayName;
|
|
92
|
-
var AlertDialogDescription = React.forwardRef((_a, ref) => {
|
|
93
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
94
|
-
return /* @__PURE__ */ jsx(AlertDialogPrimitive.Description, __spreadValues({
|
|
95
|
-
ref,
|
|
96
|
-
className: cn("text-sm text-muted-foreground", className)
|
|
97
|
-
}, props));
|
|
98
|
-
});
|
|
99
|
-
AlertDialogDescription.displayName = AlertDialogPrimitive.Description.displayName;
|
|
100
|
-
var AlertDialogAction = React.forwardRef((_a, ref) => {
|
|
101
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
102
|
-
return /* @__PURE__ */ jsx(AlertDialogPrimitive.Action, __spreadValues({
|
|
103
|
-
ref,
|
|
104
|
-
className: cn(buttonVariants(), className)
|
|
105
|
-
}, props));
|
|
106
|
-
});
|
|
107
|
-
AlertDialogAction.displayName = AlertDialogPrimitive.Action.displayName;
|
|
108
|
-
var AlertDialogCancel = React.forwardRef((_a, ref) => {
|
|
109
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
110
|
-
return /* @__PURE__ */ jsx(AlertDialogPrimitive.Cancel, __spreadValues({
|
|
111
|
-
ref,
|
|
112
|
-
className: cn(
|
|
113
|
-
buttonVariants({ variant: "outline" }),
|
|
114
|
-
"mt-2 sm:mt-0",
|
|
115
|
-
className
|
|
116
|
-
)
|
|
117
|
-
}, props));
|
|
118
|
-
});
|
|
119
|
-
AlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName;
|
|
120
|
-
|
|
121
|
-
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger };
|
|
122
|
-
//# sourceMappingURL=out.js.map
|
|
123
|
-
//# sourceMappingURL=chunk-I2AB5FK4.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/components/chat-components/ui/alert-dialog.tsx"],"names":[],"mappings":"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","sourcesContent":["\"use client\";\n\nimport * as React from \"react\";\nimport * as AlertDialogPrimitive from \"@radix-ui/react-alert-dialog\";\n\nimport { cn } from \"../../../lib/utils\";\nimport { buttonVariants } from \"./button\";\n\nconst AlertDialog = AlertDialogPrimitive.Root;\n\nconst AlertDialogTrigger = AlertDialogPrimitive.Trigger;\n\nconst AlertDialogPortal = ({\n className,\n children,\n ...props\n}: AlertDialogPrimitive.AlertDialogPortalProps) => (\n <AlertDialogPrimitive.Portal className={cn(className)} {...props}>\n <div className=\"fixed inset-0 z-50 flex items-end justify-center sm:items-center\">\n {children}\n </div>\n </AlertDialogPrimitive.Portal>\n);\nAlertDialogPortal.displayName = AlertDialogPrimitive.Portal.displayName;\n\nconst AlertDialogOverlay = React.forwardRef<\n React.ElementRef<typeof AlertDialogPrimitive.Overlay>,\n React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Overlay>\n>(({ className, children, ...props }, ref) => (\n <AlertDialogPrimitive.Overlay\n className={cn(\n \"fixed inset-0 z-50 bg-background/80 backdrop-blur-sm transition-opacity animate-in fade-in\",\n className\n )}\n {...props}\n ref={ref}\n />\n));\nAlertDialogOverlay.displayName = AlertDialogPrimitive.Overlay.displayName;\n\nconst AlertDialogContent = React.forwardRef<\n React.ElementRef<typeof AlertDialogPrimitive.Content>,\n React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Content>\n>(({ className, ...props }, ref) => (\n <AlertDialogPortal>\n <AlertDialogOverlay />\n <AlertDialogPrimitive.Content\n ref={ref}\n className={cn(\n \"fixed z-50 grid w-full max-w-lg scale-100 gap-4 border bg-background p-6 opacity-100 shadow-lg animate-in fade-in-90 slide-in-from-bottom-10 sm:rounded-lg sm:zoom-in-90 sm:slide-in-from-bottom-0 md:w-full\",\n className\n )}\n {...props}\n />\n </AlertDialogPortal>\n));\nAlertDialogContent.displayName = AlertDialogPrimitive.Content.displayName;\n\nconst AlertDialogHeader = ({\n className,\n ...props\n}: React.HTMLAttributes<HTMLDivElement>) => (\n <div\n className={cn(\n \"flex flex-col space-y-2 text-center sm:text-left\",\n className\n )}\n {...props}\n />\n);\nAlertDialogHeader.displayName = \"AlertDialogHeader\";\n\nconst AlertDialogFooter = ({\n className,\n ...props\n}: React.HTMLAttributes<HTMLDivElement>) => (\n <div\n className={cn(\n \"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2\",\n className\n )}\n {...props}\n />\n);\nAlertDialogFooter.displayName = \"AlertDialogFooter\";\n\nconst AlertDialogTitle = React.forwardRef<\n React.ElementRef<typeof AlertDialogPrimitive.Title>,\n React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Title>\n>(({ className, ...props }, ref) => (\n <AlertDialogPrimitive.Title\n ref={ref}\n className={cn(\"text-lg font-semibold\", className)}\n {...props}\n />\n));\nAlertDialogTitle.displayName = AlertDialogPrimitive.Title.displayName;\n\nconst AlertDialogDescription = React.forwardRef<\n React.ElementRef<typeof AlertDialogPrimitive.Description>,\n React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Description>\n>(({ className, ...props }, ref) => (\n <AlertDialogPrimitive.Description\n ref={ref}\n className={cn(\"text-sm text-muted-foreground\", className)}\n {...props}\n />\n));\nAlertDialogDescription.displayName =\n AlertDialogPrimitive.Description.displayName;\n\nconst AlertDialogAction = React.forwardRef<\n React.ElementRef<typeof AlertDialogPrimitive.Action>,\n React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Action>\n>(({ className, ...props }, ref) => (\n <AlertDialogPrimitive.Action\n ref={ref}\n className={cn(buttonVariants(), className)}\n {...props}\n />\n));\nAlertDialogAction.displayName = AlertDialogPrimitive.Action.displayName;\n\nconst AlertDialogCancel = React.forwardRef<\n React.ElementRef<typeof AlertDialogPrimitive.Cancel>,\n React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Cancel>\n>(({ className, ...props }, ref) => (\n <AlertDialogPrimitive.Cancel\n ref={ref}\n className={cn(\n buttonVariants({ variant: \"outline\" }),\n \"mt-2 sm:mt-0\",\n className\n )}\n {...props}\n />\n));\nAlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName;\n\nexport {\n AlertDialog,\n AlertDialogTrigger,\n AlertDialogContent,\n AlertDialogHeader,\n AlertDialogFooter,\n AlertDialogTitle,\n AlertDialogDescription,\n AlertDialogAction,\n AlertDialogCancel,\n};\n"]}
|
package/dist/chunk-IU3WTXLQ.mjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":""}
|
package/dist/chunk-KR7MH7XO.mjs
DELETED
|
@@ -1,481 +0,0 @@
|
|
|
1
|
-
import { cn } from './chunk-TVTG3V4F.mjs';
|
|
2
|
-
import { __objRest, __spreadProps, __spreadValues } from './chunk-MRXNTQOX.mjs';
|
|
3
|
-
import * as React from 'react';
|
|
4
|
-
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
5
|
-
|
|
6
|
-
function IconNextChat(_a) {
|
|
7
|
-
var _b = _a, {
|
|
8
|
-
className,
|
|
9
|
-
inverted
|
|
10
|
-
} = _b, props = __objRest(_b, [
|
|
11
|
-
"className",
|
|
12
|
-
"inverted"
|
|
13
|
-
]);
|
|
14
|
-
const id = React.useId();
|
|
15
|
-
return /* @__PURE__ */ jsxs("svg", __spreadProps(__spreadValues({
|
|
16
|
-
viewBox: "0 0 17 17",
|
|
17
|
-
fill: "none",
|
|
18
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
19
|
-
className: cn("h-4 w-4", className)
|
|
20
|
-
}, props), {
|
|
21
|
-
children: [
|
|
22
|
-
/* @__PURE__ */ jsxs("defs", {
|
|
23
|
-
children: [
|
|
24
|
-
/* @__PURE__ */ jsxs("linearGradient", {
|
|
25
|
-
id: `gradient-${id}-1`,
|
|
26
|
-
x1: "10.6889",
|
|
27
|
-
y1: "10.3556",
|
|
28
|
-
x2: "13.8445",
|
|
29
|
-
y2: "14.2667",
|
|
30
|
-
gradientUnits: "userSpaceOnUse",
|
|
31
|
-
children: [
|
|
32
|
-
/* @__PURE__ */ jsx("stop", {
|
|
33
|
-
stopColor: inverted ? "white" : "black"
|
|
34
|
-
}),
|
|
35
|
-
/* @__PURE__ */ jsx("stop", {
|
|
36
|
-
offset: 1,
|
|
37
|
-
stopColor: inverted ? "white" : "black",
|
|
38
|
-
stopOpacity: 0
|
|
39
|
-
})
|
|
40
|
-
]
|
|
41
|
-
}),
|
|
42
|
-
/* @__PURE__ */ jsxs("linearGradient", {
|
|
43
|
-
id: `gradient-${id}-2`,
|
|
44
|
-
x1: "11.7555",
|
|
45
|
-
y1: "4.8",
|
|
46
|
-
x2: "11.7376",
|
|
47
|
-
y2: "9.50002",
|
|
48
|
-
gradientUnits: "userSpaceOnUse",
|
|
49
|
-
children: [
|
|
50
|
-
/* @__PURE__ */ jsx("stop", {
|
|
51
|
-
stopColor: inverted ? "white" : "black"
|
|
52
|
-
}),
|
|
53
|
-
/* @__PURE__ */ jsx("stop", {
|
|
54
|
-
offset: 1,
|
|
55
|
-
stopColor: inverted ? "white" : "black",
|
|
56
|
-
stopOpacity: 0
|
|
57
|
-
})
|
|
58
|
-
]
|
|
59
|
-
})
|
|
60
|
-
]
|
|
61
|
-
}),
|
|
62
|
-
/* @__PURE__ */ jsx("path", {
|
|
63
|
-
d: "M1 16L2.58314 11.2506C1.83084 9.74642 1.63835 8.02363 2.04013 6.39052C2.4419 4.75741 3.41171 3.32057 4.776 2.33712C6.1403 1.35367 7.81003 0.887808 9.4864 1.02289C11.1628 1.15798 12.7364 1.8852 13.9256 3.07442C15.1148 4.26363 15.842 5.83723 15.9771 7.5136C16.1122 9.18997 15.6463 10.8597 14.6629 12.224C13.6794 13.5883 12.2426 14.5581 10.6095 14.9599C8.97637 15.3616 7.25358 15.1692 5.74942 14.4169L1 16Z",
|
|
64
|
-
fill: inverted ? "black" : "white",
|
|
65
|
-
stroke: inverted ? "black" : "white",
|
|
66
|
-
strokeWidth: 2,
|
|
67
|
-
strokeLinecap: "round",
|
|
68
|
-
strokeLinejoin: "round"
|
|
69
|
-
}),
|
|
70
|
-
/* @__PURE__ */ jsx("mask", {
|
|
71
|
-
id: "mask0_91_2047",
|
|
72
|
-
style: { maskType: "alpha" },
|
|
73
|
-
maskUnits: "userSpaceOnUse",
|
|
74
|
-
x: 1,
|
|
75
|
-
y: 0,
|
|
76
|
-
width: 16,
|
|
77
|
-
height: 16,
|
|
78
|
-
children: /* @__PURE__ */ jsx("circle", {
|
|
79
|
-
cx: 9,
|
|
80
|
-
cy: 8,
|
|
81
|
-
r: 8,
|
|
82
|
-
fill: inverted ? "black" : "white"
|
|
83
|
-
})
|
|
84
|
-
}),
|
|
85
|
-
/* @__PURE__ */ jsxs("g", {
|
|
86
|
-
mask: "url(#mask0_91_2047)",
|
|
87
|
-
children: [
|
|
88
|
-
/* @__PURE__ */ jsx("circle", {
|
|
89
|
-
cx: 9,
|
|
90
|
-
cy: 8,
|
|
91
|
-
r: 8,
|
|
92
|
-
fill: inverted ? "black" : "white"
|
|
93
|
-
}),
|
|
94
|
-
/* @__PURE__ */ jsx("path", {
|
|
95
|
-
d: "M14.2896 14.0018L7.146 4.8H5.80005V11.1973H6.87681V6.16743L13.4444 14.6529C13.7407 14.4545 14.0231 14.2369 14.2896 14.0018Z",
|
|
96
|
-
fill: `url(#gradient-${id}-1)`
|
|
97
|
-
}),
|
|
98
|
-
/* @__PURE__ */ jsx("rect", {
|
|
99
|
-
x: "11.2222",
|
|
100
|
-
y: "4.8",
|
|
101
|
-
width: "1.06667",
|
|
102
|
-
height: "6.4",
|
|
103
|
-
fill: `url(#gradient-${id}-2)`
|
|
104
|
-
})
|
|
105
|
-
]
|
|
106
|
-
})
|
|
107
|
-
]
|
|
108
|
-
}));
|
|
109
|
-
}
|
|
110
|
-
function IconOpenAI(_a) {
|
|
111
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
112
|
-
return /* @__PURE__ */ jsxs("svg", __spreadProps(__spreadValues({
|
|
113
|
-
fill: "currentColor",
|
|
114
|
-
viewBox: "0 0 24 24",
|
|
115
|
-
role: "img",
|
|
116
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
117
|
-
className: cn("h-4 w-4", className)
|
|
118
|
-
}, props), {
|
|
119
|
-
children: [
|
|
120
|
-
/* @__PURE__ */ jsx("title", {
|
|
121
|
-
children: "OpenAI icon"
|
|
122
|
-
}),
|
|
123
|
-
/* @__PURE__ */ jsx("path", {
|
|
124
|
-
d: "M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.872zm16.5963 3.8558L13.1038 8.364 15.1192 7.2a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.407-.667zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z"
|
|
125
|
-
})
|
|
126
|
-
]
|
|
127
|
-
}));
|
|
128
|
-
}
|
|
129
|
-
function IconVercel(_a) {
|
|
130
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
131
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
132
|
-
"aria-label": "Vercel logomark",
|
|
133
|
-
role: "img",
|
|
134
|
-
viewBox: "0 0 74 64",
|
|
135
|
-
className: cn("h-4 w-4", className)
|
|
136
|
-
}, props), {
|
|
137
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
138
|
-
d: "M37.5896 0.25L74.5396 64.25H0.639648L37.5896 0.25Z",
|
|
139
|
-
fill: "currentColor"
|
|
140
|
-
})
|
|
141
|
-
}));
|
|
142
|
-
}
|
|
143
|
-
function IconGitHub(_a) {
|
|
144
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
145
|
-
return /* @__PURE__ */ jsxs("svg", __spreadProps(__spreadValues({
|
|
146
|
-
role: "img",
|
|
147
|
-
viewBox: "0 0 24 24",
|
|
148
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
149
|
-
fill: "currentColor",
|
|
150
|
-
className: cn("h-4 w-4", className)
|
|
151
|
-
}, props), {
|
|
152
|
-
children: [
|
|
153
|
-
/* @__PURE__ */ jsx("title", {
|
|
154
|
-
children: "GitHub"
|
|
155
|
-
}),
|
|
156
|
-
/* @__PURE__ */ jsx("path", {
|
|
157
|
-
d: "M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"
|
|
158
|
-
})
|
|
159
|
-
]
|
|
160
|
-
}));
|
|
161
|
-
}
|
|
162
|
-
function IconSeparator(_a) {
|
|
163
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
164
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
165
|
-
fill: "none",
|
|
166
|
-
shapeRendering: "geometricPrecision",
|
|
167
|
-
stroke: "currentColor",
|
|
168
|
-
strokeLinecap: "round",
|
|
169
|
-
strokeLinejoin: "round",
|
|
170
|
-
strokeWidth: "1",
|
|
171
|
-
viewBox: "0 0 24 24",
|
|
172
|
-
"aria-hidden": "true",
|
|
173
|
-
className: cn("h-4 w-4", className)
|
|
174
|
-
}, props), {
|
|
175
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
176
|
-
d: "M16.88 3.549L7.12 20.451"
|
|
177
|
-
})
|
|
178
|
-
}));
|
|
179
|
-
}
|
|
180
|
-
function IconArrowDown(_a) {
|
|
181
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
182
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
183
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
184
|
-
viewBox: "0 0 256 256",
|
|
185
|
-
fill: "currentColor",
|
|
186
|
-
className: cn("h-4 w-4", className)
|
|
187
|
-
}, props), {
|
|
188
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
189
|
-
d: "m205.66 149.66-72 72a8 8 0 0 1-11.32 0l-72-72a8 8 0 0 1 11.32-11.32L120 196.69V40a8 8 0 0 1 16 0v156.69l58.34-58.35a8 8 0 0 1 11.32 11.32Z"
|
|
190
|
-
})
|
|
191
|
-
}));
|
|
192
|
-
}
|
|
193
|
-
function IconArrowRight(_a) {
|
|
194
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
195
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
196
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
197
|
-
viewBox: "0 0 256 256",
|
|
198
|
-
fill: "currentColor",
|
|
199
|
-
className: cn("h-4 w-4", className)
|
|
200
|
-
}, props), {
|
|
201
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
202
|
-
d: "m221.66 133.66-72 72a8 8 0 0 1-11.32-11.32L196.69 136H40a8 8 0 0 1 0-16h156.69l-58.35-58.34a8 8 0 0 1 11.32-11.32l72 72a8 8 0 0 1 0 11.32Z"
|
|
203
|
-
})
|
|
204
|
-
}));
|
|
205
|
-
}
|
|
206
|
-
function IconUser(_a) {
|
|
207
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
208
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
209
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
210
|
-
viewBox: "0 0 256 256",
|
|
211
|
-
fill: "currentColor",
|
|
212
|
-
className: cn("h-4 w-4", className)
|
|
213
|
-
}, props), {
|
|
214
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
215
|
-
d: "M230.92 212c-15.23-26.33-38.7-45.21-66.09-54.16a72 72 0 1 0-73.66 0c-27.39 8.94-50.86 27.82-66.09 54.16a8 8 0 1 0 13.85 8c18.84-32.56 52.14-52 89.07-52s70.23 19.44 89.07 52a8 8 0 1 0 13.85-8ZM72 96a56 56 0 1 1 56 56 56.06 56.06 0 0 1-56-56Z"
|
|
216
|
-
})
|
|
217
|
-
}));
|
|
218
|
-
}
|
|
219
|
-
function IconPlus(_a) {
|
|
220
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
221
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
222
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
223
|
-
viewBox: "0 0 256 256",
|
|
224
|
-
fill: "currentColor",
|
|
225
|
-
className: cn("h-4 w-4", className)
|
|
226
|
-
}, props), {
|
|
227
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
228
|
-
d: "M224 128a8 8 0 0 1-8 8h-80v80a8 8 0 0 1-16 0v-80H40a8 8 0 0 1 0-16h80V40a8 8 0 0 1 16 0v80h80a8 8 0 0 1 8 8Z"
|
|
229
|
-
})
|
|
230
|
-
}));
|
|
231
|
-
}
|
|
232
|
-
function IconArrowElbow(_a) {
|
|
233
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
234
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
235
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
236
|
-
viewBox: "0 0 256 256",
|
|
237
|
-
fill: "currentColor",
|
|
238
|
-
className: cn("h-4 w-4", className)
|
|
239
|
-
}, props), {
|
|
240
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
241
|
-
d: "M200 32v144a8 8 0 0 1-8 8H67.31l34.35 34.34a8 8 0 0 1-11.32 11.32l-48-48a8 8 0 0 1 0-11.32l48-48a8 8 0 0 1 11.32 11.32L67.31 168H184V32a8 8 0 0 1 16 0Z"
|
|
242
|
-
})
|
|
243
|
-
}));
|
|
244
|
-
}
|
|
245
|
-
function IconSpinner(_a) {
|
|
246
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
247
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
248
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
249
|
-
viewBox: "0 0 256 256",
|
|
250
|
-
fill: "currentColor",
|
|
251
|
-
className: cn("h-4 w-4 animate-spin", className)
|
|
252
|
-
}, props), {
|
|
253
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
254
|
-
d: "M232 128a104 104 0 0 1-208 0c0-41 23.81-78.36 60.66-95.27a8 8 0 0 1 6.68 14.54C60.15 61.59 40 93.27 40 128a88 88 0 0 0 176 0c0-34.73-20.15-66.41-51.34-80.73a8 8 0 0 1 6.68-14.54C208.19 49.64 232 87 232 128Z"
|
|
255
|
-
})
|
|
256
|
-
}));
|
|
257
|
-
}
|
|
258
|
-
function IconMessage(_a) {
|
|
259
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
260
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
261
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
262
|
-
viewBox: "0 0 256 256",
|
|
263
|
-
fill: "currentColor",
|
|
264
|
-
className: cn("h-4 w-4", className)
|
|
265
|
-
}, props), {
|
|
266
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
267
|
-
d: "M216 48H40a16 16 0 0 0-16 16v160a15.84 15.84 0 0 0 9.25 14.5A16.05 16.05 0 0 0 40 240a15.89 15.89 0 0 0 10.25-3.78.69.69 0 0 0 .13-.11L82.5 208H216a16 16 0 0 0 16-16V64a16 16 0 0 0-16-16ZM40 224Zm176-32H82.5a16 16 0 0 0-10.3 3.75l-.12.11L40 224V64h176Z"
|
|
268
|
-
})
|
|
269
|
-
}));
|
|
270
|
-
}
|
|
271
|
-
function IconTrash(_a) {
|
|
272
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
273
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
274
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
275
|
-
viewBox: "0 0 256 256",
|
|
276
|
-
fill: "currentColor",
|
|
277
|
-
className: cn("h-4 w-4", className)
|
|
278
|
-
}, props), {
|
|
279
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
280
|
-
d: "M216 48h-40v-8a24 24 0 0 0-24-24h-48a24 24 0 0 0-24 24v8H40a8 8 0 0 0 0 16h8v144a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16V64h8a8 8 0 0 0 0-16ZM96 40a8 8 0 0 1 8-8h48a8 8 0 0 1 8 8v8H96Zm96 168H64V64h128Zm-80-104v64a8 8 0 0 1-16 0v-64a8 8 0 0 1 16 0Zm48 0v64a8 8 0 0 1-16 0v-64a8 8 0 0 1 16 0Z"
|
|
281
|
-
})
|
|
282
|
-
}));
|
|
283
|
-
}
|
|
284
|
-
function IconRefresh(_a) {
|
|
285
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
286
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
287
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
288
|
-
viewBox: "0 0 256 256",
|
|
289
|
-
fill: "currentColor",
|
|
290
|
-
className: cn("h-4 w-4", className)
|
|
291
|
-
}, props), {
|
|
292
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
293
|
-
d: "M197.67 186.37a8 8 0 0 1 0 11.29C196.58 198.73 170.82 224 128 224c-37.39 0-64.53-22.4-80-39.85V208a8 8 0 0 1-16 0v-48a8 8 0 0 1 8-8h48a8 8 0 0 1 0 16H55.44C67.76 183.35 93 208 128 208c36 0 58.14-21.46 58.36-21.68a8 8 0 0 1 11.31.05ZM216 40a8 8 0 0 0-8 8v23.85C192.53 54.4 165.39 32 128 32c-42.82 0-68.58 25.27-69.66 26.34a8 8 0 0 0 11.3 11.34C69.86 69.46 92 48 128 48c35 0 60.24 24.65 72.56 40H168a8 8 0 0 0 0 16h48a8 8 0 0 0 8-8V48a8 8 0 0 0-8-8Z"
|
|
294
|
-
})
|
|
295
|
-
}));
|
|
296
|
-
}
|
|
297
|
-
function IconStop(_a) {
|
|
298
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
299
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
300
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
301
|
-
viewBox: "0 0 256 256",
|
|
302
|
-
fill: "currentColor",
|
|
303
|
-
className: cn("h-4 w-4", className)
|
|
304
|
-
}, props), {
|
|
305
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
306
|
-
d: "M128 24a104 104 0 1 0 104 104A104.11 104.11 0 0 0 128 24Zm0 192a88 88 0 1 1 88-88 88.1 88.1 0 0 1-88 88Zm24-120h-48a8 8 0 0 0-8 8v48a8 8 0 0 0 8 8h48a8 8 0 0 0 8-8v-48a8 8 0 0 0-8-8Zm-8 48h-32v-32h32Z"
|
|
307
|
-
})
|
|
308
|
-
}));
|
|
309
|
-
}
|
|
310
|
-
function IconSidebar(_a) {
|
|
311
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
312
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
313
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
314
|
-
viewBox: "0 0 256 256",
|
|
315
|
-
fill: "currentColor",
|
|
316
|
-
className: cn("h-4 w-4", className)
|
|
317
|
-
}, props), {
|
|
318
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
319
|
-
d: "M216 40H40a16 16 0 0 0-16 16v144a16 16 0 0 0 16 16h176a16 16 0 0 0 16-16V56a16 16 0 0 0-16-16ZM40 56h40v144H40Zm176 144H96V56h120v144Z"
|
|
320
|
-
})
|
|
321
|
-
}));
|
|
322
|
-
}
|
|
323
|
-
function IconMoon(_a) {
|
|
324
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
325
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
326
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
327
|
-
viewBox: "0 0 256 256",
|
|
328
|
-
fill: "currentColor",
|
|
329
|
-
className: cn("h-4 w-4", className)
|
|
330
|
-
}, props), {
|
|
331
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
332
|
-
d: "M233.54 142.23a8 8 0 0 0-8-2 88.08 88.08 0 0 1-109.8-109.8 8 8 0 0 0-10-10 104.84 104.84 0 0 0-52.91 37A104 104 0 0 0 136 224a103.09 103.09 0 0 0 62.52-20.88 104.84 104.84 0 0 0 37-52.91 8 8 0 0 0-1.98-7.98Zm-44.64 48.11A88 88 0 0 1 65.66 67.11a89 89 0 0 1 31.4-26A106 106 0 0 0 96 56a104.11 104.11 0 0 0 104 104 106 106 0 0 0 14.92-1.06 89 89 0 0 1-26.02 31.4Z"
|
|
333
|
-
})
|
|
334
|
-
}));
|
|
335
|
-
}
|
|
336
|
-
function IconSun(_a) {
|
|
337
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
338
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
339
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
340
|
-
viewBox: "0 0 256 256",
|
|
341
|
-
fill: "currentColor",
|
|
342
|
-
className: cn("h-4 w-4", className)
|
|
343
|
-
}, props), {
|
|
344
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
345
|
-
d: "M120 40V16a8 8 0 0 1 16 0v24a8 8 0 0 1-16 0Zm72 88a64 64 0 1 1-64-64 64.07 64.07 0 0 1 64 64Zm-16 0a48 48 0 1 0-48 48 48.05 48.05 0 0 0 48-48ZM58.34 69.66a8 8 0 0 0 11.32-11.32l-16-16a8 8 0 0 0-11.32 11.32Zm0 116.68-16 16a8 8 0 0 0 11.32 11.32l16-16a8 8 0 0 0-11.32-11.32ZM192 72a8 8 0 0 0 5.66-2.34l16-16a8 8 0 0 0-11.32-11.32l-16 16A8 8 0 0 0 192 72Zm5.66 114.34a8 8 0 0 0-11.32 11.32l16 16a8 8 0 0 0 11.32-11.32ZM48 128a8 8 0 0 0-8-8H16a8 8 0 0 0 0 16h24a8 8 0 0 0 8-8Zm80 80a8 8 0 0 0-8 8v24a8 8 0 0 0 16 0v-24a8 8 0 0 0-8-8Zm112-88h-24a8 8 0 0 0 0 16h24a8 8 0 0 0 0-16Z"
|
|
346
|
-
})
|
|
347
|
-
}));
|
|
348
|
-
}
|
|
349
|
-
function IconCopy(_a) {
|
|
350
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
351
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
352
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
353
|
-
viewBox: "0 0 256 256",
|
|
354
|
-
fill: "currentColor",
|
|
355
|
-
className: cn("h-4 w-4", className)
|
|
356
|
-
}, props), {
|
|
357
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
358
|
-
d: "M216 32H88a8 8 0 0 0-8 8v40H40a8 8 0 0 0-8 8v128a8 8 0 0 0 8 8h128a8 8 0 0 0 8-8v-40h40a8 8 0 0 0 8-8V40a8 8 0 0 0-8-8Zm-56 176H48V96h112Zm48-48h-32V88a8 8 0 0 0-8-8H96V48h112Z"
|
|
359
|
-
})
|
|
360
|
-
}));
|
|
361
|
-
}
|
|
362
|
-
function IconCheck(_a) {
|
|
363
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
364
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
365
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
366
|
-
viewBox: "0 0 256 256",
|
|
367
|
-
fill: "currentColor",
|
|
368
|
-
className: cn("h-4 w-4", className)
|
|
369
|
-
}, props), {
|
|
370
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
371
|
-
d: "m229.66 77.66-128 128a8 8 0 0 1-11.32 0l-56-56a8 8 0 0 1 11.32-11.32L96 188.69 218.34 66.34a8 8 0 0 1 11.32 11.32Z"
|
|
372
|
-
})
|
|
373
|
-
}));
|
|
374
|
-
}
|
|
375
|
-
function IconDownload(_a) {
|
|
376
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
377
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
378
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
379
|
-
viewBox: "0 0 256 256",
|
|
380
|
-
fill: "currentColor",
|
|
381
|
-
className: cn("h-4 w-4", className)
|
|
382
|
-
}, props), {
|
|
383
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
384
|
-
d: "M224 152v56a16 16 0 0 1-16 16H48a16 16 0 0 1-16-16v-56a8 8 0 0 1 16 0v56h160v-56a8 8 0 0 1 16 0Zm-101.66 5.66a8 8 0 0 0 11.32 0l40-40a8 8 0 0 0-11.32-11.32L136 132.69V40a8 8 0 0 0-16 0v92.69l-26.34-26.35a8 8 0 0 0-11.32 11.32Z"
|
|
385
|
-
})
|
|
386
|
-
}));
|
|
387
|
-
}
|
|
388
|
-
function IconClose(_a) {
|
|
389
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
390
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
391
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
392
|
-
viewBox: "0 0 256 256",
|
|
393
|
-
fill: "currentColor",
|
|
394
|
-
className: cn("h-4 w-4", className)
|
|
395
|
-
}, props), {
|
|
396
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
397
|
-
d: "M205.66 194.34a8 8 0 0 1-11.32 11.32L128 139.31l-66.34 66.35a8 8 0 0 1-11.32-11.32L116.69 128 50.34 61.66a8 8 0 0 1 11.32-11.32L128 116.69l66.34-66.35a8 8 0 0 1 11.32 11.32L139.31 128Z"
|
|
398
|
-
})
|
|
399
|
-
}));
|
|
400
|
-
}
|
|
401
|
-
function IconEdit(_a) {
|
|
402
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
403
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
404
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
405
|
-
fill: "none",
|
|
406
|
-
viewBox: "0 0 24 24",
|
|
407
|
-
strokeWidth: 1.5,
|
|
408
|
-
stroke: "currentColor",
|
|
409
|
-
className: cn("h-4 w-4", className)
|
|
410
|
-
}, props), {
|
|
411
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
412
|
-
strokeLinecap: "round",
|
|
413
|
-
strokeLinejoin: "round",
|
|
414
|
-
d: "M16.862 4.487l1.687-1.688a1.875 1.875 0 112.652 2.652L10.582 16.07a4.5 4.5 0 01-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 011.13-1.897l8.932-8.931zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0115.75 21H5.25A2.25 2.25 0 013 18.75V8.25A2.25 2.25 0 015.25 6H10"
|
|
415
|
-
})
|
|
416
|
-
}));
|
|
417
|
-
}
|
|
418
|
-
function IconShare(_a) {
|
|
419
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
420
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
421
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
422
|
-
fill: "currentColor",
|
|
423
|
-
className: cn("h-4 w-4", className),
|
|
424
|
-
viewBox: "0 0 256 256"
|
|
425
|
-
}, props), {
|
|
426
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
427
|
-
d: "m237.66 106.35-80-80A8 8 0 0 0 144 32v40.35c-25.94 2.22-54.59 14.92-78.16 34.91-28.38 24.08-46.05 55.11-49.76 87.37a12 12 0 0 0 20.68 9.58c11-11.71 50.14-48.74 107.24-52V192a8 8 0 0 0 13.66 5.65l80-80a8 8 0 0 0 0-11.3ZM160 172.69V144a8 8 0 0 0-8-8c-28.08 0-55.43 7.33-81.29 21.8a196.17 196.17 0 0 0-36.57 26.52c5.8-23.84 20.42-46.51 42.05-64.86C99.41 99.77 127.75 88 152 88a8 8 0 0 0 8-8V51.32L220.69 112Z"
|
|
428
|
-
})
|
|
429
|
-
}));
|
|
430
|
-
}
|
|
431
|
-
function IconUsers(_a) {
|
|
432
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
433
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
434
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
435
|
-
fill: "currentColor",
|
|
436
|
-
className: cn("h-4 w-4", className),
|
|
437
|
-
viewBox: "0 0 256 256"
|
|
438
|
-
}, props), {
|
|
439
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
440
|
-
d: "M117.25 157.92a60 60 0 1 0-66.5 0 95.83 95.83 0 0 0-47.22 37.71 8 8 0 1 0 13.4 8.74 80 80 0 0 1 134.14 0 8 8 0 0 0 13.4-8.74 95.83 95.83 0 0 0-47.22-37.71ZM40 108a44 44 0 1 1 44 44 44.05 44.05 0 0 1-44-44Zm210.14 98.7a8 8 0 0 1-11.07-2.33A79.83 79.83 0 0 0 172 168a8 8 0 0 1 0-16 44 44 0 1 0-16.34-84.87 8 8 0 1 1-5.94-14.85 60 60 0 0 1 55.53 105.64 95.83 95.83 0 0 1 47.22 37.71 8 8 0 0 1-2.33 11.07Z"
|
|
441
|
-
})
|
|
442
|
-
}));
|
|
443
|
-
}
|
|
444
|
-
function IconExternalLink(_a) {
|
|
445
|
-
var _b = _a, {
|
|
446
|
-
className
|
|
447
|
-
} = _b, props = __objRest(_b, [
|
|
448
|
-
"className"
|
|
449
|
-
]);
|
|
450
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
451
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
452
|
-
fill: "currentColor",
|
|
453
|
-
className: cn("h-4 w-4", className),
|
|
454
|
-
viewBox: "0 0 256 256"
|
|
455
|
-
}, props), {
|
|
456
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
457
|
-
d: "M224 104a8 8 0 0 1-16 0V59.32l-66.33 66.34a8 8 0 0 1-11.32-11.32L196.68 48H152a8 8 0 0 1 0-16h64a8 8 0 0 1 8 8Zm-40 24a8 8 0 0 0-8 8v72H48V80h72a8 8 0 0 0 0-16H48a16 16 0 0 0-16 16v128a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-72a8 8 0 0 0-8-8Z"
|
|
458
|
-
})
|
|
459
|
-
}));
|
|
460
|
-
}
|
|
461
|
-
function IconChevronUpDown(_a) {
|
|
462
|
-
var _b = _a, {
|
|
463
|
-
className
|
|
464
|
-
} = _b, props = __objRest(_b, [
|
|
465
|
-
"className"
|
|
466
|
-
]);
|
|
467
|
-
return /* @__PURE__ */ jsx("svg", __spreadProps(__spreadValues({
|
|
468
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
469
|
-
fill: "currentColor",
|
|
470
|
-
className: cn("h-4 w-4", className),
|
|
471
|
-
viewBox: "0 0 256 256"
|
|
472
|
-
}, props), {
|
|
473
|
-
children: /* @__PURE__ */ jsx("path", {
|
|
474
|
-
d: "M181.66 170.34a8 8 0 0 1 0 11.32l-48 48a8 8 0 0 1-11.32 0l-48-48a8 8 0 0 1 11.32-11.32L128 212.69l42.34-42.35a8 8 0 0 1 11.32 0Zm-96-84.68L128 43.31l42.34 42.35a8 8 0 0 0 11.32-11.32l-48-48a8 8 0 0 0-11.32 0l-48 48a8 8 0 0 0 11.32 11.32Z"
|
|
475
|
-
})
|
|
476
|
-
}));
|
|
477
|
-
}
|
|
478
|
-
|
|
479
|
-
export { IconArrowDown, IconArrowElbow, IconArrowRight, IconCheck, IconChevronUpDown, IconClose, IconCopy, IconDownload, IconEdit, IconExternalLink, IconGitHub, IconMessage, IconMoon, IconNextChat, IconOpenAI, IconPlus, IconRefresh, IconSeparator, IconShare, IconSidebar, IconSpinner, IconStop, IconSun, IconTrash, IconUser, IconUsers, IconVercel };
|
|
480
|
-
//# sourceMappingURL=out.js.map
|
|
481
|
-
//# sourceMappingURL=chunk-KR7MH7XO.mjs.map
|