@sero-ai/ui 0.1.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.
Files changed (113) hide show
  1. package/.turbo/turbo-typecheck.log +4 -0
  2. package/components.json +18 -0
  3. package/package.json +70 -0
  4. package/src/components/ai-elements/agent.tsx +142 -0
  5. package/src/components/ai-elements/artifact.tsx +149 -0
  6. package/src/components/ai-elements/attachments.tsx +427 -0
  7. package/src/components/ai-elements/audio-player.tsx +232 -0
  8. package/src/components/ai-elements/canvas.tsx +26 -0
  9. package/src/components/ai-elements/chain-of-thought.tsx +223 -0
  10. package/src/components/ai-elements/checkpoint.tsx +72 -0
  11. package/src/components/ai-elements/code-block.tsx +555 -0
  12. package/src/components/ai-elements/commit.tsx +449 -0
  13. package/src/components/ai-elements/confirmation.tsx +173 -0
  14. package/src/components/ai-elements/connection.tsx +28 -0
  15. package/src/components/ai-elements/context.tsx +410 -0
  16. package/src/components/ai-elements/controls.tsx +19 -0
  17. package/src/components/ai-elements/conversation.tsx +167 -0
  18. package/src/components/ai-elements/edge.tsx +144 -0
  19. package/src/components/ai-elements/environment-variables.tsx +325 -0
  20. package/src/components/ai-elements/file-tree.tsx +298 -0
  21. package/src/components/ai-elements/image.tsx +25 -0
  22. package/src/components/ai-elements/inline-citation.tsx +294 -0
  23. package/src/components/ai-elements/jsx-preview.tsx +250 -0
  24. package/src/components/ai-elements/message.tsx +359 -0
  25. package/src/components/ai-elements/mic-selector.tsx +372 -0
  26. package/src/components/ai-elements/model-selector.tsx +214 -0
  27. package/src/components/ai-elements/node.tsx +72 -0
  28. package/src/components/ai-elements/open-in-chat.tsx +367 -0
  29. package/src/components/ai-elements/package-info.tsx +235 -0
  30. package/src/components/ai-elements/panel.tsx +16 -0
  31. package/src/components/ai-elements/persona.tsx +280 -0
  32. package/src/components/ai-elements/plan.tsx +144 -0
  33. package/src/components/ai-elements/prompt-input.tsx +1341 -0
  34. package/src/components/ai-elements/queue.tsx +275 -0
  35. package/src/components/ai-elements/reasoning.tsx +229 -0
  36. package/src/components/ai-elements/sandbox.tsx +133 -0
  37. package/src/components/ai-elements/schema-display.tsx +473 -0
  38. package/src/components/ai-elements/shimmer.tsx +78 -0
  39. package/src/components/ai-elements/snippet.tsx +141 -0
  40. package/src/components/ai-elements/sources.tsx +78 -0
  41. package/src/components/ai-elements/speech-input.tsx +324 -0
  42. package/src/components/ai-elements/stack-trace.tsx +531 -0
  43. package/src/components/ai-elements/suggestion.tsx +58 -0
  44. package/src/components/ai-elements/task.tsx +88 -0
  45. package/src/components/ai-elements/terminal.tsx +277 -0
  46. package/src/components/ai-elements/test-results.tsx +497 -0
  47. package/src/components/ai-elements/tool.tsx +174 -0
  48. package/src/components/ai-elements/toolbar.tsx +17 -0
  49. package/src/components/ai-elements/transcription.tsx +126 -0
  50. package/src/components/ai-elements/voice-selector.tsx +525 -0
  51. package/src/components/ai-elements/web-preview.tsx +282 -0
  52. package/src/components/ui/accordion.tsx +64 -0
  53. package/src/components/ui/alert-dialog.tsx +196 -0
  54. package/src/components/ui/alert.tsx +66 -0
  55. package/src/components/ui/aspect-ratio.tsx +11 -0
  56. package/src/components/ui/avatar.tsx +107 -0
  57. package/src/components/ui/badge.tsx +48 -0
  58. package/src/components/ui/breadcrumb.tsx +109 -0
  59. package/src/components/ui/button-group.tsx +83 -0
  60. package/src/components/ui/button.tsx +64 -0
  61. package/src/components/ui/calendar.tsx +218 -0
  62. package/src/components/ui/card.tsx +92 -0
  63. package/src/components/ui/carousel.tsx +239 -0
  64. package/src/components/ui/chart.tsx +355 -0
  65. package/src/components/ui/checkbox.tsx +32 -0
  66. package/src/components/ui/collapsible.tsx +31 -0
  67. package/src/components/ui/combobox.tsx +310 -0
  68. package/src/components/ui/command.tsx +184 -0
  69. package/src/components/ui/context-menu.tsx +252 -0
  70. package/src/components/ui/dialog.tsx +158 -0
  71. package/src/components/ui/direction.tsx +22 -0
  72. package/src/components/ui/drawer.tsx +133 -0
  73. package/src/components/ui/dropdown-menu.tsx +257 -0
  74. package/src/components/ui/empty.tsx +104 -0
  75. package/src/components/ui/field.tsx +248 -0
  76. package/src/components/ui/form.tsx +165 -0
  77. package/src/components/ui/hover-card.tsx +42 -0
  78. package/src/components/ui/input-group.tsx +168 -0
  79. package/src/components/ui/input-otp.tsx +77 -0
  80. package/src/components/ui/input.tsx +21 -0
  81. package/src/components/ui/item.tsx +193 -0
  82. package/src/components/ui/kbd.tsx +28 -0
  83. package/src/components/ui/label.tsx +22 -0
  84. package/src/components/ui/menubar.tsx +276 -0
  85. package/src/components/ui/native-select.tsx +53 -0
  86. package/src/components/ui/navigation-menu.tsx +168 -0
  87. package/src/components/ui/pagination.tsx +127 -0
  88. package/src/components/ui/popover.tsx +87 -0
  89. package/src/components/ui/progress.tsx +31 -0
  90. package/src/components/ui/radio-group.tsx +43 -0
  91. package/src/components/ui/resizable.tsx +53 -0
  92. package/src/components/ui/scroll-area.tsx +56 -0
  93. package/src/components/ui/select.tsx +190 -0
  94. package/src/components/ui/separator.tsx +28 -0
  95. package/src/components/ui/sheet.tsx +145 -0
  96. package/src/components/ui/sidebar.tsx +724 -0
  97. package/src/components/ui/skeleton.tsx +13 -0
  98. package/src/components/ui/slider.tsx +61 -0
  99. package/src/components/ui/sonner.tsx +40 -0
  100. package/src/components/ui/spinner.tsx +16 -0
  101. package/src/components/ui/switch.tsx +33 -0
  102. package/src/components/ui/table.tsx +116 -0
  103. package/src/components/ui/tabs.tsx +91 -0
  104. package/src/components/ui/textarea.tsx +18 -0
  105. package/src/components/ui/toggle-group.tsx +83 -0
  106. package/src/components/ui/toggle.tsx +47 -0
  107. package/src/components/ui/tooltip.tsx +57 -0
  108. package/src/components/ui/tree.tsx +207 -0
  109. package/src/hooks/use-mobile.ts +17 -0
  110. package/src/index.ts +16 -0
  111. package/src/lib/utils.ts +6 -0
  112. package/src/styles/globals.css +373 -0
  113. package/tsconfig.json +18 -0
