Page not found
The address may be outdated or misspelled. No private or duplicate route is exposed here.
diff --git a/app/pages/404.wrn b/app/pages/404.wrn
index 0cf5cdc4..92953d2e 100644
--- a/app/pages/404.wrn
+++ b/app/pages/404.wrn
@@ -5,12 +5,13 @@ page Pagenotfound {
canonical = "https://wrnexusjs.dev/404"
}
view {
- Skip to content
+
The address may be outdated or misspelled. No private or duplicate route is exposed here.
WRNexusJS 0.2.64 packages are not available from the public npm registry. Installation requires approval and private registry credentials supplied by WorkRoot. Never paste registry tokens into source control, issue reports, or support messages.
bunx @wrnexus/cli@0.2.64 create my-appAccess approval, response time, licensing terms, and support level remain owner-controlled. This site does not collect access requests directly.
WRNexusJS 0.2.64 packages are not available from the public npm registry. Installation requires approval and private registry credentials supplied by WorkRoot. Never paste registry tokens into source control, issue reports, or support messages.
bunx @wrnexus/cli@0.2.64 create my-appAccess approval, response time, licensing terms, and support level remain owner-controlled. This site does not collect access requests directly.
WRNexusJS is Bun-native and SSR-first. File discovery maps pages and API handlers; middleware enriches or short-circuits a request; the compiler turns .wrn declarations into server render functions and small feature runtimes.
core owns contexts, middleware, sessions and rooms; router discovers routes; compiler parses .wrn; ssr renders documents; csr supplies browser runtimes; dev-server and cli orchestrate development and builds.
Validation happens at trust boundaries. Session authentication establishes identity; authorization makes resource decisions. CSP, Trusted Types, CSRF, upload checks, WebSocket origins, request limits, and output escaping are layered controls—not substitutes for application policy.
Rooms are process-local unless connected through pub/sub. Redis-backed pub/sub distributes events. Queue durability depends on the selected driver and must be evaluated explicitly.
The gateway can dispatch multiple applications while preserving route, component, asset, config, and session boundaries. Validate host routing and isolation before production.
wrnexus build . produces dist/server.js and hashed/static assets. Run the server with Bun, apply migrations before traffic, terminate TLS at a trusted edge, and forward only expected proxy headers.
Mobile compatibility bridges SSR-safe Capacitor capabilities; native route generation is experimental and is not general web portability. Test each target platform.
app/routes.gen.ts, .wrnexus/, and dist/ are generated. The runtime is Bun-only. Preview packages are private. Historical compatibility and long-term support policy are not yet published.
No comparative speed claims are published. A valid baseline must record scripts, commit, Bun/framework versions, hardware, OS, warmup, samples, workload, raw results, median, percentiles, memory, HTML size, browser JavaScript size, and run date.
The roadmap starts with WRNexusJS-only measurements before any maintained equivalent-workload comparison.
Documentation is aligned to all 26 installed packages. This release adds @wrnexus/helpers, original-request URL helpers, safe login redirects, working wrnexus workspace add, and forward-auth redirect propagation.
Run wrnexus update --latest and keep every @wrnexus/* package on 0.2.64. Existing applications must explicitly add @wrnexus/helpers before importing it; newly scaffolded applications include it automatically.
The packages use semantic-looking versions, but a formal compatibility and old-release support policy has not been approved. Preview consumers should treat minor releases as potentially requiring migration review.
Examples are tied to installed 0.2.64 package documentation. The focused snippets in guides are source-verified; standalone runnable projects and CI compilation are tracked as remaining work.
bun run test
bun run build
bun dist/server.jsNext: deployment, database, authentication, and workspaces.
- + +Export GET, POST, PUT, PATCH, or DELETE from app/api files. Validate request bodies, enforce authentication and authorization, cap request sizes, and return Web Responses.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Configure session authentication, log users in through supported auth helpers, and read identity from context. Cookie flags, rotation, expiry, and secret storage remain deployment responsibilities.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Authentication identifies; authorization decides. Enforce permissions in server routes and policies, including object ownership. UI hiding is never an authorization boundary.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
wrnexus.config.ts owns styles, SEO, security, data, mobile, fonts, and profiles. Keep secrets in validated environment variables and review merged production configuration.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Configure SQLite or the installed supported driver, keep queries in named SQL blocks, generate typed functions, and apply migrations before traffic. Back up data and test rollback independently.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Run bun run build, apply migrations, and start dist/server.js with Bun. Configure TLS, proxy trust, environment validation, health checks, graceful restarts, logs, backups, and restrictive security headers.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Define a v.object schema, use data-schema on the form, show field errors with data-error, and always call parseBody on the server. refine is server-only.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Store locale JSON under app/locales and use translation directives. Themes resolve CSS tokens; ensure contrast, system preference behavior, persistence, and non-color cues.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Middleware receives context and next. Return next() to continue or return a Response to stop. Put request limits and trust-boundary controls before business logic.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Mobile capabilities are experimental in this preview. Test Capacitor permissions and lifecycle on each platform; do not assume every .wrn or browser API converts to native.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Use tracking middleware and sinks with redaction, sampling, stable request identifiers, alert ownership, and retention limits. Never capture registry tokens or session secrets.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Pages are routable, components are reusable, and layouts provide shared slots. Mount a component with data-component and keep browser state scoped and minimal.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Pages, components, layouts, APIs, middleware, schemas, database files, locales, realtime rooms, and styles live under app. Never edit app/routes.gen.ts, .wrnexus, or dist by hand.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
The in-process driver cannot cross processes. Use Redis where instances must share events, define channel ownership, and design for reconnects and duplicate delivery.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Queue behavior is preview-level. Treat in-process work as non-durable, make handlers idempotent, cap retries, record failures, and choose a production persistence strategy.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
defineRoom handles connection and messages. Validate message shapes, authorize subscriptions, restrict origins, bound payloads, and use pub/sub to scale across processes.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
A page filename defines its URL; index maps to the directory root and bracket segments are dynamic parameters. API files under app/api expose HTTP method functions and receive a Context.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Use CSP, CSRF, Trusted Types, session hardening, validation, origin checks, upload restrictions, encryption, request limits, and explicit CORS. See the security policy for reporting.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Use an ssr API binding, return the desired response field, and render it with a server #each block. Values are escaped. Avoid fetching private data through a route that lacks authorization.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Use Bun tests and @wrnexus/test helpers. Cover server HTML, API status and validation, authorization failures, reactive behavior, and a production startup smoke test.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Confirm Bun and package versions, regenerate docs/routes through supported commands, read the first compiler diagnostic, check file naming, validate config, and reproduce under a production build.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Back up and commit first, then use wrnexus update --latest as documented by the installed CLI. Review migrations and keep every @wrnexus package aligned. Current release: 0.2.64.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Configure named stores, accepted MIME/extensions, and maxBytes. Random keys avoid path traversal. Private files require an authenticated serving route; v1 buffers each file in memory.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Always allowlist redirect hosts. After login, validate or sign the returnTo value before redirecting. Keep internal app ports private and open applications through the gateway port.
This guide describes installed 0.2.64 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.
Browse package APIs · Troubleshooting · Support
- + +WRNexusJS v0.2.64
WRNexusJS is an SSR-first, Bun-native full-stack framework. Build typed pages, APIs, validated forms, realtime rooms, secure sessions, workspaces, and optional mobile experiences with the .wrn component language.
Private developer preview. Request access to the package registry.
page Dashboard {
+ WRNexusJS v0.2.64
Build from the server.
Ship only what matters.
WRNexusJS is an SSR-first, Bun-native full-stack framework. Build typed pages, APIs, validated forms, realtime rooms, secure sessions, workspaces, and optional mobile experiences with the .wrn component language.
Private developer preview. Request access to the package registry.
app/pages/dashboard.wrnpage Dashboard {
ssr { api tasks GET /api/tasks { return tasks } }
view {
<main>
@@ -38,7 +38,8 @@ export const POST = async (ctx) => {
Production proof
WorkRoot
Public creator/company site and approved WRNexusJS production showcase.
wrnexusjs.dev
This documentation application runs WRNexusJS 0.2.64.
Capability status
Capability Status Details SSR, routing, compiler, APIs Preview Installed in 0.2.64; public support policy pending. Mobile/native Experimental Capacitor compatibility and native generation have platform limitations. Durable queues Experimental Production durability requires an appropriate driver strategy.
Continue exploring
-
+
+
}
}
\ No newline at end of file
diff --git a/app/pages/language.wrn b/app/pages/language.wrn
index c5bdcbf8..fb45a46d 100644
--- a/app/pages/language.wrn
+++ b/app/pages/language.wrn
@@ -5,7 +5,7 @@ page Thewrnlanguage {
canonical = "https://wrnexusjs.dev/language"
}
view {
- Skip to content
+
W WRNexusJS
Browse documentation
@@ -15,7 +15,8 @@ page Thewrnlanguage {
state count = 0
view { <button @click="count++">Count {count}</button> }
}Pages, components, layouts, props, and state
Pages are routes. Components declare default-valued props and may hold state. Layouts provide shared slots. Mount components with data-component; fill default or named slots with data-slot.
Interpolation, conditionals, and loops
Interpolation is HTML-escaped. Use server {#if} and {#each} for SSR data. Use data-show for reactive client visibility.
Events and directives
@click and other events execute in the reactive scope. Data attributes opt into forms, i18n, themes, realtime, uploader, browser, and mobile behavior. Consult the exact package page because availability varies.
Forms, i18n, themes, and realtime
form[data-schema] connects descriptors to client and server validation. Translation keys use {t:key}. Theme toggles use data-wire-theme-toggle. Realtime pages opt into a named room.
Escaping and security
Text interpolation is escaped by default. Do not construct trusted HTML from user input. Server-only refinements must be repeated at the authoritative mutation boundary.
Common compiler errors
- Use balanced braces; a literal brace must be escaped.
- Declare UI in
view, not JSX or hooks. - Use a valid page, component, or layout declaration matching the file role.
- Keep server loops tied to available SSR bindings.
- Check troubleshooting and compiler API for this release.
-
+
+
}
}
\ No newline at end of file
diff --git a/app/pages/license.wrn b/app/pages/license.wrn
index 5403ed9f..4a32085f 100644
--- a/app/pages/license.wrn
+++ b/app/pages/license.wrn
@@ -5,12 +5,13 @@ page License {
canonical = "https://wrnexusjs.dev/license"
}
view {
- Skip to content
+
W WRNexusJS
Browse documentation
License
Owner decision requiredThis documentation repository contains no public license file, and the packages are unavailable from the public npm registry. No open-source license or redistribution right should be inferred.
Approved preview users must follow the private/commercial terms supplied by WorkRoot. Contact WorkRoot before copying, redistributing, or using WRNexusJS in production.
-
+
+
}
}
\ No newline at end of file
diff --git a/app/pages/packages.wrn b/app/pages/packages.wrn
index cbf50c84..936ca419 100644
--- a/app/pages/packages.wrn
+++ b/app/pages/packages.wrn
@@ -8,7 +8,7 @@ page Packages {
view {
- Skip to content
+
W WRNexusJS
@@ -93,7 +93,8 @@ page Packages {
Security@wrnexus/validation
Typed schemas, coercion, validation, and browser descriptors.
Open documentation →
-
+
+
}
}
diff --git a/app/pages/packages/ai.wrn b/app/pages/packages/ai.wrn
index b27cbccc..c71e17db 100644
--- a/app/pages/packages/ai.wrn
+++ b/app/pages/packages/ai.wrn
@@ -6,7 +6,7 @@ page wrnexusai {
view {
-
+
+
This reference is generated from the exact installed .wrn sources. Required props have no default; optional props show their default value.
| 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. | class: string = ""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 |
| 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. | class: string = ""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. | class: string = ""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. | class: string = ""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. | class: string = ""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. | class: string = ""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. | class: string = ""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. | class: string = ""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. | class: string = ""eyebrow: string = ""title: string = "Stay up to date"description: string = ""placeholder: string = "Enter your email"buttonLabel: string = "Subscribe"action: string = "/newsletter/subscribe"method: string = "post"emailName: string = "email"privacyLabel: string = ""privacyHref: string = "/privacy"successMessage: string = "You are subscribed."errorMessage: string = "Something went wrong. Please try again."iconClass: string = "icon-[lucide--mail]"centered: boolean = falsecompact: boolean = falseshowIcon: boolean = trueshowPrivacy: boolean = truefullWidth: boolean = false | None | submitinput |
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. | class: string = ""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. | class: string = ""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. | class: string = ""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. | class: string = ""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. | class: string = ""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. | class: string = ""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 |
| Component | Props | Slots | Events |
|---|---|---|---|
AnnouncementBardata-component="AnnouncementBar"Reusable announcement bar component. | class: string = ""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. | class: string = ""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. | class: string = ""items: string = []centered: boolean = falsecompact: boolean = falseshowHome: boolean = truehomeLabel: string = "Home"homeHref: string = "/" | None | None |
Checkboxdata-component="Checkbox"Reusable checkbox component. | class: string = ""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 |
ContactSalesBannerdata-component="ContactSalesBanner"Reusable contact sales banner component. | class: string = ""eyebrow: string = "Enterprise identity"title: string = "Ready to secure your next application?"description: string = ""primaryLabel: string = "Contact sales"primaryHref: string = "/contact"secondaryLabel: string = "Start free"secondaryHref: string = "/sign-up"iconClass: string = "icon-[lucide--messages-square]"centered: boolean = falsecompact: boolean = falsepoints: string = []trustPoints: string = [] | None | None |
Containerdata-component="Container"Reusable container component. | size: string = "default"className: string = "" | default | None |
CookieConsentdata-component="CookieConsent"Reusable cookie consent component. | class: string = "" | None | clickchange |
DevelopersMegaMenudata-component="DevelopersMegaMenu"Reusable developers mega menu component. | class: string = "" | None | 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. | class: string = ""title: string = "Panel"open: boolean = falseside: string = "right" | default | click |
FAQdata-component="FAQ"Reusable faq component. | class: string = ""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. | class: string = ""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. | class: string = ""eyebrow: string = ""title: string = "Trusted by teams building modern products"description: string = ""logos: string = []centered: boolean = truecompact: boolean = falsevariant: string = "strip"grayscale: boolean = trueshowNames: boolean = falsemaxItems: number = 8 | None | None |
Modaldata-component="Modal"Reusable modal component. | class: string = ""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 |
PageHeaderdata-component="PageHeader"Reusable page header component. | class: string = ""eyebrow: string = ""title: string = ""description: string = ""primaryLabel: string = ""primaryHref: string = ""secondaryLabel: string = ""secondaryHref: string = ""icon: string = "sparkles"centered: boolean = falsecompact: boolean = falseshowBreadcrumbs: boolean = falsebreadcrumbParent: string = ""breadcrumbParentHref: string = ""breadcrumbCurrent: string = ""highlights: string = [] | None | 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. | class: string = ""currentPage: number = 1totalPages: number = 1previousHref: string = ""nextHref: string = ""pages: string = []showNumbers: boolean = trueshowSummary: boolean = truetotalItems: number = 0pageSize: number = 10compact: boolean = falsecentered: boolean = false | None | None |
Pilldata-component="Pill"Reusable pill component. | label: string = "Pill"variant: string = "default"class: string = "" | default | None |
ProductMegaMenudata-component="ProductMegaMenu"Reusable product mega menu component. | class: string = "" | None | None |
progressdata-component="progress"Reusable progress component. | value: number = 0max: number = 100class: string = "" | None | None |
ProgressBardata-component="ProgressBar"Reusable progress bar component. | class: string = ""value: number = 0max: number = 100label: string = "Progress"showValue: boolean = true | None | None |
PublicFooterdata-component="PublicFooter"Reusable public footer component. | class: string = "" | None | submit |
PublicMobileNavigationdata-component="PublicMobileNavigation"Reusable public mobile navigation component. | class: string = "" | None | click |
PublicSearchdata-component="PublicSearch"Reusable public search component. | class: string = ""query: string = ""placeholder: string = "Search..."label: string = "Search"action: string = ""method: string = "get"name: string = "q"buttonLabel: string = ""clearLabel: string = "Clear search"size: string = "default"centered: boolean = falsefullWidth: boolean = falseshowShortcut: boolean = falseshortcutLabel: string = "⌘ K"suggestions: string = [] | None | inputfocusblurclick |
Radiodata-component="Radio"Reusable radio component. | class: string = ""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. | class: string = ""id: string = ""name: string = ""label: string = "Select"help: string = ""error: string = ""required: boolean = falsedisabled: boolean = false | default | None |
SocialSharedata-component="SocialShare"Reusable social share component. | class: string = ""title: string = "Share this page"description: string = ""url: string = ""shareText: string = ""centered: boolean = falsecompact: boolean = falseshowTitle: boolean = trueshowCopy: boolean = truenetworks: string = [] | None | click |
spacerdata-component="spacer"Reusable spacer component. | class: string = "" | None | None |
Spinnerdata-component="Spinner"Reusable spinner component. | class: string = ""label: string = "Loading"size: string = "md" | None | None |
Stackdata-component="Stack"Reusable stack component. | gap: string = "4"className: string = "" | default | None |
StatusBannerdata-component="StatusBanner"Reusable status banner component. | class: string = ""type: string = "info"title: string = ""description: string = ""actionLabel: string = ""actionHref: string = ""dismissible: boolean = truecompact: boolean = falsedetails: string = [] | None | click |
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. | class: string = ""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. | class: string = ""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. | class: string = ""title: string = "Saved"description: string = ""variant: string = "success"duration: number = 5000 | None | click |
ToastHostdata-component="ToastHost"Reusable toast host component. | class: string = "" | 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 |
| 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. | class: string = ""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 |
| 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. | class: string = ""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. | class: string = ""label: string = "Badge"variant: string = "neutral" | None | None |
Bannerdata-component="Banner"Reusable banner component. | class: string = ""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. | class: string = ""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. | class: string = ""eyebrow: string = ""title: string = "Nothing found"description: string = ""iconClass: string = "icon-[lucide--inbox]"primaryLabel: string = ""primaryHref: string = ""secondaryLabel: string = ""secondaryHref: string = ""compact: boolean = falsecentered: boolean = truesuggestions: string = [] | None | None |
ErrorStatedata-component="ErrorState"Reusable error state component. | class: string = ""type: string = "error"eyebrow: string = ""title: string = "Something went wrong"description: string = ""errorCode: string = ""iconClass: string = ""primaryLabel: string = ""primaryHref: string = ""secondaryLabel: string = ""secondaryHref: string = ""retryLabel: string = ""retryAction: string = ""centered: boolean = truecompact: boolean = falsedetails: string = [] | None | click |
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. | class: string = ""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 |
| 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. | class: string = ""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. | class: string = ""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. | class: string = ""label: string = "Date range"startName: string = "startDate"endName: string = "endDate" | None | None |
DateTimeInputdata-component="DateTimeInput"Reusable date time input component. | class: string = ""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. | class: string = ""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. | class: string = ""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. | class: string = ""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. | class: string = ""name: string = "otp"length: number = 6label: string = "Verification code" | None | None |
PasswordInputdata-component="PasswordInput"Reusable password input component. | class: string = ""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. | class: string = ""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. | class: string = ""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. | class: string = ""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. | class: string = ""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. | class: string = ""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. | class: string = ""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. | class: string = ""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. | class: string = ""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 |
| 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. | class: string = ""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. | class: string = ""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. | class: string = ""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. | class: string = "" | None | 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. | class: string = ""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 |
| 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. | class: string = ""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. | class: string = "" | None | 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. | class: string = "" | None | 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 |
| 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. | class: string = ""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 |
Released 2026-07-12 in this documentation repository. Twenty-five installed packages are aligned to this version. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Released 2026-07-13. All 26 installed packages are aligned to this version. Highlights include the new helpers package, reliable workspace app addition, and browser SSO redirects through forward authentication. See the changelog, upgrade guide, and package references.
Roadmap items are direction, not delivery commitments. Dates require explicit owner approval.
This build-time index is local and sends no query to a third party. Use your browser’s find command to filter this compact index.
Get started · Packages · Language · Architecture
Project structure · Routing · Pages and components · Server data · API routes · Middleware · Forms and validation · Authentication · Authorization · Application security · Database · Uploads · Realtime · Pub/sub · Queues · Testing · Workspaces and gateway · Deployment · Configuration and profiles · Internationalization and themes · Mobile · Observability · Upgrading · Troubleshooting
@wrnexus/ai · @wrnexus/authz · @wrnexus/compiler · @wrnexus/core · @wrnexus/csr · @wrnexus/db · @wrnexus/dev-server · @wrnexus/encryption · @wrnexus/helpers · @wrnexus/i18n · @wrnexus/jwt · @wrnexus/mobile · @wrnexus/native · @wrnexus/oauth · @wrnexus/pubsub · @wrnexus/queue · @wrnexus/reactive · @wrnexus/router · @wrnexus/ssr · @wrnexus/styles · @wrnexus/test · @wrnexus/tracking · @wrnexus/ui · @wrnexus/uploader · @wrnexus/validation · @wrnexus/cli
WRNexusJS provides primitives for CSP, CSRF, Trusted Types, sessions, validation, authorization, encryption, upload restrictions, request limits, and WebSocket-origin checks. Applications remain responsible for correct configuration, business authorization, secrets, dependencies, data protection, and operations.
Only the current private-preview release 0.2.64 is documented here. A formal old-release support window is not yet published.
Use WorkRoot’s approved private contact path at workroot.in. Do not publish exploit details or secrets. Include affected version, impact, reproduction, and a safe contact method. Response targets, encryption key, bounty, audit, and certification are not currently claimed.
Use restrictive CSP and permissions policies, HSTS only on HTTPS production origins, MIME sniffing protection, restrictive referrers, explicit CORS, secure cookies, CSRF validation, request limits, and origin checks. See application security.
Only confirmed public properties are listed; no customer or traffic claims are made.
Creator/company site demonstrating a public WRNexusJS deployment. Exact deployed version and infrastructure notes await owner confirmation.
This documentation portal, built and verified against WRNexusJS 0.2.64 on Bun.
Screenshots are intentionally deferred until approved assets and alt text are available.
WRNexusJS has no public Discord, public issue tracker, or guaranteed community support channel listed by this repository. Preview access and support begin through WorkRoot’s public contact path.
Include WRNexusJS version, Bun version, OS, a minimal reproduction, expected and actual behavior, and sanitized logs. Never include registry tokens, credentials, session cookies, or private data.
Support scope, service levels, and commercial terms require owner confirmation.
Follow the focused database, authentication, authorization, realtime, and upload guides.
- + +