Changes : 0.2.77

This commit is contained in:
2026-07-22 01:56:18 +05:30
parent 377a4e34bd
commit 1c033fcba0
979 changed files with 4451 additions and 4243 deletions
@@ -10,10 +10,10 @@ page ProductArchitectureDiagramcomponent {
<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.2.76</a><button data-wire-theme-toggle class="theme-button" aria-label="Toggle color theme" title="Toggle color theme">◐</button></div>
<div class="topbar-actions"><a class="preview-pill" href="/access">Private preview · v0.2.77</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">ProductArchitectureDiagram</span></nav><section class="doc-intro"><span class="eyebrow">visualization component</span><h1>ProductArchitectureDiagram</h1><p>Reusable product architecture diagram component.</p><div class="doc-meta"><span>@wrnexus/ui 0.2.76</span><span>6 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>&lt;ProductArchitectureDiagram
<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">ProductArchitectureDiagram</span></nav><section class="doc-intro"><span class="eyebrow">visualization component</span><h1>ProductArchitectureDiagram</h1><p>Reusable product architecture diagram component.</p><div class="doc-meta"><span>@wrnexus/ui 0.2.77</span><span>6 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>&lt;ProductArchitectureDiagram
title=&quot;title&quot;
value=&quot;value&quot;
description=&quot;description&quot;
@@ -28,24 +28,34 @@ page ProductArchitectureDiagramcomponent {
loading = false
class = &quot;&quot;
&#125;
view &#123;
&lt;figure aria-label=&quot;&#123;summary || title&#125;&quot; class=&quot;wire-card wire-catalog-visualization &#123;class&#125;&quot;&gt;
&lt;figcaption&gt;
&lt;strong data-show=&quot;title&quot;&gt;&#123;title&#125;&lt;/strong&gt;
&lt;span data-show=&quot;value&quot; class=&quot;wire-metric__value&quot;&gt;&#123;value&#125;&lt;/span&gt;
&lt;span data-show=&quot;description&quot; class=&quot;wire-muted&quot;&gt;&#123;description&#125;&lt;/span&gt;
&lt;/figcaption&gt;
&lt;div data-show=&quot;loading&quot; class=&quot;wire-skeleton wire-catalog-visualization__skeleton&quot;&gt;
&lt;section class=&quot;overflow-hidden rounded-3xl border border-[var(--wire-color-border,#e2e8f0)] bg-[var(--wire-color-surface,#ffffff)] shadow-[var(--wire-shadow-md,0_12px_30px_rgb(0_0_0/0.08))] &#123;class&#125;&quot; aria-label=&quot;&#123;title&#125;&quot;&gt;
&lt;header class=&quot;flex flex-col gap-4 border-b border-[var(--wire-color-border,#e2e8f0)] p-6 sm:flex-row sm:items-start sm:justify-between lg:p-8&quot;&gt;
&lt;div&gt;
&#123;#if title&#125;&lt;p class=&quot;m-0 font-semibold text-[var(--wire-color-text,#0f172a)]&quot;&gt;&#123;title&#125;&lt;/p&gt;&#123;/if&#125;
&#123;#if value&#125;&lt;strong class=&quot;mt-3 block text-3xl font-semibold tracking-[-0.04em] text-[var(--wire-color-text,#0f172a)] sm:text-4xl&quot;&gt;&#123;value&#125;&lt;/strong&gt;&#123;/if&#125;
&#123;#if description&#125;&lt;p class=&quot;mt-3 max-w-2xl leading-7 text-[var(--wire-color-text-muted,#64748b)]&quot;&gt;&#123;description&#125;&lt;/p&gt;&#123;/if&#125;
&lt;/div&gt;
&lt;div data-show=&quot;!loading&quot; class=&quot;wire-catalog-visualization__content&quot;&gt;
&#123;#if loading&#125;
&lt;span class=&quot;inline-flex w-max items-center gap-2 rounded-full bg-[var(--wire-color-surface-muted,#f8fafc)] px-3 py-1.5 text-xs font-semibold text-[var(--wire-color-text-muted,#64748b)]&quot;&gt;
&lt;span class=&quot;h-2 w-2 animate-pulse rounded-full bg-[var(--wire-color-primary,#059669)]&quot;&gt;
&lt;/span&gt;Loading
&lt;/span&gt;
&#123;/if&#125;
&lt;/header&gt;
&lt;div class=&quot;bg-[var(--wire-color-surface-muted,#f8fafc)] p-4 sm:p-6 lg:p-8 empty:hidden&quot;&gt;
&lt;slot /&gt;
&lt;/div&gt;
&lt;p data-show=&quot;summary&quot; class=&quot;wire-visually-hidden&quot;&gt;&#123;summary&#125;&lt;/p&gt;
&lt;/figure&gt;
&#123;#if summary&#125;
&lt;p class=&quot;m-0 border-t border-[var(--wire-color-border,#e2e8f0)] px-6 py-5 text-sm leading-6 text-[var(--wire-color-text-muted,#64748b)] lg:px-8&quot;&gt;&#123;summary&#125;&lt;/p&gt;
&#123;/if&#125;
&lt;/section&gt;
&#125;
&#125;
</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.2.76</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>
<footer><div class="footer-brand"><span class="footer-mark" aria-hidden="true">W</span><p><strong>WRNexusJS 0.2.77</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>
}