An output only reaches a parent @binding when the component calls output.<name>(). Two separate faults meant most of the library never got there, and both failed silently at each end. HTML lowercases attribute names, so a parent's @sizeChange registered under "sizechange" while the component emitted "sizeChange". The lookup missed, fell through to a DOM dispatch, and the binding was never invoked. That made all 17 camelCase outputs undeliverable -- DataTable.pageChange and .rowClick, Map.markerClick, ChatBubble.messageClick, LayoutSplitter.sizeChange and the rest. invokeComponentOutput now falls back to a case-insensitive lookup, and a csr test fails without it. Separately, 18 components dispatched hand-built CustomEvents rather than calling output.*. A bubbling event on the component's own root never reaches a binding, because parent handlers live in a registry only the output proxy reads. Card, Footer, Breadcrumb, Accordion, alert, Badge, AnnouncementBar, AvatarGroup, ToggleCount and InputNumber now emit properly; Marquee, Map, Timeline, List and SearchBox additionally declare the outputs they were already firing. Dispatches on window are left alone -- that is how Toaster, Modal and DataTable signal across component boundaries. Verified in a browser both ways before and after: an AnnouncementBar dispatching its own bubbling "dismiss" never reached a page-level @dismiss, and reached it immediately once it called output.dismiss(). This corrects the audit, which called the LayoutSplitter failure "narrow and unexplained" and read 32 dead outputs as 16 components needing a rebuild. "Outputs work elsewhere" was an assumption; the components that worked happened to use lowercase names and output.*. The dead-output ratchet drops from 32 to 22, and a new test forbids the raw-CustomEvent pattern outright. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
112 lines
4.9 KiB
Plaintext
112 lines
4.9 KiB
Plaintext
component List {
|
|
outputs {
|
|
select(payload: { sourceEvent?: Event; [key: string]: string | number | boolean | null | object })
|
|
}
|
|
|
|
props {
|
|
size: string = "default"
|
|
color: string = "primary"
|
|
title: string = "List"
|
|
description: string = ""
|
|
items: unknown[] = []
|
|
variant: string = "default"
|
|
class: string = ""
|
|
}
|
|
|
|
view {
|
|
<section
|
|
data-ui-component="List"
|
|
aria-label='{title}'
|
|
class='w-full {class}'
|
|
>
|
|
{#if title || description}
|
|
<header class="mb-4">
|
|
{#if title}
|
|
<h3 class="text-lg font-bold text-[var(--wire-color-text)]">{title}</h3>
|
|
{/if}
|
|
{#if description}
|
|
<p class="mt-1 text-sm leading-6 text-[var(--wire-color-text-muted)]">{description}</p>
|
|
{/if}
|
|
</header>
|
|
{/if}
|
|
|
|
<ul
|
|
class="overflow-hidden"
|
|
class:divide-y='variant === "default" || variant === "divided"'
|
|
class:divide-[var(--wire-color-border)]='variant === "default" || variant === "divided"'
|
|
class:rounded-2xl='variant === "card"'
|
|
class:border='variant === "card"'
|
|
class:border-[var(--wire-color-border)]='variant === "card"'
|
|
class:bg-[var(--wire-color-surface-raised)]='variant === "card"'
|
|
class:space-y-3='variant === "separated"'
|
|
>
|
|
{#each items as item, index}
|
|
<li
|
|
class="group min-w-0"
|
|
class:rounded-xl='variant === "separated"'
|
|
class:border='variant === "separated"'
|
|
class:border-[var(--wire-color-border)]='variant === "separated"'
|
|
class:bg-[var(--wire-color-surface-raised)]='variant === "separated"'
|
|
>
|
|
{#if item.href}
|
|
<a
|
|
href='{item.href}'
|
|
class="flex min-w-0 items-start gap-3 px-4 py-3 outline-none transition hover:bg-[var(--wire-color-surface-soft)] focus-visible:ring-2 focus-visible:ring-inset focus-visible:ring-[var(--wire-color-focus)]"
|
|
class:px-3='size === "sm"'
|
|
class:py-2.5='size === "sm"'
|
|
class:px-5='size === "lg"'
|
|
class:py-4='size === "lg"'
|
|
@click='output.select({ item: item, index: index })'
|
|
>
|
|
{#if item.icon}
|
|
<span class="flex size-10 shrink-0 items-center justify-center rounded-xl bg-[var(--wire-color-primary-soft)] text-[var(--wire-color-primary)]">
|
|
<span class='{item.icon + " size-5"}' aria-hidden="true"></span>
|
|
</span>
|
|
{/if}
|
|
{#if item.imageSrc}
|
|
<img src='{item.imageSrc}' alt='{item.imageAlt || ""}' class="size-12 shrink-0 rounded-xl object-cover" loading="lazy" />
|
|
{/if}
|
|
<div class="min-w-0 flex-1">
|
|
<div class="flex items-start justify-between gap-3">
|
|
<p class="truncate font-semibold text-[var(--wire-color-text)]">{item.title || item.label}</p>
|
|
{#if item.meta}
|
|
<span class="shrink-0 text-xs text-[var(--wire-color-text-muted)]">{item.meta}</span>
|
|
{/if}
|
|
</div>
|
|
{#if item.description}
|
|
<p class="mt-1 line-clamp-2 text-sm leading-5 text-[var(--wire-color-text-muted)]">{item.description}</p>
|
|
{/if}
|
|
{#if item.badge}
|
|
<span class="mt-2 inline-flex rounded-full bg-[var(--wire-color-primary-soft)] px-2.5 py-1 text-xs font-semibold text-[var(--wire-color-primary)]">{item.badge}</span>
|
|
{/if}
|
|
</div>
|
|
<span class="icon-[lucide--chevron-right] mt-1 size-4 shrink-0 text-[var(--wire-color-text-muted)] transition group-hover:translate-x-0.5 group-hover:text-[var(--wire-color-primary)]" aria-hidden="true"></span>
|
|
</a>
|
|
{:else}
|
|
<div class="flex min-w-0 items-start gap-3 px-4 py-3">
|
|
{#if item.icon}
|
|
<span class="flex size-10 shrink-0 items-center justify-center rounded-xl bg-[var(--wire-color-primary-soft)] text-[var(--wire-color-primary)]">
|
|
<span class='{item.icon + " size-5"}' aria-hidden="true"></span>
|
|
</span>
|
|
{/if}
|
|
<div class="min-w-0 flex-1">
|
|
<p class="font-semibold text-[var(--wire-color-text)]">{item.title || item.label}</p>
|
|
{#if item.description}
|
|
<p class="mt-1 text-sm leading-5 text-[var(--wire-color-text-muted)]">{item.description}</p>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
</li>
|
|
{:empty}
|
|
<li class="rounded-xl border border-dashed border-[var(--wire-color-border)] p-6 text-center text-sm text-[var(--wire-color-text-muted)]">
|
|
No items available.
|
|
</li>
|
|
{/each}
|
|
</ul>
|
|
|
|
<slot></slot>
|
|
</section>
|
|
}
|
|
}
|