BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/sv11-twango/voice-form-01
This component no longer exists. It was in sv11-twango’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-09 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.

Voice Form 01

sv11-twango/voice-form-01
RemovedBlock

A form with a voice-fill button that cycles through idle/recording/processing/success states.

Install it

npx shadcn@latest add http://sv11.ui.twango.dev/r/voice-form-01.json

Source

registry itemsv11.ui.twango.dev/r/voice-form-01.json
1<script lang="ts">
2 import {
3 Card,
4 CardContent,
5 CardDescription,
6 CardHeader,
7 CardTitle,
8 } from "$UI$/card/index.js";
9 import { Input } from "$UI$/input/index.js";
10 import { Label } from "$UI$/label/index.js";
11 import { VoiceButton, type VoiceButtonState } from "$UI$/voice-button/index.js";
12 import { validateExampleForm, type ExampleFormValues } from "./schema.js";
13
14 let values = $state<ExampleFormValues>({ firstName: "", lastName: "" });
15 const errors = $derived(validateExampleForm(values));
16
17 let voiceState = $state<VoiceButtonState>("idle");
18 let cycleTimers: ReturnType<typeof setTimeout>[] = [];
19
20 function clearTimers() {
21 cycleTimers.forEach(clearTimeout);
22 cycleTimers = [];
23 }
24
25 function handleVoiceToggle() {
26 if (voiceState === "recording" || voiceState === "processing") {
27 clearTimers();
28 voiceState = "idle";
29 return;
30 }
31 clearTimers();
32 voiceState = "recording";
33 cycleTimers.push(
34 setTimeout(() => {
35 voiceState = "processing";
36 }, 2000)
37 );
38 cycleTimers.push(
39 setTimeout(() => {
40 values = { firstName: "John", lastName: "Doe" };
41 voiceState = "success";
42 }, 3000)
43 );
44 cycleTimers.push(
45 setTimeout(() => {
46 voiceState = "idle";
47 }, 5000)
48 );
49 }
50
51 $effect(() => {
52 return () => clearTimers();
53 });
54
55 function onSubmit(event: SubmitEvent) {
56 event.preventDefault();
57 }
58</script>
59
60<div class="mx-auto w-full">
61 <Card class="relative overflow-hidden">
62 <div class="flex flex-col gap-2">
63 <CardHeader>
64 <div class="flex items-start justify-between">
65 <div class="space-y-1">
66 <CardTitle>Voice Fill</CardTitle>
67 <CardDescription>Fill fields by voice</CardDescription>
68 </div>
69 <VoiceButton
70 state={voiceState}
71 onPress={handleVoiceToggle}
72 disabled={voiceState === "processing"}
73 trailing="Voice Fill"
74 />
75 </div>
76 </CardHeader>
77 <CardContent>
78 <form onsubmit={onSubmit} class="space-y-6">
79 <div class="grid grid-cols-1 gap-4 sm:grid-cols-2">
80 <div class="space-y-2">
81 <Label for="voice-form-01-first-name">First Name *</Label>
82 <Input
83 id="voice-form-01-first-name"
84 placeholder="John"
85 bind:value={values.firstName}
86 aria-invalid={errors.firstName ? "true" : undefined}
87 aria-describedby={errors.firstName ? "voice-form-01-first-name-error" : undefined}
88 />
89 {#if errors.firstName}
90 <p
91 id="voice-form-01-first-name-error"
92 class="text-destructive text-sm"
93// … truncated

What it pulls in

Other registry items

  • card
  • input
  • label
  • https://sv11.ui.twango.dev/r/voice-button.json

Facts

Registry
sv11-twango
Type
registry:block
Access
Free
Files written
0
Licence
MIT
In the index
at or before 2026-08-02
Last confirmed
10 days ago

Go to the source

sv11.ui.twango.dev twangodev/sv11-ui on GitHub Raw registry item This item as JSON

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex