97 lines
7.8 KiB
Plaintext
97 lines
7.8 KiB
Plaintext
page Blockquotecomponent {
|
|
seo {
|
|
title = "Blockquote component"
|
|
description = "Theme-aware, responsive blockquote component."
|
|
}
|
|
|
|
view {
|
|
<div class="docs-shell">
|
|
<SkipLink label="Skip to content" href="#main" class="docs-skip-link" />
|
|
<header class="topbar">
|
|
<a class="brand" href="/"><span>W</span> WRNexusJS</a>
|
|
<nav aria-label="Primary"><a href="/getting-started">Get started</a><a href="/packages">Packages</a><a href="/components">Components</a><a href="/language">Language</a><a href="/architecture">Architecture</a></nav>
|
|
<div class="topbar-actions"><a class="preview-pill" href="/access">Private preview · v0.5.0</a><button data-wire-theme-toggle class="theme-button" aria-label="Toggle color theme" title="Toggle color theme">◐</button></div>
|
|
</header>
|
|
<div class="mobile-doc-nav"><details><summary>Browse documentation</summary><nav><a href="/getting-started">Get started</a><a href="/packages">Packages</a><a href="/components">Components</a><a href="/language">Language</a><a href="/architecture">Architecture</a><a href="/tutorial">Tutorial</a><a href="/guides/project-structure">Guides</a><a href="/examples">Examples</a><a href="/search">Search</a></nav></details></div>
|
|
<main class="portal-main docs-layout component-detail-page"><article id="main" class="documentation prose standalone"><nav class="breadcrumbs" aria-label="Breadcrumb"><a href="/">Home</a><span>/</span><a href="/components">Components</a><span>/</span><span aria-current="page">Blockquote</span></nav><section class="doc-intro"><span class="eyebrow">base component</span><h1>Blockquote</h1><p>Theme-aware, responsive blockquote component.</p><div class="doc-meta"><span>@wrnexus/ui 0.5.0</span><span>13 props</span><span>1 slots</span><span>0 events</span></div></section><section id="usage"><h2>Usage</h2><p>Components are auto-discovered. Use the component directly in any <code>.wrn</code> view:</p><pre data-language="wrn"><code><Blockquote
|
|
quote="I just wanted to say that I'm very happy with my purchase so far. The documentation is outstanding - clear and detailed."
|
|
citation="citation"
|
|
citationTitle="citationTitle"
|
|
citationUrl="citationUrl"
|
|
avatarSrc="avatarSrc"
|
|
/></code></pre><p>Legacy mount name: <code>data-component="Blockquote"</code>.</p></section><section id="props"><h2>Props and attributes</h2><div class="table-wrap"><table><thead><tr><th>Prop</th><th>Type</th><th>Requirement</th><th>Default</th></tr></thead><tbody><tr><td><code>quote</code></td><td><code>string</code></td><td>Optional</td><td><code>"I just wanted to say that I'm very happy with my purchase so far. The documentation is outstanding - clear and detailed."</code></td></tr><tr><td><code>citation</code></td><td><code>string</code></td><td>Optional</td><td><code>""</code></td></tr><tr><td><code>citationTitle</code></td><td><code>string</code></td><td>Optional</td><td><code>""</code></td></tr><tr><td><code>citationUrl</code></td><td><code>string</code></td><td>Optional</td><td><code>""</code></td></tr><tr><td><code>avatarSrc</code></td><td><code>string</code></td><td>Optional</td><td><code>""</code></td></tr><tr><td><code>avatarAlt</code></td><td><code>string</code></td><td>Optional</td><td><code>""</code></td></tr><tr><td><code>size</code></td><td><code>string</code></td><td>Optional</td><td><code>"md"</code></td></tr><tr><td><code>color</code></td><td><code>string</code></td><td>Optional</td><td><code>"primary"</code></td></tr><tr><td><code>align</code></td><td><code>string</code></td><td>Optional</td><td><code>"left"</code></td></tr><tr><td><code>variant</code></td><td><code>string</code></td><td>Optional</td><td><code>"default"</code></td></tr><tr><td><code>quoteMark</code></td><td><code>boolean</code></td><td>Optional</td><td><code>true</code></td></tr><tr><td><code>italic</code></td><td><code>boolean</code></td><td>Optional</td><td><code>true</code></td></tr><tr><td><code>class</code></td><td><code>string</code></td><td>Optional</td><td><code>""</code></td></tr></tbody></table></div></section><section id="slots"><h2>Slots</h2><ul><li><code>default</code></li></ul></section><section id="events"><h2>Events</h2><p>This component does not declare a custom event.</p></section><section id="source"><h2>Source contract</h2><p>Installed source: <code>components/Blockquote.wrn</code></p><pre data-language="wrn"><code>component Blockquote {
|
|
props {
|
|
quote = "I just wanted to say that I'm very happy with my purchase so far. The documentation is outstanding - clear and detailed."
|
|
citation = ""
|
|
citationTitle = ""
|
|
citationUrl = ""
|
|
avatarSrc = ""
|
|
avatarAlt = ""
|
|
size = "md"
|
|
color = "primary"
|
|
align = "left"
|
|
variant = "default"
|
|
quoteMark = true
|
|
italic = true
|
|
class = ""
|
|
}
|
|
|
|
view {
|
|
<figure
|
|
{...attrs}
|
|
class="wire-next wire-next--blockquote wire-next--color-{color} wire-next--size-{size} {class}"
|
|
data-size="{size}"
|
|
data-color="{color}"
|
|
data-align="{align}"
|
|
data-variant="{variant}"
|
|
data-italic="{italic}"
|
|
>
|
|
<blockquote cite="{citationUrl}">
|
|
{#if quoteMark}
|
|
<span class="wire-next__blockquote-mark" aria-hidden="true">“</span>
|
|
{/if}
|
|
|
|
<div class="wire-next__blockquote-copy">
|
|
{#if quote}
|
|
<p>{quote}</p>
|
|
{:else}
|
|
<slot />
|
|
{/if}
|
|
</div>
|
|
</blockquote>
|
|
|
|
{#if citation || citationTitle || avatarSrc}
|
|
<figcaption class="wire-next__blockquote-citation">
|
|
{#if avatarSrc}
|
|
<img
|
|
class="wire-next__blockquote-avatar"
|
|
src="{avatarSrc}"
|
|
alt="{avatarAlt}"
|
|
loading="lazy"
|
|
/>
|
|
{/if}
|
|
|
|
<span class="wire-next__blockquote-attribution">
|
|
{#if citation}
|
|
{#if citationUrl}
|
|
<cite>
|
|
<a href="{citationUrl}">{citation}</a>
|
|
</cite>
|
|
{:else}
|
|
<cite>{citation}</cite>
|
|
{/if}
|
|
{/if}
|
|
{#if citationTitle}<span>{citationTitle}</span>{/if}
|
|
</span>
|
|
</figcaption>
|
|
{/if}
|
|
</figure>
|
|
}
|
|
}
|
|
</code></pre></section></article><aside class="on-this-page"><h2>On this page</h2><nav><a href="#usage">Usage</a><a href="#props">Props and attributes</a><a href="#slots">Slots</a><a href="#events">Events</a><a href="#source">Source contract</a></nav></aside></main>
|
|
<footer><div class="footer-brand"><span class="footer-mark" aria-hidden="true">W</span><p><strong>WRNexusJS 0.5.0</strong><span>Complete API documentation generated from installed package declarations.</span></p></div><nav aria-label="Footer"><a href="/packages">All packages</a><a href="/getting-started">Get started</a><a href="/security">Security</a><a href="/support">Support</a><a href="/llms.txt">AI guide</a></nav><p class="footer-meta">Private Developer Preview · Bun-native</p></footer>
|
|
<BackToTop />
|
|
</div>
|
|
}
|
|
}
|