release: WRNexusJS 0.8.0
Quality / quality (ubuntu-latest) (push) Failing after 21s
Quality / quality (windows-latest) (push) Canceled after 0s

This commit is contained in:
2026-08-02 23:18:51 +05:30
parent 87507edf59
commit 586a6db8ff
625 changed files with 243608 additions and 11210 deletions
@@ -0,0 +1,29 @@
component MessageComposer {
props {
name: string = "text"
type: string = "message"
placeholder: string = "Write a message…"
sendLabel: string = "Send"
disabled: boolean = false
color: string = "primary"
size: string = "md"
class: string = ""
}
view {
<form data-room-send class='flex items-end gap-2 {class}'>
<input type="hidden" name="type" value='{type}' />
<Textarea
name='{name}'
placeholder='{placeholder}'
rows="2"
disabled='{disabled}'
color='{color}'
size='{size}'
data-room-reset
class="min-w-0 flex-1"
/>
<Button type="submit" label='{sendLabel}' icon="icon-[lucide--send]" color='{color}' size='{size}' disabled='{disabled}' />
</form>
}
}