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/conversation-bar
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.

Conversation Bar

sv11-twango/conversation-bar
RemovedComponent

A composable input bar for voice and text conversations with mic toggle, live waveform, and submit.

Live preview

live · rendered by the registry
Rendered by sv11-twango on their own page — this is the component running, not a screenshot of it.

Install it

npx shadcn@latest add http://sv11.ui.twango.dev/r/conversation-bar.json

Source

registry itemsv11.ui.twango.dev/r/conversation-bar.json · first 6 KB
1<script lang="ts" module>
2 import type { HTMLAttributes } from "svelte/elements";
3 import type { ConversationAdapter, ConversationMessage, AgentConnectionState } from "./types.js";
4
5 export type ConversationBarProps = Omit<HTMLAttributes<HTMLDivElement>, "children"> & {
6 /**
7 * Backend bridge that owns the session lifecycle — connecting, streaming
8 * messages, and muting. Conforms to
9 * [`ConversationAdapter`](/docs/providers#conversationadapter).
10 */
11 adapter: ConversationAdapter;
12 /**
13 * Label shown in the waveform slot while the session is disconnected.
14 * @default "Customer Support"
15 */
16 disconnectedText?: string;
17 /** Extra classes merged onto the inner waveform container. */
18 waveformClassName?: string;
19 /** Fired after the adapter reports a successful connection. */
20 onConnect?: () => void;
21 /** Fired after the adapter reports disconnection. */
22 onDisconnect?: () => void;
23 /** Fired when the adapter surfaces an error or `connect()` rejects. */
24 onError?: (error: Error) => void;
25 /** Fired for each message emitted by the adapter (both user and AI turns). */
26 onMessage?: (message: ConversationMessage) => void;
27 /** Fired after a text-input message has been handed off to the adapter. */
28 onSendMessage?: (message: string) => void;
29 /** Bindable ref to the root `<div>` element. */
30 ref?: HTMLDivElement | null;
31 };
32</script>
33
34<script lang="ts">
35 import { onDestroy } from "svelte";
36 import { cn } from "$UTILS$.js";
37 import { Button } from "$UI$/button/index.js";
38 import { Card } from "$UI$/card/index.js";
39 import { LiveWaveform } from "$UI$/live-waveform/index.js";
40 import { Separator } from "$UI$/separator/index.js";
41 import { Textarea } from "$UI$/textarea/index.js";
42 import MicIcon from "@lucide/svelte/icons/mic";
43 import MicOffIcon from "@lucide/svelte/icons/mic-off";
44 import PhoneIcon from "@lucide/svelte/icons/phone";
45 import XIcon from "@lucide/svelte/icons/x";
46 import KeyboardIcon from "@lucide/svelte/icons/keyboard";
47 import ChevronDownIcon from "@lucide/svelte/icons/chevron-down";
48 import ArrowUpIcon from "@lucide/svelte/icons/arrow-up";
49
50 let {
51 adapter,
52 disconnectedText = "Customer Support",
53 waveformClassName,
54 onConnect,
55 onDisconnect,
56 onError,
57 onMessage,
58 onSendMessage,
59 class: className,
60 ref = $bindable(null),
61 ...restProps
62 }: ConversationBarProps = $props();
63
64 let isMuted = $state(false);
65 let agentState = $state<AgentConnectionState>("disconnected");
66 let keyboardOpen = $state(false);
67// … truncated

What it pulls in

npm packages

  • @lucide/svelte

Other registry items

  • button
  • card
  • https://sv11.ui.twango.dev/r/live-waveform.json
  • separator
  • textarea

Facts

Registry
sv11-twango
Type
registry:ui
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

Docs on sv11-twango 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