feat(site): add util reference pipeline (#537)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Darius Cepulis
2026-02-24 15:34:34 -06:00
committed by GitHub
co-authored by Claude Opus 4.6
parent c11395ece1
commit 78112fbefd
143 changed files with 7031 additions and 481 deletions
@@ -6,22 +6,21 @@ import DetailRow from './DetailRow.astro';
interface Props {
name: string;
type: string;
shortType?: string;
detailedType?: string;
description?: string;
componentName: string;
}
const { name, type, shortType, description, componentName } = Astro.props;
const { name, type, detailedType, description, componentName } = Astro.props;
const displayType = shortType ?? type;
const id = `${componentName}-state-${name}`;
---
<DetailRow id={id} name={name} type={type} shortType={shortType} description={description} colspan={3}>
<DetailRow id={id} name={name} type={type} detailedType={detailedType} description={description} colspan={3}>
<Td class="align-top">
<MarkdownCode>{name}</MarkdownCode>
</Td>
<Td class="align-top">
<MarkdownCode>{displayType}</MarkdownCode>
<MarkdownCode>{type}</MarkdownCode>
</Td>
</DetailRow>