blob: b1d58642d1cc746361a8d5d0f52f0d72c7f49037 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<script>
import EventCapture from '$lib/swatch/event-capture.svelte.js';
import MessageInput from '$lib/components/MessageInput.svelte';
import EventLog from '$lib/components/swatch/EventLog.svelte';
let capture = $state(new EventCapture());
const sendMessage = capture.on('sendMessage');
</script>
<h1><code>MessageInput</code></h1>
<nav><p><a href=".">Back to swatches</a></p></nav>
<h2>rendered</h2>
<div class="component-preview">
<MessageInput {sendMessage} />
</div>
<h2>events</h2>
<EventLog events={capture.events} clear={capture.clear.bind(capture)} />
|