125 lines
484 KiB
Plaintext
125 lines
484 KiB
Plaintext
page wrnexusui {
|
||
seo {
|
||
title = "@wrnexus/ui"
|
||
description = "Themeable server-rendered UI components and CSS."
|
||
}
|
||
|
||
view {
|
||
<div class="docs-shell">
|
||
<a class="skip-link" href="#main">Skip to content</a>
|
||
<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="/language">Language</a><a href="/architecture">Architecture</a></nav>
|
||
<div class="topbar-actions"><a class="preview-pill" href="/access">Private preview · v0.2.59</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="/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="page package-page">
|
||
<aside class="sidebar"><a href="/packages">← All packages</a><span class="category">Frontend</span><h2>@wrnexus/ui</h2><p>Themeable server-rendered UI components and CSS.</p><span class="status status-beta">Private preview · 0.2.59</span><nav><a href="#access">Access</a><a href="#guide">Guide</a><a href="#api">Complete API</a></nav></aside>
|
||
<article id="main" class="documentation"><section class="doc-intro"><span class="eyebrow">Frontend · Preview</span><h1>@wrnexus/ui</h1><p>Themeable server-rendered UI components and CSS.</p><section id="access" class="access-callout"><h2>Private registry access required</h2><p>This package is not available from the public npm registry. After WorkRoot approves access and supplies private registry instructions, install the release-aligned package:</p><pre><code>bun add @wrnexus/ui@0.2.59</code><button type="button" class="copy-button" aria-label="Copy installation command">Copy</button></pre><p><a href="/access">Request preview access</a>. Never put registry tokens in source control.</p></section></section><section id="guide" class="prose"><blockquote>First-party Wire UI component library — a set of themeable <code>.wrn</code> components plus a single tokenized stylesheet.</blockquote>
|
||
<p>Part of the <strong>WRNexusJS</strong> framework — an SSR-first, Bun-native full-stack web framework.</p>
|
||
<h3 id="overview">Overview</h3>
|
||
<p><code>@wrnexus/ui</code> ships a library of server-rendered <code>.wrn</code> components (layout, form controls, and feedback UI) together with one themeable stylesheet, <code>ui.css</code>. The components are <strong>auto-discovered</strong> by the framework router — you don't import them in code. Once the package's component directory is on the router's scan path, you mount any component in a page with <code>data-component="<name>"</code>. Every visual is driven by <code>var(--wire-*)</code> theme tokens, so components restyle instantly when the theme changes. The tiny JS surface (<code>src/index.ts</code>) exists only so the toolchain (CLI build + dev server) can locate the component directory and stylesheet.</p>
|
||
<p>The complete PDF-aligned catalog currently contains <strong>891 components</strong>. The generated <code>COMPONENTS.md</code> and <code>component-reference.json</code> files document every mount name, prop, inferred type, default/required status, slot, event, category, and source file directly from the packaged <code>.wrn</code> source.</p>
|
||
<pre data-language="bash"><code>bun add @wrnexus/ui</code></pre>
|
||
<blockquote>Private package — the machine must be authenticated to the <code>wrnexus</code> npm org</blockquote>
|
||
<blockquote>(a read token in <code>~/.npmrc</code>). Requires <strong>Bun</strong> (Node is not supported).</blockquote>
|
||
<p>In practice you rarely install this directly: <code>@wrnexus/cli</code> and <code>@wrnexus/dev-server</code> already depend on it and wire it into the router for you (see [Auto-discovery](#auto-discovery)).</p>
|
||
<h3 id="components">Components</h3>
|
||
<p>Components live as <code>.wrn</code> files under <code>packages/ui/components/</code>. The mount name is the <strong>lowercase file basename</strong> (e.g. <code>button.wrn</code> → <code>data-component="button"</code>). Each accepts a <code>class</code> prop (appended to its root element) and most render their body from either a named prop or the default slot.</p>
|
||
<h4 id="layout">Layout</h4>
|
||
<div class="table-wrap"><table>
|
||
<thead><tr><th>Name</th><th>Purpose</th><th>Key props</th></tr></thead>
|
||
<tbody><tr><td><code>container</code></td><td>Max-width centered content wrapper</td><td><code>class</code></td></tr><tr><td><code>stack</code></td><td>Vertical column with gap</td><td><code>gap</code> (0–8)</td></tr><tr><td><code>hstack</code></td><td>Horizontal row with gap</td><td><code>gap</code> (0–8)</td></tr><tr><td><code>grid</code></td><td>CSS grid container</td><td>see source</td></tr><tr><td><code>divider</code></td><td>Horizontal rule</td><td><code>class</code></td></tr><tr><td><code>spacer</code></td><td>Flexible/empty spacing element</td><td>see source</td></tr></tbody></table></div>
|
||
<h4 id="core-feedback">Core / feedback</h4>
|
||
<div class="table-wrap"><table>
|
||
<thead><tr><th>Name</th><th>Purpose</th><th>Key props</th></tr></thead>
|
||
<tbody><tr><td><code>button</code></td><td>Button</td><td><code>label</code>, <code>variant</code> (<code>default</code>\</td><td><code>primary</code>\</td><td><code>danger</code>\</td><td><code>ghost</code>), <code>size</code> (<code>sm</code>\</td><td><code>md</code>\</td><td><code>lg</code>), <code>type</code></td></tr><tr><td><code>input</code></td><td>Text input</td><td>see source</td></tr><tr><td><code>textarea</code></td><td>Multi-line input</td><td>see source</td></tr><tr><td><code>checkbox</code></td><td>Checkbox</td><td>see source</td></tr><tr><td><code>badge</code></td><td>Small status badge</td><td><code>label</code>, <code>variant</code></td></tr><tr><td><code>alert</code></td><td>Callout box</td><td><code>variant</code> (<code>info</code>\</td><td><code>success</code>\</td><td><code>danger</code>\</td><td><code>warning</code>), <code>title</code>, <code>message</code></td></tr><tr><td><code>card</code></td><td>Padded, bordered surface</td><td><code>class</code></td></tr><tr><td><code>avatar</code></td><td>User avatar</td><td>see source</td></tr><tr><td><code>spinner</code></td><td>Loading indicator</td><td>see source</td></tr><tr><td><code>disclosure</code></td><td>Expandable details/summary</td><td>see source</td></tr><tr><td><code>theme-toggle</code></td><td>Theme switch button (binds <code>data-wire-theme-toggle</code>)</td><td><code>label</code></td></tr></tbody></table></div>
|
||
<h4 id="additional-controls-data-display">Additional controls & data display</h4>
|
||
<p>Also shipped: <code>select</code>, <code>radio</code>, <code>switch</code>, <code>progress</code>, <code>tag</code>, <code>skeleton</code>, <code>tooltip</code>, <code>table</code>, <code>FAQAccordion</code>, <code>AnnouncementBar</code>, and <code>BackToTop</code>.</p>
|
||
<p>The PDF-defined minimum release and essential build-first set also includes typed typography, form primitives, loading actions, combobox and multi-select, time/date-time and recurring schedule controls, confirmation dialogs, data tables, filters, desktop/mobile navigation, mega menus, marketing/product/legal page shells, product and metric cards, FAQ composition, pricing comparison, SDK tabs, legal navigation, and cookie preferences.</p>
|
||
<p><code>Seo</code> and <code>StructuredData</code> remain framework/page concerns rather than body components: use the native page <code>seo { ... }</code> block and document-head APIs so metadata is emitted in <code><head></code> instead of invalid component markup.</p>
|
||
<p>The authoritative, always-current list is <code>uiComponentNames()</code> (below), which reads the component directory at runtime.</p>
|
||
<p>For the full catalog, see [<code>COMPONENTS.md</code>](./COMPONENTS.md). The machine-readable equivalent is exported as <code>@wrnexus/ui/component-reference.json</code>.</p>
|
||
<h3 id="api">API</h3>
|
||
<p>The JS module (<code>@wrnexus/ui</code>) exposes four helpers used by the build tooling to locate the component assets. There is no component code to import — the components are <code>.wrn</code> files rendered server-side.</p>
|
||
<div class="table-wrap"><table>
|
||
<thead><tr><th>Export</th><th>Signature</th><th>Returns</th></tr></thead>
|
||
<tbody><tr><td><code>uiComponentsDir</code></td><td><code>() => string</code></td><td>Absolute path to the <code>.wrn</code> component directory (feed to <code>buildRouter</code>'s <code>componentDirs</code>).</td></tr><tr><td><code>uiCssPath</code></td><td><code>() => string</code></td><td>Absolute path to <code>ui.css</code>.</td></tr><tr><td><code>uiCss</code></td><td><code>() => string</code></td><td>The <code>ui.css</code> file contents (all <code>.wire-*</code> classes, themed via tokens).</td></tr><tr><td><code>uiComponentNames</code></td><td><code>() => string[]</code></td><td>Sorted list of built-in component names (e.g. for <code>wrnexus eject</code> listing).</td></tr></tbody></table></div>
|
||
<h4 id="ui-css-asset-export"><code>./ui.css</code> asset export</h4>
|
||
<p><code>package.json</code> also exposes the raw stylesheet as a subpath asset:</p>
|
||
<pre data-language="json"><code>"exports": {
|
||
".": "./src/index.ts",
|
||
"./ui.css": "./ui.css"
|
||
}</code></pre>
|
||
<p>The framework serves this stylesheet once at <code>/__wrnexus/ui.css</code>, so pages get all component styles from a single request.</p>
|
||
<h4 id="tailwind-and-motion">Tailwind and motion</h4>
|
||
<p>Components use static Tailwind utility classes alongside the shared <code>.wire-*</code> layer. If the package is consumed by a separate Tailwind build, include its component sources so every utility is generated:</p>
|
||
<pre data-language="css"><code>@import "tailwindcss";
|
||
@source "../node_modules/@wrnexus/ui/components/*.wrn";</code></pre>
|
||
<p>The shared stylesheet gives all component boundaries consistent, GPU-friendly entry and interaction motion. Override <code>--wire-motion-fast</code>, <code>--wire-motion-base</code>, <code>--wire-motion-slow</code>, <code>--wire-ease-standard</code>, or <code>--wire-ease-emphasized</code> to tune it. Hover lift is limited to precise pointing devices and <code>prefers-reduced-motion</code> is honored automatically.</p>
|
||
<h3 id="usage">Usage</h3>
|
||
<h4 id="auto-discovery">Auto-discovery</h4>
|
||
<p>The router scans extra <code>componentDirs</code> (in addition to the app's own <code>app/components</code>) and keys components by name. Library dirs are scanned <strong>first</strong> and <code>app/components</code> <strong>last</strong>, so an app component of the same name shadows the library's. The CLI build (<code>@wrnexus/cli</code>) and dev server (<code>@wrnexus/dev-server</code>) both wire the UI directory in for you:</p>
|
||
<pre data-language="ts"><code>import { buildRouter } from "@wrnexus/router";
|
||
import { uiComponentsDir } from "@wrnexus/ui";
|
||
|
||
const router = buildRouter(appDir, { componentDirs: [uiComponentsDir()] });</code></pre>
|
||
<h4 id="mounting-components-in-a-page">Mounting components in a page</h4>
|
||
<p>Once discovered, mount any component by name via <code>data-component</code>. Quoted attributes (other than <code>data-component</code>) become string props:</p>
|
||
<pre data-language="html"><code><div data-component="card">
|
||
<div data-component="badge" label="New"></div>
|
||
<button data-component="button" label="Save" variant="primary" size="lg"></button>
|
||
<div data-component="alert" variant="success" title="Done" message="Saved."></div>
|
||
</div></code></pre>
|
||
<h3 id="overrides">Overrides</h3>
|
||
<p>Ways to customize the components, in increasing order of power:</p>
|
||
<p>1. <strong>Theme tokens</strong> — override CSS custom properties such as <code>--wire-color-primary</code>, <code>--wire-color-surface</code>, <code>--wire-radius-sm</code>, etc. Every component style resolves through <code>var(--wire-*)</code>, so changing a token restyles everything instantly (including across theme switches). 2. <strong>App CSS</strong> — redefine a <code>.wire-*</code> class in your own stylesheet, which is loaded after <code>ui.css</code> and therefore wins. 3. <strong><code>class</code> prop</strong> — pass a <code>class</code> prop to a component; it is appended to the component's root element, letting you add per-instance classes without touching the base styles. 4. <strong><code>wrnexus eject <name></code></strong> — copy the component's <code>.wrn</code> source into your <code>app/components</code>, where (because app components shadow library ones) you fully own and can edit it. Use <code>uiComponentNames()</code> for the list of ejectable names.</p>
|
||
<h3 id="requirements-notes">Requirements / Notes</h3>
|
||
<ul>
|
||
<li><strong>Bun-only</strong> — the package uses standard fs/path/url APIs but is published and</li>
|
||
<p>consumed within the Bun-native WRNexusJS toolchain (Node is not supported).</p>
|
||
<li>Peer packages: components are discovered and rendered by</li>
|
||
<p>[<code>@wrnexus/router</code>](../router) (via <code>componentDirs</code>) and served by [<code>@wrnexus/dev-server</code>](../dev-server) / built by [<code>@wrnexus/cli</code>](../cli).</p>
|
||
<li>Depends on [<code>@wrnexus/core</code>](../core) (<code>dependencies</code>).</li>
|
||
<li><code>theme-toggle</code> relies on the framework's theme runtime, which binds the</li>
|
||
<p><code>data-wire-theme-toggle</code> attribute — no per-component JS is required.</p>
|
||
</ul></section><section id="api" class="prose api"><h2>Complete TypeScript API</h2><p>This declaration comes from the exact installed package and lists its exported functions, classes, interfaces, and types.</p><pre data-language="typescript"><code>/**
|
||
* @wrnexus/ui — the Wire UI component library.
|
||
*
|
||
* Components are `.wrn` files under `components/`, auto-discovered by the
|
||
* framework (the router scans this directory in addition to the app's own
|
||
* `app/components`). Mount them in any page with `data-component="<name>"`.
|
||
* Their styles live in a single themeable stylesheet, `ui.css`, served once at
|
||
* `/__wrnexus/ui.css` — every class uses `var(--wire-*)` theme tokens.
|
||
*
|
||
* Override, in increasing order of power:
|
||
* 1. theme tokens (change `--wire-color-primary`, etc.)
|
||
* 2. redefine a `.wire-*` class in your own CSS (loaded after ui.css)
|
||
* 3. pass a `class` prop (appended to the component root)
|
||
* 4. `wrnexus eject <name>` to copy the component into `app/components` and own it
|
||
*/
|
||
/** Absolute path to the directory of Wire UI component `.wrn` files. */
|
||
declare function uiComponentsDir(): string;
|
||
/** Absolute path to the Wire UI stylesheet. */
|
||
declare function uiCssPath(): string;
|
||
/** The Wire UI stylesheet contents (all `.wire-*` classes, themed via tokens). */
|
||
declare function uiCss(): string;
|
||
/** Names of the built-in components (e.g. for `wrnexus eject` listing). */
|
||
declare function uiComponentNames(): string[];
|
||
|
||
export { uiComponentNames, uiComponentsDir, uiCss, uiCssPath };
|
||
</code></pre></section><section id="examples" class="prose examples"><h2>Examples</h2><p>Examples are taken from this package's installed documentation and must be evaluated with its requirements and stability notes.</p><div class="example-grid"><article class="example-card"><h3>Auto-discovery</h3><pre data-language="ts"><code>import { buildRouter } from "@wrnexus/router";
|
||
import { uiComponentsDir } from "@wrnexus/ui";
|
||
|
||
const router = buildRouter(appDir, { componentDirs: [uiComponentsDir()] });</code></pre></article><article class="example-card"><h3>Mounting components in a page</h3><pre data-language="html"><code><div data-component="card">
|
||
<div data-component="badge" label="New"></div>
|
||
<button data-component="button" label="Save" variant="primary" size="lg"></button>
|
||
<div data-component="alert" variant="success" title="Done" message="Saved."></div>
|
||
</div></code></pre></article></div></section><section id="components" class="prose ui-component-reference"><h2>All 891 UI components and props</h2><p>This reference is generated from the exact installed <code>.wrn</code> sources. Required props have no default; optional props show their default value.</p><h3>Actions</h3><div class="table-wrap"><table><thead><tr><th>Component</th><th>Props</th><th>Slots</th><th>Events</th></tr></thead><tbody><tr><td><strong>AcceptAllCookiesButton</strong><br><code>data-component="AcceptAllCookiesButton"</code><br><small>Reusable accept all cookies button component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ArticleNewsletterCTA</strong><br><code>data-component="ArticleNewsletterCTA"</code><br><small>Reusable article newsletter c t a component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ArticleShareActions</strong><br><code>data-component="ArticleShareActions"</code><br><small>Reusable article share actions component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BackButton</strong><br><code>data-component="BackButton"</code><br><small>Reusable back button component.</small></td><td><code>label: string = "Action"</code><br><code>type: string = "button"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Button</strong><br><code>data-component="Button"</code><br><small>Reusable button component.</small></td><td><code>label: string = "Button"</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>size: string = "md"</code><br><code>disabled: boolean = false</code><br><code>loading: boolean = false</code><br><code>icon: string = ""</code><br><code>className: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>CenteredCTA</strong><br><code>data-component="CenteredCTA"</code><br><small>Reusable centered c t a component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ClearFiltersButton</strong><br><code>data-component="ClearFiltersButton"</code><br><small>Reusable clear filters button component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CloseButton</strong><br><code>data-component="CloseButton"</code><br><small>Reusable close button component.</small></td><td><code>label: string = "Action"</code><br><code>type: string = "button"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CodeCopyButton</strong><br><code>data-component="CodeCopyButton"</code><br><small>Reusable code copy button component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ContactCTA</strong><br><code>data-component="ContactCTA"</code><br><small>Reusable contact c t a component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ContactSalesButton</strong><br><code>data-component="ContactSalesButton"</code><br><small>Reusable contact sales button component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CopyButton</strong><br><code>data-component="CopyButton"</code><br><small>Reusable copy button component.</small></td><td><code>label: string = "Action"</code><br><code>type: string = "button"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CopyCodeButton</strong><br><code>data-component="CopyCodeButton"</code><br><small>Reusable copy code button component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DangerButton</strong><br><code>data-component="DangerButton"</code><br><small>Reusable danger button component.</small></td><td><code>label: string = "Action"</code><br><code>type: string = "button"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DeveloperCTA</strong><br><code>data-component="DeveloperCTA"</code><br><small>Reusable developer c t a component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DoNotSellLink</strong><br><code>data-component="DoNotSellLink"</code><br><small>Reusable do not sell link component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DownloadAction</strong><br><code>data-component="DownloadAction"</code><br><small>Reusable download action component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DownloadButton</strong><br><code>data-component="DownloadButton"</code><br><small>Reusable download button component.</small></td><td><code>label: string = "Action"</code><br><code>type: string = "button"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DownloadPolicyButton</strong><br><code>data-component="DownloadPolicyButton"</code><br><small>Reusable download policy button component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>EnterpriseCTA</strong><br><code>data-component="EnterpriseCTA"</code><br><small>Reusable enterprise c t a component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ErrorActions</strong><br><code>data-component="ErrorActions"</code><br><small>Reusable error actions component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ErrorSupportLink</strong><br><code>data-component="ErrorSupportLink"</code><br><small>Reusable error support link component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ExternalLink</strong><br><code>data-component="ExternalLink"</code><br><small>Reusable external link component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FieldActions</strong><br><code>data-component="FieldActions"</code><br><small>Reusable field actions component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FinalCTA</strong><br><code>data-component="FinalCTA"</code><br><small>Reusable final c t a component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FormActions</strong><br><code>data-component="FormActions"</code><br><small>Reusable form actions component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>GhostButton</strong><br><code>data-component="GhostButton"</code><br><small>Reusable ghost button component.</small></td><td><code>label: string = "Action"</code><br><code>type: string = "button"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>GradientCTA</strong><br><code>data-component="GradientCTA"</code><br><small>Reusable gradient c t a component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HeaderActions</strong><br><code>data-component="HeaderActions"</code><br><small>Reusable header actions component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HeroActions</strong><br><code>data-component="HeroActions"</code><br><small>Reusable hero actions component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HeroPrimaryAction</strong><br><code>data-component="HeroPrimaryAction"</code><br><small>Reusable hero primary action component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HeroSecondaryAction</strong><br><code>data-component="HeroSecondaryAction"</code><br><small>Reusable hero secondary action component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>IconButton</strong><br><code>data-component="IconButton"</code><br><small>Reusable icon button component.</small></td><td><code>label: string = "Action"</code><br><code>icon: string = "•"</code><br><code>variant: string = "ghost"</code><br><code>disabled: boolean = false</code></td><td>None</td><td>None</td></tr><tr><td><strong>LegalPrintButton</strong><br><code>data-component="LegalPrintButton"</code><br><small>Reusable legal print button component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LinkButton</strong><br><code>data-component="LinkButton"</code><br><small>Reusable link button component.</small></td><td><code>label: string = "Action"</code><br><code>type: string = "button"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LoadingButton</strong><br><code>data-component="LoadingButton"</code><br><small>Reusable loading button component.</small></td><td><code>label: string = "Continue"</code><br><code>loadingLabel: string = "Loading…"</code><br><code>loading: boolean = false</code><br><code>disabled: boolean = false</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>LocalizedRouteLink</strong><br><code>data-component="LocalizedRouteLink"</code><br><small>Reusable localized route link component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MobileMenuButton</strong><br><code>data-component="MobileMenuButton"</code><br><small>Reusable mobile menu button component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>NewsletterCTA</strong><br><code>data-component="NewsletterCTA"</code><br><small>Reusable newsletter c t a component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>OpenAPICTA</strong><br><code>data-component="OpenAPICTA"</code><br><small>Reusable open a p i c t a component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PasskeyButton</strong><br><code>data-component="PasskeyButton"</code><br><small>Reusable passkey button component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PlanCTA</strong><br><code>data-component="PlanCTA"</code><br><small>Reusable plan c t a component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PostmanCTA</strong><br><code>data-component="PostmanCTA"</code><br><small>Reusable postman c t a component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PrimaryButton</strong><br><code>data-component="PrimaryButton"</code><br><small>Reusable primary button component.</small></td><td><code>label: string = "Action"</code><br><code>type: string = "button"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PrintAction</strong><br><code>data-component="PrintAction"</code><br><small>Reusable print action component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PrintPolicyButton</strong><br><code>data-component="PrintPolicyButton"</code><br><small>Reusable print policy button component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProductCTA</strong><br><code>data-component="ProductCTA"</code><br><small>Reusable product c t a component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RejectOptionalCookiesButton</strong><br><code>data-component="RejectOptionalCookiesButton"</code><br><small>Reusable reject optional cookies button component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ReopenCookieSettingsButton</strong><br><code>data-component="ReopenCookieSettingsButton"</code><br><small>Reusable reopen cookie settings button component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ResponsibleDisclosureCTA</strong><br><code>data-component="ResponsibleDisclosureCTA"</code><br><small>Reusable responsible disclosure c t a component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SaveCookiePreferencesButton</strong><br><code>data-component="SaveCookiePreferencesButton"</code><br><small>Reusable save cookie preferences button component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SearchButton</strong><br><code>data-component="SearchButton"</code><br><small>Reusable search button component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SecondaryButton</strong><br><code>data-component="SecondaryButton"</code><br><small>Reusable secondary button component.</small></td><td><code>label: string = "Action"</code><br><code>type: string = "button"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SectionActions</strong><br><code>data-component="SectionActions"</code><br><small>Reusable section actions component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ShareAction</strong><br><code>data-component="ShareAction"</code><br><small>Reusable share action component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ShareButton</strong><br><code>data-component="ShareButton"</code><br><small>Reusable share button component.</small></td><td><code>label: string = "Action"</code><br><code>type: string = "button"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SignInLink</strong><br><code>data-component="SignInLink"</code><br><small>Reusable sign in link component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SkipLink</strong><br><code>data-component="SkipLink"</code><br><small>Reusable skip link component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SplitButton</strong><br><code>data-component="SplitButton"</code><br><small>Reusable split button component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SplitCTA</strong><br><code>data-component="SplitCTA"</code><br><small>Reusable split c t a component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>StartFreeButton</strong><br><code>data-component="StartFreeButton"</code><br><small>Reusable start free button component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TertiaryButton</strong><br><code>data-component="TertiaryButton"</code><br><small>Reusable tertiary button component.</small></td><td><code>label: string = "Action"</code><br><code>type: string = "button"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TextLink</strong><br><code>data-component="TextLink"</code><br><small>Reusable text link component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ToastAction</strong><br><code>data-component="ToastAction"</code><br><small>Reusable toast action component.</small></td><td><code>label: string = "Action"</code><br><code>href: string = ""</code><br><code>type: string = "button"</code><br><code>variant: string = "primary"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr></tbody></table></div><h3>Content</h3><div class="table-wrap"><table><thead><tr><th>Component</th><th>Props</th><th>Slots</th><th>Events</th></tr></thead><tbody><tr><td><strong>AccessibleAccordion</strong><br><code>data-component="AccessibleAccordion"</code><br><small>Reusable accessible accordion component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AccessibleCarousel</strong><br><code>data-component="AccessibleCarousel"</code><br><small>Reusable accessible carousel component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AccessibleChartSummary</strong><br><code>data-component="AccessibleChartSummary"</code><br><small>Reusable accessible chart summary component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AccessibleErrorSummary</strong><br><code>data-component="AccessibleErrorSummary"</code><br><small>Reusable accessible error summary component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AccessibleIcon</strong><br><code>data-component="AccessibleIcon"</code><br><small>Reusable accessible icon component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AccessibleTabs</strong><br><code>data-component="AccessibleTabs"</code><br><small>Reusable accessible tabs component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AccessibleTooltip</strong><br><code>data-component="AccessibleTooltip"</code><br><small>Reusable accessible tooltip component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Accordion</strong><br><code>data-component="Accordion"</code><br><small>Reusable accordion component.</small></td><td><code>title: string = "Question"</code><br><code>open: boolean = false</code></td><td><code>default</code></td><td><code>click</code></td></tr><tr><td><strong>AddOnCard</strong><br><code>data-component="AddOnCard"</code><br><small>Reusable add on card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AddressPreview</strong><br><code>data-component="AddressPreview"</code><br><small>Reusable address preview component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AdvancedFilterBuilder</strong><br><code>data-component="AdvancedFilterBuilder"</code><br><small>Reusable advanced filter builder component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AnalyticsDashboardPreview</strong><br><code>data-component="AnalyticsDashboardPreview"</code><br><small>Reusable analytics dashboard preview component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ApiEndpointCard</strong><br><code>data-component="ApiEndpointCard"</code><br><small>Reusable api endpoint card component.</small></td><td><code>method: string = "GET"</code><br><code>path: string = "/api/example"</code><br><code>description: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ApiErrorExample</strong><br><code>data-component="ApiErrorExample"</code><br><small>Reusable api error example component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ApiKeyDisplay</strong><br><code>data-component="ApiKeyDisplay"</code><br><small>Reusable api key display component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ApiRequestExample</strong><br><code>data-component="ApiRequestExample"</code><br><small>Reusable api request example component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ApiResponseExample</strong><br><code>data-component="ApiResponseExample"</code><br><small>Reusable api response example component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ApiSchemaViewer</strong><br><code>data-component="ApiSchemaViewer"</code><br><small>Reusable api schema viewer component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AssetCard</strong><br><code>data-component="AssetCard"</code><br><small>Reusable asset card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AttachmentUpload</strong><br><code>data-component="AttachmentUpload"</code><br><small>Reusable attachment upload component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AudioUpload</strong><br><code>data-component="AudioUpload"</code><br><small>Reusable audio upload component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AuditLogPreview</strong><br><code>data-component="AuditLogPreview"</code><br><small>Reusable audit log preview component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AuthorAvatar</strong><br><code>data-component="AuthorAvatar"</code><br><small>Reusable author avatar component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AuthorCard</strong><br><code>data-component="AuthorCard"</code><br><small>Reusable author card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AuthorizedApplicationCard</strong><br><code>data-component="AuthorizedApplicationCard"</code><br><small>Reusable authorized application card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AutomationExampleCard</strong><br><code>data-component="AutomationExampleCard"</code><br><small>Reusable automation example card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AvailabilityCalendar</strong><br><code>data-component="AvailabilityCalendar"</code><br><small>Reusable availability calendar component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Avatar</strong><br><code>data-component="Avatar"</code><br><small>Reusable avatar component.</small></td><td><code>src: string = ""</code><br><code>alt: string = ""</code><br><code>initials: string = "WR"</code><br><code>size: string = "md"</code></td><td>None</td><td>None</td></tr><tr><td><strong>AvatarUpload</strong><br><code>data-component="AvatarUpload"</code><br><small>Reusable avatar upload component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BankTransferDetails</strong><br><code>data-component="BankTransferDetails"</code><br><small>Reusable bank transfer details component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BillingAddressForm</strong><br><code>data-component="BillingAddressForm"</code><br><small>Reusable billing address form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BillingExample</strong><br><code>data-component="BillingExample"</code><br><small>Reusable billing example component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BlogCard</strong><br><code>data-component="BlogCard"</code><br><small>Reusable blog card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BlogSearch</strong><br><code>data-component="BlogSearch"</code><br><small>Reusable blog search component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BodyText</strong><br><code>data-component="BodyText"</code><br><small>Reusable body text component.</small></td><td><code>text: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BudgetRangeSlider</strong><br><code>data-component="BudgetRangeSlider"</code><br><small>Reusable budget range slider component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Calendar</strong><br><code>data-component="Calendar"</code><br><small>Reusable calendar component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CampaignCard</strong><br><code>data-component="CampaignCard"</code><br><small>Reusable campaign card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CampaignPerformancePreview</strong><br><code>data-component="CampaignPerformancePreview"</code><br><small>Reusable campaign performance preview component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Card</strong><br><code>data-component="Card"</code><br><small>Reusable card component.</small></td><td><code>variant: string = "default"</code><br><code>padding: string = "md"</code><br><code>interactive: boolean = false</code><br><code>className: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CardPaymentForm</strong><br><code>data-component="CardPaymentForm"</code><br><small>Reusable card payment form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CareerApplicationForm</strong><br><code>data-component="CareerApplicationForm"</code><br><small>Reusable career application form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Carousel</strong><br><code>data-component="Carousel"</code><br><small>Reusable carousel component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CaseStudyCard</strong><br><code>data-component="CaseStudyCard"</code><br><small>Reusable case study card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CaseStudyPreview</strong><br><code>data-component="CaseStudyPreview"</code><br><small>Reusable case study preview component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CertificateUpload</strong><br><code>data-component="CertificateUpload"</code><br><small>Reusable certificate upload component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ChannelCard</strong><br><code>data-component="ChannelCard"</code><br><small>Reusable channel card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ChannelIcon</strong><br><code>data-component="ChannelIcon"</code><br><small>Reusable channel icon component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ChartTooltip</strong><br><code>data-component="ChartTooltip"</code><br><small>Reusable chart tooltip component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Checklist</strong><br><code>data-component="Checklist"</code><br><small>Reusable checklist component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ClickableCard</strong><br><code>data-component="ClickableCard"</code><br><small>Reusable clickable card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Code</strong><br><code>data-component="Code"</code><br><small>Reusable code component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CodeBlock</strong><br><code>data-component="CodeBlock"</code><br><small>Reusable code block component.</small></td><td><code>language: string = "text"</code><br><code>filename: string = ""</code><br><code>code: string = ""</code></td><td>None</td><td><code>click</code></td></tr><tr><td><strong>CodeTabs</strong><br><code>data-component="CodeTabs"</code><br><small>Reusable code tabs component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CodeText</strong><br><code>data-component="CodeText"</code><br><small>Reusable code text component.</small></td><td><code>text: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ColorSwatch</strong><br><code>data-component="ColorSwatch"</code><br><small>Reusable color swatch component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CommandBlock</strong><br><code>data-component="CommandBlock"</code><br><small>Reusable command block component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ComplianceProgramCard</strong><br><code>data-component="ComplianceProgramCard"</code><br><small>Reusable compliance program card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ConnectedAccountCard</strong><br><code>data-component="ConnectedAccountCard"</code><br><small>Reusable connected account card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ConnectionCard</strong><br><code>data-component="ConnectionCard"</code><br><small>Reusable connection card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ConsentTimelinePreview</strong><br><code>data-component="ConsentTimelinePreview"</code><br><small>Reusable consent timeline preview component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ContactCard</strong><br><code>data-component="ContactCard"</code><br><small>Reusable contact card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ContactForm</strong><br><code>data-component="ContactForm"</code><br><small>Reusable contact form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ContactSalesForm</strong><br><code>data-component="ContactSalesForm"</code><br><small>Reusable contact sales form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ContextSwitcher</strong><br><code>data-component="ContextSwitcher"</code><br><small>Reusable context switcher component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ConversationPreview</strong><br><code>data-component="ConversationPreview"</code><br><small>Reusable conversation preview component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CostSummary</strong><br><code>data-component="CostSummary"</code><br><small>Reusable cost summary component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CronBuilder</strong><br><code>data-component="CronBuilder"</code><br><small>Reusable cron builder component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CsvUpload</strong><br><code>data-component="CsvUpload"</code><br><small>Reusable csv upload component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CustomerLogo</strong><br><code>data-component="CustomerLogo"</code><br><small>Reusable customer logo component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CustomerStoryCard</strong><br><code>data-component="CustomerStoryCard"</code><br><small>Reusable customer story card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DataProtectionCard</strong><br><code>data-component="DataProtectionCard"</code><br><small>Reusable data protection card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DateRangeCalendar</strong><br><code>data-component="DateRangeCalendar"</code><br><small>Reusable date range calendar component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DateRangeSlider</strong><br><code>data-component="DateRangeSlider"</code><br><small>Reusable date range slider component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DeliveryPreview</strong><br><code>data-component="DeliveryPreview"</code><br><small>Reusable delivery preview component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DemoRequestForm</strong><br><code>data-component="DemoRequestForm"</code><br><small>Reusable demo request form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DeveloperSearch</strong><br><code>data-component="DeveloperSearch"</code><br><small>Reusable developer search component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DeviceCard</strong><br><code>data-component="DeviceCard"</code><br><small>Reusable device card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DocumentPreview</strong><br><code>data-component="DocumentPreview"</code><br><small>Reusable document preview component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DocumentUpload</strong><br><code>data-component="DocumentUpload"</code><br><small>Reusable document upload component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DownloadGateForm</strong><br><code>data-component="DownloadGateForm"</code><br><small>Reusable download gate form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DownloadResourceForm</strong><br><code>data-component="DownloadResourceForm"</code><br><small>Reusable download resource form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DurationSlider</strong><br><code>data-component="DurationSlider"</code><br><small>Reusable duration slider component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ElevatedCard</strong><br><code>data-component="ElevatedCard"</code><br><small>Reusable elevated card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>EmailComposer</strong><br><code>data-component="EmailComposer"</code><br><small>Reusable email composer component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>EnterprisePricingCard</strong><br><code>data-component="EnterprisePricingCard"</code><br><small>Reusable enterprise pricing card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>EnvironmentSwitcher</strong><br><code>data-component="EnvironmentSwitcher"</code><br><small>Reusable environment switcher component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ErrorCard</strong><br><code>data-component="ErrorCard"</code><br><small>Reusable error card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ErrorCode</strong><br><code>data-component="ErrorCode"</code><br><small>Reusable error code component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ErrorIllustration</strong><br><code>data-component="ErrorIllustration"</code><br><small>Reusable error illustration component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ErrorPage</strong><br><code>data-component="ErrorPage"</code><br><small>Reusable error page component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>EstimatedCostSummary</strong><br><code>data-component="EstimatedCostSummary"</code><br><small>Reusable estimated cost summary component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ExpandableText</strong><br><code>data-component="ExpandableText"</code><br><small>Reusable expandable text component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>EyebrowText</strong><br><code>data-component="EyebrowText"</code><br><small>Reusable eyebrow text component.</small></td><td><code>text: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FactorCard</strong><br><code>data-component="FactorCard"</code><br><small>Reusable factor card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FallbackRouteBuilder</strong><br><code>data-component="FallbackRouteBuilder"</code><br><small>Reusable fallback route builder component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FaviconUpload</strong><br><code>data-component="FaviconUpload"</code><br><small>Reusable favicon upload component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FeatureCard</strong><br><code>data-component="FeatureCard"</code><br><small>Reusable feature card component.</small></td><td><code>icon: string = "✦"</code><br><code>title: string = "Feature"</code><br><code>description: string = ""</code><br><code>href: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>FeatureChecklist</strong><br><code>data-component="FeatureChecklist"</code><br><small>Reusable feature checklist component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FeaturedBlogCard</strong><br><code>data-component="FeaturedBlogCard"</code><br><small>Reusable featured blog card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FeatureIconCard</strong><br><code>data-component="FeatureIconCard"</code><br><small>Reusable feature icon card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FeatureTabs</strong><br><code>data-component="FeatureTabs"</code><br><small>Reusable feature tabs component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FileSizeLabel</strong><br><code>data-component="FileSizeLabel"</code><br><small>Reusable file size label component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FileUpload</strong><br><code>data-component="FileUpload"</code><br><small>Reusable file upload component.</small></td><td><code>id: string = "file"</code><br><code>name: string = "file"</code><br><code>label: string = "Upload file"</code><br><code>accept: string = ""</code><br><code>multiple: boolean = false</code><br><code>help: string = "Drag and drop or browse"</code></td><td>None</td><td>None</td></tr><tr><td><strong>FooterLanguageSwitcher</strong><br><code>data-component="FooterLanguageSwitcher"</code><br><small>Reusable footer language switcher component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ForbiddenPage</strong><br><code>data-component="ForbiddenPage"</code><br><small>Reusable forbidden page component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ForgotPasswordForm</strong><br><code>data-component="ForgotPasswordForm"</code><br><small>Reusable forgot password form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Form</strong><br><code>data-component="Form"</code><br><small>Reusable form component.</small></td><td><code>action: string = ""</code><br><code>method: string = "post"</code><br><code>name: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FormErrorSummary</strong><br><code>data-component="FormErrorSummary"</code><br><small>Reusable form error summary component.</small></td><td><code>title: string = "Please fix the following"</code><br><code>visible: boolean = true</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FormHelpText</strong><br><code>data-component="FormHelpText"</code><br><small>Reusable form help text component.</small></td><td><code>id: string = ""</code><br><code>text: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FormLabel</strong><br><code>data-component="FormLabel"</code><br><small>Reusable form label component.</small></td><td><code>for: string = ""</code><br><code>label: string = "Label"</code><br><code>required: boolean = false</code><br><code>optional: boolean = false</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>GlassCard</strong><br><code>data-component="GlassCard"</code><br><small>Reusable glass card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>GlobalSearch</strong><br><code>data-component="GlobalSearch"</code><br><small>Reusable global search component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>GuideCard</strong><br><code>data-component="GuideCard"</code><br><small>Reusable guide card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>GuideChecklist</strong><br><code>data-component="GuideChecklist"</code><br><small>Reusable guide checklist component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>GuideStep</strong><br><code>data-component="GuideStep"</code><br><small>Reusable guide step component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HeroGradientText</strong><br><code>data-component="HeroGradientText"</code><br><small>Reusable hero gradient text component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HeroProductPreview</strong><br><code>data-component="HeroProductPreview"</code><br><small>Reusable hero product preview component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HeroTrustText</strong><br><code>data-component="HeroTrustText"</code><br><small>Reusable hero trust text component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HighlightText</strong><br><code>data-component="HighlightText"</code><br><small>Reusable highlight text component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HolidayCalendar</strong><br><code>data-component="HolidayCalendar"</code><br><small>Reusable holiday calendar component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HumanApprovalStep</strong><br><code>data-component="HumanApprovalStep"</code><br><small>Reusable human approval step component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Icon</strong><br><code>data-component="Icon"</code><br><small>Reusable icon component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Illustration</strong><br><code>data-component="Illustration"</code><br><small>Reusable illustration component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ImageCompressionPreview</strong><br><code>data-component="ImageCompressionPreview"</code><br><small>Reusable image compression preview component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ImageUpload</strong><br><code>data-component="ImageUpload"</code><br><small>Reusable image upload component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>IncidentCard</strong><br><code>data-component="IncidentCard"</code><br><small>Reusable incident card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>InfoCard</strong><br><code>data-component="InfoCard"</code><br><small>Reusable info card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>InlineCode</strong><br><code>data-component="InlineCode"</code><br><small>Reusable inline code component.</small></td><td><code>text: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>IntegrationCard</strong><br><code>data-component="IntegrationCard"</code><br><small>Reusable integration card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>InvoiceLineItem</strong><br><code>data-component="InvoiceLineItem"</code><br><small>Reusable invoice line item component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>InvoiceSummary</strong><br><code>data-component="InvoiceSummary"</code><br><small>Reusable invoice summary component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>JobCard</strong><br><code>data-component="JobCard"</code><br><small>Reusable job card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>JsonViewer</strong><br><code>data-component="JsonViewer"</code><br><small>Reusable json viewer component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>KycDocumentUpload</strong><br><code>data-component="KycDocumentUpload"</code><br><small>Reusable kyc document upload component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LanguageSwitcher</strong><br><code>data-component="LanguageSwitcher"</code><br><small>Reusable language switcher component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LeadText</strong><br><code>data-component="LeadText"</code><br><small>Reusable lead text component.</small></td><td><code>text: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LegalContactBlock</strong><br><code>data-component="LegalContactBlock"</code><br><small>Reusable legal contact block component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LegalSummary</strong><br><code>data-component="LegalSummary"</code><br><small>Reusable legal summary component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Logo</strong><br><code>data-component="Logo"</code><br><small>Reusable logo component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LogoUpload</strong><br><code>data-component="LogoUpload"</code><br><small>Reusable logo upload component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MaintenanceCard</strong><br><code>data-component="MaintenanceCard"</code><br><small>Reusable maintenance card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MaintenancePage</strong><br><code>data-component="MaintenancePage"</code><br><small>Reusable maintenance page component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MessageComposer</strong><br><code>data-component="MessageComposer"</code><br><small>Reusable message composer component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MessageComposerPreview</strong><br><code>data-component="MessageComposerPreview"</code><br><small>Reusable message composer preview component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MessagePreview</strong><br><code>data-component="MessagePreview"</code><br><small>Reusable message preview component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MessageVolumeSlider</strong><br><code>data-component="MessageVolumeSlider"</code><br><small>Reusable message volume slider component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MetricCard</strong><br><code>data-component="MetricCard"</code><br><small>Reusable metric card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MetricText</strong><br><code>data-component="MetricText"</code><br><small>Reusable metric text component.</small></td><td><code>text: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MobileTableCard</strong><br><code>data-component="MobileTableCard"</code><br><small>Reusable mobile table card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MultiFileUpload</strong><br><code>data-component="MultiFileUpload"</code><br><small>Reusable multi file upload component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MutedText</strong><br><code>data-component="MutedText"</code><br><small>Reusable muted text component.</small></td><td><code>text: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>NavigationItem</strong><br><code>data-component="NavigationItem"</code><br><small>Reusable navigation item component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>NewsletterForm</strong><br><code>data-component="NewsletterForm"</code><br><small>Reusable newsletter form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>NotFoundPage</strong><br><code>data-component="NotFoundPage"</code><br><small>Reusable not found page component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>NotificationCard</strong><br><code>data-component="NotificationCard"</code><br><small>Reusable notification card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>OfficeCard</strong><br><code>data-component="OfficeCard"</code><br><small>Reusable office card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>OfflinePage</strong><br><code>data-component="OfflinePage"</code><br><small>Reusable offline page component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>OneTimeSecretDisplay</strong><br><code>data-component="OneTimeSecretDisplay"</code><br><small>Reusable one time secret display component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>OpacitySlider</strong><br><code>data-component="OpacitySlider"</code><br><small>Reusable opacity slider component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>OtpVerificationForm</strong><br><code>data-component="OtpVerificationForm"</code><br><small>Reusable otp verification form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>OutlinedCard</strong><br><code>data-component="OutlinedCard"</code><br><small>Reusable outlined card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PartnerApplicationForm</strong><br><code>data-component="PartnerApplicationForm"</code><br><small>Reusable partner application form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PartnerProgramCard</strong><br><code>data-component="PartnerProgramCard"</code><br><small>Reusable partner program card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PaymentMethodCard</strong><br><code>data-component="PaymentMethodCard"</code><br><small>Reusable payment method card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PdfPreview</strong><br><code>data-component="PdfPreview"</code><br><small>Reusable pdf preview component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PlatformPillarCard</strong><br><code>data-component="PlatformPillarCard"</code><br><small>Reusable platform pillar card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PressReleaseCard</strong><br><code>data-component="PressReleaseCard"</code><br><small>Reusable press release card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PriceRangeSlider</strong><br><code>data-component="PriceRangeSlider"</code><br><small>Reusable price range slider component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PriceText</strong><br><code>data-component="PriceText"</code><br><small>Reusable price text component.</small></td><td><code>text: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PricingCard</strong><br><code>data-component="PricingCard"</code><br><small>Reusable pricing card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PricingContactForm</strong><br><code>data-component="PricingContactForm"</code><br><small>Reusable pricing contact form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PricingPlanCard</strong><br><code>data-component="PricingPlanCard"</code><br><small>Reusable pricing plan card component.</small></td><td><code>name: string = "Starter"</code><br><code>description: string = ""</code><br><code>price: string = "₹0"</code><br><code>period: string = "/month"</code><br><code>featured: boolean = false</code><br><code>ctaLabel: string = "Choose plan"</code><br><code>ctaHref: string = "#"</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProductCard</strong><br><code>data-component="ProductCard"</code><br><small>Reusable product card component.</small></td><td><code>eyebrow: string = "Product"</code><br><code>title: string = "Product name"</code><br><code>description: string = ""</code><br><code>href: string = "#"</code><br><code>actionLabel: string = "Learn more"</code><br><code>status: string = ""</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>ProductIcon</strong><br><code>data-component="ProductIcon"</code><br><small>Reusable product icon component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProductLogo</strong><br><code>data-component="ProductLogo"</code><br><small>Reusable product logo component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProductMiniCard</strong><br><code>data-component="ProductMiniCard"</code><br><small>Reusable product mini card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProductNavigationCard</strong><br><code>data-component="ProductNavigationCard"</code><br><small>Reusable product navigation card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProgressSlider</strong><br><code>data-component="ProgressSlider"</code><br><small>Reusable progress slider component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProjectCard</strong><br><code>data-component="ProjectCard"</code><br><small>Reusable project card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProjectSwitcher</strong><br><code>data-component="ProjectSwitcher"</code><br><small>Reusable project switcher component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PublicHeaderLogo</strong><br><code>data-component="PublicHeaderLogo"</code><br><small>Reusable public header logo component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PushComposer</strong><br><code>data-component="PushComposer"</code><br><small>Reusable push composer component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>QrCode</strong><br><code>data-component="QrCode"</code><br><small>Reusable qr code component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>QuantityStepper</strong><br><code>data-component="QuantityStepper"</code><br><small>Reusable quantity stepper component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>QuoteText</strong><br><code>data-component="QuoteText"</code><br><small>Reusable quote text component.</small></td><td><code>text: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RangeSlider</strong><br><code>data-component="RangeSlider"</code><br><small>Reusable range slider component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RateLimitPage</strong><br><code>data-component="RateLimitPage"</code><br><small>Reusable rate limit page component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RatingSlider</strong><br><code>data-component="RatingSlider"</code><br><small>Reusable rating slider component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RecoveryCodeForm</strong><br><code>data-component="RecoveryCodeForm"</code><br><small>Reusable recovery code form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RecurrenceRuleBuilder</strong><br><code>data-component="RecurrenceRuleBuilder"</code><br><small>Reusable recurrence rule builder component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ReportCard</strong><br><code>data-component="ReportCard"</code><br><small>Reusable report card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RequestResponseViewer</strong><br><code>data-component="RequestResponseViewer"</code><br><small>Reusable request response viewer component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RequestViewer</strong><br><code>data-component="RequestViewer"</code><br><small>Reusable request viewer component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ResetPasswordForm</strong><br><code>data-component="ResetPasswordForm"</code><br><small>Reusable reset password form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ResourceCard</strong><br><code>data-component="ResourceCard"</code><br><small>Reusable resource card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ResourceDownloadCard</strong><br><code>data-component="ResourceDownloadCard"</code><br><small>Reusable resource download card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ResourceSearch</strong><br><code>data-component="ResourceSearch"</code><br><small>Reusable resource search component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ResponseViewer</strong><br><code>data-component="ResponseViewer"</code><br><small>Reusable response viewer component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SDKCard</strong><br><code>data-component="SDKCard"</code><br><small>Reusable s d k card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SDKLanguageTabs</strong><br><code>data-component="SDKLanguageTabs"</code><br><small>Reusable s d k language tabs component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SearchCategoryTabs</strong><br><code>data-component="SearchCategoryTabs"</code><br><small>Reusable search category tabs component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SearchResultItem</strong><br><code>data-component="SearchResultItem"</code><br><small>Reusable search result item component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SecretDisplay</strong><br><code>data-component="SecretDisplay"</code><br><small>Reusable secret display component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SecurityContactCard</strong><br><code>data-component="SecurityContactCard"</code><br><small>Reusable security contact card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SecurityFeatureCard</strong><br><code>data-component="SecurityFeatureCard"</code><br><small>Reusable security feature card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SecurityReportForm</strong><br><code>data-component="SecurityReportForm"</code><br><small>Reusable security report form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ServerErrorPage</strong><br><code>data-component="ServerErrorPage"</code><br><small>Reusable server error page component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SessionCard</strong><br><code>data-component="SessionCard"</code><br><small>Reusable session card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SetupChecklist</strong><br><code>data-component="SetupChecklist"</code><br><small>Reusable setup checklist component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SignInForm</strong><br><code>data-component="SignInForm"</code><br><small>Reusable sign in form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SignUpForm</strong><br><code>data-component="SignUpForm"</code><br><small>Reusable sign up form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SiteSearch</strong><br><code>data-component="SiteSearch"</code><br><small>Reusable site search component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Slider</strong><br><code>data-component="Slider"</code><br><small>Reusable slider component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SmallText</strong><br><code>data-component="SmallText"</code><br><small>Reusable small text component.</small></td><td><code>text: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SmsComposer</strong><br><code>data-component="SmsComposer"</code><br><small>Reusable sms composer component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>StatCard</strong><br><code>data-component="StatCard"</code><br><small>Reusable stat card component.</small></td><td><code>label: string = "Metric"</code><br><code>value: string = "0"</code><br><code>change: string = ""</code><br><code>trend: string = "neutral"</code></td><td>None</td><td>None</td></tr><tr><td><strong>StatusSubscribeForm</strong><br><code>data-component="StatusSubscribeForm"</code><br><small>Reusable status subscribe form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Stepper</strong><br><code>data-component="Stepper"</code><br><small>Reusable stepper component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SuccessCard</strong><br><code>data-component="SuccessCard"</code><br><small>Reusable success card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SupportRequestForm</strong><br><code>data-component="SupportRequestForm"</code><br><small>Reusable support request form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Tabs</strong><br><code>data-component="Tabs"</code><br><small>Reusable tabs component.</small></td><td><code>active: string = "first"</code></td><td><code>first</code><br><code>second</code></td><td><code>click</code></td></tr><tr><td><strong>TeamMemberCard</strong><br><code>data-component="TeamMemberCard"</code><br><small>Reusable team member card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TemplateCard</strong><br><code>data-component="TemplateCard"</code><br><small>Reusable template card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TerminalBlock</strong><br><code>data-component="TerminalBlock"</code><br><small>Reusable terminal block component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TestimonialCard</strong><br><code>data-component="TestimonialCard"</code><br><small>Reusable testimonial card component.</small></td><td><code>quote: string = "Great product."</code><br><code>name: string = "Customer"</code><br><code>role: string = ""</code><br><code>company: string = ""</code><br><code>avatar: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>TestimonialCarousel</strong><br><code>data-component="TestimonialCarousel"</code><br><small>Reusable testimonial carousel component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ThemeSwitcher</strong><br><code>data-component="ThemeSwitcher"</code><br><small>Reusable theme switcher component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TimelineItem</strong><br><code>data-component="TimelineItem"</code><br><small>Reusable timeline item component.</small></td><td><code>title: string = "Event"</code><br><code>date: string = ""</code><br><code>description: string = ""</code><br><code>status: string = "default"</code></td><td>None</td><td>None</td></tr><tr><td><strong>ToastIcon</strong><br><code>data-component="ToastIcon"</code><br><small>Reusable toast icon component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Tooltip</strong><br><code>data-component="Tooltip"</code><br><small>Reusable tooltip component.</small></td><td><code>text: string = "Helpful information"</code><br><code>position: string = "top"</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TotpVerificationForm</strong><br><code>data-component="TotpVerificationForm"</code><br><small>Reusable totp verification form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TranslatedText</strong><br><code>data-component="TranslatedText"</code><br><small>Reusable translated text component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TruncatedText</strong><br><code>data-component="TruncatedText"</code><br><small>Reusable truncated text component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>UnifiedTimelinePreview</strong><br><code>data-component="UnifiedTimelinePreview"</code><br><small>Reusable unified timeline preview component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>UploadItem</strong><br><code>data-component="UploadItem"</code><br><small>Reusable upload item component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>UploadPreview</strong><br><code>data-component="UploadPreview"</code><br><small>Reusable upload preview component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>UserCard</strong><br><code>data-component="UserCard"</code><br><small>Reusable user card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ValueCard</strong><br><code>data-component="ValueCard"</code><br><small>Reusable value card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>VerticalTabs</strong><br><code>data-component="VerticalTabs"</code><br><small>Reusable vertical tabs component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>VideoCard</strong><br><code>data-component="VideoCard"</code><br><small>Reusable video card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>VideoUpload</strong><br><code>data-component="VideoUpload"</code><br><small>Reusable video upload component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>VoiceScriptComposer</strong><br><code>data-component="VoiceScriptComposer"</code><br><small>Reusable voice script composer component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>VolumeSlider</strong><br><code>data-component="VolumeSlider"</code><br><small>Reusable volume slider component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WarningCard</strong><br><code>data-component="WarningCard"</code><br><small>Reusable warning card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WebhookEventCard</strong><br><code>data-component="WebhookEventCard"</code><br><small>Reusable webhook event card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WebhookPayloadViewer</strong><br><code>data-component="WebhookPayloadViewer"</code><br><small>Reusable webhook payload viewer component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WebinarCard</strong><br><code>data-component="WebinarCard"</code><br><small>Reusable webinar card component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WebinarRegistrationForm</strong><br><code>data-component="WebinarRegistrationForm"</code><br><small>Reusable webinar registration form component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WhatsAppComposer</strong><br><code>data-component="WhatsAppComposer"</code><br><small>Reusable whats app composer component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Wizard</strong><br><code>data-component="Wizard"</code><br><small>Reusable wizard component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WorkflowCanvasPreview</strong><br><code>data-component="WorkflowCanvasPreview"</code><br><small>Reusable workflow canvas preview component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WorkspaceCard</strong><br><code>data-component="WorkspaceCard"</code><br><small>Reusable workspace card component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WorkspaceSwitcher</strong><br><code>data-component="WorkspaceSwitcher"</code><br><small>Reusable workspace switcher component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ZoomSlider</strong><br><code>data-component="ZoomSlider"</code><br><small>Reusable zoom slider component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>image: string = ""</code><br><code>alt: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr></tbody></table></div><h3>Core</h3><div class="table-wrap"><table><thead><tr><th>Component</th><th>Props</th><th>Slots</th><th>Events</th></tr></thead><tbody><tr><td><strong>AnnouncementBar</strong><br><code>data-component="AnnouncementBar"</code><br><small>Reusable announcement bar component.</small></td><td><code>badge: string = "New"</code><br><code>message: string = "WRNexusJS Organizations is now available."</code><br><code>description: string = "Build secure multi-tenant applications with teams, roles, domains, and enterprise SSO."</code><br><code>href: string = "/organizations"</code><br><code>actionLabel: string = "Explore organizations"</code><br><code>ariaLabel: string = "Announcement"</code></td><td>None</td><td><code>click</code></td></tr><tr><td><strong>AspectRatio</strong><br><code>data-component="AspectRatio"</code><br><small>Reusable aspect ratio component.</small></td><td><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BackToTop</strong><br><code>data-component="BackToTop"</code><br><small>Reusable back to top component.</small></td><td><code>label: string = "Back to top"</code><br><code>assistiveLabel: string = "Return to the top of the page"</code><br><code>threshold: number = 500</code></td><td>None</td><td><code>click</code></td></tr><tr><td><strong>Breadcrumbs</strong><br><code>data-component="Breadcrumbs"</code><br><small>Reusable breadcrumbs component.</small></td><td><code>homeLabel: string = "Home"</code><br><code>homeHref: string = "/"</code><br><code>current: string = "Current page"</code></td><td>None</td><td>None</td></tr><tr><td><strong>Checkbox</strong><br><code>data-component="Checkbox"</code><br><small>Reusable checkbox component.</small></td><td><code>id: string = ""</code><br><code>name: string = ""</code><br><code>label: string = "Checkbox"</code><br><code>description: string = ""</code><br><code>checked: boolean = false</code><br><code>disabled: boolean = false</code></td><td>None</td><td>None</td></tr><tr><td><strong>Chip</strong><br><code>data-component="Chip"</code><br><small>Reusable chip component.</small></td><td><code>label: string = "Chip"</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Cluster</strong><br><code>data-component="Cluster"</code><br><small>Reusable cluster component.</small></td><td><code>gap: string = "4"</code><br><code>className: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Combobox</strong><br><code>data-component="Combobox"</code><br><small>Reusable combobox component.</small></td><td><code>id: string = "combobox"</code><br><code>name: string = ""</code><br><code>label: string = "Choose an option"</code><br><code>placeholder: string = "Search options"</code><br><code>options: string = []</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>Container</strong><br><code>data-component="Container"</code><br><small>Reusable container component.</small></td><td><code>size: string = "default"</code><br><code>className: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>disclosure</strong><br><code>data-component="disclosure"</code><br><small>Reusable disclosure component.</small></td><td><code>summary: string = "Details"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DisplayHeading</strong><br><code>data-component="DisplayHeading"</code><br><small>Reusable display heading component.</small></td><td><code>text: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Divider</strong><br><code>data-component="Divider"</code><br><small>Reusable divider component.</small></td><td><code>className: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Drawer</strong><br><code>data-component="Drawer"</code><br><small>Reusable drawer component.</small></td><td><code>title: string = "Panel"</code><br><code>open: boolean = false</code><br><code>side: string = "right"</code></td><td><code>default</code></td><td><code>click</code></td></tr><tr><td><strong>FAQ</strong><br><code>data-component="FAQ"</code><br><small>Reusable faq component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = "Frequently asked questions"</code><br><code>description: string = ""</code><br><code>items: string = []</code><br><code>centered: boolean = true</code><br><code>allowMultiple: boolean = false</code><br><code>defaultOpenIndex: number = 0</code></td><td>None</td><td>None</td></tr><tr><td><strong>FAQAccordion</strong><br><code>data-component="FAQAccordion"</code><br><small>Reusable faqaccordion component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = "Frequently asked questions"</code><br><code>description: string = ""</code><br><code>items: string = []</code><br><code>centered: boolean = true</code><br><code>compact: boolean = false</code><br><code>allowMultiple: boolean = false</code><br><code>defaultOpenIndex: number = 0</code><br><code>showContact: boolean = false</code><br><code>contactText: string = "Still have questions?"</code><br><code>contactLabel: string = "Contact support"</code><br><code>contactHref: string = "/support"</code></td><td>None</td><td><code>click</code></td></tr><tr><td><strong>file-upload</strong><br><code>data-component="file-upload"</code><br><small>Reusable file-upload component.</small></td><td><code>store: string = "public"</code><br><code>endpoint: string = "/api/upload"</code><br><code>accept: string = ""</code><br><code>multiple: boolean = false</code><br><code>max: number = 0</code><br><code>label: string = "Drag files here or click to browse"</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>FilterBar</strong><br><code>data-component="FilterBar"</code><br><small>Reusable filter bar component.</small></td><td><code>label: string = "Filters"</code><br><code>clearLabel: string = "Clear filters"</code><br><code>showClear: boolean = true</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Flex</strong><br><code>data-component="Flex"</code><br><small>Reusable flex component.</small></td><td><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FormError</strong><br><code>data-component="FormError"</code><br><small>Reusable form error component.</small></td><td><code>id: string = ""</code><br><code>message: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FullBleed</strong><br><code>data-component="FullBleed"</code><br><small>Reusable full bleed component.</small></td><td><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>hstack</strong><br><code>data-component="hstack"</code><br><small>Reusable hstack component.</small></td><td><code>gap: string = "4"</code><br><code>align: string = "center"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Inline</strong><br><code>data-component="Inline"</code><br><small>Reusable inline component.</small></td><td><code>gap: string = "4"</code><br><code>className: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>input</strong><br><code>data-component="input"</code><br><small>Reusable input component.</small></td><td><code>type: string = "text"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>LegalTableOfContents</strong><br><code>data-component="LegalTableOfContents"</code><br><small>Reusable legal table of contents component.</small></td><td><code>title: string = "On this page"</code><br><code>items: string = []</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>Link</strong><br><code>data-component="Link"</code><br><small>Reusable link component.</small></td><td><code>href: string = "#"</code><br><code>label: string = "Link"</code><br><code>external: boolean = false</code><br><code>className: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>LogoCloud</strong><br><code>data-component="LogoCloud"</code><br><small>Reusable logo cloud component.</small></td><td><code>title: string = "Trusted by modern teams"</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Modal</strong><br><code>data-component="Modal"</code><br><small>Reusable modal component.</small></td><td><code>title: string = "Dialog"</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>size: string = "md"</code><br><code>closeLabel: string = "Close"</code></td><td><code>default</code></td><td><code>click</code></td></tr><tr><td><strong>MultiSelect</strong><br><code>data-component="MultiSelect"</code><br><small>Reusable multi select component.</small></td><td><code>id: string = "multi-select"</code><br><code>name: string = ""</code><br><code>label: string = "Choose options"</code><br><code>options: string = []</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>size: number = 5</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>NarrowContainer</strong><br><code>data-component="NarrowContainer"</code><br><small>Reusable narrow container component.</small></td><td><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>NotificationDot</strong><br><code>data-component="NotificationDot"</code><br><small>Reusable notification dot component.</small></td><td><code>label: string = "Notification"</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PageHeading</strong><br><code>data-component="PageHeading"</code><br><small>Reusable page heading component.</small></td><td><code>text: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PageShell</strong><br><code>data-component="PageShell"</code><br><small>Reusable page shell component.</small></td><td><code>className: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Pagination</strong><br><code>data-component="Pagination"</code><br><small>Reusable pagination component.</small></td><td><code>page: number = 1</code><br><code>totalPages: number = 1</code><br><code>previousHref: string = "#"</code><br><code>nextHref: string = "#"</code></td><td>None</td><td>None</td></tr><tr><td><strong>Pill</strong><br><code>data-component="Pill"</code><br><small>Reusable pill component.</small></td><td><code>label: string = "Pill"</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>progress</strong><br><code>data-component="progress"</code><br><small>Reusable progress component.</small></td><td><code>value: number = 0</code><br><code>max: number = 100</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>ProgressBar</strong><br><code>data-component="ProgressBar"</code><br><small>Reusable progress bar component.</small></td><td><code>value: number = 0</code><br><code>max: number = 100</code><br><code>label: string = "Progress"</code><br><code>showValue: boolean = true</code></td><td>None</td><td>None</td></tr><tr><td><strong>PublicFooter</strong><br><code>data-component="PublicFooter"</code><br><small>Reusable public footer component.</small></td><td><code>brand: string = "WRNexusJS"</code><br><code>description: string = "SSR-first, Bun-native full-stack framework."</code><br><code>copyright: string = "© 2026 WorkRoot Workspace"</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Radio</strong><br><code>data-component="Radio"</code><br><small>Reusable radio component.</small></td><td><code>id: string = ""</code><br><code>name: string = "choice"</code><br><code>value: string = ""</code><br><code>label: string = "Option"</code><br><code>description: string = ""</code><br><code>checked: boolean = false</code><br><code>disabled: boolean = false</code></td><td>None</td><td>None</td></tr><tr><td><strong>ScrollArea</strong><br><code>data-component="ScrollArea"</code><br><small>Reusable scroll area component.</small></td><td><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SDKTabs</strong><br><code>data-component="SDKTabs"</code><br><small>Reusable sdktabs component.</small></td><td><code>label: string = "SDK languages"</code><br><code>tabs: string = []</code><br><code>defaultIndex: number = 0</code><br><code>class: string = ""</code></td><td>None</td><td><code>click</code></td></tr><tr><td><strong>SectionHeading</strong><br><code>data-component="SectionHeading"</code><br><small>Reusable section heading component.</small></td><td><code>text: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Select</strong><br><code>data-component="Select"</code><br><small>Reusable select component.</small></td><td><code>id: string = ""</code><br><code>name: string = ""</code><br><code>label: string = "Select"</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>spacer</strong><br><code>data-component="spacer"</code><br><small>Reusable spacer component.</small></td><td><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>Spinner</strong><br><code>data-component="Spinner"</code><br><small>Reusable spinner component.</small></td><td><code>label: string = "Loading"</code><br><code>size: string = "md"</code></td><td>None</td><td>None</td></tr><tr><td><strong>Stack</strong><br><code>data-component="Stack"</code><br><small>Reusable stack component.</small></td><td><code>gap: string = "4"</code><br><code>className: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Sticky</strong><br><code>data-component="Sticky"</code><br><small>Reusable sticky component.</small></td><td><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SubsectionHeading</strong><br><code>data-component="SubsectionHeading"</code><br><small>Reusable subsection heading component.</small></td><td><code>text: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Surface</strong><br><code>data-component="Surface"</code><br><small>Reusable surface component.</small></td><td><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Switch</strong><br><code>data-component="Switch"</code><br><small>Reusable switch component.</small></td><td><code>id: string = ""</code><br><code>name: string = ""</code><br><code>label: string = "Switch"</code><br><code>description: string = ""</code><br><code>checked: boolean = false</code><br><code>disabled: boolean = false</code></td><td>None</td><td><code>click</code></td></tr><tr><td><strong>tag</strong><br><code>data-component="tag"</code><br><small>Reusable tag component.</small></td><td><code>label: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Textarea</strong><br><code>data-component="Textarea"</code><br><small>Reusable textarea component.</small></td><td><code>id: string = ""</code><br><code>name: string = ""</code><br><code>label: string = "Message"</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>rows: number = 5</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code></td><td>None</td><td>None</td></tr><tr><td><strong>theme-toggle</strong><br><code>data-component="theme-toggle"</code><br><small>Reusable theme-toggle component.</small></td><td><code>label: string = "Toggle theme"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Toast</strong><br><code>data-component="Toast"</code><br><small>Reusable toast component.</small></td><td><code>title: string = "Saved"</code><br><code>description: string = ""</code><br><code>variant: string = "success"</code><br><code>duration: number = 5000</code></td><td>None</td><td><code>click</code></td></tr><tr><td><strong>Typography</strong><br><code>data-component="Typography"</code><br><small>Reusable typography component.</small></td><td><code>as: string = "p"</code><br><code>variant: string = "body"</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>VisuallyHidden</strong><br><code>data-component="VisuallyHidden"</code><br><small>Reusable visually hidden component.</small></td><td><code>className: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Well</strong><br><code>data-component="Well"</code><br><small>Reusable well component.</small></td><td><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WideContainer</strong><br><code>data-component="WideContainer"</code><br><small>Reusable wide container component.</small></td><td><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr></tbody></table></div><h3>Data</h3><div class="table-wrap"><table><thead><tr><th>Component</th><th>Props</th><th>Slots</th><th>Events</th></tr></thead><tbody><tr><td><strong>ActiveFilterList</strong><br><code>data-component="ActiveFilterList"</code><br><small>Reusable active filter list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ActivityList</strong><br><code>data-component="ActivityList"</code><br><small>Reusable activity list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ApiHeaderTable</strong><br><code>data-component="ApiHeaderTable"</code><br><small>Reusable api header table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ApiParameterTable</strong><br><code>data-component="ApiParameterTable"</code><br><small>Reusable api parameter table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ApiSchemaTable</strong><br><code>data-component="ApiSchemaTable"</code><br><small>Reusable api schema table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AuditTable</strong><br><code>data-component="AuditTable"</code><br><small>Reusable audit table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AutoGrid</strong><br><code>data-component="AutoGrid"</code><br><small>Reusable auto grid component.</small></td><td><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BlogGrid</strong><br><code>data-component="BlogGrid"</code><br><small>Reusable blog grid component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BlogList</strong><br><code>data-component="BlogList"</code><br><small>Reusable blog list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CalendarGrid</strong><br><code>data-component="CalendarGrid"</code><br><small>Reusable calendar grid component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CapabilityGrid</strong><br><code>data-component="CapabilityGrid"</code><br><small>Reusable capability grid component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CareerBenefitsGrid</strong><br><code>data-component="CareerBenefitsGrid"</code><br><small>Reusable career benefits grid component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ChannelComparisonTable</strong><br><code>data-component="ChannelComparisonTable"</code><br><small>Reusable channel comparison table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ChannelRateTable</strong><br><code>data-component="ChannelRateTable"</code><br><small>Reusable channel rate table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ColorGrid</strong><br><code>data-component="ColorGrid"</code><br><small>Reusable color grid component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ComparisonTable</strong><br><code>data-component="ComparisonTable"</code><br><small>Reusable comparison table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ComplianceBadgeList</strong><br><code>data-component="ComplianceBadgeList"</code><br><small>Reusable compliance badge list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ConversationList</strong><br><code>data-component="ConversationList"</code><br><small>Reusable conversation list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CookieCategoryList</strong><br><code>data-component="CookieCategoryList"</code><br><small>Reusable cookie category list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CookieDetailsTable</strong><br><code>data-component="CookieDetailsTable"</code><br><small>Reusable cookie details table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CookieTable</strong><br><code>data-component="CookieTable"</code><br><small>Reusable cookie table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DataRetentionTable</strong><br><code>data-component="DataRetentionTable"</code><br><small>Reusable data retention table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DataTable</strong><br><code>data-component="DataTable"</code><br><small>Reusable data table component.</small></td><td><code>caption: string = "Data table"</code><br><code>columns: string = []</code><br><code>rows: string = []</code><br><code>emptyMessage: string = "No data available."</code><br><code>striped: boolean = false</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>DefinitionList</strong><br><code>data-component="DefinitionList"</code><br><small>Reusable definition list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DescriptionList</strong><br><code>data-component="DescriptionList"</code><br><small>Reusable description list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>EventTable</strong><br><code>data-component="EventTable"</code><br><small>Reusable event table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FeatureComparisonTable</strong><br><code>data-component="FeatureComparisonTable"</code><br><small>Reusable feature comparison table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FeatureGrid</strong><br><code>data-component="FeatureGrid"</code><br><small>Reusable feature grid component.</small></td><td><code>columns: number = 3</code><br><code>className: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FeatureList</strong><br><code>data-component="FeatureList"</code><br><small>Reusable feature list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FileList</strong><br><code>data-component="FileList"</code><br><small>Reusable file list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FilterableTable</strong><br><code>data-component="FilterableTable"</code><br><small>Reusable filterable table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FormGrid</strong><br><code>data-component="FormGrid"</code><br><small>Reusable form grid component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FormRow</strong><br><code>data-component="FormRow"</code><br><small>Reusable form row component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Grid</strong><br><code>data-component="Grid"</code><br><small>Reusable grid component.</small></td><td><code>gap: string = "4"</code><br><code>className: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>GuideGrid</strong><br><code>data-component="GuideGrid"</code><br><small>Reusable guide grid component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>IncidentList</strong><br><code>data-component="IncidentList"</code><br><small>Reusable incident list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>KeyValueTable</strong><br><code>data-component="KeyValueTable"</code><br><small>Reusable key value table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LeadershipGrid</strong><br><code>data-component="LeadershipGrid"</code><br><small>Reusable leadership grid component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LegalBulletList</strong><br><code>data-component="LegalBulletList"</code><br><small>Reusable legal bullet list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LegalDefinitionList</strong><br><code>data-component="LegalDefinitionList"</code><br><small>Reusable legal definition list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LegalTable</strong><br><code>data-component="LegalTable"</code><br><small>Reusable legal table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>List</strong><br><code>data-component="List"</code><br><small>Reusable list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LogTable</strong><br><code>data-component="LogTable"</code><br><small>Reusable log table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MemberList</strong><br><code>data-component="MemberList"</code><br><small>Reusable member list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MetricGrid</strong><br><code>data-component="MetricGrid"</code><br><small>Reusable metric grid component.</small></td><td><code>label: string = "Key metrics"</code><br><code>metrics: string = []</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>NotificationList</strong><br><code>data-component="NotificationList"</code><br><small>Reusable notification list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PartnerLogoGrid</strong><br><code>data-component="PartnerLogoGrid"</code><br><small>Reusable partner logo grid component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PasswordRequirementList</strong><br><code>data-component="PasswordRequirementList"</code><br><small>Reusable password requirement list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PlanFeatureList</strong><br><code>data-component="PlanFeatureList"</code><br><small>Reusable plan feature list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PlanLimitList</strong><br><code>data-component="PlanLimitList"</code><br><small>Reusable plan limit list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PolicyVersionTable</strong><br><code>data-component="PolicyVersionTable"</code><br><small>Reusable policy version table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PricingComparisonTable</strong><br><code>data-component="PricingComparisonTable"</code><br><small>Reusable pricing comparison table component.</small></td><td><code>caption: string = "Plan comparison"</code><br><code>plans: string = []</code><br><code>features: string = []</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>PricingGrid</strong><br><code>data-component="PricingGrid"</code><br><small>Reusable pricing grid component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PricingTable</strong><br><code>data-component="PricingTable"</code><br><small>Reusable pricing table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProductFeatureList</strong><br><code>data-component="ProductFeatureList"</code><br><small>Reusable product feature list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProductGrid</strong><br><code>data-component="ProductGrid"</code><br><small>Reusable product grid component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProductIntegrationList</strong><br><code>data-component="ProductIntegrationList"</code><br><small>Reusable product integration list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProductList</strong><br><code>data-component="ProductList"</code><br><small>Reusable product list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProductUseCaseList</strong><br><code>data-component="ProductUseCaseList"</code><br><small>Reusable product use case list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RateTable</strong><br><code>data-component="RateTable"</code><br><small>Reusable rate table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RegionAvailabilityTable</strong><br><code>data-component="RegionAvailabilityTable"</code><br><small>Reusable region availability table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ResponsiveTable</strong><br><code>data-component="ResponsiveTable"</code><br><small>Reusable responsive table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RetentionTable</strong><br><code>data-component="RetentionTable"</code><br><small>Reusable retention table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SecurityPillarGrid</strong><br><code>data-component="SecurityPillarGrid"</code><br><small>Reusable security pillar grid component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SecurityPracticeList</strong><br><code>data-component="SecurityPracticeList"</code><br><small>Reusable security practice list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ServiceLevelTable</strong><br><code>data-component="ServiceLevelTable"</code><br><small>Reusable service level table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ServiceStatusList</strong><br><code>data-component="ServiceStatusList"</code><br><small>Reusable service status list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ServiceStatusRow</strong><br><code>data-component="ServiceStatusRow"</code><br><small>Reusable service status row component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SlaTable</strong><br><code>data-component="SlaTable"</code><br><small>Reusable sla table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SortableTable</strong><br><code>data-component="SortableTable"</code><br><small>Reusable sortable table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>StatusTable</strong><br><code>data-component="StatusTable"</code><br><small>Reusable status table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SubprocessorTable</strong><br><code>data-component="SubprocessorTable"</code><br><small>Reusable subprocessor table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Table</strong><br><code>data-component="Table"</code><br><small>Reusable table component.</small></td><td><code>caption: string = "Data table"</code><br><code>responsive: boolean = true</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TableRow</strong><br><code>data-component="TableRow"</code><br><small>Reusable table row component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TreeTable</strong><br><code>data-component="TreeTable"</code><br><small>Reusable tree table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TrustBadgeList</strong><br><code>data-component="TrustBadgeList"</code><br><small>Reusable trust badge list component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>UsagePricingTable</strong><br><code>data-component="UsagePricingTable"</code><br><small>Reusable usage pricing table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ValuesGrid</strong><br><code>data-component="ValuesGrid"</code><br><small>Reusable values grid component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>VirtualizedTable</strong><br><code>data-component="VirtualizedTable"</code><br><small>Reusable virtualized table component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>empty: boolean = false</code><br><code>emptyText: string = "No items available."</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr></tbody></table></div><h3>Feedback</h3><div class="table-wrap"><table><thead><tr><th>Component</th><th>Props</th><th>Slots</th><th>Events</th></tr></thead><tbody><tr><td><strong>AccountStatusBanner</strong><br><code>data-component="AccountStatusBanner"</code><br><small>Reusable account status banner component.</small></td><td><code>label: string = "AccountStatus"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Alert</strong><br><code>data-component="Alert"</code><br><small>Reusable alert component.</small></td><td><code>title: string = "Notice"</code><br><code>description: string = ""</code><br><code>variant: string = "info"</code><br><code>dismissible: boolean = false</code></td><td><code>default</code></td><td><code>click</code></td></tr><tr><td><strong>ApiAuthenticationNotice</strong><br><code>data-component="ApiAuthenticationNotice"</code><br><small>Reusable api authentication notice component.</small></td><td><code>label: string = "ApiAuthentication"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ApiMethodBadge</strong><br><code>data-component="ApiMethodBadge"</code><br><small>Reusable api method badge component.</small></td><td><code>label: string = "ApiMethod"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ApiRateLimitNotice</strong><br><code>data-component="ApiRateLimitNotice"</code><br><small>Reusable api rate limit notice component.</small></td><td><code>label: string = "ApiRateLimit"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ApiVersionBadge</strong><br><code>data-component="ApiVersionBadge"</code><br><small>Reusable api version badge component.</small></td><td><code>label: string = "ApiVersion"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Badge</strong><br><code>data-component="Badge"</code><br><small>Reusable badge component.</small></td><td><code>label: string = "Badge"</code><br><code>variant: string = "neutral"</code></td><td>None</td><td>None</td></tr><tr><td><strong>Banner</strong><br><code>data-component="Banner"</code><br><small>Reusable banner component.</small></td><td><code>text: string = "Announcement"</code><br><code>href: string = ""</code><br><code>actionLabel: string = "Learn more"</code><br><code>variant: string = "brand"</code></td><td>None</td><td>None</td></tr><tr><td><strong>BetaBadge</strong><br><code>data-component="BetaBadge"</code><br><small>Reusable beta badge component.</small></td><td><code>label: string = "Beta"</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CardSkeleton</strong><br><code>data-component="CardSkeleton"</code><br><small>Reusable card skeleton component.</small></td><td><code>label: string = "Card"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CertificationBadge</strong><br><code>data-component="CertificationBadge"</code><br><small>Reusable certification badge component.</small></td><td><code>label: string = "Certification"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ChannelBadge</strong><br><code>data-component="ChannelBadge"</code><br><small>Reusable channel badge component.</small></td><td><code>label: string = "Channel"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CharacterCounter</strong><br><code>data-component="CharacterCounter"</code><br><small>Reusable character counter component.</small></td><td><code>label: string = "Character"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ChartEmptyState</strong><br><code>data-component="ChartEmptyState"</code><br><small>Reusable chart empty state component.</small></td><td><code>label: string = "ChartEmpty"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CodeLanguageBadge</strong><br><code>data-component="CodeLanguageBadge"</code><br><small>Reusable code language badge component.</small></td><td><code>label: string = "CodeLanguage"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ComingSoonBadge</strong><br><code>data-component="ComingSoonBadge"</code><br><small>Reusable coming soon badge component.</small></td><td><code>label: string = "ComingSoon"</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ComingSoonState</strong><br><code>data-component="ComingSoonState"</code><br><small>Reusable coming soon state component.</small></td><td><code>label: string = "ComingSoon"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CookieBanner</strong><br><code>data-component="CookieBanner"</code><br><small>Reusable cookie banner component.</small></td><td><code>title: string = "We use cookies"</code><br><code>description: string = "We use essential cookies and optional analytics to improve your experience."</code><br><code>privacyHref: string = "/privacy"</code></td><td>None</td><td><code>click</code></td></tr><tr><td><strong>Counter</strong><br><code>data-component="Counter"</code><br><small>Reusable counter component.</small></td><td><code>label: string = "Status"</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DeprecatedFeatureAlert</strong><br><code>data-component="DeprecatedFeatureAlert"</code><br><small>Reusable deprecated feature alert component.</small></td><td><code>label: string = "DeprecatedFeature"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>EmptyState</strong><br><code>data-component="EmptyState"</code><br><small>Reusable empty state component.</small></td><td><code>icon: string = "◇"</code><br><code>title: string = "Nothing here yet"</code><br><code>description: string = ""</code><br><code>actionLabel: string = ""</code><br><code>actionHref: string = "#"</code></td><td>None</td><td>None</td></tr><tr><td><strong>ErrorState</strong><br><code>data-component="ErrorState"</code><br><small>Reusable error state component.</small></td><td><code>code: string = "500"</code><br><code>title: string = "Something went wrong"</code><br><code>description: string = "Please try again."</code><br><code>actionLabel: string = "Try again"</code><br><code>actionHref: string = "/"</code></td><td>None</td><td>None</td></tr><tr><td><strong>FeatureUnavailableState</strong><br><code>data-component="FeatureUnavailableState"</code><br><small>Reusable feature unavailable state component.</small></td><td><code>label: string = "FeatureUnavailable"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FileTypeBadge</strong><br><code>data-component="FileTypeBadge"</code><br><small>Reusable file type badge component.</small></td><td><code>label: string = "FileType"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FooterStatusIndicator</strong><br><code>data-component="FooterStatusIndicator"</code><br><small>Reusable footer status indicator component.</small></td><td><code>label: string = "FooterStatus"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ForbiddenState</strong><br><code>data-component="ForbiddenState"</code><br><small>Reusable forbidden state component.</small></td><td><code>label: string = "Forbidden"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FormAlert</strong><br><code>data-component="FormAlert"</code><br><small>Reusable form alert component.</small></td><td><code>label: string = "Form"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>GuideDifficultyBadge</strong><br><code>data-component="GuideDifficultyBadge"</code><br><small>Reusable guide difficulty badge component.</small></td><td><code>label: string = "GuideDifficulty"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HealthIndicator</strong><br><code>data-component="HealthIndicator"</code><br><small>Reusable health indicator component.</small></td><td><code>label: string = "Health"</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>IncidentAlert</strong><br><code>data-component="IncidentAlert"</code><br><small>Reusable incident alert component.</small></td><td><code>label: string = "Incident"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>IncidentBanner</strong><br><code>data-component="IncidentBanner"</code><br><small>Reusable incident banner component.</small></td><td><code>label: string = "Incident"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>IncidentSeverityBadge</strong><br><code>data-component="IncidentSeverityBadge"</code><br><small>Reusable incident severity badge component.</small></td><td><code>label: string = "IncidentSeverity"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>IndustryBadge</strong><br><code>data-component="IndustryBadge"</code><br><small>Reusable industry badge component.</small></td><td><code>label: string = "Industry"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>InlineAlert</strong><br><code>data-component="InlineAlert"</code><br><small>Reusable inline alert component.</small></td><td><code>label: string = "Inline"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LegalAcceptanceNotice</strong><br><code>data-component="LegalAcceptanceNotice"</code><br><small>Reusable legal acceptance notice component.</small></td><td><code>label: string = "LegalAcceptance"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LegalNotice</strong><br><code>data-component="LegalNotice"</code><br><small>Reusable legal notice component.</small></td><td><code>label: string = "Legal"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LegalVersionBadge</strong><br><code>data-component="LegalVersionBadge"</code><br><small>Reusable legal version badge component.</small></td><td><code>label: string = "LegalVersion"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MaintenanceAlert</strong><br><code>data-component="MaintenanceAlert"</code><br><small>Reusable maintenance alert component.</small></td><td><code>label: string = "Maintenance"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MaintenanceBanner</strong><br><code>data-component="MaintenanceBanner"</code><br><small>Reusable maintenance banner component.</small></td><td><code>label: string = "Maintenance"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MaintenanceState</strong><br><code>data-component="MaintenanceState"</code><br><small>Reusable maintenance state component.</small></td><td><code>label: string = "Maintenance"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MessageCharacterCounter</strong><br><code>data-component="MessageCharacterCounter"</code><br><small>Reusable message character counter component.</small></td><td><code>label: string = "MessageCharacter"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>NewBadge</strong><br><code>data-component="NewBadge"</code><br><small>Reusable new badge component.</small></td><td><code>label: string = "New"</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>NoResultsState</strong><br><code>data-component="NoResultsState"</code><br><small>Reusable no results state component.</small></td><td><code>label: string = "NoResults"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>NotFoundState</strong><br><code>data-component="NotFoundState"</code><br><small>Reusable not found state component.</small></td><td><code>label: string = "NotFound"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>OfflineState</strong><br><code>data-component="OfflineState"</code><br><small>Reusable offline state component.</small></td><td><code>label: string = "Offline"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>OnlineIndicator</strong><br><code>data-component="OnlineIndicator"</code><br><small>Reusable online indicator component.</small></td><td><code>label: string = "Online"</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>OptionalIndicator</strong><br><code>data-component="OptionalIndicator"</code><br><small>Reusable optional indicator component.</small></td><td><code>label: string = "Optional"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PageAlert</strong><br><code>data-component="PageAlert"</code><br><small>Reusable page alert component.</small></td><td><code>label: string = "Page"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PageSkeleton</strong><br><code>data-component="PageSkeleton"</code><br><small>Reusable page skeleton component.</small></td><td><code>label: string = "Page"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PreviewBadge</strong><br><code>data-component="PreviewBadge"</code><br><small>Reusable preview badge component.</small></td><td><code>label: string = "Preview"</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PrivacyNotice</strong><br><code>data-component="PrivacyNotice"</code><br><small>Reusable privacy notice component.</small></td><td><code>label: string = "Privacy"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProductStatusBadge</strong><br><code>data-component="ProductStatusBadge"</code><br><small>Reusable product status badge component.</small></td><td><code>label: string = "ProductStatus"</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RateLimitedState</strong><br><code>data-component="RateLimitedState"</code><br><small>Reusable rate limited state component.</small></td><td><code>label: string = "RateLimited"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RegionalPrivacyBanner</strong><br><code>data-component="RegionalPrivacyBanner"</code><br><small>Reusable regional privacy banner component.</small></td><td><code>label: string = "RegionalPrivacy"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RegionUnavailableAlert</strong><br><code>data-component="RegionUnavailableAlert"</code><br><small>Reusable region unavailable alert component.</small></td><td><code>label: string = "RegionUnavailable"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RegionUnavailableState</strong><br><code>data-component="RegionUnavailableState"</code><br><small>Reusable region unavailable state component.</small></td><td><code>label: string = "RegionUnavailable"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RequiredIndicator</strong><br><code>data-component="RequiredIndicator"</code><br><small>Reusable required indicator component.</small></td><td><code>label: string = "Required"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ResourceTypeBadge</strong><br><code>data-component="ResourceTypeBadge"</code><br><small>Reusable resource type badge component.</small></td><td><code>label: string = "ResourceType"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SearchEmptyState</strong><br><code>data-component="SearchEmptyState"</code><br><small>Reusable search empty state component.</small></td><td><code>label: string = "SearchEmpty"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SearchLoadingState</strong><br><code>data-component="SearchLoadingState"</code><br><small>Reusable search loading state component.</small></td><td><code>label: string = "SearchLoading"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SecurityAlert</strong><br><code>data-component="SecurityAlert"</code><br><small>Reusable security alert component.</small></td><td><code>label: string = "Security"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ServiceStatusBadge</strong><br><code>data-component="ServiceStatusBadge"</code><br><small>Reusable service status badge component.</small></td><td><code>label: string = "ServiceStatus"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Skeleton</strong><br><code>data-component="Skeleton"</code><br><small>Reusable skeleton component.</small></td><td><code>height: string = "4"</code><br><code>rounded: string = "lg"</code><br><code>className: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>SmsSegmentCounter</strong><br><code>data-component="SmsSegmentCounter"</code><br><small>Reusable sms segment counter component.</small></td><td><code>label: string = "SmsSegment"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>StatusBadge</strong><br><code>data-component="StatusBadge"</code><br><small>Reusable status badge component.</small></td><td><code>status: string = "operational"</code></td><td>None</td><td>None</td></tr><tr><td><strong>SuccessState</strong><br><code>data-component="SuccessState"</code><br><small>Reusable success state component.</small></td><td><code>label: string = "Success"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TableSkeleton</strong><br><code>data-component="TableSkeleton"</code><br><small>Reusable table skeleton component.</small></td><td><code>label: string = "Table"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TaxNotice</strong><br><code>data-component="TaxNotice"</code><br><small>Reusable tax notice component.</small></td><td><code>label: string = "Tax"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TextSkeleton</strong><br><code>data-component="TextSkeleton"</code><br><small>Reusable text skeleton component.</small></td><td><code>label: string = "Text"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TrendIndicator</strong><br><code>data-component="TrendIndicator"</code><br><small>Reusable trend indicator component.</small></td><td><code>label: string = "Trend"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>UnavailableRegionState</strong><br><code>data-component="UnavailableRegionState"</code><br><small>Reusable unavailable region state component.</small></td><td><code>label: string = "UnavailableRegion"</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>value: string = ""</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>VerifiedBadge</strong><br><code>data-component="VerifiedBadge"</code><br><small>Reusable verified badge component.</small></td><td><code>label: string = "Verified"</code><br><code>variant: string = "default"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr></tbody></table></div><h3>Forms</h3><div class="table-wrap"><table><thead><tr><th>Component</th><th>Props</th><th>Slots</th><th>Events</th></tr></thead><tbody><tr><td><strong>AddressInput</strong><br><code>data-component="AddressInput"</code><br><small>Reusable address input component.</small></td><td><code>label: string = "Address"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AmountInput</strong><br><code>data-component="AmountInput"</code><br><small>Reusable amount input component.</small></td><td><code>label: string = "Amount"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ApartmentInput</strong><br><code>data-component="ApartmentInput"</code><br><small>Reusable apartment input component.</small></td><td><code>label: string = "Apartment"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ApiKeyInput</strong><br><code>data-component="ApiKeyInput"</code><br><small>Reusable api key input component.</small></td><td><code>label: string = "ApiKey"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AttachmentPicker</strong><br><code>data-component="AttachmentPicker"</code><br><small>Reusable attachment picker component.</small></td><td><code>label: string = "Attachment"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AuthenticatorCodeInput</strong><br><code>data-component="AuthenticatorCodeInput"</code><br><small>Reusable authenticator code input component.</small></td><td><code>label: string = "AuthenticatorCode"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AvatarGroup</strong><br><code>data-component="AvatarGroup"</code><br><small>Reusable avatar group component.</small></td><td><code>label: string = "Avatar"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BillingPeriodToggle</strong><br><code>data-component="BillingPeriodToggle"</code><br><small>Reusable billing period toggle component.</small></td><td><code>label: string = "BillingPeriod"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BlackoutDatePicker</strong><br><code>data-component="BlackoutDatePicker"</code><br><small>Reusable blackout date picker component.</small></td><td><code>label: string = "BlackoutDate"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BorderRadiusPicker</strong><br><code>data-component="BorderRadiusPicker"</code><br><small>Reusable border radius picker component.</small></td><td><code>label: string = "BorderRadius"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BrandColorPicker</strong><br><code>data-component="BrandColorPicker"</code><br><small>Reusable brand color picker component.</small></td><td><code>label: string = "BrandColor"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BrandSelector</strong><br><code>data-component="BrandSelector"</code><br><small>Reusable brand selector component.</small></td><td><code>label: string = "Brand"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BudgetSelector</strong><br><code>data-component="BudgetSelector"</code><br><small>Reusable budget selector component.</small></td><td><code>label: string = "Budget"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BusinessHoursPicker</strong><br><code>data-component="BusinessHoursPicker"</code><br><small>Reusable business hours picker component.</small></td><td><code>label: string = "BusinessHours"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ButtonGroup</strong><br><code>data-component="ButtonGroup"</code><br><small>Reusable button group component.</small></td><td><code>label: string = "Button"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ButtonSelector</strong><br><code>data-component="ButtonSelector"</code><br><small>Reusable button selector component.</small></td><td><code>label: string = "Button"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CallbackUrlInput</strong><br><code>data-component="CallbackUrlInput"</code><br><small>Reusable callback url input component.</small></td><td><code>label: string = "CallbackUrl"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CaptchaField</strong><br><code>data-component="CaptchaField"</code><br><small>Reusable captcha field component.</small></td><td><code>label: string = "Captcha"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CardSelector</strong><br><code>data-component="CardSelector"</code><br><small>Reusable card selector component.</small></td><td><code>label: string = "Card"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ChannelSelector</strong><br><code>data-component="ChannelSelector"</code><br><small>Reusable channel selector component.</small></td><td><code>label: string = "Channel"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CheckboxGroup</strong><br><code>data-component="CheckboxGroup"</code><br><small>Reusable checkbox group component.</small></td><td><code>label: string = "Checkbox"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ChipInput</strong><br><code>data-component="ChipInput"</code><br><small>Reusable chip input component.</small></td><td><code>label: string = "Chip"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CitySelector</strong><br><code>data-component="CitySelector"</code><br><small>Reusable city selector component.</small></td><td><code>label: string = "City"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CodeInput</strong><br><code>data-component="CodeInput"</code><br><small>Reusable code input component.</small></td><td><code>label: string = "Code"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ColorHexInput</strong><br><code>data-component="ColorHexInput"</code><br><small>Reusable color hex input component.</small></td><td><code>label: string = "ColorHex"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ColorPicker</strong><br><code>data-component="ColorPicker"</code><br><small>Reusable color picker component.</small></td><td><code>label: string = "Color"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ColorSelector</strong><br><code>data-component="ColorSelector"</code><br><small>Reusable color selector component.</small></td><td><code>label: string = "Color"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CommandSearchInput</strong><br><code>data-component="CommandSearchInput"</code><br><small>Reusable command search input component.</small></td><td><code>label: string = "CommandSearch"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CompanyNameInput</strong><br><code>data-component="CompanyNameInput"</code><br><small>Reusable company name input component.</small></td><td><code>label: string = "CompanyName"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CompanySizeSelector</strong><br><code>data-component="CompanySizeSelector"</code><br><small>Reusable company size selector component.</small></td><td><code>label: string = "CompanySize"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ComparisonDateRangePicker</strong><br><code>data-component="ComparisonDateRangePicker"</code><br><small>Reusable comparison date range picker component.</small></td><td><code>label: string = "ComparisonDateRange"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ConfirmPasswordInput</strong><br><code>data-component="ConfirmPasswordInput"</code><br><small>Reusable confirm password input component.</small></td><td><code>label: string = "ConfirmPassword"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CookieCategoryToggle</strong><br><code>data-component="CookieCategoryToggle"</code><br><small>Reusable cookie category toggle component.</small></td><td><code>label: string = "CookieCategory"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CoordinatesInput</strong><br><code>data-component="CoordinatesInput"</code><br><small>Reusable coordinates input component.</small></td><td><code>label: string = "Coordinates"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CoordinatesPicker</strong><br><code>data-component="CoordinatesPicker"</code><br><small>Reusable coordinates picker component.</small></td><td><code>label: string = "Coordinates"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CopySecretField</strong><br><code>data-component="CopySecretField"</code><br><small>Reusable copy secret field component.</small></td><td><code>label: string = "CopySecret"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CountryCallingCodeInput</strong><br><code>data-component="CountryCallingCodeInput"</code><br><small>Reusable country calling code input component.</small></td><td><code>label: string = "CountryCallingCode"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CountryCallingCodeSelector</strong><br><code>data-component="CountryCallingCodeSelector"</code><br><small>Reusable country calling code selector component.</small></td><td><code>label: string = "CountryCallingCode"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CountrySelector</strong><br><code>data-component="CountrySelector"</code><br><small>Reusable country selector component.</small></td><td><code>label: string = "Country"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CouponInput</strong><br><code>data-component="CouponInput"</code><br><small>Reusable coupon input component.</small></td><td><code>label: string = "Coupon"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CreditAmountInput</strong><br><code>data-component="CreditAmountInput"</code><br><small>Reusable credit amount input component.</small></td><td><code>label: string = "CreditAmount"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CronInput</strong><br><code>data-component="CronInput"</code><br><small>Reusable cron input component.</small></td><td><code>label: string = "Cron"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CurrencyInput</strong><br><code>data-component="CurrencyInput"</code><br><small>Reusable currency input component.</small></td><td><code>label: string = "Currency"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CurrencySelector</strong><br><code>data-component="CurrencySelector"</code><br><small>Reusable currency selector component.</small></td><td><code>label: string = "Currency"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CurrentPasswordInput</strong><br><code>data-component="CurrentPasswordInput"</code><br><small>Reusable current password input component.</small></td><td><code>label: string = "CurrentPassword"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DateInput</strong><br><code>data-component="DateInput"</code><br><small>Reusable date input component.</small></td><td><code>id: string = ""</code><br><code>name: string = ""</code><br><code>label: string = "Date"</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>autocomplete: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>DatePicker</strong><br><code>data-component="DatePicker"</code><br><small>Reusable date picker component.</small></td><td><code>id: string = "date"</code><br><code>name: string = "date"</code><br><code>label: string = "Date"</code><br><code>value: string = ""</code><br><code>min: string = ""</code><br><code>max: string = ""</code><br><code>required: boolean = false</code></td><td>None</td><td>None</td></tr><tr><td><strong>DateRangePicker</strong><br><code>data-component="DateRangePicker"</code><br><small>Reusable date range picker component.</small></td><td><code>label: string = "Date range"</code><br><code>startName: string = "startDate"</code><br><code>endName: string = "endDate"</code></td><td>None</td><td>None</td></tr><tr><td><strong>DateTimeInput</strong><br><code>data-component="DateTimeInput"</code><br><small>Reusable date time input component.</small></td><td><code>id: string = ""</code><br><code>name: string = ""</code><br><code>label: string = "DateTime"</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>autocomplete: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>DateTimePicker</strong><br><code>data-component="DateTimePicker"</code><br><small>Reusable date time picker component.</small></td><td><code>id: string = "datetime-picker"</code><br><code>name: string = "datetime"</code><br><code>label: string = "Date and time"</code><br><code>value: string = ""</code><br><code>min: string = ""</code><br><code>max: string = ""</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>DateTimeRangePicker</strong><br><code>data-component="DateTimeRangePicker"</code><br><small>Reusable date time range picker component.</small></td><td><code>label: string = "DateTimeRange"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DecimalInput</strong><br><code>data-component="DecimalInput"</code><br><small>Reusable decimal input component.</small></td><td><code>label: string = "Decimal"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DepartmentInput</strong><br><code>data-component="DepartmentInput"</code><br><small>Reusable department input component.</small></td><td><code>label: string = "Department"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DiscountInput</strong><br><code>data-component="DiscountInput"</code><br><small>Reusable discount input component.</small></td><td><code>label: string = "Discount"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DisplayNameInput</strong><br><code>data-component="DisplayNameInput"</code><br><small>Reusable display name input component.</small></td><td><code>label: string = "DisplayName"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DomainInput</strong><br><code>data-component="DomainInput"</code><br><small>Reusable domain input component.</small></td><td><code>label: string = "Domain"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DurationInput</strong><br><code>data-component="DurationInput"</code><br><small>Reusable duration input component.</small></td><td><code>label: string = "Duration"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DurationPicker</strong><br><code>data-component="DurationPicker"</code><br><small>Reusable duration picker component.</small></td><td><code>label: string = "Duration"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>EmailBodyEditor</strong><br><code>data-component="EmailBodyEditor"</code><br><small>Reusable email body editor component.</small></td><td><code>label: string = "EmailBody"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>EmailInput</strong><br><code>data-component="EmailInput"</code><br><small>Reusable email input component.</small></td><td><code>id: string = ""</code><br><code>name: string = ""</code><br><code>label: string = "Email"</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>autocomplete: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>EmojiPicker</strong><br><code>data-component="EmojiPicker"</code><br><small>Reusable emoji picker component.</small></td><td><code>label: string = "Emoji"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>EnvironmentSelector</strong><br><code>data-component="EnvironmentSelector"</code><br><small>Reusable environment selector component.</small></td><td><code>label: string = "Environment"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ExpiryDateTimePicker</strong><br><code>data-component="ExpiryDateTimePicker"</code><br><small>Reusable expiry date time picker component.</small></td><td><code>label: string = "ExpiryDateTime"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FaxInput</strong><br><code>data-component="FaxInput"</code><br><small>Reusable fax input component.</small></td><td><code>label: string = "Fax"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FileInput</strong><br><code>data-component="FileInput"</code><br><small>Reusable file input component.</small></td><td><code>label: string = "File"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FileSizeInput</strong><br><code>data-component="FileSizeInput"</code><br><small>Reusable file size input component.</small></td><td><code>label: string = "FileSize"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FilterSearchInput</strong><br><code>data-component="FilterSearchInput"</code><br><small>Reusable filter search input component.</small></td><td><code>label: string = "FilterSearch"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FirstNameInput</strong><br><code>data-component="FirstNameInput"</code><br><small>Reusable first name input component.</small></td><td><code>label: string = "FirstName"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FontPicker</strong><br><code>data-component="FontPicker"</code><br><small>Reusable font picker component.</small></td><td><code>label: string = "Font"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FontSizePicker</strong><br><code>data-component="FontSizePicker"</code><br><small>Reusable font size picker component.</small></td><td><code>label: string = "FontSize"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FontWeightPicker</strong><br><code>data-component="FontWeightPicker"</code><br><small>Reusable font weight picker component.</small></td><td><code>label: string = "FontWeight"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FormField</strong><br><code>data-component="FormField"</code><br><small>Reusable form field component.</small></td><td><code>label: string = "Field"</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>required: boolean = false</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FormGroup</strong><br><code>data-component="FormGroup"</code><br><small>Reusable form group component.</small></td><td><code>label: string = "Form"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>GeofenceEditor</strong><br><code>data-component="GeofenceEditor"</code><br><small>Reusable geofence editor component.</small></td><td><code>label: string = "Geofence"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>GradientPicker</strong><br><code>data-component="GradientPicker"</code><br><small>Reusable gradient picker component.</small></td><td><code>label: string = "Gradient"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>GradientStopEditor</strong><br><code>data-component="GradientStopEditor"</code><br><small>Reusable gradient stop editor component.</small></td><td><code>label: string = "GradientStop"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HexColorInput</strong><br><code>data-component="HexColorInput"</code><br><small>Reusable hex color input component.</small></td><td><code>label: string = "HexColor"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HiddenField</strong><br><code>data-component="HiddenField"</code><br><small>Reusable hidden field component.</small></td><td><code>label: string = "Hidden"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HostnameInput</strong><br><code>data-component="HostnameInput"</code><br><small>Reusable hostname input component.</small></td><td><code>label: string = "Hostname"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HourPicker</strong><br><code>data-component="HourPicker"</code><br><small>Reusable hour picker component.</small></td><td><code>label: string = "Hour"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HslColorInput</strong><br><code>data-component="HslColorInput"</code><br><small>Reusable hsl color input component.</small></td><td><code>label: string = "HslColor"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HtmlEditor</strong><br><code>data-component="HtmlEditor"</code><br><small>Reusable html editor component.</small></td><td><code>label: string = "Html"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>IconPicker</strong><br><code>data-component="IconPicker"</code><br><small>Reusable icon picker component.</small></td><td><code>label: string = "Icon"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>IconSelector</strong><br><code>data-component="IconSelector"</code><br><small>Reusable icon selector component.</small></td><td><code>label: string = "Icon"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>IdentifierInput</strong><br><code>data-component="IdentifierInput"</code><br><small>Reusable identifier input component.</small></td><td><code>label: string = "Identifier"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ImageEditor</strong><br><code>data-component="ImageEditor"</code><br><small>Reusable image editor component.</small></td><td><code>label: string = "Image"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ImageSelector</strong><br><code>data-component="ImageSelector"</code><br><small>Reusable image selector component.</small></td><td><code>label: string = "Image"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>IndustrySelector</strong><br><code>data-component="IndustrySelector"</code><br><small>Reusable industry selector component.</small></td><td><code>label: string = "Industry"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>InputGroup</strong><br><code>data-component="InputGroup"</code><br><small>Reusable input group component.</small></td><td><code>label: string = "Input"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>IntegerInput</strong><br><code>data-component="IntegerInput"</code><br><small>Reusable integer input component.</small></td><td><code>label: string = "Integer"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>IpAddressInput</strong><br><code>data-component="IpAddressInput"</code><br><small>Reusable ip address input component.</small></td><td><code>label: string = "IpAddress"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>JobTitleInput</strong><br><code>data-component="JobTitleInput"</code><br><small>Reusable job title input component.</small></td><td><code>label: string = "JobTitle"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>JsonInput</strong><br><code>data-component="JsonInput"</code><br><small>Reusable json input component.</small></td><td><code>label: string = "Json"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LanguageSelector</strong><br><code>data-component="LanguageSelector"</code><br><small>Reusable language selector component.</small></td><td><code>label: string = "Language"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LastNameInput</strong><br><code>data-component="LastNameInput"</code><br><small>Reusable last name input component.</small></td><td><code>label: string = "LastName"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LatitudeInput</strong><br><code>data-component="LatitudeInput"</code><br><small>Reusable latitude input component.</small></td><td><code>label: string = "Latitude"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LegalLanguageSelector</strong><br><code>data-component="LegalLanguageSelector"</code><br><small>Reusable legal language selector component.</small></td><td><code>label: string = "LegalLanguage"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LegalRegionSelector</strong><br><code>data-component="LegalRegionSelector"</code><br><small>Reusable legal region selector component.</small></td><td><code>label: string = "LegalRegion"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LetterSpacingPicker</strong><br><code>data-component="LetterSpacingPicker"</code><br><small>Reusable letter spacing picker component.</small></td><td><code>label: string = "LetterSpacing"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LicenseKeyInput</strong><br><code>data-component="LicenseKeyInput"</code><br><small>Reusable license key input component.</small></td><td><code>label: string = "LicenseKey"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LineHeightPicker</strong><br><code>data-component="LineHeightPicker"</code><br><small>Reusable line height picker component.</small></td><td><code>label: string = "LineHeight"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LocaleSelector</strong><br><code>data-component="LocaleSelector"</code><br><small>Reusable locale selector component.</small></td><td><code>label: string = "Locale"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LocationPicker</strong><br><code>data-component="LocationPicker"</code><br><small>Reusable location picker component.</small></td><td><code>label: string = "Location"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LongitudeInput</strong><br><code>data-component="LongitudeInput"</code><br><small>Reusable longitude input component.</small></td><td><code>label: string = "Longitude"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MaintenanceWindowPicker</strong><br><code>data-component="MaintenanceWindowPicker"</code><br><small>Reusable maintenance window picker component.</small></td><td><code>label: string = "MaintenanceWindow"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MapPicker</strong><br><code>data-component="MapPicker"</code><br><small>Reusable map picker component.</small></td><td><code>label: string = "Map"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MarkdownEditor</strong><br><code>data-component="MarkdownEditor"</code><br><small>Reusable markdown editor component.</small></td><td><code>label: string = "Markdown"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MaskedSecretField</strong><br><code>data-component="MaskedSecretField"</code><br><small>Reusable masked secret field component.</small></td><td><code>label: string = "MaskedSecret"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MentionInput</strong><br><code>data-component="MentionInput"</code><br><small>Reusable mention input component.</small></td><td><code>label: string = "Mention"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MessageLimitInput</strong><br><code>data-component="MessageLimitInput"</code><br><small>Reusable message limit input component.</small></td><td><code>label: string = "MessageLimit"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MinutePicker</strong><br><code>data-component="MinutePicker"</code><br><small>Reusable minute picker component.</small></td><td><code>label: string = "Minute"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MobileInput</strong><br><code>data-component="MobileInput"</code><br><small>Reusable mobile input component.</small></td><td><code>label: string = "Mobile"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MonthlyVolumeSelector</strong><br><code>data-component="MonthlyVolumeSelector"</code><br><small>Reusable monthly volume selector component.</small></td><td><code>label: string = "MonthlyVolume"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MonthPicker</strong><br><code>data-component="MonthPicker"</code><br><small>Reusable month picker component.</small></td><td><code>label: string = "Month"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MonthYearPicker</strong><br><code>data-component="MonthYearPicker"</code><br><small>Reusable month year picker component.</small></td><td><code>label: string = "MonthYear"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MultipleEmailInput</strong><br><code>data-component="MultipleEmailInput"</code><br><small>Reusable multiple email input component.</small></td><td><code>label: string = "MultipleEmail"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>NameInput</strong><br><code>data-component="NameInput"</code><br><small>Reusable name input component.</small></td><td><code>label: string = "Name"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>NewPasswordInput</strong><br><code>data-component="NewPasswordInput"</code><br><small>Reusable new password input component.</small></td><td><code>label: string = "NewPassword"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>NumberInput</strong><br><code>data-component="NumberInput"</code><br><small>Reusable number input component.</small></td><td><code>id: string = ""</code><br><code>name: string = ""</code><br><code>label: string = "Number"</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>autocomplete: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>OrganizationSelector</strong><br><code>data-component="OrganizationSelector"</code><br><small>Reusable organization selector component.</small></td><td><code>label: string = "Organization"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>OtpInput</strong><br><code>data-component="OtpInput"</code><br><small>Reusable otp input component.</small></td><td><code>name: string = "otp"</code><br><code>length: number = 6</code><br><code>label: string = "Verification code"</code></td><td>None</td><td>None</td></tr><tr><td><strong>PasswordInput</strong><br><code>data-component="PasswordInput"</code><br><small>Reusable password input component.</small></td><td><code>id: string = ""</code><br><code>name: string = ""</code><br><code>label: string = "Password"</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>autocomplete: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>PasswordVisibilityToggle</strong><br><code>data-component="PasswordVisibilityToggle"</code><br><small>Reusable password visibility toggle component.</small></td><td><code>label: string = "PasswordVisibility"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PathInput</strong><br><code>data-component="PathInput"</code><br><small>Reusable path input component.</small></td><td><code>label: string = "Path"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PercentageInput</strong><br><code>data-component="PercentageInput"</code><br><small>Reusable percentage input component.</small></td><td><code>label: string = "Percentage"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PermissionSelector</strong><br><code>data-component="PermissionSelector"</code><br><small>Reusable permission selector component.</small></td><td><code>label: string = "Permission"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PhoneInput</strong><br><code>data-component="PhoneInput"</code><br><small>Reusable phone input component.</small></td><td><code>id: string = ""</code><br><code>name: string = ""</code><br><code>label: string = "Phone"</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>autocomplete: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>PinInput</strong><br><code>data-component="PinInput"</code><br><small>Reusable pin input component.</small></td><td><code>label: string = "Pin"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PlainTextEditor</strong><br><code>data-component="PlainTextEditor"</code><br><small>Reusable plain text editor component.</small></td><td><code>label: string = "PlainText"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PlanSelector</strong><br><code>data-component="PlanSelector"</code><br><small>Reusable plan selector component.</small></td><td><code>label: string = "Plan"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PortInput</strong><br><code>data-component="PortInput"</code><br><small>Reusable port input component.</small></td><td><code>label: string = "Port"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PortNumberInput</strong><br><code>data-component="PortNumberInput"</code><br><small>Reusable port number input component.</small></td><td><code>label: string = "PortNumber"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PositiveNumberInput</strong><br><code>data-component="PositiveNumberInput"</code><br><small>Reusable positive number input component.</small></td><td><code>label: string = "PositiveNumber"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PostalCodeInput</strong><br><code>data-component="PostalCodeInput"</code><br><small>Reusable postal code input component.</small></td><td><code>label: string = "PostalCode"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PresetDateRangePicker</strong><br><code>data-component="PresetDateRangePicker"</code><br><small>Reusable preset date range picker component.</small></td><td><code>label: string = "PresetDateRange"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PriceInput</strong><br><code>data-component="PriceInput"</code><br><small>Reusable price input component.</small></td><td><code>label: string = "Price"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PricingFeatureGroup</strong><br><code>data-component="PricingFeatureGroup"</code><br><small>Reusable pricing feature group component.</small></td><td><code>label: string = "PricingFeature"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PricingToggle</strong><br><code>data-component="PricingToggle"</code><br><small>Reusable pricing toggle component.</small></td><td><code>label: string = "Pricing"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PrioritySelector</strong><br><code>data-component="PrioritySelector"</code><br><small>Reusable priority selector component.</small></td><td><code>label: string = "Priority"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProductSelector</strong><br><code>data-component="ProductSelector"</code><br><small>Reusable product selector component.</small></td><td><code>label: string = "Product"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProjectSelector</strong><br><code>data-component="ProjectSelector"</code><br><small>Reusable project selector component.</small></td><td><code>label: string = "Project"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PromoCodeInput</strong><br><code>data-component="PromoCodeInput"</code><br><small>Reusable promo code input component.</small></td><td><code>label: string = "PromoCode"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProviderSelector</strong><br><code>data-component="ProviderSelector"</code><br><small>Reusable provider selector component.</small></td><td><code>label: string = "Provider"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PublishDateTimePicker</strong><br><code>data-component="PublishDateTimePicker"</code><br><small>Reusable publish date time picker component.</small></td><td><code>label: string = "PublishDateTime"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PushNotificationEditor</strong><br><code>data-component="PushNotificationEditor"</code><br><small>Reusable push notification editor component.</small></td><td><code>label: string = "PushNotification"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>QuantityInput</strong><br><code>data-component="QuantityInput"</code><br><small>Reusable quantity input component.</small></td><td><code>label: string = "Quantity"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>QuietHoursPicker</strong><br><code>data-component="QuietHoursPicker"</code><br><small>Reusable quiet hours picker component.</small></td><td><code>label: string = "Quiet hours"</code><br><code>startName: string = "quietStart"</code><br><code>endName: string = "quietEnd"</code><br><code>start: string = "22:00"</code><br><code>end: string = "08:00"</code><br><code>timezone: string = "UTC"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>RadioGroup</strong><br><code>data-component="RadioGroup"</code><br><small>Reusable radio group component.</small></td><td><code>label: string = "Choose one"</code><br><code>name: string = "choice"</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RangeInput</strong><br><code>data-component="RangeInput"</code><br><small>Reusable range input component.</small></td><td><code>label: string = "Range"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RateLimitInput</strong><br><code>data-component="RateLimitInput"</code><br><small>Reusable rate limit input component.</small></td><td><code>label: string = "RateLimit"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RecipientSelector</strong><br><code>data-component="RecipientSelector"</code><br><small>Reusable recipient selector component.</small></td><td><code>label: string = "Recipient"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RecoveryCodeInput</strong><br><code>data-component="RecoveryCodeInput"</code><br><small>Reusable recovery code input component.</small></td><td><code>label: string = "RecoveryCode"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RecurringSchedulePicker</strong><br><code>data-component="RecurringSchedulePicker"</code><br><small>Reusable recurring schedule picker component.</small></td><td><code>id: string = "recurring-schedule"</code><br><code>name: string = "recurrence"</code><br><code>label: string = "Repeat"</code><br><code>value: string = "none"</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>RedirectUriInput</strong><br><code>data-component="RedirectUriInput"</code><br><small>Reusable redirect uri input component.</small></td><td><code>label: string = "RedirectUri"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ReferenceInput</strong><br><code>data-component="ReferenceInput"</code><br><small>Reusable reference input component.</small></td><td><code>label: string = "Reference"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RegexInput</strong><br><code>data-component="RegexInput"</code><br><small>Reusable regex input component.</small></td><td><code>label: string = "Regex"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RegionSelector</strong><br><code>data-component="RegionSelector"</code><br><small>Reusable region selector component.</small></td><td><code>label: string = "Region"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RetryCountInput</strong><br><code>data-component="RetryCountInput"</code><br><small>Reusable retry count input component.</small></td><td><code>label: string = "RetryCount"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RgbColorInput</strong><br><code>data-component="RgbColorInput"</code><br><small>Reusable rgb color input component.</small></td><td><code>label: string = "RgbColor"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RichTextEditor</strong><br><code>data-component="RichTextEditor"</code><br><small>Reusable rich text editor component.</small></td><td><code>label: string = "RichText"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RichTextInput</strong><br><code>data-component="RichTextInput"</code><br><small>Reusable rich text input component.</small></td><td><code>label: string = "RichText"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RoleSelector</strong><br><code>data-component="RoleSelector"</code><br><small>Reusable role selector component.</small></td><td><code>label: string = "Role"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RollingDateRangePicker</strong><br><code>data-component="RollingDateRangePicker"</code><br><small>Reusable rolling date range picker component.</small></td><td><code>label: string = "RollingDateRange"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SavedFilterSelector</strong><br><code>data-component="SavedFilterSelector"</code><br><small>Reusable saved filter selector component.</small></td><td><code>label: string = "SavedFilter"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ScheduledDateTimePicker</strong><br><code>data-component="ScheduledDateTimePicker"</code><br><small>Reusable scheduled date time picker component.</small></td><td><code>label: string = "ScheduledDateTime"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ScheduleMessagePicker</strong><br><code>data-component="ScheduleMessagePicker"</code><br><small>Reusable schedule message picker component.</small></td><td><code>label: string = "ScheduleMessage"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SchedulePicker</strong><br><code>data-component="SchedulePicker"</code><br><small>Reusable schedule picker component.</small></td><td><code>label: string = "Schedule"</code></td><td>None</td><td>None</td></tr><tr><td><strong>SdkLanguageSelector</strong><br><code>data-component="SdkLanguageSelector"</code><br><small>Reusable sdk language selector component.</small></td><td><code>label: string = "SdkLanguage"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SearchInput</strong><br><code>data-component="SearchInput"</code><br><small>Reusable search input component.</small></td><td><code>id: string = ""</code><br><code>name: string = ""</code><br><code>label: string = "Search"</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>autocomplete: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>SecondPicker</strong><br><code>data-component="SecondPicker"</code><br><small>Reusable second picker component.</small></td><td><code>label: string = "Second"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SecretInput</strong><br><code>data-component="SecretInput"</code><br><small>Reusable secret input component.</small></td><td><code>label: string = "Secret"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SenderIdInput</strong><br><code>data-component="SenderIdInput"</code><br><small>Reusable sender id input component.</small></td><td><code>label: string = "SenderId"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SeveritySelector</strong><br><code>data-component="SeveritySelector"</code><br><small>Reusable severity selector component.</small></td><td><code>label: string = "Severity"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ShadowPicker</strong><br><code>data-component="ShadowPicker"</code><br><small>Reusable shadow picker component.</small></td><td><code>label: string = "Shadow"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SlugInput</strong><br><code>data-component="SlugInput"</code><br><small>Reusable slug input component.</small></td><td><code>label: string = "Slug"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SmsMessageEditor</strong><br><code>data-component="SmsMessageEditor"</code><br><small>Reusable sms message editor component.</small></td><td><code>label: string = "SmsMessage"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>StateSelector</strong><br><code>data-component="StateSelector"</code><br><small>Reusable state selector component.</small></td><td><code>label: string = "State"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>StatusSelector</strong><br><code>data-component="StatusSelector"</code><br><small>Reusable status selector component.</small></td><td><code>label: string = "Status"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>StepperInput</strong><br><code>data-component="StepperInput"</code><br><small>Reusable stepper input component.</small></td><td><code>label: string = "Stepper"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>StickerPicker</strong><br><code>data-component="StickerPicker"</code><br><small>Reusable sticker picker component.</small></td><td><code>label: string = "Sticker"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>StreetAddressInput</strong><br><code>data-component="StreetAddressInput"</code><br><small>Reusable street address input component.</small></td><td><code>label: string = "StreetAddress"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SubdomainInput</strong><br><code>data-component="SubdomainInput"</code><br><small>Reusable subdomain input component.</small></td><td><code>label: string = "Subdomain"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SubjectInput</strong><br><code>data-component="SubjectInput"</code><br><small>Reusable subject input component.</small></td><td><code>label: string = "Subject"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TagInput</strong><br><code>data-component="TagInput"</code><br><small>Reusable tag input component.</small></td><td><code>label: string = "Tag"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TaxRateInput</strong><br><code>data-component="TaxRateInput"</code><br><small>Reusable tax rate input component.</small></td><td><code>label: string = "TaxRate"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TeamSizeSelector</strong><br><code>data-component="TeamSizeSelector"</code><br><small>Reusable team size selector component.</small></td><td><code>label: string = "TeamSize"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TemplateSelector</strong><br><code>data-component="TemplateSelector"</code><br><small>Reusable template selector component.</small></td><td><code>label: string = "Template"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TemplateVariableInput</strong><br><code>data-component="TemplateVariableInput"</code><br><small>Reusable template variable input component.</small></td><td><code>label: string = "TemplateVariable"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TextInput</strong><br><code>data-component="TextInput"</code><br><small>Reusable text input component.</small></td><td><code>id: string = ""</code><br><code>name: string = ""</code><br><code>label: string = "Text"</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>autocomplete: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>ThemeColorPicker</strong><br><code>data-component="ThemeColorPicker"</code><br><small>Reusable theme color picker component.</small></td><td><code>label: string = "ThemeColor"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TimeInput</strong><br><code>data-component="TimeInput"</code><br><small>Reusable time input component.</small></td><td><code>id: string = ""</code><br><code>name: string = ""</code><br><code>label: string = "Time"</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>autocomplete: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>TimeoutInput</strong><br><code>data-component="TimeoutInput"</code><br><small>Reusable timeout input component.</small></td><td><code>label: string = "Timeout"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TimePicker</strong><br><code>data-component="TimePicker"</code><br><small>Reusable time picker component.</small></td><td><code>id: string = "time-picker"</code><br><code>name: string = "time"</code><br><code>label: string = "Time"</code><br><code>value: string = ""</code><br><code>min: string = ""</code><br><code>max: string = ""</code><br><code>step: number = 60</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>TimeRangePicker</strong><br><code>data-component="TimeRangePicker"</code><br><small>Reusable time range picker component.</small></td><td><code>label: string = "TimeRange"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TimezoneAwareTimePicker</strong><br><code>data-component="TimezoneAwareTimePicker"</code><br><small>Reusable timezone aware time picker component.</small></td><td><code>label: string = "TimezoneAwareTime"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TimezoneSelector</strong><br><code>data-component="TimezoneSelector"</code><br><small>Reusable timezone selector component.</small></td><td><code>id: string = "timezone"</code><br><code>name: string = "timezone"</code><br><code>label: string = "Timezone"</code></td><td>None</td><td>None</td></tr><tr><td><strong>Toggle</strong><br><code>data-component="Toggle"</code><br><small>Reusable toggle component.</small></td><td><code>label: string = ""</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ToggleGroup</strong><br><code>data-component="ToggleGroup"</code><br><small>Reusable toggle group component.</small></td><td><code>label: string = "Toggle"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TokenInput</strong><br><code>data-component="TokenInput"</code><br><small>Reusable token input component.</small></td><td><code>label: string = "Token"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>UrlInput</strong><br><code>data-component="UrlInput"</code><br><small>Reusable url input component.</small></td><td><code>id: string = ""</code><br><code>name: string = ""</code><br><code>label: string = "Url"</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>autocomplete: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>UseCaseSelector</strong><br><code>data-component="UseCaseSelector"</code><br><small>Reusable use case selector component.</small></td><td><code>label: string = "UseCase"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>UsernameInput</strong><br><code>data-component="UsernameInput"</code><br><small>Reusable username input component.</small></td><td><code>label: string = "Username"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>VerificationCodeInput</strong><br><code>data-component="VerificationCodeInput"</code><br><small>Reusable verification code input component.</small></td><td><code>label: string = "VerificationCode"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>VersionSelector</strong><br><code>data-component="VersionSelector"</code><br><small>Reusable version selector component.</small></td><td><code>label: string = "Version"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>VoiceScriptEditor</strong><br><code>data-component="VoiceScriptEditor"</code><br><small>Reusable voice script editor component.</small></td><td><code>label: string = "VoiceScript"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>VolumeInput</strong><br><code>data-component="VolumeInput"</code><br><small>Reusable volume input component.</small></td><td><code>label: string = "Volume"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WebhookUrlInput</strong><br><code>data-component="WebhookUrlInput"</code><br><small>Reusable webhook url input component.</small></td><td><code>label: string = "WebhookUrl"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WhatsAppNumberInput</strong><br><code>data-component="WhatsAppNumberInput"</code><br><small>Reusable whats app number input component.</small></td><td><code>label: string = "WhatsAppNumber"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WhatsAppTemplateEditor</strong><br><code>data-component="WhatsAppTemplateEditor"</code><br><small>Reusable whats app template editor component.</small></td><td><code>label: string = "WhatsAppTemplate"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WorkspaceSelector</strong><br><code>data-component="WorkspaceSelector"</code><br><small>Reusable workspace selector component.</small></td><td><code>label: string = "Workspace"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>YearPicker</strong><br><code>data-component="YearPicker"</code><br><small>Reusable year picker component.</small></td><td><code>label: string = "Year"</code><br><code>name: string = ""</code><br><code>value: string = ""</code><br><code>placeholder: string = ""</code><br><code>type: string = "text"</code><br><code>required: boolean = false</code><br><code>disabled: boolean = false</code><br><code>readonly: boolean = false</code><br><code>help: string = ""</code><br><code>error: string = ""</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr></tbody></table></div><h3>Layout</h3><div class="table-wrap"><table><thead><tr><th>Component</th><th>Props</th><th>Slots</th><th>Events</th></tr></thead><tbody><tr><td><strong>AnchorNavigation</strong><br><code>data-component="AnchorNavigation"</code><br><small>Reusable anchor navigation component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AppHeader</strong><br><code>data-component="AppHeader"</code><br><small>Reusable app header component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ArchitectureSection</strong><br><code>data-component="ArchitectureSection"</code><br><small>Reusable architecture section component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ArticleHero</strong><br><code>data-component="ArticleHero"</code><br><small>Reusable article hero component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ArticleLayout</strong><br><code>data-component="ArticleLayout"</code><br><small>Reusable article layout component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ArticlePageShell</strong><br><code>data-component="ArticlePageShell"</code><br><small>Reusable article page shell component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BottomNavigation</strong><br><code>data-component="BottomNavigation"</code><br><small>Reusable bottom navigation component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BrowserFrame</strong><br><code>data-component="BrowserFrame"</code><br><small>Reusable browser frame component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CalendarHeader</strong><br><code>data-component="CalendarHeader"</code><br><small>Reusable calendar header component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CalendarNavigation</strong><br><code>data-component="CalendarNavigation"</code><br><small>Reusable calendar navigation component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CaseStudyHero</strong><br><code>data-component="CaseStudyHero"</code><br><small>Reusable case study hero component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CenteredHero</strong><br><code>data-component="CenteredHero"</code><br><small>Reusable centered hero component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CenteredSectionHeader</strong><br><code>data-component="CenteredSectionHeader"</code><br><small>Reusable centered section header component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ChallengeSection</strong><br><code>data-component="ChallengeSection"</code><br><small>Reusable challenge section component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CodeHeader</strong><br><code>data-component="CodeHeader"</code><br><small>Reusable code header component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CompanyHero</strong><br><code>data-component="CompanyHero"</code><br><small>Reusable company hero component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CompanyPageShell</strong><br><code>data-component="CompanyPageShell"</code><br><small>Reusable company page shell component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ContactHero</strong><br><code>data-component="ContactHero"</code><br><small>Reusable contact hero component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ContactPageShell</strong><br><code>data-component="ContactPageShell"</code><br><small>Reusable contact page shell component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CTASection</strong><br><code>data-component="CTASection"</code><br><small>Reusable c t a section component.</small></td><td><code>eyebrow: string = "Ready?"</code><br><code>title: string = "Start building today"</code><br><code>description: string = ""</code><br><code>primaryLabel: string = "Get started"</code><br><code>primaryHref: string = "#"</code><br><code>secondaryLabel: string = "Contact sales"</code><br><code>secondaryHref: string = "#"</code></td><td>None</td><td>None</td></tr><tr><td><strong>DesktopNavigation</strong><br><code>data-component="DesktopNavigation"</code><br><small>Reusable desktop navigation component.</small></td><td><code>label: string = "Primary navigation"</code><br><code>items: string = []</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>DeveloperHero</strong><br><code>data-component="DeveloperHero"</code><br><small>Reusable developer hero component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DeveloperPageShell</strong><br><code>data-component="DeveloperPageShell"</code><br><small>Reusable developer page shell component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DropdownNavigation</strong><br><code>data-component="DropdownNavigation"</code><br><small>Reusable dropdown navigation component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>EnterpriseHero</strong><br><code>data-component="EnterpriseHero"</code><br><small>Reusable enterprise hero component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ErrorHero</strong><br><code>data-component="ErrorHero"</code><br><small>Reusable error hero component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ErrorPageShell</strong><br><code>data-component="ErrorPageShell"</code><br><small>Reusable error page shell component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FeatureDetailsPanel</strong><br><code>data-component="FeatureDetailsPanel"</code><br><small>Reusable feature details panel component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FormSection</strong><br><code>data-component="FormSection"</code><br><small>Reusable form section component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Header</strong><br><code>data-component="Header"</code><br><small>Reusable header component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Hero</strong><br><code>data-component="Hero"</code><br><small>Reusable hero component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = "Build faster with WRNexusJS"</code><br><code>highlight: string = ""</code><br><code>description: string = ""</code><br><code>primaryLabel: string = "Get started"</code><br><code>primaryHref: string = "#"</code><br><code>secondaryLabel: string = "Learn more"</code><br><code>secondaryHref: string = "#"</code><br><code>align: string = "center"</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>HeroCodePanel</strong><br><code>data-component="HeroCodePanel"</code><br><small>Reusable hero code panel component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>InsetPanel</strong><br><code>data-component="InsetPanel"</code><br><small>Reusable inset panel component.</small></td><td><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LegalDocumentHeader</strong><br><code>data-component="LegalDocumentHeader"</code><br><small>Reusable legal document header component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LegalDocumentLayout</strong><br><code>data-component="LegalDocumentLayout"</code><br><small>Reusable legal document layout component.</small></td><td><code>title: string = "Legal document"</code><br><code>effectiveDate: string = ""</code><br><code>updatedDate: string = ""</code></td><td><code>toc</code><br><code>default</code></td><td>None</td></tr><tr><td><strong>LegalHero</strong><br><code>data-component="LegalHero"</code><br><small>Reusable legal hero component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LegalPageShell</strong><br><code>data-component="LegalPageShell"</code><br><small>Reusable legal page shell component.</small></td><td><code>class: string = ""</code></td><td><code>navigation</code><br><code>default</code></td><td>None</td></tr><tr><td><strong>LegalSection</strong><br><code>data-component="LegalSection"</code><br><small>Reusable legal section component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MarketingPageShell</strong><br><code>data-component="MarketingPageShell"</code><br><small>Reusable marketing page shell component.</small></td><td><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MarketingSectionHeader</strong><br><code>data-component="MarketingSectionHeader"</code><br><small>Reusable marketing section header component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MissionSection</strong><br><code>data-component="MissionSection"</code><br><small>Reusable mission section component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MobileDeviceFrame</strong><br><code>data-component="MobileDeviceFrame"</code><br><small>Reusable mobile device frame component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MobileNavigation</strong><br><code>data-component="MobileNavigation"</code><br><small>Reusable mobile navigation component.</small></td><td><code>label: string = "Menu"</code><br><code>closeLabel: string = "Close menu"</code><br><code>items: string = []</code><br><code>class: string = ""</code></td><td>None</td><td><code>click</code></td></tr><tr><td><strong>Navigation</strong><br><code>data-component="Navigation"</code><br><small>Reusable navigation component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Panel</strong><br><code>data-component="Panel"</code><br><small>Reusable panel component.</small></td><td><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PreviousNextNavigation</strong><br><code>data-component="PreviousNextNavigation"</code><br><small>Reusable previous next navigation component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PricingHero</strong><br><code>data-component="PricingHero"</code><br><small>Reusable pricing hero component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProductCategorySection</strong><br><code>data-component="ProductCategorySection"</code><br><small>Reusable product category section component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProductHero</strong><br><code>data-component="ProductHero"</code><br><small>Reusable product hero component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProductPageShell</strong><br><code>data-component="ProductPageShell"</code><br><small>Reusable product page shell component.</small></td><td><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PublicHeader</strong><br><code>data-component="PublicHeader"</code><br><small>Reusable public header component.</small></td><td><code>brand: string = "WRNexusJS"</code><br><code>homeHref: string = "/"</code><br><code>signInHref: string = "/signin"</code><br><code>ctaHref: string = "/start"</code><br><code>ctaLabel: string = "Get started"</code></td><td><code>default</code><br><code>mobile</code></td><td><code>click</code></td></tr><tr><td><strong>PublicPageShell</strong><br><code>data-component="PublicPageShell"</code><br><small>Reusable public page shell component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ResizablePanel</strong><br><code>data-component="ResizablePanel"</code><br><small>Reusable resizable panel component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ResourcePageShell</strong><br><code>data-component="ResourcePageShell"</code><br><small>Reusable resource page shell component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ResultsSection</strong><br><code>data-component="ResultsSection"</code><br><small>Reusable results section component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ScreenshotFrame</strong><br><code>data-component="ScreenshotFrame"</code><br><small>Reusable screenshot frame component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Section</strong><br><code>data-component="Section"</code><br><small>Reusable section component.</small></td><td><code>id: string = ""</code><br><code>size: string = "default"</code><br><code>surface: string = "default"</code><br><code>className: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SectionHeader</strong><br><code>data-component="SectionHeader"</code><br><small>Reusable section header component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = "Section title"</code><br><code>description: string = ""</code><br><code>align: string = "left"</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SecurityHero</strong><br><code>data-component="SecurityHero"</code><br><small>Reusable security hero component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SidebarLayout</strong><br><code>data-component="SidebarLayout"</code><br><small>Reusable sidebar layout component.</small></td><td><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SidePanel</strong><br><code>data-component="SidePanel"</code><br><small>Reusable side panel component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SolutionHero</strong><br><code>data-component="SolutionHero"</code><br><small>Reusable solution hero component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SolutionPageShell</strong><br><code>data-component="SolutionPageShell"</code><br><small>Reusable solution page shell component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SolutionSection</strong><br><code>data-component="SolutionSection"</code><br><small>Reusable solution section component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SplitHero</strong><br><code>data-component="SplitHero"</code><br><small>Reusable split hero component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SplitLayout</strong><br><code>data-component="SplitLayout"</code><br><small>Reusable split layout component.</small></td><td><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SplitSectionHeader</strong><br><code>data-component="SplitSectionHeader"</code><br><small>Reusable split section header component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>StatusPageShell</strong><br><code>data-component="StatusPageShell"</code><br><small>Reusable status page shell component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>StepNavigation</strong><br><code>data-component="StepNavigation"</code><br><small>Reusable step navigation component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>StickyLayout</strong><br><code>data-component="StickyLayout"</code><br><small>Reusable sticky layout component.</small></td><td><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TableHeader</strong><br><code>data-component="TableHeader"</code><br><small>Reusable table header component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>VisionSection</strong><br><code>data-component="VisionSection"</code><br><small>Reusable vision section component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WizardHeader</strong><br><code>data-component="WizardHeader"</code><br><small>Reusable wizard header component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WizardNavigation</strong><br><code>data-component="WizardNavigation"</code><br><small>Reusable wizard navigation component.</small></td><td><code>eyebrow: string = ""</code><br><code>title: string = ""</code><br><code>description: string = ""</code><br><code>align: string = "start"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr></tbody></table></div><h3>Overlays</h3><div class="table-wrap"><table><thead><tr><th>Component</th><th>Props</th><th>Slots</th><th>Events</th></tr></thead><tbody><tr><td><strong>AccessibleDialog</strong><br><code>data-component="AccessibleDialog"</code><br><small>Reusable accessible dialog component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AccessibleMenu</strong><br><code>data-component="AccessibleMenu"</code><br><small>Reusable accessible menu component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AccountMenu</strong><br><code>data-component="AccountMenu"</code><br><small>Reusable account menu component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ActionMenu</strong><br><code>data-component="ActionMenu"</code><br><small>Reusable action menu component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>AlertDialog</strong><br><code>data-component="AlertDialog"</code><br><small>Reusable alert dialog component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ApiKeyCreateDialog</strong><br><code>data-component="ApiKeyCreateDialog"</code><br><small>Reusable api key create dialog component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CommandMenu</strong><br><code>data-component="CommandMenu"</code><br><small>Reusable command menu component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ConfirmationDialog</strong><br><code>data-component="ConfirmationDialog"</code><br><small>Reusable confirmation dialog component.</small></td><td><code>title: string = "Confirm action"</code><br><code>description: string = "Are you sure you want to continue?"</code><br><code>confirmLabel: string = "Confirm"</code><br><code>cancelLabel: string = "Cancel"</code><br><code>danger: boolean = false</code><br><code>open: boolean = false</code><br><code>class: string = ""</code></td><td><code>confirm</code></td><td><code>click</code></td></tr><tr><td><strong>ContextMenu</strong><br><code>data-component="ContextMenu"</code><br><small>Reusable context menu component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CookiePreferencesDialog</strong><br><code>data-component="CookiePreferencesDialog"</code><br><small>Reusable cookie preferences dialog component.</small></td><td><code>title: string = "Cookie preferences"</code><br><code>description: string = "Choose which optional cookies you allow. Essential cookies are always enabled."</code><br><code>saveLabel: string = "Save preferences"</code><br><code>acceptLabel: string = "Accept all"</code><br><code>rejectLabel: string = "Reject optional"</code><br><code>open: boolean = false</code><br><code>class: string = ""</code></td><td>None</td><td><code>change</code><br><code>click</code></td></tr><tr><td><strong>DeleteConfirmationDialog</strong><br><code>data-component="DeleteConfirmationDialog"</code><br><small>Reusable delete confirmation dialog component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DevelopersMenu</strong><br><code>data-component="DevelopersMenu"</code><br><small>Reusable developers menu component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DropdownMenu</strong><br><code>data-component="DropdownMenu"</code><br><small>Reusable dropdown menu component.</small></td><td><code>label: string = "Menu"</code></td><td><code>default</code></td><td><code>click</code></td></tr><tr><td><strong>FilterMenu</strong><br><code>data-component="FilterMenu"</code><br><small>Reusable filter menu component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FormDialog</strong><br><code>data-component="FormDialog"</code><br><small>Reusable form dialog component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FullscreenDialog</strong><br><code>data-component="FullscreenDialog"</code><br><small>Reusable fullscreen dialog component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ImagePreviewDialog</strong><br><code>data-component="ImagePreviewDialog"</code><br><small>Reusable image preview dialog component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Lightbox</strong><br><code>data-component="Lightbox"</code><br><small>Reusable lightbox component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LogoutDialog</strong><br><code>data-component="LogoutDialog"</code><br><small>Reusable logout dialog component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>MegaMenu</strong><br><code>data-component="MegaMenu"</code><br><small>Reusable mega menu component.</small></td><td><code>label: string = "Explore"</code><br><code>sections: string = []</code><br><code>class: string = ""</code></td><td>None</td><td><code>click</code></td></tr><tr><td><strong>NavigationMegaMenu</strong><br><code>data-component="NavigationMegaMenu"</code><br><small>Reusable navigation mega menu component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Popover</strong><br><code>data-component="Popover"</code><br><small>Reusable popover component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProductsMegaMenu</strong><br><code>data-component="ProductsMegaMenu"</code><br><small>Reusable products mega menu component.</small></td><td><code>label: string = "Products"</code><br><code>sections: string = []</code><br><code>class: string = ""</code></td><td>None</td><td>None</td></tr><tr><td><strong>PromptDialog</strong><br><code>data-component="PromptDialog"</code><br><small>Reusable prompt dialog component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ResourcesMegaMenu</strong><br><code>data-component="ResourcesMegaMenu"</code><br><small>Reusable resources mega menu component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SearchDialog</strong><br><code>data-component="SearchDialog"</code><br><small>Reusable search dialog component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SecretRevealDialog</strong><br><code>data-component="SecretRevealDialog"</code><br><small>Reusable secret reveal dialog component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SessionExpiredDialog</strong><br><code>data-component="SessionExpiredDialog"</code><br><small>Reusable session expired dialog component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SolutionsMegaMenu</strong><br><code>data-component="SolutionsMegaMenu"</code><br><small>Reusable solutions mega menu component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>StepUpAuthenticationDialog</strong><br><code>data-component="StepUpAuthenticationDialog"</code><br><small>Reusable step up authentication dialog component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TestMessageDialog</strong><br><code>data-component="TestMessageDialog"</code><br><small>Reusable test message dialog component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>UnsavedChangesDialog</strong><br><code>data-component="UnsavedChangesDialog"</code><br><small>Reusable unsaved changes dialog component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>VideoPreviewDialog</strong><br><code>data-component="VideoPreviewDialog"</code><br><small>Reusable video preview dialog component.</small></td><td><code>title: string = ""</code><br><code>description: string = ""</code><br><code>open: boolean = false</code><br><code>closeLabel: string = "Close"</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr></tbody></table></div><h3>Visualization</h3><div class="table-wrap"><table><thead><tr><th>Component</th><th>Props</th><th>Slots</th><th>Events</th></tr></thead><tbody><tr><td><strong>AreaChart</strong><br><code>data-component="AreaChart"</code><br><small>Reusable area chart component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>BarChart</strong><br><code>data-component="BarChart"</code><br><small>Reusable bar chart component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CampaignProgress</strong><br><code>data-component="CampaignProgress"</code><br><small>Reusable campaign progress component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ChannelComparisonChart</strong><br><code>data-component="ChannelComparisonChart"</code><br><small>Reusable channel comparison chart component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ChannelFallbackDiagram</strong><br><code>data-component="ChannelFallbackDiagram"</code><br><small>Reusable channel fallback diagram component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ChannelFlow</strong><br><code>data-component="ChannelFlow"</code><br><small>Reusable channel flow component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ChecklistProgress</strong><br><code>data-component="ChecklistProgress"</code><br><small>Reusable checklist progress component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CircularProgress</strong><br><code>data-component="CircularProgress"</code><br><small>Reusable circular progress component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CohortChart</strong><br><code>data-component="CohortChart"</code><br><small>Reusable cohort chart component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CompletionMeter</strong><br><code>data-component="CompletionMeter"</code><br><small>Reusable completion meter component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ConversionChart</strong><br><code>data-component="ConversionChart"</code><br><small>Reusable conversion chart component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>CostBreakdownChart</strong><br><code>data-component="CostBreakdownChart"</code><br><small>Reusable cost breakdown chart component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DeliveryStatusChart</strong><br><code>data-component="DeliveryStatusChart"</code><br><small>Reusable delivery status chart component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DeliveryStatusTimeline</strong><br><code>data-component="DeliveryStatusTimeline"</code><br><small>Reusable delivery status timeline component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>DonutChart</strong><br><code>data-component="DonutChart"</code><br><small>Reusable donut chart component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>EncryptionDiagram</strong><br><code>data-component="EncryptionDiagram"</code><br><small>Reusable encryption diagram component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ExportProgress</strong><br><code>data-component="ExportProgress"</code><br><small>Reusable export progress component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FallbackRouteDiagram</strong><br><code>data-component="FallbackRouteDiagram"</code><br><small>Reusable fallback route diagram component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FeatureTimeline</strong><br><code>data-component="FeatureTimeline"</code><br><small>Reusable feature timeline component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FormProgress</strong><br><code>data-component="FormProgress"</code><br><small>Reusable form progress component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>FunnelChart</strong><br><code>data-component="FunnelChart"</code><br><small>Reusable funnel chart component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>GeoChart</strong><br><code>data-component="GeoChart"</code><br><small>Reusable geo chart component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ImportProgress</strong><br><code>data-component="ImportProgress"</code><br><small>Reusable import progress component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>IncidentResponseFlow</strong><br><code>data-component="IncidentResponseFlow"</code><br><small>Reusable incident response flow component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>IncidentTimeline</strong><br><code>data-component="IncidentTimeline"</code><br><small>Reusable incident timeline component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>JobProgress</strong><br><code>data-component="JobProgress"</code><br><small>Reusable job progress component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LatencyMetric</strong><br><code>data-component="LatencyMetric"</code><br><small>Reusable latency metric component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>LineChart</strong><br><code>data-component="LineChart"</code><br><small>Reusable line chart component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Metric</strong><br><code>data-component="Metric"</code><br><small>Reusable metric component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>OnboardingProgress</strong><br><code>data-component="OnboardingProgress"</code><br><small>Reusable onboarding progress component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PasswordStrengthMeter</strong><br><code>data-component="PasswordStrengthMeter"</code><br><small>Reusable password strength meter component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>PieChart</strong><br><code>data-component="PieChart"</code><br><small>Reusable pie chart component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProductArchitectureDiagram</strong><br><code>data-component="ProductArchitectureDiagram"</code><br><small>Reusable product architecture diagram component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProgressChart</strong><br><code>data-component="ProgressChart"</code><br><small>Reusable progress chart component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ProgressRing</strong><br><code>data-component="ProgressRing"</code><br><small>Reusable progress ring component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>RevenueChart</strong><br><code>data-component="RevenueChart"</code><br><small>Reusable revenue chart component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>SmartRouteDiagram</strong><br><code>data-component="SmartRouteDiagram"</code><br><small>Reusable smart route diagram component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TenantIsolationDiagram</strong><br><code>data-component="TenantIsolationDiagram"</code><br><small>Reusable tenant isolation diagram component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>Timeline</strong><br><code>data-component="Timeline"</code><br><small>Reusable timeline component.</small></td><td><code>title: string = "Timeline"</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>TimelineChart</strong><br><code>data-component="TimelineChart"</code><br><small>Reusable timeline chart component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>ToastProgress</strong><br><code>data-component="ToastProgress"</code><br><small>Reusable toast progress component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>UploadProgress</strong><br><code>data-component="UploadProgress"</code><br><small>Reusable upload progress component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>UptimeChart</strong><br><code>data-component="UptimeChart"</code><br><small>Reusable uptime chart component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>UptimeMetric</strong><br><code>data-component="UptimeMetric"</code><br><small>Reusable uptime metric component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WebhookFlowDiagram</strong><br><code>data-component="WebhookFlowDiagram"</code><br><small>Reusable webhook flow diagram component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr><tr><td><strong>WorkflowProgress</strong><br><code>data-component="WorkflowProgress"</code><br><small>Reusable workflow progress component.</small></td><td><code>title: string = ""</code><br><code>value: string = ""</code><br><code>description: string = ""</code><br><code>summary: string = ""</code><br><code>loading: boolean = false</code><br><code>class: string = ""</code></td><td><code>default</code></td><td>None</td></tr></tbody></table></div></section></article>
|
||
<aside class="on-this-page"><h2>On this page</h2><nav><a class="toc-level-2" href="#guide">Guide</a><a class="toc-level-3" href="#overview">Overview</a><a class="toc-level-3" href="#components">Components</a><a class="toc-level-4" href="#layout">Layout</a><a class="toc-level-4" href="#core-feedback">Core / feedback</a><a class="toc-level-4" href="#additional-controls-data-display">Additional controls & data display</a><a class="toc-level-3" href="#api">API</a><a class="toc-level-4" href="#ui-css-asset-export">./ui.css asset export</a><a class="toc-level-4" href="#tailwind-and-motion">Tailwind and motion</a><a class="toc-level-3" href="#usage">Usage</a><a class="toc-level-4" href="#auto-discovery">Auto-discovery</a><a class="toc-level-4" href="#mounting-components-in-a-page">Mounting components in a page</a><a class="toc-level-3" href="#overrides">Overrides</a><a class="toc-level-3" href="#requirements-notes">Requirements / Notes</a><a class="toc-level-2" href="#api">Complete API</a><a class="toc-level-2" href="#examples">Examples</a><a class="toc-level-2" href="#components">All UI components</a></nav></aside>
|
||
</main>
|
||
<footer>WRNexusJS 0.2.59 · Private Developer Preview · Bun-native · Documentation generated from installed package APIs.</footer>
|
||
</div>
|
||
}
|
||
}
|