@@ -0,0 +1,78 @@
1
+ "use client";
2
+
3
+ import type { ComponentProps } from "react";
4
+
5
+ import {
6
+ Collapsible,
7
+ CollapsibleContent,
8
+ CollapsibleTrigger,
9
+ } from "../ui/collapsible";
10
+ import { cn } from "../../lib/utils";
11
+ import { BookIcon, ChevronDownIcon } from "lucide-react";
12
+
13
+ export type SourcesProps = ComponentProps<"div">;
14
+
15
+ export const Sources = ({ className, ...props }: SourcesProps) => (
16
+ <Collapsible
17
+ className={cn("not-prose mb-4 text-primary text-xs", className)}
18
+ {...props}
19
+ />
20
+ );
21
+
22
+ export type SourcesTriggerProps = ComponentProps<typeof CollapsibleTrigger> & {
23
+ count: number;
24
+ };
25
+
26
+ export const SourcesTrigger = ({
27
+ className,
28
+ count,
29
+ children,
30
+ ...props
31
+ }: SourcesTriggerProps) => (
32
+ <CollapsibleTrigger
33
+ className={cn("flex items-center gap-2", className)}
34
+ {...props}
35
+ >
36
+ {children ?? (
37
+ <>
38
+ <p className="font-medium">Used {count} sources</p>
39
+ <ChevronDownIcon className="h-4 w-4" />
40
+ </>
41
+ )}
42
+ </CollapsibleTrigger>
43
+ );
44
+
45
+ export type SourcesContentProps = ComponentProps<typeof CollapsibleContent>;
46
+
47
+ export const SourcesContent = ({
48
+ className,
49
+ ...props
50
+ }: SourcesContentProps) => (
51
+ <CollapsibleContent
52
+ className={cn(
53
+ "mt-3 flex w-fit flex-col gap-2",
54
+ "data-[state=closed]:fade-out-0 data-[state=closed]:slide-out-to-top-2 data-[state=open]:slide-in-from-top-2 outline-none data-[state=closed]:animate-out data-[state=open]:animate-in",
55
+ className
56
+ )}
57
+ {...props}
58
+ />
59
+ );
60
+
61
+ export type SourceProps = ComponentProps<"a">;
62
+
63
+ export const Source = ({ href, title, children, ...props }: SourceProps) => (
64
+ <a
65
+ className="flex items-center gap-2"
66
+ href={href}
67
+ rel="noreferrer"
68
+ target="_blank"
69
+ {...props}
70
+ >
71
+ {children ?? (
72
+ <>
73
+ <BookIcon className="h-4 w-4" />
74
+ <span className="block font-medium">{title}</span>
75
+ </>
76
+ )}
77
+ </a>
78
+ );
@@ -0,0 +1,324 @@
1
+ "use client";
2
+
3
+ import type { ComponentProps } from "react";
4
+
5
+ import { Button } from "../ui/button";
6
+ import { Spinner } from "../ui/spinner";
7
+ import { cn } from "../../lib/utils";
8
+ import { MicIcon, SquareIcon } from "lucide-react";
9
+ import { useCallback, useEffect, useRef, useState } from "react";
10
+
11
+ interface SpeechRecognition extends EventTarget {
12
+ continuous: boolean;
13
+ interimResults: boolean;
14
+ lang: string;
15
+ start(): void;
16
+ stop(): void;
17
+ onstart: ((this: SpeechRecognition, ev: Event) => void) | null;
18
+ onend: ((this: SpeechRecognition, ev: Event) => void) | null;
19
+ onresult:
20
+ | ((this: SpeechRecognition, ev: SpeechRecognitionEvent) => void)
21
+ | null;
22
+ onerror:
23
+ | ((this: SpeechRecognition, ev: SpeechRecognitionErrorEvent) => void)
24
+ | null;
25
+ }
26
+
27
+ interface SpeechRecognitionEvent extends Event {
28
+ results: SpeechRecognitionResultList;
29
+ resultIndex: number;
30
+ }
31
+
32
+ interface SpeechRecognitionResultList {
33
+ readonly length: number;
34
+ item(index: number): SpeechRecognitionResult;
35
+ [index: number]: SpeechRecognitionResult;
36
+ }
37
+
38
+ interface SpeechRecognitionResult {
39
+ readonly length: number;
40
+ item(index: number): SpeechRecognitionAlternative;
41
+ [index: number]: SpeechRecognitionAlternative;
42
+ isFinal: boolean;
43
+ }
44
+
45
+ interface SpeechRecognitionAlternative {
46
+ transcript: string;
47
+ confidence: number;
48
+ }
49
+
50
+ interface SpeechRecognitionErrorEvent extends Event {
51
+ error: string;
52
+ }
53
+
54
+ declare global {
55
+ interface Window {
56
+ SpeechRecognition: new () => SpeechRecognition;
57
+ webkitSpeechRecognition: new () => SpeechRecognition;
58
+ }
59
+ }
60
+
61
+ type SpeechInputMode = "speech-recognition" | "media-recorder" | "none";
62
+
63
+ export type SpeechInputProps = ComponentProps<typeof Button> & {
64
+ onTranscriptionChange?: (text: string) => void;
65
+ /**
66
+ * Callback for when audio is recorded using MediaRecorder fallback.
67
+ * This is called in browsers that don't support the Web Speech API (Firefox, Safari).
68
+ * The callback receives an audio Blob that should be sent to a transcription service.
69
+ * Return the transcribed text, which will be passed to onTranscriptionChange.
70
+ */
71
+ onAudioRecorded?: (audioBlob: Blob) => Promise<string>;
72
+ lang?: string;
73
+ };
74
+
75
+ const detectSpeechInputMode = (): SpeechInputMode => {
76
+ if (typeof window === "undefined") {
77
+ return "none";
78
+ }
79
+
80
+ if ("SpeechRecognition" in window || "webkitSpeechRecognition" in window) {
81
+ return "speech-recognition";
82
+ }
83
+
84
+ if ("MediaRecorder" in window && "mediaDevices" in navigator) {
85
+ return "media-recorder";
86
+ }
87
+
88
+ return "none";
89
+ };
90
+
91
+ export const SpeechInput = ({
92
+ className,
93
+ onTranscriptionChange,
94
+ onAudioRecorded,
95
+ lang = "en-US",
96
+ ...props
97
+ }: SpeechInputProps) => {
98
+ const [isListening, setIsListening] = useState(false);
99
+ const [isProcessing, setIsProcessing] = useState(false);
100
+ const [mode] = useState<SpeechInputMode>(detectSpeechInputMode);
101
+ const [isRecognitionReady, setIsRecognitionReady] = useState(false);
102
+ const recognitionRef = useRef<SpeechRecognition | null>(null);
103
+ const mediaRecorderRef = useRef<MediaRecorder | null>(null);
104
+ const streamRef = useRef<MediaStream | null>(null);
105
+ const audioChunksRef = useRef<Blob[]>([]);
106
+ const onTranscriptionChangeRef = useRef<
107
+ SpeechInputProps["onTranscriptionChange"]
108
+ >(onTranscriptionChange);
109
+ const onAudioRecordedRef =
110
+ useRef<SpeechInputProps["onAudioRecorded"]>(onAudioRecorded);
111
+
112
+ // Keep refs in sync
113
+ onTranscriptionChangeRef.current = onTranscriptionChange;
114
+ onAudioRecordedRef.current = onAudioRecorded;
115
+
116
+ // Initialize Speech Recognition when mode is speech-recognition
117
+ useEffect(() => {
118
+ if (mode !== "speech-recognition") {
119
+ return;
120
+ }
121
+
122
+ const SpeechRecognition =
123
+ window.SpeechRecognition || window.webkitSpeechRecognition;
124
+ const speechRecognition = new SpeechRecognition();
125
+
126
+ speechRecognition.continuous = true;
127
+ speechRecognition.interimResults = true;
128
+ speechRecognition.lang = lang;
129
+
130
+ const handleStart = () => {
131
+ setIsListening(true);
132
+ };
133
+
134
+ const handleEnd = () => {
135
+ setIsListening(false);
136
+ };
137
+
138
+ const handleResult = (event: Event) => {
139
+ const speechEvent = event as SpeechRecognitionEvent;
140
+ let finalTranscript = "";
141
+
142
+ for (
143
+ let i = speechEvent.resultIndex;
144
+ i < speechEvent.results.length;
145
+ i += 1
146
+ ) {
147
+ const result = speechEvent.results[i];
148
+ if (result.isFinal) {
149
+ finalTranscript += result[0]?.transcript ?? "";
150
+ }
151
+ }
152
+
153
+ if (finalTranscript) {
154
+ onTranscriptionChangeRef.current?.(finalTranscript);
155
+ }
156
+ };
157
+
158
+ const handleError = () => {
159
+ setIsListening(false);
160
+ };
161
+
162
+ speechRecognition.addEventListener("start", handleStart);
163
+ speechRecognition.addEventListener("end", handleEnd);
164
+ speechRecognition.addEventListener("result", handleResult);
165
+ speechRecognition.addEventListener("error", handleError);
166
+
167
+ recognitionRef.current = speechRecognition;
168
+ setIsRecognitionReady(true);
169
+
170
+ return () => {
171
+ speechRecognition.removeEventListener("start", handleStart);
172
+ speechRecognition.removeEventListener("end", handleEnd);
173
+ speechRecognition.removeEventListener("result", handleResult);
174
+ speechRecognition.removeEventListener("error", handleError);
175
+ speechRecognition.stop();
176
+ recognitionRef.current = null;
177
+ setIsRecognitionReady(false);
178
+ };
179
+ }, [mode, lang]);
180
+
181
+ // Cleanup MediaRecorder and stream on unmount
182
+ useEffect(
183
+ () => () => {
184
+ if (mediaRecorderRef.current?.state === "recording") {
185
+ mediaRecorderRef.current.stop();
186
+ }
187
+ if (streamRef.current) {
188
+ for (const track of streamRef.current.getTracks()) {
189
+ track.stop();
190
+ }
191
+ }
192
+ },
193
+ []
194
+ );
195
+
196
+ // Start MediaRecorder recording
197
+ const startMediaRecorder = useCallback(async () => {
198
+ if (!onAudioRecordedRef.current) {
199
+ return;
200
+ }
201
+
202
+ try {
203
+ const stream = await navigator.mediaDevices.getUserMedia({ audio: true });
204
+ streamRef.current = stream;
205
+ const mediaRecorder = new MediaRecorder(stream);
206
+ audioChunksRef.current = [];
207
+
208
+ const handleDataAvailable = (event: BlobEvent) => {
209
+ if (event.data.size > 0) {
210
+ audioChunksRef.current.push(event.data);
211
+ }
212
+ };
213
+
214
+ const handleStop = async () => {
215
+ for (const track of stream.getTracks()) {
216
+ track.stop();
217
+ }
218
+ streamRef.current = null;
219
+
220
+ const audioBlob = new Blob(audioChunksRef.current, {
221
+ type: "audio/webm",
222
+ });
223
+
224
+ if (audioBlob.size > 0 && onAudioRecordedRef.current) {
225
+ setIsProcessing(true);
226
+ try {
227
+ const transcript = await onAudioRecordedRef.current(audioBlob);
228
+ if (transcript) {
229
+ onTranscriptionChangeRef.current?.(transcript);
230
+ }
231
+ } catch {
232
+ // Error handling delegated to the onAudioRecorded caller
233
+ } finally {
234
+ setIsProcessing(false);
235
+ }
236
+ }
237
+ };
238
+
239
+ const handleError = () => {
240
+ setIsListening(false);
241
+ for (const track of stream.getTracks()) {
242
+ track.stop();
243
+ }
244
+ streamRef.current = null;
245
+ };
246
+
247
+ mediaRecorder.addEventListener("dataavailable", handleDataAvailable);
248
+ mediaRecorder.addEventListener("stop", handleStop);
249
+ mediaRecorder.addEventListener("error", handleError);
250
+
251
+ mediaRecorderRef.current = mediaRecorder;
252
+ mediaRecorder.start();
253
+ setIsListening(true);
254
+ } catch {
255
+ setIsListening(false);
256
+ }
257
+ }, []);
258
+
259
+ // Stop MediaRecorder recording
260
+ const stopMediaRecorder = useCallback(() => {
261
+ if (mediaRecorderRef.current?.state === "recording") {
262
+ mediaRecorderRef.current.stop();
263
+ }
264
+ setIsListening(false);
265
+ }, []);
266
+
267
+ const toggleListening = useCallback(() => {
268
+ if (mode === "speech-recognition" && recognitionRef.current) {
269
+ if (isListening) {
270
+ recognitionRef.current.stop();
271
+ } else {
272
+ recognitionRef.current.start();
273
+ }
274
+ } else if (mode === "media-recorder") {
275
+ if (isListening) {
276
+ stopMediaRecorder();
277
+ } else {
278
+ startMediaRecorder();
279
+ }
280
+ }
281
+ }, [mode, isListening, startMediaRecorder, stopMediaRecorder]);
282
+
283
+ // Determine if button should be disabled
284
+ const isDisabled =
285
+ mode === "none" ||
286
+ (mode === "speech-recognition" && !isRecognitionReady) ||
287
+ (mode === "media-recorder" && !onAudioRecorded) ||
288
+ isProcessing;
289
+
290
+ return (
291
+ <div className="relative inline-flex items-center justify-center">
292
+ {/* Animated pulse rings */}
293
+ {isListening &&
294
+ [0, 1, 2].map((index) => (
295
+ <div
296
+ className="absolute inset-0 animate-ping rounded-full border-2 border-red-400/30"
297
+ key={index}
298
+ style={{
299
+ animationDelay: `${index * 0.3}s`,
300
+ animationDuration: "2s",
301
+ }}
302
+ />
303
+ ))}
304
+
305
+ {/* Main record button */}
306
+ <Button
307
+ className={cn(
308
+ "relative z-10 rounded-full transition-all duration-300",
309
+ isListening
310
+ ? "bg-destructive text-white hover:bg-destructive/80 hover:text-white"
311
+ : "bg-primary text-primary-foreground hover:bg-primary/80 hover:text-primary-foreground",
312
+ className
313
+ )}
314
+ disabled={isDisabled}
315
+ onClick={toggleListening}
316
+ {...props}
317
+ >
318
+ {isProcessing && <Spinner />}
319
+ {!isProcessing && isListening && <SquareIcon className="size-4" />}
320
+ {!(isProcessing || isListening) && <MicIcon className="size-4" />}
321
+ </Button>
322
+ </div>
323
+ );
324
+ };