publish kind 9 quote after room content creation for cross-client interoperability

This commit is contained in:
2026-04-10 22:56:48 +05:45
committed by Jon Staab
parent c740bd21d4
commit 29bb33c26c
23 changed files with 273 additions and 134 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
"aria-pressed"?: boolean
} = $props()
const className = $derived(`text-left ${restProps.class}`)
const className = $derived(`text-left cursor-pointer ${restProps.class}`)
const onClick = (e: Event) => {
e.preventDefault()
+4 -7
View File
@@ -1,17 +1,14 @@
<script lang="ts">
import type {Snippet} from "svelte"
let {
children,
root,
initiallyVisible = false,
estimatedHeight = 48,
}: {
type Props = {
children: Snippet
root?: HTMLElement
initiallyVisible?: boolean
estimatedHeight?: number
} = $props()
}
const {children, root, initiallyVisible = false, estimatedHeight = 48}: Props = $props()
let visible = $state(initiallyVisible)
let height = $state(estimatedHeight)