@wrnexus/ui
Themeable server-rendered UI components and CSS.
Private registry access required
This package is not available from the public npm registry. After WorkRoot approves access and supplies private registry instructions, install the release-aligned package:
bun add @wrnexus/ui@0.2.59Request preview access. Never put registry tokens in source control.
First-party Wire UI component library — a set of themeable .wrn components plus a single tokenized stylesheet.
Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.
Overview
@wrnexus/ui ships a library of server-rendered .wrn components (layout, form controls, and feedback UI) together with one themeable stylesheet, ui.css. The components are auto-discovered 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 data-component="<name>". Every visual is driven by var(--wire-*) theme tokens, so components restyle instantly when the theme changes. The tiny JS surface (src/index.ts) exists only so the toolchain (CLI build + dev server) can locate the component directory and stylesheet.
The complete PDF-aligned catalog currently contains 891 components. The generated COMPONENTS.md and component-reference.json files document every mount name, prop, inferred type, default/required status, slot, event, category, and source file directly from the packaged .wrn source.
bun add @wrnexus/ui
Private package — the machine must be authenticated to the wrnexus npm org
(a read token in ~/.npmrc). Requires Bun (Node is not supported).
In practice you rarely install this directly: @wrnexus/cli and @wrnexus/dev-server already depend on it and wire it into the router for you (see [Auto-discovery](#auto-discovery)).
Components
Components live as .wrn files under packages/ui/components/. The mount name is the lowercase file basename (e.g. button.wrn → data-component="button"). Each accepts a class prop (appended to its root element) and most render their body from either a named prop or the default slot.
Layout
| Name | Purpose | Key props |
|---|---|---|
container | Max-width centered content wrapper | class |
stack | Vertical column with gap | gap (0–8) |
hstack | Horizontal row with gap | gap (0–8) |
grid | CSS grid container | see source |
divider | Horizontal rule | class |
spacer | Flexible/empty spacing element | see source |
Core / feedback
| Name | Purpose | Key props | |||||
|---|---|---|---|---|---|---|---|
button | Button | label, variant (default\ | primary\ | danger\ | ghost), size (sm\ | md\ | lg), type |
input | Text input | see source | |||||
textarea | Multi-line input | see source | |||||
checkbox | Checkbox | see source | |||||
badge | Small status badge | label, variant | |||||
alert | Callout box | variant (info\ | success\ | danger\ | warning), title, message | ||
card | Padded, bordered surface | class | |||||
avatar | User avatar | see source | |||||
spinner | Loading indicator | see source | |||||
disclosure | Expandable details/summary | see source | |||||
theme-toggle | Theme switch button (binds data-wire-theme-toggle) | label |
Additional controls & data display
Also shipped: select, radio, switch, progress, tag, skeleton, tooltip, table, FAQAccordion, AnnouncementBar, and BackToTop.
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.
Seo and StructuredData remain framework/page concerns rather than body components: use the native page seo { ... } block and document-head APIs so metadata is emitted in <head> instead of invalid component markup.
The authoritative, always-current list is uiComponentNames() (below), which reads the component directory at runtime.
For the full catalog, see [COMPONENTS.md](./COMPONENTS.md). The machine-readable equivalent is exported as @wrnexus/ui/component-reference.json.
API
The JS module (@wrnexus/ui) exposes four helpers used by the build tooling to locate the component assets. There is no component code to import — the components are .wrn files rendered server-side.
| Export | Signature | Returns |
|---|---|---|
uiComponentsDir | () => string | Absolute path to the .wrn component directory (feed to buildRouter's componentDirs). |
uiCssPath | () => string | Absolute path to ui.css. |
uiCss | () => string | The ui.css file contents (all .wire-* classes, themed via tokens). |
uiComponentNames | () => string[] | Sorted list of built-in component names (e.g. for wrnexus eject listing). |
./ui.css asset export
package.json also exposes the raw stylesheet as a subpath asset:
"exports": {
".": "./src/index.ts",
"./ui.css": "./ui.css"
}
The framework serves this stylesheet once at /__wrnexus/ui.css, so pages get all component styles from a single request.
Tailwind and motion
Components use static Tailwind utility classes alongside the shared .wire-* layer. If the package is consumed by a separate Tailwind build, include its component sources so every utility is generated:
@import "tailwindcss";
@source "../node_modules/@wrnexus/ui/components/*.wrn";
The shared stylesheet gives all component boundaries consistent, GPU-friendly entry and interaction motion. Override --wire-motion-fast, --wire-motion-base, --wire-motion-slow, --wire-ease-standard, or --wire-ease-emphasized to tune it. Hover lift is limited to precise pointing devices and prefers-reduced-motion is honored automatically.
Usage
Auto-discovery
The router scans extra componentDirs (in addition to the app's own app/components) and keys components by name. Library dirs are scanned first and app/components last, so an app component of the same name shadows the library's. The CLI build (@wrnexus/cli) and dev server (@wrnexus/dev-server) both wire the UI directory in for you:
import { buildRouter } from "@wrnexus/router";
import { uiComponentsDir } from "@wrnexus/ui";
const router = buildRouter(appDir, { componentDirs: [uiComponentsDir()] });
Mounting components in a page
Once discovered, mount any component by name via data-component. Quoted attributes (other than data-component) become string props:
<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>
Overrides
Ways to customize the components, in increasing order of power:
1. Theme tokens — override CSS custom properties such as --wire-color-primary, --wire-color-surface, --wire-radius-sm, etc. Every component style resolves through var(--wire-*), so changing a token restyles everything instantly (including across theme switches). 2. App CSS — redefine a .wire-* class in your own stylesheet, which is loaded after ui.css and therefore wins. 3. class prop — pass a class 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. wrnexus eject <name> — copy the component's .wrn source into your app/components, where (because app components shadow library ones) you fully own and can edit it. Use uiComponentNames() for the list of ejectable names.
Requirements / Notes
- Bun-only — the package uses standard fs/path/url APIs but is published and
- Peer packages: components are discovered and rendered by
- Depends on [
@wrnexus/core](../core) (dependencies). theme-togglerelies on the framework's theme runtime, which binds the
consumed within the Bun-native WRNexusJS toolchain (Node is not supported).
[@wrnexus/router](../router) (via componentDirs) and served by [@wrnexus/dev-server](../dev-server) / built by [@wrnexus/cli](../cli).
data-wire-theme-toggle attribute — no per-component JS is required.
Complete TypeScript API
This declaration comes from the exact installed package and lists its exported functions, classes, interfaces, and types.
/**
* @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 };
Examples
Examples are taken from this package's installed documentation and must be evaluated with its requirements and stability notes.
Auto-discovery
import { buildRouter } from "@wrnexus/router";
import { uiComponentsDir } from "@wrnexus/ui";
const router = buildRouter(appDir, { componentDirs: [uiComponentsDir()] });Mounting components in a page
<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>All 891 UI components and props
This reference is generated from the exact installed .wrn sources. Required props have no default; optional props show their default value.
Actions
| Component | Props | Slots | Events |
|---|---|---|---|
AcceptAllCookiesButtondata-component="AcceptAllCookiesButton"Reusable accept all cookies button component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
ArticleNewsletterCTAdata-component="ArticleNewsletterCTA"Reusable article newsletter c t a component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
ArticleShareActionsdata-component="ArticleShareActions"Reusable article share actions component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
BackButtondata-component="BackButton"Reusable back button component. | label: string = "Action"type: string = "button"disabled: boolean = falseclass: string = "" | default | None |
Buttondata-component="Button"Reusable button component. | label: string = "Button"type: string = "button"variant: string = "primary"size: string = "md"disabled: boolean = falseloading: boolean = falseicon: string = ""className: string = "" | None | None |
CenteredCTAdata-component="CenteredCTA"Reusable centered c t a component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
ClearFiltersButtondata-component="ClearFiltersButton"Reusable clear filters button component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
CloseButtondata-component="CloseButton"Reusable close button component. | label: string = "Action"type: string = "button"disabled: boolean = falseclass: string = "" | default | None |
CodeCopyButtondata-component="CodeCopyButton"Reusable code copy button component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
ContactCTAdata-component="ContactCTA"Reusable contact c t a component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
ContactSalesButtondata-component="ContactSalesButton"Reusable contact sales button component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
CopyButtondata-component="CopyButton"Reusable copy button component. | label: string = "Action"type: string = "button"disabled: boolean = falseclass: string = "" | default | None |
CopyCodeButtondata-component="CopyCodeButton"Reusable copy code button component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
DangerButtondata-component="DangerButton"Reusable danger button component. | label: string = "Action"type: string = "button"disabled: boolean = falseclass: string = "" | default | None |
DeveloperCTAdata-component="DeveloperCTA"Reusable developer c t a component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
DoNotSellLinkdata-component="DoNotSellLink"Reusable do not sell link component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
DownloadActiondata-component="DownloadAction"Reusable download action component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
DownloadButtondata-component="DownloadButton"Reusable download button component. | label: string = "Action"type: string = "button"disabled: boolean = falseclass: string = "" | default | None |
DownloadPolicyButtondata-component="DownloadPolicyButton"Reusable download policy button component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
EnterpriseCTAdata-component="EnterpriseCTA"Reusable enterprise c t a component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
ErrorActionsdata-component="ErrorActions"Reusable error actions component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
ErrorSupportLinkdata-component="ErrorSupportLink"Reusable error support link component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
ExternalLinkdata-component="ExternalLink"Reusable external link component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
FieldActionsdata-component="FieldActions"Reusable field actions component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
FinalCTAdata-component="FinalCTA"Reusable final c t a component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
FormActionsdata-component="FormActions"Reusable form actions component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
GhostButtondata-component="GhostButton"Reusable ghost button component. | label: string = "Action"type: string = "button"disabled: boolean = falseclass: string = "" | default | None |
GradientCTAdata-component="GradientCTA"Reusable gradient c t a component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
HeaderActionsdata-component="HeaderActions"Reusable header actions component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
HeroActionsdata-component="HeroActions"Reusable hero actions component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
HeroPrimaryActiondata-component="HeroPrimaryAction"Reusable hero primary action component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
HeroSecondaryActiondata-component="HeroSecondaryAction"Reusable hero secondary action component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
IconButtondata-component="IconButton"Reusable icon button component. | label: string = "Action"icon: string = "•"variant: string = "ghost"disabled: boolean = false | None | None |
LegalPrintButtondata-component="LegalPrintButton"Reusable legal print button component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
LinkButtondata-component="LinkButton"Reusable link button component. | label: string = "Action"type: string = "button"disabled: boolean = falseclass: string = "" | default | None |
LoadingButtondata-component="LoadingButton"Reusable loading button component. | label: string = "Continue"loadingLabel: string = "Loading…"loading: boolean = falsedisabled: boolean = falsetype: string = "button"variant: string = "primary"class: string = "" | None | None |
LocalizedRouteLinkdata-component="LocalizedRouteLink"Reusable localized route link component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
MobileMenuButtondata-component="MobileMenuButton"Reusable mobile menu button component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
NewsletterCTAdata-component="NewsletterCTA"Reusable newsletter c t a component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
OpenAPICTAdata-component="OpenAPICTA"Reusable open a p i c t a component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
PasskeyButtondata-component="PasskeyButton"Reusable passkey button component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
PlanCTAdata-component="PlanCTA"Reusable plan c t a component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
PostmanCTAdata-component="PostmanCTA"Reusable postman c t a component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
PrimaryButtondata-component="PrimaryButton"Reusable primary button component. | label: string = "Action"type: string = "button"disabled: boolean = falseclass: string = "" | default | None |
PrintActiondata-component="PrintAction"Reusable print action component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
PrintPolicyButtondata-component="PrintPolicyButton"Reusable print policy button component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
ProductCTAdata-component="ProductCTA"Reusable product c t a component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
RejectOptionalCookiesButtondata-component="RejectOptionalCookiesButton"Reusable reject optional cookies button component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
ReopenCookieSettingsButtondata-component="ReopenCookieSettingsButton"Reusable reopen cookie settings button component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
ResponsibleDisclosureCTAdata-component="ResponsibleDisclosureCTA"Reusable responsible disclosure c t a component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
SaveCookiePreferencesButtondata-component="SaveCookiePreferencesButton"Reusable save cookie preferences button component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
SearchButtondata-component="SearchButton"Reusable search button component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
SecondaryButtondata-component="SecondaryButton"Reusable secondary button component. | label: string = "Action"type: string = "button"disabled: boolean = falseclass: string = "" | default | None |
SectionActionsdata-component="SectionActions"Reusable section actions component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
ShareActiondata-component="ShareAction"Reusable share action component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
ShareButtondata-component="ShareButton"Reusable share button component. | label: string = "Action"type: string = "button"disabled: boolean = falseclass: string = "" | default | None |
SignInLinkdata-component="SignInLink"Reusable sign in link component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
SkipLinkdata-component="SkipLink"Reusable skip link component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
SplitButtondata-component="SplitButton"Reusable split button component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
SplitCTAdata-component="SplitCTA"Reusable split c t a component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
StartFreeButtondata-component="StartFreeButton"Reusable start free button component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
TertiaryButtondata-component="TertiaryButton"Reusable tertiary button component. | label: string = "Action"type: string = "button"disabled: boolean = falseclass: string = "" | default | None |
TextLinkdata-component="TextLink"Reusable text link component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
ToastActiondata-component="ToastAction"Reusable toast action component. | label: string = "Action"href: string = ""type: string = "button"variant: string = "primary"disabled: boolean = falseclass: string = "" | default | None |
Content
| Component | Props | Slots | Events |
|---|---|---|---|
AccessibleAccordiondata-component="AccessibleAccordion"Reusable accessible accordion component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
AccessibleCarouseldata-component="AccessibleCarousel"Reusable accessible carousel component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
AccessibleChartSummarydata-component="AccessibleChartSummary"Reusable accessible chart summary component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
AccessibleErrorSummarydata-component="AccessibleErrorSummary"Reusable accessible error summary component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
AccessibleIcondata-component="AccessibleIcon"Reusable accessible icon component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
AccessibleTabsdata-component="AccessibleTabs"Reusable accessible tabs component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
AccessibleTooltipdata-component="AccessibleTooltip"Reusable accessible tooltip component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
Accordiondata-component="Accordion"Reusable accordion component. | title: string = "Question"open: boolean = false | default | click |
AddOnCarddata-component="AddOnCard"Reusable add on card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
AddressPreviewdata-component="AddressPreview"Reusable address preview component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
AdvancedFilterBuilderdata-component="AdvancedFilterBuilder"Reusable advanced filter builder component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
AnalyticsDashboardPreviewdata-component="AnalyticsDashboardPreview"Reusable analytics dashboard preview component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ApiEndpointCarddata-component="ApiEndpointCard"Reusable api endpoint card component. | method: string = "GET"path: string = "/api/example"description: string = "" | default | None |
ApiErrorExampledata-component="ApiErrorExample"Reusable api error example component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ApiKeyDisplaydata-component="ApiKeyDisplay"Reusable api key display component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ApiRequestExampledata-component="ApiRequestExample"Reusable api request example component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ApiResponseExampledata-component="ApiResponseExample"Reusable api response example component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ApiSchemaViewerdata-component="ApiSchemaViewer"Reusable api schema viewer component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
AssetCarddata-component="AssetCard"Reusable asset card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
AttachmentUploaddata-component="AttachmentUpload"Reusable attachment upload component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
AudioUploaddata-component="AudioUpload"Reusable audio upload component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
AuditLogPreviewdata-component="AuditLogPreview"Reusable audit log preview component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
AuthorAvatardata-component="AuthorAvatar"Reusable author avatar component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
AuthorCarddata-component="AuthorCard"Reusable author card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
AuthorizedApplicationCarddata-component="AuthorizedApplicationCard"Reusable authorized application card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
AutomationExampleCarddata-component="AutomationExampleCard"Reusable automation example card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
AvailabilityCalendardata-component="AvailabilityCalendar"Reusable availability calendar component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
Avatardata-component="Avatar"Reusable avatar component. | src: string = ""alt: string = ""initials: string = "WR"size: string = "md" | None | None |
AvatarUploaddata-component="AvatarUpload"Reusable avatar upload component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
BankTransferDetailsdata-component="BankTransferDetails"Reusable bank transfer details component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
BillingAddressFormdata-component="BillingAddressForm"Reusable billing address form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
BillingExampledata-component="BillingExample"Reusable billing example component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
BlogCarddata-component="BlogCard"Reusable blog card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
BlogSearchdata-component="BlogSearch"Reusable blog search component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
BodyTextdata-component="BodyText"Reusable body text component. | text: string = ""align: string = "start"class: string = "" | default | None |
BudgetRangeSliderdata-component="BudgetRangeSlider"Reusable budget range slider component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
Calendardata-component="Calendar"Reusable calendar component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
CampaignCarddata-component="CampaignCard"Reusable campaign card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
CampaignPerformancePreviewdata-component="CampaignPerformancePreview"Reusable campaign performance preview component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
Carddata-component="Card"Reusable card component. | variant: string = "default"padding: string = "md"interactive: boolean = falseclassName: string = "" | default | None |
CardPaymentFormdata-component="CardPaymentForm"Reusable card payment form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
CareerApplicationFormdata-component="CareerApplicationForm"Reusable career application form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
Carouseldata-component="Carousel"Reusable carousel component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
CaseStudyCarddata-component="CaseStudyCard"Reusable case study card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
CaseStudyPreviewdata-component="CaseStudyPreview"Reusable case study preview component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
CertificateUploaddata-component="CertificateUpload"Reusable certificate upload component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ChannelCarddata-component="ChannelCard"Reusable channel card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
ChannelIcondata-component="ChannelIcon"Reusable channel icon component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ChartTooltipdata-component="ChartTooltip"Reusable chart tooltip component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
Checklistdata-component="Checklist"Reusable checklist component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ClickableCarddata-component="ClickableCard"Reusable clickable card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
Codedata-component="Code"Reusable code component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
CodeBlockdata-component="CodeBlock"Reusable code block component. | language: string = "text"filename: string = ""code: string = "" | None | click |
CodeTabsdata-component="CodeTabs"Reusable code tabs component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
CodeTextdata-component="CodeText"Reusable code text component. | text: string = ""align: string = "start"class: string = "" | default | None |
ColorSwatchdata-component="ColorSwatch"Reusable color swatch component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
CommandBlockdata-component="CommandBlock"Reusable command block component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ComplianceProgramCarddata-component="ComplianceProgramCard"Reusable compliance program card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ConnectedAccountCarddata-component="ConnectedAccountCard"Reusable connected account card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ConnectionCarddata-component="ConnectionCard"Reusable connection card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
ConsentTimelinePreviewdata-component="ConsentTimelinePreview"Reusable consent timeline preview component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ContactCarddata-component="ContactCard"Reusable contact card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
ContactFormdata-component="ContactForm"Reusable contact form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ContactSalesFormdata-component="ContactSalesForm"Reusable contact sales form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ContextSwitcherdata-component="ContextSwitcher"Reusable context switcher component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ConversationPreviewdata-component="ConversationPreview"Reusable conversation preview component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
CostSummarydata-component="CostSummary"Reusable cost summary component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
CronBuilderdata-component="CronBuilder"Reusable cron builder component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
CsvUploaddata-component="CsvUpload"Reusable csv upload component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
CustomerLogodata-component="CustomerLogo"Reusable customer logo component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
CustomerStoryCarddata-component="CustomerStoryCard"Reusable customer story card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
DataProtectionCarddata-component="DataProtectionCard"Reusable data protection card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
DateRangeCalendardata-component="DateRangeCalendar"Reusable date range calendar component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
DateRangeSliderdata-component="DateRangeSlider"Reusable date range slider component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
DeliveryPreviewdata-component="DeliveryPreview"Reusable delivery preview component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
DemoRequestFormdata-component="DemoRequestForm"Reusable demo request form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
DeveloperSearchdata-component="DeveloperSearch"Reusable developer search component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
DeviceCarddata-component="DeviceCard"Reusable device card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
DocumentPreviewdata-component="DocumentPreview"Reusable document preview component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
DocumentUploaddata-component="DocumentUpload"Reusable document upload component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
DownloadGateFormdata-component="DownloadGateForm"Reusable download gate form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
DownloadResourceFormdata-component="DownloadResourceForm"Reusable download resource form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
DurationSliderdata-component="DurationSlider"Reusable duration slider component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ElevatedCarddata-component="ElevatedCard"Reusable elevated card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
EmailComposerdata-component="EmailComposer"Reusable email composer component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
EnterprisePricingCarddata-component="EnterprisePricingCard"Reusable enterprise pricing card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
EnvironmentSwitcherdata-component="EnvironmentSwitcher"Reusable environment switcher component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ErrorCarddata-component="ErrorCard"Reusable error card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
ErrorCodedata-component="ErrorCode"Reusable error code component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ErrorIllustrationdata-component="ErrorIllustration"Reusable error illustration component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ErrorPagedata-component="ErrorPage"Reusable error page component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
EstimatedCostSummarydata-component="EstimatedCostSummary"Reusable estimated cost summary component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ExpandableTextdata-component="ExpandableText"Reusable expandable text component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
EyebrowTextdata-component="EyebrowText"Reusable eyebrow text component. | text: string = ""align: string = "start"class: string = "" | default | None |
FactorCarddata-component="FactorCard"Reusable factor card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
FallbackRouteBuilderdata-component="FallbackRouteBuilder"Reusable fallback route builder component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
FaviconUploaddata-component="FaviconUpload"Reusable favicon upload component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
FeatureCarddata-component="FeatureCard"Reusable feature card component. | icon: string = "✦"title: string = "Feature"description: string = ""href: string = "" | None | None |
FeatureChecklistdata-component="FeatureChecklist"Reusable feature checklist component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
FeaturedBlogCarddata-component="FeaturedBlogCard"Reusable featured blog card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
FeatureIconCarddata-component="FeatureIconCard"Reusable feature icon card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
FeatureTabsdata-component="FeatureTabs"Reusable feature tabs component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
FileSizeLabeldata-component="FileSizeLabel"Reusable file size label component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
FileUploaddata-component="FileUpload"Reusable file upload component. | id: string = "file"name: string = "file"label: string = "Upload file"accept: string = ""multiple: boolean = falsehelp: string = "Drag and drop or browse" | None | None |
FooterLanguageSwitcherdata-component="FooterLanguageSwitcher"Reusable footer language switcher component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ForbiddenPagedata-component="ForbiddenPage"Reusable forbidden page component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ForgotPasswordFormdata-component="ForgotPasswordForm"Reusable forgot password form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
Formdata-component="Form"Reusable form component. | action: string = ""method: string = "post"name: string = ""loading: boolean = falseclass: string = "" | default | None |
FormErrorSummarydata-component="FormErrorSummary"Reusable form error summary component. | title: string = "Please fix the following"visible: boolean = true | default | None |
FormHelpTextdata-component="FormHelpText"Reusable form help text component. | id: string = ""text: string = ""class: string = "" | default | None |
FormLabeldata-component="FormLabel"Reusable form label component. | for: string = ""label: string = "Label"required: boolean = falseoptional: boolean = falseclass: string = "" | None | None |
GlassCarddata-component="GlassCard"Reusable glass card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
GlobalSearchdata-component="GlobalSearch"Reusable global search component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
GuideCarddata-component="GuideCard"Reusable guide card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
GuideChecklistdata-component="GuideChecklist"Reusable guide checklist component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
GuideStepdata-component="GuideStep"Reusable guide step component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
HeroGradientTextdata-component="HeroGradientText"Reusable hero gradient text component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
HeroProductPreviewdata-component="HeroProductPreview"Reusable hero product preview component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
HeroTrustTextdata-component="HeroTrustText"Reusable hero trust text component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
HighlightTextdata-component="HighlightText"Reusable highlight text component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
HolidayCalendardata-component="HolidayCalendar"Reusable holiday calendar component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
HumanApprovalStepdata-component="HumanApprovalStep"Reusable human approval step component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
Icondata-component="Icon"Reusable icon component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
Illustrationdata-component="Illustration"Reusable illustration component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ImageCompressionPreviewdata-component="ImageCompressionPreview"Reusable image compression preview component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ImageUploaddata-component="ImageUpload"Reusable image upload component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
IncidentCarddata-component="IncidentCard"Reusable incident card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
InfoCarddata-component="InfoCard"Reusable info card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
InlineCodedata-component="InlineCode"Reusable inline code component. | text: string = ""align: string = "start"class: string = "" | default | None |
IntegrationCarddata-component="IntegrationCard"Reusable integration card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
InvoiceLineItemdata-component="InvoiceLineItem"Reusable invoice line item component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
InvoiceSummarydata-component="InvoiceSummary"Reusable invoice summary component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
JobCarddata-component="JobCard"Reusable job card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
JsonViewerdata-component="JsonViewer"Reusable json viewer component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
KycDocumentUploaddata-component="KycDocumentUpload"Reusable kyc document upload component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
LanguageSwitcherdata-component="LanguageSwitcher"Reusable language switcher component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
LeadTextdata-component="LeadText"Reusable lead text component. | text: string = ""align: string = "start"class: string = "" | default | None |
LegalContactBlockdata-component="LegalContactBlock"Reusable legal contact block component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
LegalSummarydata-component="LegalSummary"Reusable legal summary component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
Logodata-component="Logo"Reusable logo component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
LogoUploaddata-component="LogoUpload"Reusable logo upload component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
MaintenanceCarddata-component="MaintenanceCard"Reusable maintenance card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
MaintenancePagedata-component="MaintenancePage"Reusable maintenance page component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
MessageComposerdata-component="MessageComposer"Reusable message composer component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
MessageComposerPreviewdata-component="MessageComposerPreview"Reusable message composer preview component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
MessagePreviewdata-component="MessagePreview"Reusable message preview component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
MessageVolumeSliderdata-component="MessageVolumeSlider"Reusable message volume slider component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
MetricCarddata-component="MetricCard"Reusable metric card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
MetricTextdata-component="MetricText"Reusable metric text component. | text: string = ""align: string = "start"class: string = "" | default | None |
MobileTableCarddata-component="MobileTableCard"Reusable mobile table card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
MultiFileUploaddata-component="MultiFileUpload"Reusable multi file upload component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
MutedTextdata-component="MutedText"Reusable muted text component. | text: string = ""align: string = "start"class: string = "" | default | None |
NavigationItemdata-component="NavigationItem"Reusable navigation item component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
NewsletterFormdata-component="NewsletterForm"Reusable newsletter form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
NotFoundPagedata-component="NotFoundPage"Reusable not found page component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
NotificationCarddata-component="NotificationCard"Reusable notification card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
OfficeCarddata-component="OfficeCard"Reusable office card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
OfflinePagedata-component="OfflinePage"Reusable offline page component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
OneTimeSecretDisplaydata-component="OneTimeSecretDisplay"Reusable one time secret display component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
OpacitySliderdata-component="OpacitySlider"Reusable opacity slider component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
OtpVerificationFormdata-component="OtpVerificationForm"Reusable otp verification form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
OutlinedCarddata-component="OutlinedCard"Reusable outlined card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
PartnerApplicationFormdata-component="PartnerApplicationForm"Reusable partner application form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
PartnerProgramCarddata-component="PartnerProgramCard"Reusable partner program card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
PaymentMethodCarddata-component="PaymentMethodCard"Reusable payment method card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
PdfPreviewdata-component="PdfPreview"Reusable pdf preview component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
PlatformPillarCarddata-component="PlatformPillarCard"Reusable platform pillar card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
PressReleaseCarddata-component="PressReleaseCard"Reusable press release card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
PriceRangeSliderdata-component="PriceRangeSlider"Reusable price range slider component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
PriceTextdata-component="PriceText"Reusable price text component. | text: string = ""align: string = "start"class: string = "" | default | None |
PricingCarddata-component="PricingCard"Reusable pricing card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
PricingContactFormdata-component="PricingContactForm"Reusable pricing contact form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
PricingPlanCarddata-component="PricingPlanCard"Reusable pricing plan card component. | name: string = "Starter"description: string = ""price: string = "₹0"period: string = "/month"featured: boolean = falsectaLabel: string = "Choose plan"ctaHref: string = "#" | default | None |
ProductCarddata-component="ProductCard"Reusable product card component. | eyebrow: string = "Product"title: string = "Product name"description: string = ""href: string = "#"actionLabel: string = "Learn more"status: string = ""class: string = "" | None | None |
ProductIcondata-component="ProductIcon"Reusable product icon component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ProductLogodata-component="ProductLogo"Reusable product logo component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ProductMiniCarddata-component="ProductMiniCard"Reusable product mini card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ProductNavigationCarddata-component="ProductNavigationCard"Reusable product navigation card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ProgressSliderdata-component="ProgressSlider"Reusable progress slider component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ProjectCarddata-component="ProjectCard"Reusable project card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
ProjectSwitcherdata-component="ProjectSwitcher"Reusable project switcher component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
PublicHeaderLogodata-component="PublicHeaderLogo"Reusable public header logo component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
PushComposerdata-component="PushComposer"Reusable push composer component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
QrCodedata-component="QrCode"Reusable qr code component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
QuantityStepperdata-component="QuantityStepper"Reusable quantity stepper component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
QuoteTextdata-component="QuoteText"Reusable quote text component. | text: string = ""align: string = "start"class: string = "" | default | None |
RangeSliderdata-component="RangeSlider"Reusable range slider component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
RateLimitPagedata-component="RateLimitPage"Reusable rate limit page component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
RatingSliderdata-component="RatingSlider"Reusable rating slider component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
RecoveryCodeFormdata-component="RecoveryCodeForm"Reusable recovery code form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
RecurrenceRuleBuilderdata-component="RecurrenceRuleBuilder"Reusable recurrence rule builder component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ReportCarddata-component="ReportCard"Reusable report card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
RequestResponseViewerdata-component="RequestResponseViewer"Reusable request response viewer component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
RequestViewerdata-component="RequestViewer"Reusable request viewer component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ResetPasswordFormdata-component="ResetPasswordForm"Reusable reset password form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ResourceCarddata-component="ResourceCard"Reusable resource card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ResourceDownloadCarddata-component="ResourceDownloadCard"Reusable resource download card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ResourceSearchdata-component="ResourceSearch"Reusable resource search component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ResponseViewerdata-component="ResponseViewer"Reusable response viewer component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
SDKCarddata-component="SDKCard"Reusable s d k card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
SDKLanguageTabsdata-component="SDKLanguageTabs"Reusable s d k language tabs component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
SearchCategoryTabsdata-component="SearchCategoryTabs"Reusable search category tabs component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
SearchResultItemdata-component="SearchResultItem"Reusable search result item component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
SecretDisplaydata-component="SecretDisplay"Reusable secret display component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
SecurityContactCarddata-component="SecurityContactCard"Reusable security contact card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
SecurityFeatureCarddata-component="SecurityFeatureCard"Reusable security feature card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
SecurityReportFormdata-component="SecurityReportForm"Reusable security report form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ServerErrorPagedata-component="ServerErrorPage"Reusable server error page component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
SessionCarddata-component="SessionCard"Reusable session card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
SetupChecklistdata-component="SetupChecklist"Reusable setup checklist component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
SignInFormdata-component="SignInForm"Reusable sign in form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
SignUpFormdata-component="SignUpForm"Reusable sign up form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
SiteSearchdata-component="SiteSearch"Reusable site search component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
Sliderdata-component="Slider"Reusable slider component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
SmallTextdata-component="SmallText"Reusable small text component. | text: string = ""align: string = "start"class: string = "" | default | None |
SmsComposerdata-component="SmsComposer"Reusable sms composer component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
StatCarddata-component="StatCard"Reusable stat card component. | label: string = "Metric"value: string = "0"change: string = ""trend: string = "neutral" | None | None |
StatusSubscribeFormdata-component="StatusSubscribeForm"Reusable status subscribe form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
Stepperdata-component="Stepper"Reusable stepper component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
SuccessCarddata-component="SuccessCard"Reusable success card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
SupportRequestFormdata-component="SupportRequestForm"Reusable support request form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
Tabsdata-component="Tabs"Reusable tabs component. | active: string = "first" | firstsecond | click |
TeamMemberCarddata-component="TeamMemberCard"Reusable team member card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
TemplateCarddata-component="TemplateCard"Reusable template card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
TerminalBlockdata-component="TerminalBlock"Reusable terminal block component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
TestimonialCarddata-component="TestimonialCard"Reusable testimonial card component. | quote: string = "Great product."name: string = "Customer"role: string = ""company: string = ""avatar: string = "" | None | None |
TestimonialCarouseldata-component="TestimonialCarousel"Reusable testimonial carousel component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ThemeSwitcherdata-component="ThemeSwitcher"Reusable theme switcher component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
TimelineItemdata-component="TimelineItem"Reusable timeline item component. | title: string = "Event"date: string = ""description: string = ""status: string = "default" | None | None |
ToastIcondata-component="ToastIcon"Reusable toast icon component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
Tooltipdata-component="Tooltip"Reusable tooltip component. | text: string = "Helpful information"position: string = "top" | default | None |
TotpVerificationFormdata-component="TotpVerificationForm"Reusable totp verification form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
TranslatedTextdata-component="TranslatedText"Reusable translated text component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
TruncatedTextdata-component="TruncatedText"Reusable truncated text component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
UnifiedTimelinePreviewdata-component="UnifiedTimelinePreview"Reusable unified timeline preview component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
UploadItemdata-component="UploadItem"Reusable upload item component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
UploadPreviewdata-component="UploadPreview"Reusable upload preview component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
UserCarddata-component="UserCard"Reusable user card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
ValueCarddata-component="ValueCard"Reusable value card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
VerticalTabsdata-component="VerticalTabs"Reusable vertical tabs component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
VideoCarddata-component="VideoCard"Reusable video card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
VideoUploaddata-component="VideoUpload"Reusable video upload component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
VoiceScriptComposerdata-component="VoiceScriptComposer"Reusable voice script composer component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
VolumeSliderdata-component="VolumeSlider"Reusable volume slider component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
WarningCarddata-component="WarningCard"Reusable warning card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
WebhookEventCarddata-component="WebhookEventCard"Reusable webhook event card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
WebhookPayloadViewerdata-component="WebhookPayloadViewer"Reusable webhook payload viewer component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
WebinarCarddata-component="WebinarCard"Reusable webinar card component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
WebinarRegistrationFormdata-component="WebinarRegistrationForm"Reusable webinar registration form component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
WhatsAppComposerdata-component="WhatsAppComposer"Reusable whats app composer component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
Wizarddata-component="Wizard"Reusable wizard component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
WorkflowCanvasPreviewdata-component="WorkflowCanvasPreview"Reusable workflow canvas preview component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
WorkspaceCarddata-component="WorkspaceCard"Reusable workspace card component. | title: string = ""description: string = ""href: string = ""class: string = "" | default | None |
WorkspaceSwitcherdata-component="WorkspaceSwitcher"Reusable workspace switcher component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
ZoomSliderdata-component="ZoomSlider"Reusable zoom slider component. | eyebrow: string = ""title: string = ""description: string = ""href: string = ""actionLabel: string = "Learn more"image: string = ""alt: string = ""class: string = "" | default | None |
Core
| Component | Props | Slots | Events |
|---|---|---|---|
AnnouncementBardata-component="AnnouncementBar"Reusable announcement bar component. | badge: string = "New"message: string = "WRNexusJS Organizations is now available."description: string = "Build secure multi-tenant applications with teams, roles, domains, and enterprise SSO."href: string = "/organizations"actionLabel: string = "Explore organizations"ariaLabel: string = "Announcement" | None | click |
AspectRatiodata-component="AspectRatio"Reusable aspect ratio component. | class: string = "" | default | None |
BackToTopdata-component="BackToTop"Reusable back to top component. | label: string = "Back to top"assistiveLabel: string = "Return to the top of the page"threshold: number = 500 | None | click |
Breadcrumbsdata-component="Breadcrumbs"Reusable breadcrumbs component. | homeLabel: string = "Home"homeHref: string = "/"current: string = "Current page" | None | None |
Checkboxdata-component="Checkbox"Reusable checkbox component. | id: string = ""name: string = ""label: string = "Checkbox"description: string = ""checked: boolean = falsedisabled: boolean = false | None | None |
Chipdata-component="Chip"Reusable chip component. | label: string = "Chip"variant: string = "default"class: string = "" | default | None |
Clusterdata-component="Cluster"Reusable cluster component. | gap: string = "4"className: string = "" | default | None |
Comboboxdata-component="Combobox"Reusable combobox component. | id: string = "combobox"name: string = ""label: string = "Choose an option"placeholder: string = "Search options"options: string = []required: boolean = falsedisabled: boolean = falseclass: string = "" | None | None |
Containerdata-component="Container"Reusable container component. | size: string = "default"className: string = "" | default | None |
disclosuredata-component="disclosure"Reusable disclosure component. | summary: string = "Details"class: string = "" | default | None |
DisplayHeadingdata-component="DisplayHeading"Reusable display heading component. | text: string = ""align: string = "start"class: string = "" | default | None |
Dividerdata-component="Divider"Reusable divider component. | className: string = "" | default | None |
Drawerdata-component="Drawer"Reusable drawer component. | title: string = "Panel"open: boolean = falseside: string = "right" | default | click |
FAQdata-component="FAQ"Reusable faq component. | eyebrow: string = ""title: string = "Frequently asked questions"description: string = ""items: string = []centered: boolean = trueallowMultiple: boolean = falsedefaultOpenIndex: number = 0 | None | None |
FAQAccordiondata-component="FAQAccordion"Reusable faqaccordion component. | eyebrow: string = ""title: string = "Frequently asked questions"description: string = ""items: string = []centered: boolean = truecompact: boolean = falseallowMultiple: boolean = falsedefaultOpenIndex: number = 0showContact: boolean = falsecontactText: string = "Still have questions?"contactLabel: string = "Contact support"contactHref: string = "/support" | None | click |
file-uploaddata-component="file-upload"Reusable file-upload component. | store: string = "public"endpoint: string = "/api/upload"accept: string = ""multiple: boolean = falsemax: number = 0label: string = "Drag files here or click to browse"class: string = "" | None | None |
FilterBardata-component="FilterBar"Reusable filter bar component. | label: string = "Filters"clearLabel: string = "Clear filters"showClear: boolean = trueclass: string = "" | default | None |
Flexdata-component="Flex"Reusable flex component. | class: string = "" | default | None |
FormErrordata-component="FormError"Reusable form error component. | id: string = ""message: string = ""class: string = "" | default | None |
FullBleeddata-component="FullBleed"Reusable full bleed component. | class: string = "" | default | None |
hstackdata-component="hstack"Reusable hstack component. | gap: string = "4"align: string = "center"class: string = "" | default | None |
Inlinedata-component="Inline"Reusable inline component. | gap: string = "4"className: string = "" | default | None |
inputdata-component="input"Reusable input component. | type: string = "text"name: string = ""value: string = ""placeholder: string = ""class: string = "" | None | None |
LegalTableOfContentsdata-component="LegalTableOfContents"Reusable legal table of contents component. | title: string = "On this page"items: string = []class: string = "" | None | None |
Linkdata-component="Link"Reusable link component. | href: string = "#"label: string = "Link"external: boolean = falseclassName: string = "" | None | None |
LogoClouddata-component="LogoCloud"Reusable logo cloud component. | title: string = "Trusted by modern teams" | default | None |
Modaldata-component="Modal"Reusable modal component. | title: string = "Dialog"description: string = ""open: boolean = falsesize: string = "md"closeLabel: string = "Close" | default | click |
MultiSelectdata-component="MultiSelect"Reusable multi select component. | id: string = "multi-select"name: string = ""label: string = "Choose options"options: string = []required: boolean = falsedisabled: boolean = falsesize: number = 5class: string = "" | None | None |
NarrowContainerdata-component="NarrowContainer"Reusable narrow container component. | class: string = "" | default | None |
NotificationDotdata-component="NotificationDot"Reusable notification dot component. | label: string = "Notification"variant: string = "default"class: string = "" | default | None |
PageHeadingdata-component="PageHeading"Reusable page heading component. | text: string = ""align: string = "start"class: string = "" | default | None |
PageShelldata-component="PageShell"Reusable page shell component. | className: string = "" | default | None |
Paginationdata-component="Pagination"Reusable pagination component. | page: number = 1totalPages: number = 1previousHref: string = "#"nextHref: string = "#" | None | None |
Pilldata-component="Pill"Reusable pill component. | label: string = "Pill"variant: string = "default"class: string = "" | default | None |
progressdata-component="progress"Reusable progress component. | value: number = 0max: number = 100class: string = "" | None | None |
ProgressBardata-component="ProgressBar"Reusable progress bar component. | value: number = 0max: number = 100label: string = "Progress"showValue: boolean = true | None | None |
PublicFooterdata-component="PublicFooter"Reusable public footer component. | brand: string = "WRNexusJS"description: string = "SSR-first, Bun-native full-stack framework."copyright: string = "© 2026 WorkRoot Workspace" | default | None |
Radiodata-component="Radio"Reusable radio component. | id: string = ""name: string = "choice"value: string = ""label: string = "Option"description: string = ""checked: boolean = falsedisabled: boolean = false | None | None |
ScrollAreadata-component="ScrollArea"Reusable scroll area component. | class: string = "" | default | None |
SDKTabsdata-component="SDKTabs"Reusable sdktabs component. | label: string = "SDK languages"tabs: string = []defaultIndex: number = 0class: string = "" | None | click |
SectionHeadingdata-component="SectionHeading"Reusable section heading component. | text: string = ""align: string = "start"class: string = "" | default | None |
Selectdata-component="Select"Reusable select component. | id: string = ""name: string = ""label: string = "Select"help: string = ""error: string = ""required: boolean = falsedisabled: boolean = false | default | None |
spacerdata-component="spacer"Reusable spacer component. | class: string = "" | None | None |
Spinnerdata-component="Spinner"Reusable spinner component. | label: string = "Loading"size: string = "md" | None | None |
Stackdata-component="Stack"Reusable stack component. | gap: string = "4"className: string = "" | default | None |
Stickydata-component="Sticky"Reusable sticky component. | class: string = "" | default | None |
SubsectionHeadingdata-component="SubsectionHeading"Reusable subsection heading component. | text: string = ""align: string = "start"class: string = "" | default | None |
Surfacedata-component="Surface"Reusable surface component. | class: string = "" | default | None |
Switchdata-component="Switch"Reusable switch component. | id: string = ""name: string = ""label: string = "Switch"description: string = ""checked: boolean = falsedisabled: boolean = false | None | click |
tagdata-component="tag"Reusable tag component. | label: string = ""variant: string = "default"class: string = "" | default | None |
Textareadata-component="Textarea"Reusable textarea component. | id: string = ""name: string = ""label: string = "Message"value: string = ""placeholder: string = ""rows: number = 5help: string = ""error: string = ""required: boolean = falsedisabled: boolean = false | None | None |
theme-toggledata-component="theme-toggle"Reusable theme-toggle component. | label: string = "Toggle theme"class: string = "" | default | None |
Toastdata-component="Toast"Reusable toast component. | title: string = "Saved"description: string = ""variant: string = "success"duration: number = 5000 | None | click |
Typographydata-component="Typography"Reusable typography component. | as: string = "p"variant: string = "body"align: string = "start"class: string = "" | default | None |
VisuallyHiddendata-component="VisuallyHidden"Reusable visually hidden component. | className: string = "" | default | None |
Welldata-component="Well"Reusable well component. | class: string = "" | default | None |
WideContainerdata-component="WideContainer"Reusable wide container component. | class: string = "" | default | None |
Data
| Component | Props | Slots | Events |
|---|---|---|---|
ActiveFilterListdata-component="ActiveFilterList"Reusable active filter list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ActivityListdata-component="ActivityList"Reusable activity list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ApiHeaderTabledata-component="ApiHeaderTable"Reusable api header table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ApiParameterTabledata-component="ApiParameterTable"Reusable api parameter table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ApiSchemaTabledata-component="ApiSchemaTable"Reusable api schema table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
AuditTabledata-component="AuditTable"Reusable audit table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
AutoGriddata-component="AutoGrid"Reusable auto grid component. | class: string = "" | default | None |
BlogGriddata-component="BlogGrid"Reusable blog grid component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
BlogListdata-component="BlogList"Reusable blog list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
CalendarGriddata-component="CalendarGrid"Reusable calendar grid component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
CapabilityGriddata-component="CapabilityGrid"Reusable capability grid component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
CareerBenefitsGriddata-component="CareerBenefitsGrid"Reusable career benefits grid component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ChannelComparisonTabledata-component="ChannelComparisonTable"Reusable channel comparison table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ChannelRateTabledata-component="ChannelRateTable"Reusable channel rate table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ColorGriddata-component="ColorGrid"Reusable color grid component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ComparisonTabledata-component="ComparisonTable"Reusable comparison table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ComplianceBadgeListdata-component="ComplianceBadgeList"Reusable compliance badge list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ConversationListdata-component="ConversationList"Reusable conversation list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
CookieCategoryListdata-component="CookieCategoryList"Reusable cookie category list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
CookieDetailsTabledata-component="CookieDetailsTable"Reusable cookie details table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
CookieTabledata-component="CookieTable"Reusable cookie table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
DataRetentionTabledata-component="DataRetentionTable"Reusable data retention table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
DataTabledata-component="DataTable"Reusable data table component. | caption: string = "Data table"columns: string = []rows: string = []emptyMessage: string = "No data available."striped: boolean = falseclass: string = "" | None | None |
DefinitionListdata-component="DefinitionList"Reusable definition list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
DescriptionListdata-component="DescriptionList"Reusable description list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
EventTabledata-component="EventTable"Reusable event table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
FeatureComparisonTabledata-component="FeatureComparisonTable"Reusable feature comparison table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
FeatureGriddata-component="FeatureGrid"Reusable feature grid component. | columns: number = 3className: string = "" | default | None |
FeatureListdata-component="FeatureList"Reusable feature list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
FileListdata-component="FileList"Reusable file list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
FilterableTabledata-component="FilterableTable"Reusable filterable table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
FormGriddata-component="FormGrid"Reusable form grid component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
FormRowdata-component="FormRow"Reusable form row component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
Griddata-component="Grid"Reusable grid component. | gap: string = "4"className: string = "" | default | None |
GuideGriddata-component="GuideGrid"Reusable guide grid component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
IncidentListdata-component="IncidentList"Reusable incident list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
KeyValueTabledata-component="KeyValueTable"Reusable key value table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
LeadershipGriddata-component="LeadershipGrid"Reusable leadership grid component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
LegalBulletListdata-component="LegalBulletList"Reusable legal bullet list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
LegalDefinitionListdata-component="LegalDefinitionList"Reusable legal definition list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
LegalTabledata-component="LegalTable"Reusable legal table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
Listdata-component="List"Reusable list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
LogTabledata-component="LogTable"Reusable log table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
MemberListdata-component="MemberList"Reusable member list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
MetricGriddata-component="MetricGrid"Reusable metric grid component. | label: string = "Key metrics"metrics: string = []class: string = "" | None | None |
NotificationListdata-component="NotificationList"Reusable notification list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
PartnerLogoGriddata-component="PartnerLogoGrid"Reusable partner logo grid component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
PasswordRequirementListdata-component="PasswordRequirementList"Reusable password requirement list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
PlanFeatureListdata-component="PlanFeatureList"Reusable plan feature list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
PlanLimitListdata-component="PlanLimitList"Reusable plan limit list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
PolicyVersionTabledata-component="PolicyVersionTable"Reusable policy version table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
PricingComparisonTabledata-component="PricingComparisonTable"Reusable pricing comparison table component. | caption: string = "Plan comparison"plans: string = []features: string = []class: string = "" | None | None |
PricingGriddata-component="PricingGrid"Reusable pricing grid component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
PricingTabledata-component="PricingTable"Reusable pricing table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ProductFeatureListdata-component="ProductFeatureList"Reusable product feature list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ProductGriddata-component="ProductGrid"Reusable product grid component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ProductIntegrationListdata-component="ProductIntegrationList"Reusable product integration list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ProductListdata-component="ProductList"Reusable product list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ProductUseCaseListdata-component="ProductUseCaseList"Reusable product use case list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
RateTabledata-component="RateTable"Reusable rate table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
RegionAvailabilityTabledata-component="RegionAvailabilityTable"Reusable region availability table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ResponsiveTabledata-component="ResponsiveTable"Reusable responsive table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
RetentionTabledata-component="RetentionTable"Reusable retention table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
SecurityPillarGriddata-component="SecurityPillarGrid"Reusable security pillar grid component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
SecurityPracticeListdata-component="SecurityPracticeList"Reusable security practice list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ServiceLevelTabledata-component="ServiceLevelTable"Reusable service level table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ServiceStatusListdata-component="ServiceStatusList"Reusable service status list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ServiceStatusRowdata-component="ServiceStatusRow"Reusable service status row component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
SlaTabledata-component="SlaTable"Reusable sla table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
SortableTabledata-component="SortableTable"Reusable sortable table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
StatusTabledata-component="StatusTable"Reusable status table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
SubprocessorTabledata-component="SubprocessorTable"Reusable subprocessor table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
Tabledata-component="Table"Reusable table component. | caption: string = "Data table"responsive: boolean = true | default | None |
TableRowdata-component="TableRow"Reusable table row component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
TreeTabledata-component="TreeTable"Reusable tree table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
TrustBadgeListdata-component="TrustBadgeList"Reusable trust badge list component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
UsagePricingTabledata-component="UsagePricingTable"Reusable usage pricing table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
ValuesGriddata-component="ValuesGrid"Reusable values grid component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
VirtualizedTabledata-component="VirtualizedTable"Reusable virtualized table component. | title: string = ""description: string = ""empty: boolean = falseemptyText: string = "No items available."class: string = "" | default | None |
Feedback
| Component | Props | Slots | Events |
|---|---|---|---|
AccountStatusBannerdata-component="AccountStatusBanner"Reusable account status banner component. | label: string = "AccountStatus"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
Alertdata-component="Alert"Reusable alert component. | title: string = "Notice"description: string = ""variant: string = "info"dismissible: boolean = false | default | click |
ApiAuthenticationNoticedata-component="ApiAuthenticationNotice"Reusable api authentication notice component. | label: string = "ApiAuthentication"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
ApiMethodBadgedata-component="ApiMethodBadge"Reusable api method badge component. | label: string = "ApiMethod"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
ApiRateLimitNoticedata-component="ApiRateLimitNotice"Reusable api rate limit notice component. | label: string = "ApiRateLimit"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
ApiVersionBadgedata-component="ApiVersionBadge"Reusable api version badge component. | label: string = "ApiVersion"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
Badgedata-component="Badge"Reusable badge component. | label: string = "Badge"variant: string = "neutral" | None | None |
Bannerdata-component="Banner"Reusable banner component. | text: string = "Announcement"href: string = ""actionLabel: string = "Learn more"variant: string = "brand" | None | None |
BetaBadgedata-component="BetaBadge"Reusable beta badge component. | label: string = "Beta"variant: string = "default"class: string = "" | default | None |
CardSkeletondata-component="CardSkeleton"Reusable card skeleton component. | label: string = "Card"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
CertificationBadgedata-component="CertificationBadge"Reusable certification badge component. | label: string = "Certification"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
ChannelBadgedata-component="ChannelBadge"Reusable channel badge component. | label: string = "Channel"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
CharacterCounterdata-component="CharacterCounter"Reusable character counter component. | label: string = "Character"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
ChartEmptyStatedata-component="ChartEmptyState"Reusable chart empty state component. | label: string = "ChartEmpty"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
CodeLanguageBadgedata-component="CodeLanguageBadge"Reusable code language badge component. | label: string = "CodeLanguage"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
ComingSoonBadgedata-component="ComingSoonBadge"Reusable coming soon badge component. | label: string = "ComingSoon"variant: string = "default"class: string = "" | default | None |
ComingSoonStatedata-component="ComingSoonState"Reusable coming soon state component. | label: string = "ComingSoon"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
CookieBannerdata-component="CookieBanner"Reusable cookie banner component. | title: string = "We use cookies"description: string = "We use essential cookies and optional analytics to improve your experience."privacyHref: string = "/privacy" | None | click |
Counterdata-component="Counter"Reusable counter component. | label: string = "Status"variant: string = "default"class: string = "" | default | None |
DeprecatedFeatureAlertdata-component="DeprecatedFeatureAlert"Reusable deprecated feature alert component. | label: string = "DeprecatedFeature"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
EmptyStatedata-component="EmptyState"Reusable empty state component. | icon: string = "◇"title: string = "Nothing here yet"description: string = ""actionLabel: string = ""actionHref: string = "#" | None | None |
ErrorStatedata-component="ErrorState"Reusable error state component. | code: string = "500"title: string = "Something went wrong"description: string = "Please try again."actionLabel: string = "Try again"actionHref: string = "/" | None | None |
FeatureUnavailableStatedata-component="FeatureUnavailableState"Reusable feature unavailable state component. | label: string = "FeatureUnavailable"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
FileTypeBadgedata-component="FileTypeBadge"Reusable file type badge component. | label: string = "FileType"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
FooterStatusIndicatordata-component="FooterStatusIndicator"Reusable footer status indicator component. | label: string = "FooterStatus"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
ForbiddenStatedata-component="ForbiddenState"Reusable forbidden state component. | label: string = "Forbidden"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
FormAlertdata-component="FormAlert"Reusable form alert component. | label: string = "Form"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
GuideDifficultyBadgedata-component="GuideDifficultyBadge"Reusable guide difficulty badge component. | label: string = "GuideDifficulty"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
HealthIndicatordata-component="HealthIndicator"Reusable health indicator component. | label: string = "Health"variant: string = "default"class: string = "" | default | None |
IncidentAlertdata-component="IncidentAlert"Reusable incident alert component. | label: string = "Incident"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
IncidentBannerdata-component="IncidentBanner"Reusable incident banner component. | label: string = "Incident"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
IncidentSeverityBadgedata-component="IncidentSeverityBadge"Reusable incident severity badge component. | label: string = "IncidentSeverity"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
IndustryBadgedata-component="IndustryBadge"Reusable industry badge component. | label: string = "Industry"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
InlineAlertdata-component="InlineAlert"Reusable inline alert component. | label: string = "Inline"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
LegalAcceptanceNoticedata-component="LegalAcceptanceNotice"Reusable legal acceptance notice component. | label: string = "LegalAcceptance"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
LegalNoticedata-component="LegalNotice"Reusable legal notice component. | label: string = "Legal"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
LegalVersionBadgedata-component="LegalVersionBadge"Reusable legal version badge component. | label: string = "LegalVersion"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
MaintenanceAlertdata-component="MaintenanceAlert"Reusable maintenance alert component. | label: string = "Maintenance"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
MaintenanceBannerdata-component="MaintenanceBanner"Reusable maintenance banner component. | label: string = "Maintenance"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
MaintenanceStatedata-component="MaintenanceState"Reusable maintenance state component. | label: string = "Maintenance"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
MessageCharacterCounterdata-component="MessageCharacterCounter"Reusable message character counter component. | label: string = "MessageCharacter"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
NewBadgedata-component="NewBadge"Reusable new badge component. | label: string = "New"variant: string = "default"class: string = "" | default | None |
NoResultsStatedata-component="NoResultsState"Reusable no results state component. | label: string = "NoResults"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
NotFoundStatedata-component="NotFoundState"Reusable not found state component. | label: string = "NotFound"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
OfflineStatedata-component="OfflineState"Reusable offline state component. | label: string = "Offline"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
OnlineIndicatordata-component="OnlineIndicator"Reusable online indicator component. | label: string = "Online"variant: string = "default"class: string = "" | default | None |
OptionalIndicatordata-component="OptionalIndicator"Reusable optional indicator component. | label: string = "Optional"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
PageAlertdata-component="PageAlert"Reusable page alert component. | label: string = "Page"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
PageSkeletondata-component="PageSkeleton"Reusable page skeleton component. | label: string = "Page"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
PreviewBadgedata-component="PreviewBadge"Reusable preview badge component. | label: string = "Preview"variant: string = "default"class: string = "" | default | None |
PrivacyNoticedata-component="PrivacyNotice"Reusable privacy notice component. | label: string = "Privacy"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
ProductStatusBadgedata-component="ProductStatusBadge"Reusable product status badge component. | label: string = "ProductStatus"variant: string = "default"class: string = "" | default | None |
RateLimitedStatedata-component="RateLimitedState"Reusable rate limited state component. | label: string = "RateLimited"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
RegionalPrivacyBannerdata-component="RegionalPrivacyBanner"Reusable regional privacy banner component. | label: string = "RegionalPrivacy"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
RegionUnavailableAlertdata-component="RegionUnavailableAlert"Reusable region unavailable alert component. | label: string = "RegionUnavailable"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
RegionUnavailableStatedata-component="RegionUnavailableState"Reusable region unavailable state component. | label: string = "RegionUnavailable"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
RequiredIndicatordata-component="RequiredIndicator"Reusable required indicator component. | label: string = "Required"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
ResourceTypeBadgedata-component="ResourceTypeBadge"Reusable resource type badge component. | label: string = "ResourceType"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
SearchEmptyStatedata-component="SearchEmptyState"Reusable search empty state component. | label: string = "SearchEmpty"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
SearchLoadingStatedata-component="SearchLoadingState"Reusable search loading state component. | label: string = "SearchLoading"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
SecurityAlertdata-component="SecurityAlert"Reusable security alert component. | label: string = "Security"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
ServiceStatusBadgedata-component="ServiceStatusBadge"Reusable service status badge component. | label: string = "ServiceStatus"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
Skeletondata-component="Skeleton"Reusable skeleton component. | height: string = "4"rounded: string = "lg"className: string = "" | None | None |
SmsSegmentCounterdata-component="SmsSegmentCounter"Reusable sms segment counter component. | label: string = "SmsSegment"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
StatusBadgedata-component="StatusBadge"Reusable status badge component. | status: string = "operational" | None | None |
SuccessStatedata-component="SuccessState"Reusable success state component. | label: string = "Success"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
TableSkeletondata-component="TableSkeleton"Reusable table skeleton component. | label: string = "Table"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
TaxNoticedata-component="TaxNotice"Reusable tax notice component. | label: string = "Tax"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
TextSkeletondata-component="TextSkeleton"Reusable text skeleton component. | label: string = "Text"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
TrendIndicatordata-component="TrendIndicator"Reusable trend indicator component. | label: string = "Trend"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
UnavailableRegionStatedata-component="UnavailableRegionState"Reusable unavailable region state component. | label: string = "UnavailableRegion"title: string = ""description: string = ""value: string = ""variant: string = "default"class: string = "" | default | None |
VerifiedBadgedata-component="VerifiedBadge"Reusable verified badge component. | label: string = "Verified"variant: string = "default"class: string = "" | default | None |
Forms
| Component | Props | Slots | Events |
|---|---|---|---|
AddressInputdata-component="AddressInput"Reusable address input component. | label: string = "Address"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
AmountInputdata-component="AmountInput"Reusable amount input component. | label: string = "Amount"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ApartmentInputdata-component="ApartmentInput"Reusable apartment input component. | label: string = "Apartment"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ApiKeyInputdata-component="ApiKeyInput"Reusable api key input component. | label: string = "ApiKey"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
AttachmentPickerdata-component="AttachmentPicker"Reusable attachment picker component. | label: string = "Attachment"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
AuthenticatorCodeInputdata-component="AuthenticatorCodeInput"Reusable authenticator code input component. | label: string = "AuthenticatorCode"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
AvatarGroupdata-component="AvatarGroup"Reusable avatar group component. | label: string = "Avatar"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
BillingPeriodToggledata-component="BillingPeriodToggle"Reusable billing period toggle component. | label: string = "BillingPeriod"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
BlackoutDatePickerdata-component="BlackoutDatePicker"Reusable blackout date picker component. | label: string = "BlackoutDate"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
BorderRadiusPickerdata-component="BorderRadiusPicker"Reusable border radius picker component. | label: string = "BorderRadius"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
BrandColorPickerdata-component="BrandColorPicker"Reusable brand color picker component. | label: string = "BrandColor"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
BrandSelectordata-component="BrandSelector"Reusable brand selector component. | label: string = "Brand"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
BudgetSelectordata-component="BudgetSelector"Reusable budget selector component. | label: string = "Budget"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
BusinessHoursPickerdata-component="BusinessHoursPicker"Reusable business hours picker component. | label: string = "BusinessHours"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ButtonGroupdata-component="ButtonGroup"Reusable button group component. | label: string = "Button"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ButtonSelectordata-component="ButtonSelector"Reusable button selector component. | label: string = "Button"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CallbackUrlInputdata-component="CallbackUrlInput"Reusable callback url input component. | label: string = "CallbackUrl"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CaptchaFielddata-component="CaptchaField"Reusable captcha field component. | label: string = "Captcha"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CardSelectordata-component="CardSelector"Reusable card selector component. | label: string = "Card"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ChannelSelectordata-component="ChannelSelector"Reusable channel selector component. | label: string = "Channel"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CheckboxGroupdata-component="CheckboxGroup"Reusable checkbox group component. | label: string = "Checkbox"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ChipInputdata-component="ChipInput"Reusable chip input component. | label: string = "Chip"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CitySelectordata-component="CitySelector"Reusable city selector component. | label: string = "City"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CodeInputdata-component="CodeInput"Reusable code input component. | label: string = "Code"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ColorHexInputdata-component="ColorHexInput"Reusable color hex input component. | label: string = "ColorHex"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ColorPickerdata-component="ColorPicker"Reusable color picker component. | label: string = "Color"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ColorSelectordata-component="ColorSelector"Reusable color selector component. | label: string = "Color"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CommandSearchInputdata-component="CommandSearchInput"Reusable command search input component. | label: string = "CommandSearch"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CompanyNameInputdata-component="CompanyNameInput"Reusable company name input component. | label: string = "CompanyName"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CompanySizeSelectordata-component="CompanySizeSelector"Reusable company size selector component. | label: string = "CompanySize"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ComparisonDateRangePickerdata-component="ComparisonDateRangePicker"Reusable comparison date range picker component. | label: string = "ComparisonDateRange"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ConfirmPasswordInputdata-component="ConfirmPasswordInput"Reusable confirm password input component. | label: string = "ConfirmPassword"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CookieCategoryToggledata-component="CookieCategoryToggle"Reusable cookie category toggle component. | label: string = "CookieCategory"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CoordinatesInputdata-component="CoordinatesInput"Reusable coordinates input component. | label: string = "Coordinates"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CoordinatesPickerdata-component="CoordinatesPicker"Reusable coordinates picker component. | label: string = "Coordinates"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CopySecretFielddata-component="CopySecretField"Reusable copy secret field component. | label: string = "CopySecret"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CountryCallingCodeInputdata-component="CountryCallingCodeInput"Reusable country calling code input component. | label: string = "CountryCallingCode"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CountryCallingCodeSelectordata-component="CountryCallingCodeSelector"Reusable country calling code selector component. | label: string = "CountryCallingCode"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CountrySelectordata-component="CountrySelector"Reusable country selector component. | label: string = "Country"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CouponInputdata-component="CouponInput"Reusable coupon input component. | label: string = "Coupon"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CreditAmountInputdata-component="CreditAmountInput"Reusable credit amount input component. | label: string = "CreditAmount"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CronInputdata-component="CronInput"Reusable cron input component. | label: string = "Cron"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CurrencyInputdata-component="CurrencyInput"Reusable currency input component. | label: string = "Currency"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CurrencySelectordata-component="CurrencySelector"Reusable currency selector component. | label: string = "Currency"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
CurrentPasswordInputdata-component="CurrentPasswordInput"Reusable current password input component. | label: string = "CurrentPassword"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
DateInputdata-component="DateInput"Reusable date input component. | id: string = ""name: string = ""label: string = "Date"value: string = ""placeholder: string = ""help: string = ""error: string = ""required: boolean = falsedisabled: boolean = falsereadonly: boolean = falseautocomplete: string = "" | None | None |
DatePickerdata-component="DatePicker"Reusable date picker component. | id: string = "date"name: string = "date"label: string = "Date"value: string = ""min: string = ""max: string = ""required: boolean = false | None | None |
DateRangePickerdata-component="DateRangePicker"Reusable date range picker component. | label: string = "Date range"startName: string = "startDate"endName: string = "endDate" | None | None |
DateTimeInputdata-component="DateTimeInput"Reusable date time input component. | id: string = ""name: string = ""label: string = "DateTime"value: string = ""placeholder: string = ""help: string = ""error: string = ""required: boolean = falsedisabled: boolean = falsereadonly: boolean = falseautocomplete: string = "" | None | None |
DateTimePickerdata-component="DateTimePicker"Reusable date time picker component. | id: string = "datetime-picker"name: string = "datetime"label: string = "Date and time"value: string = ""min: string = ""max: string = ""required: boolean = falsedisabled: boolean = falseclass: string = "" | None | None |
DateTimeRangePickerdata-component="DateTimeRangePicker"Reusable date time range picker component. | label: string = "DateTimeRange"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
DecimalInputdata-component="DecimalInput"Reusable decimal input component. | label: string = "Decimal"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
DepartmentInputdata-component="DepartmentInput"Reusable department input component. | label: string = "Department"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
DiscountInputdata-component="DiscountInput"Reusable discount input component. | label: string = "Discount"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
DisplayNameInputdata-component="DisplayNameInput"Reusable display name input component. | label: string = "DisplayName"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
DomainInputdata-component="DomainInput"Reusable domain input component. | label: string = "Domain"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
DurationInputdata-component="DurationInput"Reusable duration input component. | label: string = "Duration"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
DurationPickerdata-component="DurationPicker"Reusable duration picker component. | label: string = "Duration"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
EmailBodyEditordata-component="EmailBodyEditor"Reusable email body editor component. | label: string = "EmailBody"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
EmailInputdata-component="EmailInput"Reusable email input component. | id: string = ""name: string = ""label: string = "Email"value: string = ""placeholder: string = ""help: string = ""error: string = ""required: boolean = falsedisabled: boolean = falsereadonly: boolean = falseautocomplete: string = "" | None | None |
EmojiPickerdata-component="EmojiPicker"Reusable emoji picker component. | label: string = "Emoji"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
EnvironmentSelectordata-component="EnvironmentSelector"Reusable environment selector component. | label: string = "Environment"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ExpiryDateTimePickerdata-component="ExpiryDateTimePicker"Reusable expiry date time picker component. | label: string = "ExpiryDateTime"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
FaxInputdata-component="FaxInput"Reusable fax input component. | label: string = "Fax"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
FileInputdata-component="FileInput"Reusable file input component. | label: string = "File"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
FileSizeInputdata-component="FileSizeInput"Reusable file size input component. | label: string = "FileSize"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
FilterSearchInputdata-component="FilterSearchInput"Reusable filter search input component. | label: string = "FilterSearch"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
FirstNameInputdata-component="FirstNameInput"Reusable first name input component. | label: string = "FirstName"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
FontPickerdata-component="FontPicker"Reusable font picker component. | label: string = "Font"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
FontSizePickerdata-component="FontSizePicker"Reusable font size picker component. | label: string = "FontSize"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
FontWeightPickerdata-component="FontWeightPicker"Reusable font weight picker component. | label: string = "FontWeight"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
FormFielddata-component="FormField"Reusable form field component. | label: string = "Field"help: string = ""error: string = ""required: boolean = false | default | None |
FormGroupdata-component="FormGroup"Reusable form group component. | label: string = "Form"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
GeofenceEditordata-component="GeofenceEditor"Reusable geofence editor component. | label: string = "Geofence"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
GradientPickerdata-component="GradientPicker"Reusable gradient picker component. | label: string = "Gradient"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
GradientStopEditordata-component="GradientStopEditor"Reusable gradient stop editor component. | label: string = "GradientStop"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
HexColorInputdata-component="HexColorInput"Reusable hex color input component. | label: string = "HexColor"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
HiddenFielddata-component="HiddenField"Reusable hidden field component. | label: string = "Hidden"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
HostnameInputdata-component="HostnameInput"Reusable hostname input component. | label: string = "Hostname"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
HourPickerdata-component="HourPicker"Reusable hour picker component. | label: string = "Hour"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
HslColorInputdata-component="HslColorInput"Reusable hsl color input component. | label: string = "HslColor"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
HtmlEditordata-component="HtmlEditor"Reusable html editor component. | label: string = "Html"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
IconPickerdata-component="IconPicker"Reusable icon picker component. | label: string = "Icon"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
IconSelectordata-component="IconSelector"Reusable icon selector component. | label: string = "Icon"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
IdentifierInputdata-component="IdentifierInput"Reusable identifier input component. | label: string = "Identifier"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ImageEditordata-component="ImageEditor"Reusable image editor component. | label: string = "Image"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ImageSelectordata-component="ImageSelector"Reusable image selector component. | label: string = "Image"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
IndustrySelectordata-component="IndustrySelector"Reusable industry selector component. | label: string = "Industry"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
InputGroupdata-component="InputGroup"Reusable input group component. | label: string = "Input"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
IntegerInputdata-component="IntegerInput"Reusable integer input component. | label: string = "Integer"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
IpAddressInputdata-component="IpAddressInput"Reusable ip address input component. | label: string = "IpAddress"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
JobTitleInputdata-component="JobTitleInput"Reusable job title input component. | label: string = "JobTitle"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
JsonInputdata-component="JsonInput"Reusable json input component. | label: string = "Json"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
LanguageSelectordata-component="LanguageSelector"Reusable language selector component. | label: string = "Language"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
LastNameInputdata-component="LastNameInput"Reusable last name input component. | label: string = "LastName"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
LatitudeInputdata-component="LatitudeInput"Reusable latitude input component. | label: string = "Latitude"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
LegalLanguageSelectordata-component="LegalLanguageSelector"Reusable legal language selector component. | label: string = "LegalLanguage"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
LegalRegionSelectordata-component="LegalRegionSelector"Reusable legal region selector component. | label: string = "LegalRegion"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
LetterSpacingPickerdata-component="LetterSpacingPicker"Reusable letter spacing picker component. | label: string = "LetterSpacing"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
LicenseKeyInputdata-component="LicenseKeyInput"Reusable license key input component. | label: string = "LicenseKey"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
LineHeightPickerdata-component="LineHeightPicker"Reusable line height picker component. | label: string = "LineHeight"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
LocaleSelectordata-component="LocaleSelector"Reusable locale selector component. | label: string = "Locale"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
LocationPickerdata-component="LocationPicker"Reusable location picker component. | label: string = "Location"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
LongitudeInputdata-component="LongitudeInput"Reusable longitude input component. | label: string = "Longitude"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
MaintenanceWindowPickerdata-component="MaintenanceWindowPicker"Reusable maintenance window picker component. | label: string = "MaintenanceWindow"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
MapPickerdata-component="MapPicker"Reusable map picker component. | label: string = "Map"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
MarkdownEditordata-component="MarkdownEditor"Reusable markdown editor component. | label: string = "Markdown"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
MaskedSecretFielddata-component="MaskedSecretField"Reusable masked secret field component. | label: string = "MaskedSecret"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
MentionInputdata-component="MentionInput"Reusable mention input component. | label: string = "Mention"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
MessageLimitInputdata-component="MessageLimitInput"Reusable message limit input component. | label: string = "MessageLimit"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
MinutePickerdata-component="MinutePicker"Reusable minute picker component. | label: string = "Minute"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
MobileInputdata-component="MobileInput"Reusable mobile input component. | label: string = "Mobile"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
MonthlyVolumeSelectordata-component="MonthlyVolumeSelector"Reusable monthly volume selector component. | label: string = "MonthlyVolume"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
MonthPickerdata-component="MonthPicker"Reusable month picker component. | label: string = "Month"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
MonthYearPickerdata-component="MonthYearPicker"Reusable month year picker component. | label: string = "MonthYear"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
MultipleEmailInputdata-component="MultipleEmailInput"Reusable multiple email input component. | label: string = "MultipleEmail"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
NameInputdata-component="NameInput"Reusable name input component. | label: string = "Name"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
NewPasswordInputdata-component="NewPasswordInput"Reusable new password input component. | label: string = "NewPassword"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
NumberInputdata-component="NumberInput"Reusable number input component. | id: string = ""name: string = ""label: string = "Number"value: string = ""placeholder: string = ""help: string = ""error: string = ""required: boolean = falsedisabled: boolean = falsereadonly: boolean = falseautocomplete: string = "" | None | None |
OrganizationSelectordata-component="OrganizationSelector"Reusable organization selector component. | label: string = "Organization"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
OtpInputdata-component="OtpInput"Reusable otp input component. | name: string = "otp"length: number = 6label: string = "Verification code" | None | None |
PasswordInputdata-component="PasswordInput"Reusable password input component. | id: string = ""name: string = ""label: string = "Password"value: string = ""placeholder: string = ""help: string = ""error: string = ""required: boolean = falsedisabled: boolean = falsereadonly: boolean = falseautocomplete: string = "" | None | None |
PasswordVisibilityToggledata-component="PasswordVisibilityToggle"Reusable password visibility toggle component. | label: string = "PasswordVisibility"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PathInputdata-component="PathInput"Reusable path input component. | label: string = "Path"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PercentageInputdata-component="PercentageInput"Reusable percentage input component. | label: string = "Percentage"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PermissionSelectordata-component="PermissionSelector"Reusable permission selector component. | label: string = "Permission"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PhoneInputdata-component="PhoneInput"Reusable phone input component. | id: string = ""name: string = ""label: string = "Phone"value: string = ""placeholder: string = ""help: string = ""error: string = ""required: boolean = falsedisabled: boolean = falsereadonly: boolean = falseautocomplete: string = "" | None | None |
PinInputdata-component="PinInput"Reusable pin input component. | label: string = "Pin"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PlainTextEditordata-component="PlainTextEditor"Reusable plain text editor component. | label: string = "PlainText"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PlanSelectordata-component="PlanSelector"Reusable plan selector component. | label: string = "Plan"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PortInputdata-component="PortInput"Reusable port input component. | label: string = "Port"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PortNumberInputdata-component="PortNumberInput"Reusable port number input component. | label: string = "PortNumber"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PositiveNumberInputdata-component="PositiveNumberInput"Reusable positive number input component. | label: string = "PositiveNumber"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PostalCodeInputdata-component="PostalCodeInput"Reusable postal code input component. | label: string = "PostalCode"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PresetDateRangePickerdata-component="PresetDateRangePicker"Reusable preset date range picker component. | label: string = "PresetDateRange"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PriceInputdata-component="PriceInput"Reusable price input component. | label: string = "Price"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PricingFeatureGroupdata-component="PricingFeatureGroup"Reusable pricing feature group component. | label: string = "PricingFeature"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PricingToggledata-component="PricingToggle"Reusable pricing toggle component. | label: string = "Pricing"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PrioritySelectordata-component="PrioritySelector"Reusable priority selector component. | label: string = "Priority"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ProductSelectordata-component="ProductSelector"Reusable product selector component. | label: string = "Product"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ProjectSelectordata-component="ProjectSelector"Reusable project selector component. | label: string = "Project"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PromoCodeInputdata-component="PromoCodeInput"Reusable promo code input component. | label: string = "PromoCode"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ProviderSelectordata-component="ProviderSelector"Reusable provider selector component. | label: string = "Provider"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PublishDateTimePickerdata-component="PublishDateTimePicker"Reusable publish date time picker component. | label: string = "PublishDateTime"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
PushNotificationEditordata-component="PushNotificationEditor"Reusable push notification editor component. | label: string = "PushNotification"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
QuantityInputdata-component="QuantityInput"Reusable quantity input component. | label: string = "Quantity"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
QuietHoursPickerdata-component="QuietHoursPicker"Reusable quiet hours picker component. | label: string = "Quiet hours"startName: string = "quietStart"endName: string = "quietEnd"start: string = "22:00"end: string = "08:00"timezone: string = "UTC"disabled: boolean = falseclass: string = "" | None | None |
RadioGroupdata-component="RadioGroup"Reusable radio group component. | label: string = "Choose one"name: string = "choice" | default | None |
RangeInputdata-component="RangeInput"Reusable range input component. | label: string = "Range"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
RateLimitInputdata-component="RateLimitInput"Reusable rate limit input component. | label: string = "RateLimit"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
RecipientSelectordata-component="RecipientSelector"Reusable recipient selector component. | label: string = "Recipient"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
RecoveryCodeInputdata-component="RecoveryCodeInput"Reusable recovery code input component. | label: string = "RecoveryCode"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
RecurringSchedulePickerdata-component="RecurringSchedulePicker"Reusable recurring schedule picker component. | id: string = "recurring-schedule"name: string = "recurrence"label: string = "Repeat"value: string = "none"disabled: boolean = falseclass: string = "" | None | None |
RedirectUriInputdata-component="RedirectUriInput"Reusable redirect uri input component. | label: string = "RedirectUri"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ReferenceInputdata-component="ReferenceInput"Reusable reference input component. | label: string = "Reference"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
RegexInputdata-component="RegexInput"Reusable regex input component. | label: string = "Regex"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
RegionSelectordata-component="RegionSelector"Reusable region selector component. | label: string = "Region"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
RetryCountInputdata-component="RetryCountInput"Reusable retry count input component. | label: string = "RetryCount"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
RgbColorInputdata-component="RgbColorInput"Reusable rgb color input component. | label: string = "RgbColor"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
RichTextEditordata-component="RichTextEditor"Reusable rich text editor component. | label: string = "RichText"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
RichTextInputdata-component="RichTextInput"Reusable rich text input component. | label: string = "RichText"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
RoleSelectordata-component="RoleSelector"Reusable role selector component. | label: string = "Role"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
RollingDateRangePickerdata-component="RollingDateRangePicker"Reusable rolling date range picker component. | label: string = "RollingDateRange"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
SavedFilterSelectordata-component="SavedFilterSelector"Reusable saved filter selector component. | label: string = "SavedFilter"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ScheduledDateTimePickerdata-component="ScheduledDateTimePicker"Reusable scheduled date time picker component. | label: string = "ScheduledDateTime"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ScheduleMessagePickerdata-component="ScheduleMessagePicker"Reusable schedule message picker component. | label: string = "ScheduleMessage"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
SchedulePickerdata-component="SchedulePicker"Reusable schedule picker component. | label: string = "Schedule" | None | None |
SdkLanguageSelectordata-component="SdkLanguageSelector"Reusable sdk language selector component. | label: string = "SdkLanguage"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
SearchInputdata-component="SearchInput"Reusable search input component. | id: string = ""name: string = ""label: string = "Search"value: string = ""placeholder: string = ""help: string = ""error: string = ""required: boolean = falsedisabled: boolean = falsereadonly: boolean = falseautocomplete: string = "" | None | None |
SecondPickerdata-component="SecondPicker"Reusable second picker component. | label: string = "Second"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
SecretInputdata-component="SecretInput"Reusable secret input component. | label: string = "Secret"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
SenderIdInputdata-component="SenderIdInput"Reusable sender id input component. | label: string = "SenderId"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
SeveritySelectordata-component="SeveritySelector"Reusable severity selector component. | label: string = "Severity"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ShadowPickerdata-component="ShadowPicker"Reusable shadow picker component. | label: string = "Shadow"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
SlugInputdata-component="SlugInput"Reusable slug input component. | label: string = "Slug"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
SmsMessageEditordata-component="SmsMessageEditor"Reusable sms message editor component. | label: string = "SmsMessage"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
StateSelectordata-component="StateSelector"Reusable state selector component. | label: string = "State"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
StatusSelectordata-component="StatusSelector"Reusable status selector component. | label: string = "Status"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
StepperInputdata-component="StepperInput"Reusable stepper input component. | label: string = "Stepper"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
StickerPickerdata-component="StickerPicker"Reusable sticker picker component. | label: string = "Sticker"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
StreetAddressInputdata-component="StreetAddressInput"Reusable street address input component. | label: string = "StreetAddress"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
SubdomainInputdata-component="SubdomainInput"Reusable subdomain input component. | label: string = "Subdomain"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
SubjectInputdata-component="SubjectInput"Reusable subject input component. | label: string = "Subject"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
TagInputdata-component="TagInput"Reusable tag input component. | label: string = "Tag"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
TaxRateInputdata-component="TaxRateInput"Reusable tax rate input component. | label: string = "TaxRate"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
TeamSizeSelectordata-component="TeamSizeSelector"Reusable team size selector component. | label: string = "TeamSize"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
TemplateSelectordata-component="TemplateSelector"Reusable template selector component. | label: string = "Template"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
TemplateVariableInputdata-component="TemplateVariableInput"Reusable template variable input component. | label: string = "TemplateVariable"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
TextInputdata-component="TextInput"Reusable text input component. | id: string = ""name: string = ""label: string = "Text"value: string = ""placeholder: string = ""help: string = ""error: string = ""required: boolean = falsedisabled: boolean = falsereadonly: boolean = falseautocomplete: string = "" | None | None |
ThemeColorPickerdata-component="ThemeColorPicker"Reusable theme color picker component. | label: string = "ThemeColor"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
TimeInputdata-component="TimeInput"Reusable time input component. | id: string = ""name: string = ""label: string = "Time"value: string = ""placeholder: string = ""help: string = ""error: string = ""required: boolean = falsedisabled: boolean = falsereadonly: boolean = falseautocomplete: string = "" | None | None |
TimeoutInputdata-component="TimeoutInput"Reusable timeout input component. | label: string = "Timeout"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
TimePickerdata-component="TimePicker"Reusable time picker component. | id: string = "time-picker"name: string = "time"label: string = "Time"value: string = ""min: string = ""max: string = ""step: number = 60required: boolean = falsedisabled: boolean = falseclass: string = "" | None | None |
TimeRangePickerdata-component="TimeRangePicker"Reusable time range picker component. | label: string = "TimeRange"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
TimezoneAwareTimePickerdata-component="TimezoneAwareTimePicker"Reusable timezone aware time picker component. | label: string = "TimezoneAwareTime"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
TimezoneSelectordata-component="TimezoneSelector"Reusable timezone selector component. | id: string = "timezone"name: string = "timezone"label: string = "Timezone" | None | None |
Toggledata-component="Toggle"Reusable toggle component. | label: string = ""name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
ToggleGroupdata-component="ToggleGroup"Reusable toggle group component. | label: string = "Toggle"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
TokenInputdata-component="TokenInput"Reusable token input component. | label: string = "Token"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
UrlInputdata-component="UrlInput"Reusable url input component. | id: string = ""name: string = ""label: string = "Url"value: string = ""placeholder: string = ""help: string = ""error: string = ""required: boolean = falsedisabled: boolean = falsereadonly: boolean = falseautocomplete: string = "" | None | None |
UseCaseSelectordata-component="UseCaseSelector"Reusable use case selector component. | label: string = "UseCase"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
UsernameInputdata-component="UsernameInput"Reusable username input component. | label: string = "Username"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
VerificationCodeInputdata-component="VerificationCodeInput"Reusable verification code input component. | label: string = "VerificationCode"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
VersionSelectordata-component="VersionSelector"Reusable version selector component. | label: string = "Version"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
VoiceScriptEditordata-component="VoiceScriptEditor"Reusable voice script editor component. | label: string = "VoiceScript"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
VolumeInputdata-component="VolumeInput"Reusable volume input component. | label: string = "Volume"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
WebhookUrlInputdata-component="WebhookUrlInput"Reusable webhook url input component. | label: string = "WebhookUrl"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
WhatsAppNumberInputdata-component="WhatsAppNumberInput"Reusable whats app number input component. | label: string = "WhatsAppNumber"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
WhatsAppTemplateEditordata-component="WhatsAppTemplateEditor"Reusable whats app template editor component. | label: string = "WhatsAppTemplate"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
WorkspaceSelectordata-component="WorkspaceSelector"Reusable workspace selector component. | label: string = "Workspace"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
YearPickerdata-component="YearPicker"Reusable year picker component. | label: string = "Year"name: string = ""value: string = ""placeholder: string = ""type: string = "text"required: boolean = falsedisabled: boolean = falsereadonly: boolean = falsehelp: string = ""error: string = ""class: string = "" | default | None |
Layout
| Component | Props | Slots | Events |
|---|---|---|---|
AnchorNavigationdata-component="AnchorNavigation"Reusable anchor navigation component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
AppHeaderdata-component="AppHeader"Reusable app header component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
ArchitectureSectiondata-component="ArchitectureSection"Reusable architecture section component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
ArticleHerodata-component="ArticleHero"Reusable article hero component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
ArticleLayoutdata-component="ArticleLayout"Reusable article layout component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
ArticlePageShelldata-component="ArticlePageShell"Reusable article page shell component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
BottomNavigationdata-component="BottomNavigation"Reusable bottom navigation component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
BrowserFramedata-component="BrowserFrame"Reusable browser frame component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
CalendarHeaderdata-component="CalendarHeader"Reusable calendar header component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
CalendarNavigationdata-component="CalendarNavigation"Reusable calendar navigation component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
CaseStudyHerodata-component="CaseStudyHero"Reusable case study hero component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
CenteredHerodata-component="CenteredHero"Reusable centered hero component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
CenteredSectionHeaderdata-component="CenteredSectionHeader"Reusable centered section header component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
ChallengeSectiondata-component="ChallengeSection"Reusable challenge section component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
CodeHeaderdata-component="CodeHeader"Reusable code header component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
CompanyHerodata-component="CompanyHero"Reusable company hero component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
CompanyPageShelldata-component="CompanyPageShell"Reusable company page shell component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
ContactHerodata-component="ContactHero"Reusable contact hero component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
ContactPageShelldata-component="ContactPageShell"Reusable contact page shell component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
CTASectiondata-component="CTASection"Reusable c t a section component. | eyebrow: string = "Ready?"title: string = "Start building today"description: string = ""primaryLabel: string = "Get started"primaryHref: string = "#"secondaryLabel: string = "Contact sales"secondaryHref: string = "#" | None | None |
DesktopNavigationdata-component="DesktopNavigation"Reusable desktop navigation component. | label: string = "Primary navigation"items: string = []class: string = "" | None | None |
DeveloperHerodata-component="DeveloperHero"Reusable developer hero component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
DeveloperPageShelldata-component="DeveloperPageShell"Reusable developer page shell component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
DropdownNavigationdata-component="DropdownNavigation"Reusable dropdown navigation component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
EnterpriseHerodata-component="EnterpriseHero"Reusable enterprise hero component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
ErrorHerodata-component="ErrorHero"Reusable error hero component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
ErrorPageShelldata-component="ErrorPageShell"Reusable error page shell component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
FeatureDetailsPaneldata-component="FeatureDetailsPanel"Reusable feature details panel component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
FormSectiondata-component="FormSection"Reusable form section component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
Headerdata-component="Header"Reusable header component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
Herodata-component="Hero"Reusable hero component. | eyebrow: string = ""title: string = "Build faster with WRNexusJS"highlight: string = ""description: string = ""primaryLabel: string = "Get started"primaryHref: string = "#"secondaryLabel: string = "Learn more"secondaryHref: string = "#"align: string = "center" | default | None |
HeroCodePaneldata-component="HeroCodePanel"Reusable hero code panel component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
InsetPaneldata-component="InsetPanel"Reusable inset panel component. | class: string = "" | default | None |
LegalDocumentHeaderdata-component="LegalDocumentHeader"Reusable legal document header component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
LegalDocumentLayoutdata-component="LegalDocumentLayout"Reusable legal document layout component. | title: string = "Legal document"effectiveDate: string = ""updatedDate: string = "" | tocdefault | None |
LegalHerodata-component="LegalHero"Reusable legal hero component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
LegalPageShelldata-component="LegalPageShell"Reusable legal page shell component. | class: string = "" | navigationdefault | None |
LegalSectiondata-component="LegalSection"Reusable legal section component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
MarketingPageShelldata-component="MarketingPageShell"Reusable marketing page shell component. | class: string = "" | default | None |
MarketingSectionHeaderdata-component="MarketingSectionHeader"Reusable marketing section header component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
MissionSectiondata-component="MissionSection"Reusable mission section component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
MobileDeviceFramedata-component="MobileDeviceFrame"Reusable mobile device frame component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
MobileNavigationdata-component="MobileNavigation"Reusable mobile navigation component. | label: string = "Menu"closeLabel: string = "Close menu"items: string = []class: string = "" | None | click |
Navigationdata-component="Navigation"Reusable navigation component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
Paneldata-component="Panel"Reusable panel component. | class: string = "" | default | None |
PreviousNextNavigationdata-component="PreviousNextNavigation"Reusable previous next navigation component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
PricingHerodata-component="PricingHero"Reusable pricing hero component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
ProductCategorySectiondata-component="ProductCategorySection"Reusable product category section component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
ProductHerodata-component="ProductHero"Reusable product hero component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
ProductPageShelldata-component="ProductPageShell"Reusable product page shell component. | class: string = "" | default | None |
PublicHeaderdata-component="PublicHeader"Reusable public header component. | brand: string = "WRNexusJS"homeHref: string = "/"signInHref: string = "/signin"ctaHref: string = "/start"ctaLabel: string = "Get started" | defaultmobile | click |
PublicPageShelldata-component="PublicPageShell"Reusable public page shell component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
ResizablePaneldata-component="ResizablePanel"Reusable resizable panel component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
ResourcePageShelldata-component="ResourcePageShell"Reusable resource page shell component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
ResultsSectiondata-component="ResultsSection"Reusable results section component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
ScreenshotFramedata-component="ScreenshotFrame"Reusable screenshot frame component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
Sectiondata-component="Section"Reusable section component. | id: string = ""size: string = "default"surface: string = "default"className: string = "" | default | None |
SectionHeaderdata-component="SectionHeader"Reusable section header component. | eyebrow: string = ""title: string = "Section title"description: string = ""align: string = "left" | default | None |
SecurityHerodata-component="SecurityHero"Reusable security hero component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
SidebarLayoutdata-component="SidebarLayout"Reusable sidebar layout component. | class: string = "" | default | None |
SidePaneldata-component="SidePanel"Reusable side panel component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
SolutionHerodata-component="SolutionHero"Reusable solution hero component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
SolutionPageShelldata-component="SolutionPageShell"Reusable solution page shell component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
SolutionSectiondata-component="SolutionSection"Reusable solution section component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
SplitHerodata-component="SplitHero"Reusable split hero component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
SplitLayoutdata-component="SplitLayout"Reusable split layout component. | class: string = "" | default | None |
SplitSectionHeaderdata-component="SplitSectionHeader"Reusable split section header component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
StatusPageShelldata-component="StatusPageShell"Reusable status page shell component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
StepNavigationdata-component="StepNavigation"Reusable step navigation component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
StickyLayoutdata-component="StickyLayout"Reusable sticky layout component. | class: string = "" | default | None |
TableHeaderdata-component="TableHeader"Reusable table header component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
VisionSectiondata-component="VisionSection"Reusable vision section component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
WizardHeaderdata-component="WizardHeader"Reusable wizard header component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
WizardNavigationdata-component="WizardNavigation"Reusable wizard navigation component. | eyebrow: string = ""title: string = ""description: string = ""align: string = "start"class: string = "" | default | None |
Overlays
| Component | Props | Slots | Events |
|---|---|---|---|
AccessibleDialogdata-component="AccessibleDialog"Reusable accessible dialog component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
AccessibleMenudata-component="AccessibleMenu"Reusable accessible menu component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
AccountMenudata-component="AccountMenu"Reusable account menu component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
ActionMenudata-component="ActionMenu"Reusable action menu component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
AlertDialogdata-component="AlertDialog"Reusable alert dialog component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
ApiKeyCreateDialogdata-component="ApiKeyCreateDialog"Reusable api key create dialog component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
CommandMenudata-component="CommandMenu"Reusable command menu component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
ConfirmationDialogdata-component="ConfirmationDialog"Reusable confirmation dialog component. | title: string = "Confirm action"description: string = "Are you sure you want to continue?"confirmLabel: string = "Confirm"cancelLabel: string = "Cancel"danger: boolean = falseopen: boolean = falseclass: string = "" | confirm | click |
ContextMenudata-component="ContextMenu"Reusable context menu component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
CookiePreferencesDialogdata-component="CookiePreferencesDialog"Reusable cookie preferences dialog component. | title: string = "Cookie preferences"description: string = "Choose which optional cookies you allow. Essential cookies are always enabled."saveLabel: string = "Save preferences"acceptLabel: string = "Accept all"rejectLabel: string = "Reject optional"open: boolean = falseclass: string = "" | None | changeclick |
DeleteConfirmationDialogdata-component="DeleteConfirmationDialog"Reusable delete confirmation dialog component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
DevelopersMenudata-component="DevelopersMenu"Reusable developers menu component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
DropdownMenudata-component="DropdownMenu"Reusable dropdown menu component. | label: string = "Menu" | default | click |
FilterMenudata-component="FilterMenu"Reusable filter menu component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
FormDialogdata-component="FormDialog"Reusable form dialog component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
FullscreenDialogdata-component="FullscreenDialog"Reusable fullscreen dialog component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
ImagePreviewDialogdata-component="ImagePreviewDialog"Reusable image preview dialog component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
Lightboxdata-component="Lightbox"Reusable lightbox component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
LogoutDialogdata-component="LogoutDialog"Reusable logout dialog component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
MegaMenudata-component="MegaMenu"Reusable mega menu component. | label: string = "Explore"sections: string = []class: string = "" | None | click |
NavigationMegaMenudata-component="NavigationMegaMenu"Reusable navigation mega menu component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
Popoverdata-component="Popover"Reusable popover component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
ProductsMegaMenudata-component="ProductsMegaMenu"Reusable products mega menu component. | label: string = "Products"sections: string = []class: string = "" | None | None |
PromptDialogdata-component="PromptDialog"Reusable prompt dialog component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
ResourcesMegaMenudata-component="ResourcesMegaMenu"Reusable resources mega menu component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
SearchDialogdata-component="SearchDialog"Reusable search dialog component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
SecretRevealDialogdata-component="SecretRevealDialog"Reusable secret reveal dialog component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
SessionExpiredDialogdata-component="SessionExpiredDialog"Reusable session expired dialog component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
SolutionsMegaMenudata-component="SolutionsMegaMenu"Reusable solutions mega menu component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
StepUpAuthenticationDialogdata-component="StepUpAuthenticationDialog"Reusable step up authentication dialog component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
TestMessageDialogdata-component="TestMessageDialog"Reusable test message dialog component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
UnsavedChangesDialogdata-component="UnsavedChangesDialog"Reusable unsaved changes dialog component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
VideoPreviewDialogdata-component="VideoPreviewDialog"Reusable video preview dialog component. | title: string = ""description: string = ""open: boolean = falsecloseLabel: string = "Close"class: string = "" | default | None |
Visualization
| Component | Props | Slots | Events |
|---|---|---|---|
AreaChartdata-component="AreaChart"Reusable area chart component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
BarChartdata-component="BarChart"Reusable bar chart component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
CampaignProgressdata-component="CampaignProgress"Reusable campaign progress component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
ChannelComparisonChartdata-component="ChannelComparisonChart"Reusable channel comparison chart component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
ChannelFallbackDiagramdata-component="ChannelFallbackDiagram"Reusable channel fallback diagram component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
ChannelFlowdata-component="ChannelFlow"Reusable channel flow component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
ChecklistProgressdata-component="ChecklistProgress"Reusable checklist progress component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
CircularProgressdata-component="CircularProgress"Reusable circular progress component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
CohortChartdata-component="CohortChart"Reusable cohort chart component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
CompletionMeterdata-component="CompletionMeter"Reusable completion meter component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
ConversionChartdata-component="ConversionChart"Reusable conversion chart component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
CostBreakdownChartdata-component="CostBreakdownChart"Reusable cost breakdown chart component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
DeliveryStatusChartdata-component="DeliveryStatusChart"Reusable delivery status chart component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
DeliveryStatusTimelinedata-component="DeliveryStatusTimeline"Reusable delivery status timeline component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
DonutChartdata-component="DonutChart"Reusable donut chart component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
EncryptionDiagramdata-component="EncryptionDiagram"Reusable encryption diagram component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
ExportProgressdata-component="ExportProgress"Reusable export progress component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
FallbackRouteDiagramdata-component="FallbackRouteDiagram"Reusable fallback route diagram component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
FeatureTimelinedata-component="FeatureTimeline"Reusable feature timeline component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
FormProgressdata-component="FormProgress"Reusable form progress component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
FunnelChartdata-component="FunnelChart"Reusable funnel chart component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
GeoChartdata-component="GeoChart"Reusable geo chart component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
ImportProgressdata-component="ImportProgress"Reusable import progress component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
IncidentResponseFlowdata-component="IncidentResponseFlow"Reusable incident response flow component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
IncidentTimelinedata-component="IncidentTimeline"Reusable incident timeline component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
JobProgressdata-component="JobProgress"Reusable job progress component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
LatencyMetricdata-component="LatencyMetric"Reusable latency metric component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
LineChartdata-component="LineChart"Reusable line chart component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
Metricdata-component="Metric"Reusable metric component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
OnboardingProgressdata-component="OnboardingProgress"Reusable onboarding progress component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
PasswordStrengthMeterdata-component="PasswordStrengthMeter"Reusable password strength meter component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
PieChartdata-component="PieChart"Reusable pie chart component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
ProductArchitectureDiagramdata-component="ProductArchitectureDiagram"Reusable product architecture diagram component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
ProgressChartdata-component="ProgressChart"Reusable progress chart component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
ProgressRingdata-component="ProgressRing"Reusable progress ring component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
RevenueChartdata-component="RevenueChart"Reusable revenue chart component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
SmartRouteDiagramdata-component="SmartRouteDiagram"Reusable smart route diagram component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
TenantIsolationDiagramdata-component="TenantIsolationDiagram"Reusable tenant isolation diagram component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
Timelinedata-component="Timeline"Reusable timeline component. | title: string = "Timeline" | default | None |
TimelineChartdata-component="TimelineChart"Reusable timeline chart component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
ToastProgressdata-component="ToastProgress"Reusable toast progress component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
UploadProgressdata-component="UploadProgress"Reusable upload progress component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
UptimeChartdata-component="UptimeChart"Reusable uptime chart component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
UptimeMetricdata-component="UptimeMetric"Reusable uptime metric component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
WebhookFlowDiagramdata-component="WebhookFlowDiagram"Reusable webhook flow diagram component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |
WorkflowProgressdata-component="WorkflowProgress"Reusable workflow progress component. | title: string = ""value: string = ""description: string = ""summary: string = ""loading: boolean = falseclass: string = "" | default | None |